From 863481c95e8e7b1ed19aa0c1e0da6e2f4e4c3b08 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Fri, 27 Nov 2020 00:04:52 +0800 Subject: [PATCH 01/85] numpy-pad --- README.md | 4 ++-- md/172.md | 39 ++++++++++++++++++++++++++++++++++----- 2 files changed, 36 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d0d4896b..56beccb7 100644 --- a/README.md +++ b/README.md @@ -229,8 +229,8 @@ | 168 | [优化代码异常输出包](md/168.md) | debugger | V1.0 | ⭐️⭐⭐ | | 169 | [图像处理包pillow](md/169.md) | pillow | V1.0 | ⭐️⭐⭐ | | 170 | [一行代码找到编码](md/170.md) | chardet | V1.0 | ⭐️⭐⭐ | -| 171 | [子类继承父类的静态方法吗?](md/171.md) | chardet | V1.0 | ⭐️⭐⭐ | -| 172 | [更多案例,更在陆续整理](md/171.md) | for | V1.0 | ⭐️⭐⭐ | +| 171 | [子类继承父类的静态方法吗?](md/171.md) | staticmethod | V1.0 | ⭐️⭐⭐ | +| 172 | [NumPy 的pad填充方法](md/172.md) | NumPy pad | V1.0 | ⭐️⭐⭐⭐ | ### Python 实战 diff --git a/md/172.md b/md/172.md index b6ede7f6..8ec353e9 100644 --- a/md/172.md +++ b/md/172.md @@ -1,9 +1,38 @@ ```markdown @author jackzhenguo -@desc -@tag -@version -@date 2020/03/10 +@desc NumPy 的 pad 填充方法 +@tag NumPy +@version v1.0 +@date 2020/11/27 ``` - \ No newline at end of file + +今天介绍 NumPy 一个实用的方法 `pad`,实现数组周围向外扩展层的功能。 + +```python +In [1]: import numpy as np +In [2]: help(np.pad) +In [4]: a = np.ones((3,4)) +Out[4]: +array([[1., 1., 1., 1.], + [1., 1., 1., 1.], + [1., 1., 1., 1.]]) +``` + +np.pad 默认在原数组周边向外扩展 pad_width 层: + +```python +In [6]: np.pad(a,pad_width=2) +Out[6]: +array([[0., 0., 0., 0., 0., 0., 0., 0.], + [0., 0., 0., 0., 0., 0., 0., 0.], + [0., 0., 1., 1., 1., 1., 0., 0.], + [0., 0., 1., 1., 1., 1., 0., 0.], + [0., 0., 1., 1., 1., 1., 0., 0.], + [0., 0., 0., 0., 0., 0., 0., 0.], + [0., 0., 0., 0., 0., 0., 0., 0.]]) +``` + +此函数在为数组充填值,卷积中有重要应用。 + +以上就是《python-small-examples》第 172 个小例子:NumPy 的 pad 填充方法。 \ No newline at end of file From 9f65cb3953b88c5d61d09cee0ef080820bc2e2d4 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Fri, 27 Nov 2020 10:39:48 +0800 Subject: [PATCH 02/85] update --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 56beccb7..b382eb92 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,24 @@ - [5.1 基本编程习惯](http://www.zglg.work/?page_id=654) - [5.2 EAFP 防御编程风格](http://www.zglg.work/?page_id=657) - [5.3 LBYL 防御编程风格](http://www.zglg.work/?page_id=659) +- 6 Python 函数 + - [6.1 函数组成](http://www.zglg.work/?page_id=883) + - [6.2 引用传参](http://www.zglg.work/?page_id=885) + - [6.3 默认参数与关键字参数(http://www.zglg.work/?page_id=887) + - [6.4 可变参数](http://www.zglg.work/?page_id=889) + - [6.6 偏函数](http://www.zglg.work/?page_id=892) + - [6.7 递归函数](http://www.zglg.work/?page_id=894) + - [6.8 匿名函数](http://www.zglg.work/?page_id=896) + - [6.9 高阶函数](http://www.zglg.work/?page_id=898) + - [6.10 嵌套函数](http://www.zglg.work/?page_id=900) +- 7 面向对象编程基础 + - [7.1 类定义](http://www.zglg.work/?page_id=904) + - [7.2 对象或实例](http://www.zglg.work/?page_id=906) + - [7.3 打印对象](http://www.zglg.work/?page_id=908) + - [7.4 属性](http://www.zglg.work/?page_id=910) + - [7.5 private,protected,public](http://www.zglg.work/?page_id=913) + - [7.6 继承](http://www.zglg.work/?page_id=916) + - [7.7 多态](http://www.zglg.work/?page_id=918) 后续章节正在整理推送中。 From 326d4f0c7f9116d6c03829d2eafd3f3cc4ec33b5 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Fri, 27 Nov 2020 10:40:23 +0800 Subject: [PATCH 03/85] update --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b382eb92..bb5640d6 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ - 6 Python 函数 - [6.1 函数组成](http://www.zglg.work/?page_id=883) - [6.2 引用传参](http://www.zglg.work/?page_id=885) - - [6.3 默认参数与关键字参数(http://www.zglg.work/?page_id=887) + - [6.3 默认参数与关键字参数](http://www.zglg.work/?page_id=887) - [6.4 可变参数](http://www.zglg.work/?page_id=889) - [6.6 偏函数](http://www.zglg.work/?page_id=892) - [6.7 递归函数](http://www.zglg.work/?page_id=894) From 41927be025d564c28f8c5612a51bb715b906c451 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Fri, 27 Nov 2020 10:41:41 +0800 Subject: [PATCH 04/85] update --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index bb5640d6..b6a43066 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,8 @@ ![](./img/大纲.png) +适合小白的 Python 系统入门课程 + - [1 数字专题](http://www.zglg.work/?page_id=530) - [2 字符串专题](http://www.zglg.work/?page_id=540) - 3 列表专题 From 96657a80d9db54e2f2536be7dad039c040be3fdb Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Fri, 27 Nov 2020 10:56:40 +0800 Subject: [PATCH 05/85] 173 --- README.md | 2 +- md/173.md | 18 ++++++++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b6a43066..5e395c06 100644 --- a/README.md +++ b/README.md @@ -251,7 +251,7 @@ | 170 | [一行代码找到编码](md/170.md) | chardet | V1.0 | ⭐️⭐⭐ | | 171 | [子类继承父类的静态方法吗?](md/171.md) | staticmethod | V1.0 | ⭐️⭐⭐ | | 172 | [NumPy 的pad填充方法](md/172.md) | NumPy pad | V1.0 | ⭐️⭐⭐⭐ | - +| 173 | [创建下对角线为1、2、3、4的对角矩阵](md/173.md) | NumPy pad | V1.0 | ⭐️⭐⭐ | ### Python 实战 diff --git a/md/173.md b/md/173.md index fb928e5e..b8e4e79d 100644 --- a/md/173.md +++ b/md/173.md @@ -1,9 +1,23 @@ ```markdown @author jackzhenguo -@desc +@desc 创建一个下对角线为1、2、3、4的对角矩阵 @tag @version @date 2020/03/11 ``` - \ No newline at end of file + +```python +In [1]: import numpy as np + +In [2]: Z = np.diag(1+np.arange(4),k=-1) + ...: print(Z) + +[[0 0 0 0 0] + [1 0 0 0 0] + [0 2 0 0 0] + [0 0 3 0 0] + [0 0 0 4 0]] + ``` + + 其中,k 参数:大于0,表示与主对角线上移k,小于0下移k \ No newline at end of file From 63330c58bad8f915fe034dc3eff1538401271dd4 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Fri, 27 Nov 2020 10:57:46 +0800 Subject: [PATCH 06/85] 173 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e395c06..e411802b 100644 --- a/README.md +++ b/README.md @@ -251,7 +251,7 @@ | 170 | [一行代码找到编码](md/170.md) | chardet | V1.0 | ⭐️⭐⭐ | | 171 | [子类继承父类的静态方法吗?](md/171.md) | staticmethod | V1.0 | ⭐️⭐⭐ | | 172 | [NumPy 的pad填充方法](md/172.md) | NumPy pad | V1.0 | ⭐️⭐⭐⭐ | -| 173 | [创建下对角线为1、2、3、4的对角矩阵](md/173.md) | NumPy pad | V1.0 | ⭐️⭐⭐ | +| 173 | [创建下对角线为1、2、3、4的对角矩阵](md/173.md) | NumPy diag | V1.0 | ⭐️⭐⭐ | ### Python 实战 From 4fbc09c2fba5da756d57756527de42532f585faf Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Sat, 28 Nov 2020 16:16:55 +0800 Subject: [PATCH 07/85] cut --- README.md | 1 + md/174.md | 26 +++++++++++++++++++++++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e411802b..41951e3a 100644 --- a/README.md +++ b/README.md @@ -252,6 +252,7 @@ | 171 | [子类继承父类的静态方法吗?](md/171.md) | staticmethod | V1.0 | ⭐️⭐⭐ | | 172 | [NumPy 的pad填充方法](md/172.md) | NumPy pad | V1.0 | ⭐️⭐⭐⭐ | | 173 | [创建下对角线为1、2、3、4的对角矩阵](md/173.md) | NumPy diag | V1.0 | ⭐️⭐⭐ | +| 174 | [cut 数据分箱](md/174.md) | Pandas cut | v1.0 | ⭐️⭐⭐ | ### Python 实战 diff --git a/md/174.md b/md/174.md index 89c95f07..f4066e81 100644 --- a/md/174.md +++ b/md/174.md @@ -1,9 +1,29 @@ ```markdown @author jackzhenguo -@desc +@desc cut 数据分箱 @tag @version -@date 2020/03/12 +@date 2020/11/28 ``` - \ No newline at end of file + +第174个小例子:cut 数据分箱 + +将百分制分数转为A,B,C,D四个等级,bins 被分为 [0,60,75,90,100],labels 等于['D', 'C', 'B', 'A']: + +```python +# 生成20个[0,100]的随机整数 +In [30]: a = np.random.randint(1,100,20) +In [31]: a +Out[31]: +array([48, 22, 46, 84, 13, 52, 36, 35, 27, 99, 31, 37, 15, 31, 5, 46, 98,99, 60, 43]) + +# cut分箱 +In [33]: pd.cut(a, [0,60,75,90,100], labels = ['D', 'C', 'B', 'A']) +Out[33]: +[D, D, D, B, D, ..., D, A, A, D, D] +Length: 20 +Categories (4, object): [D < C < B < A] +``` + +分箱后,48分对应D,22分对应D,46对应D,84分对应B,... \ No newline at end of file From e4119b3973914033f67dc13b5efc934c25b9bee0 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Sun, 29 Nov 2020 13:58:32 +0800 Subject: [PATCH 08/85] fillna --- README.md | 1 + md/175.md | 22 ++++++++++++++++++++-- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 41951e3a..f2392c6d 100644 --- a/README.md +++ b/README.md @@ -253,6 +253,7 @@ | 172 | [NumPy 的pad填充方法](md/172.md) | NumPy pad | V1.0 | ⭐️⭐⭐⭐ | | 173 | [创建下对角线为1、2、3、4的对角矩阵](md/173.md) | NumPy diag | V1.0 | ⭐️⭐⭐ | | 174 | [cut 数据分箱](md/174.md) | Pandas cut | v1.0 | ⭐️⭐⭐ | +| | [丢弃空值和填充空值](./md/175.md) | Pandas dropna fillna | v1.0 | ⭐️⭐⭐ | ### Python 实战 diff --git a/md/175.md b/md/175.md index 4cdcac42..9a2b6d48 100644 --- a/md/175.md +++ b/md/175.md @@ -1,9 +1,27 @@ ```markdown @author jackzhenguo -@desc +@desc 丢弃空值和填充空值 @tag @version @date 2020/03/13 ``` - \ No newline at end of file + +丢弃空值 + +np.nan 是 pandas 中常见空值,使用 dropna 过滤空值,axis 0 表示按照行,1 表示按列,how 默认为 any ,意思是只要有一个 nan 就过滤某行或某列,all 所有都为 nan + +```python +# axis 0 表示按照行,all 此行所有值都为 nan +df.dropna(axis=0, how='all') +``` + +充填空值 + +空值一般使用某个统计值填充,如平均数、众数、中位数等,使用函数 fillna: + +```python +# 使用a列平均数填充列的空值,inplace true表示就地填充 +df["a"].fillna(df["a"].mean(), inplace=True) +``` + From b70fd42699ddeb59639dd7e3abd3e98f22b6936c Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Sun, 29 Nov 2020 14:01:04 +0800 Subject: [PATCH 09/85] fillna --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f2392c6d..430849b3 100644 --- a/README.md +++ b/README.md @@ -253,7 +253,7 @@ | 172 | [NumPy 的pad填充方法](md/172.md) | NumPy pad | V1.0 | ⭐️⭐⭐⭐ | | 173 | [创建下对角线为1、2、3、4的对角矩阵](md/173.md) | NumPy diag | V1.0 | ⭐️⭐⭐ | | 174 | [cut 数据分箱](md/174.md) | Pandas cut | v1.0 | ⭐️⭐⭐ | -| | [丢弃空值和填充空值](./md/175.md) | Pandas dropna fillna | v1.0 | ⭐️⭐⭐ | +| 175 | [丢弃空值和填充空值](./md/175.md) | Pandas dropna fillna | v1.0 | ⭐️⭐⭐ | ### Python 实战 From c3add42599f1c6b1b7f8284f4ea931dfb8ea4515 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Sun, 29 Nov 2020 15:30:19 +0800 Subject: [PATCH 10/85] 176 --- README.md | 1 + md/176.md | 29 +++++++++++++++++++++++++++-- 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 430849b3..72358255 100644 --- a/README.md +++ b/README.md @@ -254,6 +254,7 @@ | 173 | [创建下对角线为1、2、3、4的对角矩阵](md/173.md) | NumPy diag | V1.0 | ⭐️⭐⭐ | | 174 | [cut 数据分箱](md/174.md) | Pandas cut | v1.0 | ⭐️⭐⭐ | | 175 | [丢弃空值和填充空值](./md/175.md) | Pandas dropna fillna | v1.0 | ⭐️⭐⭐ | +| | [一行代码让 pip 安装加速 100 倍](md/176.md) | pip install | v1.0 | ⭐️⭐⭐ | ### Python 实战 diff --git a/md/176.md b/md/176.md index 29cd02af..ccd97fd1 100644 --- a/md/176.md +++ b/md/176.md @@ -1,9 +1,34 @@ ```markdown @author jackzhenguo -@desc +@desc 一行代码让 pip 安装加速 100 倍 @tag @version @date 2020/03/14 ``` - \ No newline at end of file + +pip 安装普通方法: + +```python +pip install scrapy +``` + +这个安装可能是龟速,甚至直接抛出 timeout 异常,然后可能你会加长 socket 延时,通过设置 `defualt-timeout` 参数: + +```python +pip --defualt-timeout = 600 install scrapy +``` + +但是这不会加快安装速度,直接添加一个参数: + +```python +-i https://pypi.tuna.tsinghua.edu.cn/simple +``` + +完整安装命令: + +```python +pip --defualt-timeout = 600 install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple +``` + +后面安装你可以直接复制我这行命令,安装包的速度会快很多。 \ No newline at end of file From 900e23edc8408e3aa79d852f0e7cebb8be147f54 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Thu, 3 Dec 2020 21:57:03 +0800 Subject: [PATCH 11/85] 177-179 --- README.md | 5 ++++- md/177.md | 21 +++++++++++++++++++-- md/178.md | 31 +++++++++++++++++++++++++++++-- md/179.md | 28 ++++++++++++++++++++++++++-- 4 files changed, 78 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 72358255..a2a6fda6 100644 --- a/README.md +++ b/README.md @@ -254,7 +254,10 @@ | 173 | [创建下对角线为1、2、3、4的对角矩阵](md/173.md) | NumPy diag | V1.0 | ⭐️⭐⭐ | | 174 | [cut 数据分箱](md/174.md) | Pandas cut | v1.0 | ⭐️⭐⭐ | | 175 | [丢弃空值和填充空值](./md/175.md) | Pandas dropna fillna | v1.0 | ⭐️⭐⭐ | -| | [一行代码让 pip 安装加速 100 倍](md/176.md) | pip install | v1.0 | ⭐️⭐⭐ | +| 176 | [一行代码让 pip 安装加速 100 倍](md/176.md) | pip install | v1.0 | ⭐️⭐⭐ | +| 177 | [数据分析神器:deepnote](./md/177.md) | deepnote | v1.0 | ⭐️⭐⭐ | +| 178 | [apply 方法去掉特殊字符](./md/178.md) | pandas apply | v1.0 | ⭐️⭐⭐ | +| 179 | [使用map对列做特征工程](./md/179.md) | pandas map | v1.0 | ⭐️⭐⭐ | ### Python 实战 diff --git a/md/177.md b/md/177.md index d8aa8b99..800b091a 100644 --- a/md/177.md +++ b/md/177.md @@ -1,9 +1,26 @@ ```markdown @author jackzhenguo -@desc +@desc 数据分析神器:deepnote @tag @version @date 2020/03/15 ``` - \ No newline at end of file + +一个和 jupyter notebook很像的神器:deepnote + +jupyter notebook 是运行 python 非常好用的笔记本之一,尤其作数据分析、数据科学领域应用广泛。最近发现一款兼容 jupyter notebook,极好用的notebook: deepnote + +使用也是免费!https://deepnote.com/ + +它的特点:时事协作,运行在云端 + +上手使用一下,使用shift+enter 执行代码 + +------ + + 执行代码,体验很好,很香: + +邀请伙伴直接进入你的notebook,多人协作,开发更快: + +多了一种选择,调换着使用它们会很不错! \ No newline at end of file diff --git a/md/178.md b/md/178.md index ab8bedc6..7ab4eb6c 100644 --- a/md/178.md +++ b/md/178.md @@ -1,9 +1,36 @@ ```markdown @author jackzhenguo -@desc +@desc apply 方法去掉特殊字符 @tag @version @date 2020/03/16 ``` - \ No newline at end of file + +### apply 方法去掉特殊字符 + +某列单元格含有特殊字符,如标点符号,使用元素级操作方法 apply 干掉它们: + +```python +import string +exclude = set(string.punctuation) + +def remove_punctuation(x): + x = ''.join(ch for ch in x if ch not in exclude) + return x +# 原df +Out[26]: + a b +0 c,d edc.rc +1 3 3 +2 d ef 4 + +# 过滤a列标点 +In [27]: df.a = df.a.apply(remove_punctuation) +In [28]: df +Out[28]: + a b +0 cd edc.rc +1 3 3 +2 d ef 4 +``` \ No newline at end of file diff --git a/md/179.md b/md/179.md index dc854b7c..bb6cd1c4 100644 --- a/md/179.md +++ b/md/179.md @@ -1,9 +1,33 @@ ```markdown @author jackzhenguo -@desc +@desc 使用map对列做特征工程 @tag @version @date 2020/03/17 ``` - \ No newline at end of file + +**使用map对列做特征工程** + +先生成数据: + +```python +d = { +"gender":["male", "female", "male","female"], +"color":["red", "green", "blue","green"], +"age":[25, 30, 15, 32] +} + +df = pd.DataFrame(d) +df +``` + + + +在 `gender` 列上,使用 map 方法,快速完成如下映射: + +```python +d = {"male": 0, "female": 1} +df["gender2"] = df["gender"].map(d) +``` + From cec2c5d5bfe25d9d2c3a59ee4dfc1155788c527d Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Sat, 5 Dec 2020 08:12:17 +0800 Subject: [PATCH 12/85] 180-181 --- README.md | 2 ++ md/180.md | 23 +++++++++++++++++++++-- md/181.md | 18 ++++++++++++++++-- 3 files changed, 39 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a2a6fda6..07b48670 100644 --- a/README.md +++ b/README.md @@ -258,6 +258,8 @@ | 177 | [数据分析神器:deepnote](./md/177.md) | deepnote | v1.0 | ⭐️⭐⭐ | | 178 | [apply 方法去掉特殊字符](./md/178.md) | pandas apply | v1.0 | ⭐️⭐⭐ | | 179 | [使用map对列做特征工程](./md/179.md) | pandas map | v1.0 | ⭐️⭐⭐ | +| 180 | [category列转数值](./md/180.md) | pandas category | v1.0 | ⭐️⭐⭐ | +| 181 | [rank排名](./md/181.md) | pandas rank | v1.0 | ⭐️⭐⭐ | ### Python 实战 diff --git a/md/180.md b/md/180.md index 1b90c889..e61fa1b8 100644 --- a/md/180.md +++ b/md/180.md @@ -1,9 +1,28 @@ ```markdown @author jackzhenguo -@desc +@desc category列转数值 @tag @version @date 2020/03/18 ``` - \ No newline at end of file + +第 180 个小例子:**category列转数值** + +某列取值只可能为有限个枚举值,往往需要转为数值,使用get_dummies,或自己定义函数: + +```python +pd.get_dummies(df['a']) +``` + +自定义函数,结合 apply: + +```python +def c2n(x): + if x=='A': + return 95 + if x=='B': + return 80 + +df['a'].apply(c2n) +``` \ No newline at end of file diff --git a/md/181.md b/md/181.md index f40d1e6b..986d8979 100644 --- a/md/181.md +++ b/md/181.md @@ -1,9 +1,23 @@ ```markdown @author jackzhenguo -@desc +@desc rank排名 @tag @version @date 2020/03/19 ``` - \ No newline at end of file + +第 181 个小例子:**rank排名** + +rank 方法,生成数值排名,ascending 为False,考试分数越高,排名越靠前: + +```python +In [36]: df = pd.DataFrame({'a':[46, 98,99, 60, 43]} )) +In [53]: df['a'].rank(ascending=False) +Out[53]: +0 4.0 +1 2.0 +2 1.0 +3 3.0 +4 5.0 +``` \ No newline at end of file From c71f26070eb30c7a48f537edde0083fa46adc020 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Sun, 6 Dec 2020 11:34:41 +0800 Subject: [PATCH 13/85] 182 --- README.md | 1 + img/182-1.jpg | Bin 0 -> 72747 bytes img/182-2.jpg | Bin 0 -> 45341 bytes md/182.md | 36 ++++++++++++++++++++++++++++++++++-- 4 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 img/182-1.jpg create mode 100644 img/182-2.jpg diff --git a/README.md b/README.md index 07b48670..5ce00c4e 100644 --- a/README.md +++ b/README.md @@ -260,6 +260,7 @@ | 179 | [使用map对列做特征工程](./md/179.md) | pandas map | v1.0 | ⭐️⭐⭐ | | 180 | [category列转数值](./md/180.md) | pandas category | v1.0 | ⭐️⭐⭐ | | 181 | [rank排名](./md/181.md) | pandas rank | v1.0 | ⭐️⭐⭐ | +| 182 | [对数据下采样,调整小时步长为天](./md/182.md) | pandas resample | v1.0 | ⭐️⭐⭐ | ### Python 实战 diff --git a/img/182-1.jpg b/img/182-1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..73f93a33f30e4018e88b8448c511d860a24c14ae GIT binary patch literal 72747 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 Date: Thu, 10 Dec 2020 21:05:16 +0800 Subject: [PATCH 14/85] 182-184 --- README.md | 3 +++ for loop | 5 ----- md/182.md | 25 +++++++++++++++++++++-- md/183.md | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- md/184.md | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++--- 5 files changed, 137 insertions(+), 12 deletions(-) delete mode 100644 for loop diff --git a/README.md b/README.md index 07b48670..22e2f348 100644 --- a/README.md +++ b/README.md @@ -260,6 +260,9 @@ | 179 | [使用map对列做特征工程](./md/179.md) | pandas map | v1.0 | ⭐️⭐⭐ | | 180 | [category列转数值](./md/180.md) | pandas category | v1.0 | ⭐️⭐⭐ | | 181 | [rank排名](./md/181.md) | pandas rank | v1.0 | ⭐️⭐⭐ | +| 182 | [完成数据下采样,调整步长由小时为天](./md/182.md) | pandas resample | v1.0 | ⭐️⭐⭐ | +| 183 | [如何用 Pandas 快速生成时间序列数据](/md/183.md) | pandas util | v1.0 | ⭐️⭐⭐ | +| 184 | [如何快速找出 DataFrame 所有列 null 值个数](/md/184.md) | pandas isnull sum | v1.0 | ⭐️⭐⭐ | ### Python 实战 diff --git a/for loop b/for loop deleted file mode 100644 index 93f5411c..00000000 --- a/for loop +++ /dev/null @@ -1,5 +0,0 @@ -x = [1,2,3,4] #we will use this as counter - -for y in x ; - print(y) - print("Hello World") # will print hello world 4 times diff --git a/md/182.md b/md/182.md index f47d021c..58b2a054 100644 --- a/md/182.md +++ b/md/182.md @@ -1,9 +1,30 @@ ```markdown @author jackzhenguo -@desc +@desc **完成数据下采样,调整步长由小时为天** @tag @version @date 2020/03/20 ``` - \ No newline at end of file + +第 182 个小例子:**完成数据下采样,调整步长由小时为天** + +步长为小时的时间序列数据,有没有小技巧,快速完成下采样,采集成按天的数据呢?先生成测试数据: + +```python +import pandas as pd +import numpy as np +df = pd.DataFrame(np.random.randint(1,10,size=(240,3)), \ +columns = ['商品编码','商品销量','商品库存']) +df.index = pd.util.testing.makeDateIndex(240,freq='H') +df +``` + +使用 resample 方法,合并为天(D) + +```python +day_df = df.resample("D")["商品销量"].sum().to_frame() +day_df +``` + +结果如下,10行,240小时,正好为 10 days \ No newline at end of file diff --git a/md/183.md b/md/183.md index c3f30e87..23eb43a4 100644 --- a/md/183.md +++ b/md/183.md @@ -1,9 +1,64 @@ ```markdown @author jackzhenguo -@desc +@desc 如何用 Pandas 快速生成时间序列数据? @tag @version @date 2020/03/21 ``` - \ No newline at end of file + +### 第183个小例子:如何用 Pandas 快速生成时间序列数据? + +与时间序列相关的问题,平时还是挺常见的。 + +介绍一个小技巧,使用 `pd.util.testing.makeTimeDataFrame` + +只需要一行代码,便能生成一个 index 为时间序列的 DataFrame: + +```python +import pandas as pd + +pd.util.testing.makeTimeDataFrame(10) +``` + +结果: + +```markdown +A B C D +2000-01-03 0.932776 -1.509302 0.285825 0.941729 +2000-01-04 0.565230 -1.598449 -0.786274 -0.221476 +2000-01-05 -0.152743 -0.392053 -0.127415 0.841907 +2000-01-06 1.321998 -0.927537 0.205666 -0.041110 +2000-01-07 0.324359 1.512743 0.553633 0.392068 +2000-01-10 -0.566780 0.201565 -0.801172 -1.165768 +2000-01-11 -0.259348 -0.035893 -1.363496 0.475600 +2000-01-12 -0.341700 -1.438874 -0.260598 -0.283653 +2000-01-13 -1.085183 0.286239 2.475605 -1.068053 +2000-01-14 -0.057128 -0.602625 0.461550 0.033472 +``` + +时间序列的间隔还能配置,默认的 A B C D 四列也支持配置。 + +```python +import numpy as np + +df = pd.DataFrame(np.random.randint(1,1000,size=(10,3)), + columns = ['商品编码','商品销量','商品库存']) +df.index = pd.util.testing.makeDateIndex(10,freq='H') +``` + +结果: + +```markdown + 商品编码 商品销量 商品库存 +2000-01-01 00:00:00 99 264 98 +2000-01-01 01:00:00 294 406 827 +2000-01-01 02:00:00 89 221 931 +2000-01-01 03:00:00 962 153 956 +2000-01-01 04:00:00 538 46 374 +2000-01-01 05:00:00 226 973 750 +2000-01-01 06:00:00 193 866 7 +2000-01-01 07:00:00 300 129 474 +2000-01-01 08:00:00 966 372 835 +2000-01-01 09:00:00 687 493 910 +``` \ No newline at end of file diff --git a/md/184.md b/md/184.md index 19de42e2..c27c3235 100644 --- a/md/184.md +++ b/md/184.md @@ -1,9 +1,60 @@ ```markdown @author jackzhenguo -@desc +@desc 如何快速找出 DataFrame 所有列 null 值个数 @tag @version -@date 2020/03/22 +@date 2020/12/10 ``` - \ No newline at end of file + +### 第184个小例子:如何快速找出 DataFrame 所有列 null 值个数? + +实际使用的数据,null 值在所难免。如何快速找出 DataFrame 所有列的 null 值个数? + +使用 Pandas 能非常方便实现,只需下面一行代码: + +```python +data.isnull().sum() +``` + +data.isnull(): 逐行逐元素查找元素值是否为 null. + +.sum(): 默认在 axis 为 0 上完成一次 reduce 求和。 + +上手实际数据,使用这个小技巧,很爽。 + +读取泰坦尼克预测生死的数据集 + +```python +data = pd.read_csv('titanicdataset-traincsv/train.csv') +``` + +检查 null 值: + +```python +data.isnull().sum() +``` + +结果: + +```python +PassengerId 0 +Survived 0 +Pclass 0 +Name 0 +Sex 0 +Age 177 +SibSp 0 +Parch 0 +Ticket 0 +Fare 0 +Cabin 687 +Embarked 2 +dtype: int64 +``` + +Age 列 177 个 null 值 + +Cabin 列 687 个 null 值 + +Embarked 列 2 个 null 值 \ No newline at end of file From d2c9a11bfc32278be951f12b26840b58db88edea Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Mon, 28 Dec 2020 23:42:21 +0800 Subject: [PATCH 15/85] 185-189 --- README.md | 7 +++++++ md/185.md | 28 ++++++++++++++++++++++++- md/186.md | 35 ++++++++++++++++++++++++++++++- md/187.md | 24 ++++++++++++++++++++- md/188.md | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- md/189.md | 42 ++++++++++++++++++++++++++++++++++++- 6 files changed, 193 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 09926ee9..a0bf3a03 100644 --- a/README.md +++ b/README.md @@ -263,6 +263,13 @@ | 182 | [完成数据下采样,调整步长由小时为天](./md/182.md) | pandas resample | v1.0 | ⭐️⭐⭐ | | 183 | [如何用 Pandas 快速生成时间序列数据](/md/183.md) | pandas util | v1.0 | ⭐️⭐⭐ | | 184 | [如何快速找出 DataFrame 所有列 null 值个数](/md/184.md) | pandas isnull sum | v1.0 | ⭐️⭐⭐ | +| 185 | [重新排序 DataFrame 的列](/md/185.md) | pandas dataframe | v1.0 | ⭐️⭐⭐ | +| 186 | [使用 count 统计词条 出现次数](/md/186.md) | pandas count | v1.0 | ⭐️⭐⭐ | +| 187 | [split 求时分(HH:mm)的分钟差](/md/187.md) | pandas split | v1.0 | ⭐️⭐⭐ | +| 188 | [melt透视数据小技巧](/md/188.md) | pandas melt | v1.0 | ⭐️⭐⭐ | +| 189 | [pivot 透视小技巧](/md/189.md) | pandas melt | v1.0 | ⭐️⭐⭐ | + + ### Python 实战 diff --git a/md/185.md b/md/185.md index 56f2c1d2..9c798e5d 100644 --- a/md/185.md +++ b/md/185.md @@ -6,4 +6,30 @@ @version @date 2020/03/23 ``` - \ No newline at end of file + +### 第185个小例子:重新排序 DataFrame 的列 + +下面给出 2 种简便的小技巧。先构造数据: + +```python +df = pd.DataFrame(np.random.randint(0,20,size=(5,7)) \ +,columns=list('ABCDEFG')) +df +``` + +方法1,直接了当: + +```python +df2 = df[["A", "C", "D", "F", "E", "G", "B"]] +df2 +``` + +方法2,也了解下: + +```python +cols = df.columns[[0, 2 , 3, 5, 4, 6, 1]] +df3 = df[cols] +df3 +``` + +也能得到方法1的结果。 \ No newline at end of file diff --git a/md/186.md b/md/186.md index 4557b5ee..16da4809 100644 --- a/md/186.md +++ b/md/186.md @@ -6,4 +6,37 @@ @version @date 2020/03/24 ``` - \ No newline at end of file + +### 第186个小例子:使用 count 统计词条 出现次数 + +读入 IMDB-Movie-Data 数据集,1000行数据: + +```python +df = pd.read_csv("../input/imdb-data/IMDB-Movie-Data.csv") +df['Title'] +``` + +打印 `Title` 列: + +```python +0 Guardians of the Galaxy +1 Prometheus +2 Split +3 Sing +4 Suicide Squad + ... +995 Secret in Their Eyes +996 Hostel: Part II +997 Step Up 2: The Streets +998 Search Party +999 Nine Lives +Name: Title, Length: 1000, dtype: object +``` + +标题是由几个单词组成,用空格分隔。 + +```python +df["words_count"] = df["Title"].str.count(" ") + 1 +df[["Title","words_count"]] +``` + diff --git a/md/187.md b/md/187.md index e14ce6b1..4e6308b5 100644 --- a/md/187.md +++ b/md/187.md @@ -6,4 +6,26 @@ @version @date 2020/03/25 ``` - \ No newline at end of file + +### 第187个小例子:split 求时分(HH:mm)的分钟差 + +split 是更加高效的实现,同样需要先转化为 str 类型: + +```python +df['a'] = df['a'].astype(str) +df['b'] = df['b'].astype(str) +``` + +其次 split: + +```python +df['asplit'] = df['a'].str.split(':') +df['bsplit'] = df['b'].str.split(':') +``` + +使用 apply 操作每个元素,转化为分钟数: + +```python +df['amins'] = df['asplit'].apply(lambda x: int(x[0])*60 + int(x[1])) +df['bmins'] = df['bsplit'].apply(lambda x: int(x[0])*60 + int(x[1])) +``` \ No newline at end of file diff --git a/md/188.md b/md/188.md index 83c353b5..313d8538 100644 --- a/md/188.md +++ b/md/188.md @@ -6,4 +6,64 @@ @version @date 2020/03/26 ``` - \ No newline at end of file + +### 第188个小例子:melt透视数据小技巧 + +melt 方法固定某列为一个维度,组合其他列名为另一个维度,实现宽表融化为长表: + +```python + zip_code factory warehouse retail +0 12345 100 200 1 +1 56789 400 300 2 +2 101112 500 400 3 +3 131415 600 500 4 +``` + +固定列`zip_code`,组合`factory`,`warehouse`,`retail` 三个列名为一个维度,按照这种方法凑齐两个维度后,数据一定变长。 + +pandas 的 melt 方法演示如下: + +```python +In [49]: df = df.melt(id_vars = "zip_code") +``` + +若melt方法,参数`value_vars`不赋值,默认剩余所有列都是value_vars,所以结果如下: + +```python + zip_code variable value +0 12345 factory 100 +1 56789 factory 400 +2 101112 factory 500 +3 131415 factory 600 +4 12345 warehouse 200 +5 56789 warehouse 300 +6 101112 warehouse 400 +7 131415 warehouse 500 +8 12345 retail 1 +9 56789 retail 2 +10 101112 retail 3 +11 131415 retail 4 +``` + +若只想查看 factory 和 retail,则 `value_vars` 赋值为它们即可: + +```python +In [62]: df_melt2 = df.melt(id_vars = "zip_code",value_vars=['factory','reta + ...: il']) +``` + +结果: + +```python +zip_code variable value +0 12345 factory 100 +1 56789 factory 400 +2 101112 factory 500 +3 131415 factory 600 +4 12345 retail 1 +5 56789 retail 2 +6 101112 retail 3 +7 131415 retail 4 +``` + +melt 透视数据后,因为组合多个列为1列,所以数据一定变长。 \ No newline at end of file diff --git a/md/189.md b/md/189.md index 4ba24e01..c4dcb6a0 100644 --- a/md/189.md +++ b/md/189.md @@ -6,4 +6,44 @@ @version @date 2020/03/27 ``` - \ No newline at end of file + +### 第189个小例子: pivot 透视小技巧 + +melt 是融化数据,而 `pivot` 结冰数据,它们是一对互逆操作。 + +这是上面 melt 后的数据: + +```python +zip_code variable value +0 12345 factory 100 +1 56789 factory 400 +2 101112 factory 500 +3 131415 factory 600 +4 12345 retail 1 +5 56789 retail 2 +6 101112 retail 3 +7 131415 retail 4 +``` + +现在想要还原为: + +```python +variable factory retail +zip_code +12345 100 1 +56789 400 2 +101112 500 3 +131415 600 4 +``` + +如何实现? + +使用 `pivot` 方法很容易做到: + +```python +df_melt2.pivot(index='zip_code',columns='variable') +``` + +index 设定第一个轴,为 zip_code,columns 设定哪些列或哪个列的不同取值组合为一个轴,此处设定为 variable 列,它一共有 2 种不同的取值,分别为 factory, retail,pivot 透视后变为列名,也就是 axis = 1 的轴 + +pivot 方法没有聚合功能,它的升级版为 `pivot_table` 方法,能对数据聚合。 \ No newline at end of file From 508c5f603c450f3808acf35caf285c226ca743e1 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Wed, 30 Dec 2020 23:35:58 +0800 Subject: [PATCH 16/85] update gitignore --- .github/FUNDING.yml | 12 ------------ .gitignore | 2 +- 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 4b16f597..00000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,12 +0,0 @@ -# These are supported funding model platforms - -github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] -patreon: # Replace with a single Patreon username -open_collective: # Replace with a single Open Collective username -ko_fi: # Replace with a single Ko-fi username -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry -liberapay: # Replace with a single Liberapay username -issuehunt: # Replace with a single IssueHunt username -otechie: # Replace with a single Otechie username -custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/.gitignore b/.gitignore index 2bac022e..da4f18b4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ .vscode .github img/*.html - +notebook From cead3549146b70ce9f53b6391499a7beb4459073 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Thu, 31 Dec 2020 00:08:41 +0800 Subject: [PATCH 17/85] 190-191 --- README.md | 2 ++ md/190.md | 24 ++++++++++++++++++++++-- md/191.md | 35 +++++++++++++++++++++++++++++++++-- 3 files changed, 57 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a0bf3a03..825e2bb8 100644 --- a/README.md +++ b/README.md @@ -268,6 +268,8 @@ | 187 | [split 求时分(HH:mm)的分钟差](/md/187.md) | pandas split | v1.0 | ⭐️⭐⭐ | | 188 | [melt透视数据小技巧](/md/188.md) | pandas melt | v1.0 | ⭐️⭐⭐ | | 189 | [pivot 透视小技巧](/md/189.md) | pandas melt | v1.0 | ⭐️⭐⭐ | +| 190 | [p随机读取文件的K行,生成N个](/md/189.md) | pandas sample | v1.0 | ⭐️⭐⭐ | +| 191 | [格式化Pandas的时间列](/md/189.md) | pandas apply | v1.0 | ⭐️⭐⭐⭐ | diff --git a/md/190.md b/md/190.md index d76fcb7d..fe31f6d1 100644 --- a/md/190.md +++ b/md/190.md @@ -1,9 +1,29 @@ ```markdown @author jackzhenguo -@desc +@desc 随机读取文件的K行,生成N个 @tag @version @date 2020/03/28 ``` - \ No newline at end of file + +### 第190个小例子: 随机读取文件的K行,生成N个 + +```python +def random_lines_save(filename,gen_file_cnt=10): + """ + 随机选取文件的某些行并保存,想要生成这类文件的个数由参数 + @param: gen_file_cnt 指定 + + @param: filename 读入文件的完整路径 + @param: gen_file_cnt 想要产生的文件个数 + """ + df = pd.read_excel(filename) + for i in range(gen_file_cnt): + n = random.randint(1,len(df)) + dfs = df.sample(n) + dfs.to_excel(str(n)+".xlsx",index=False) + print(str(n)+".xlsx") +``` + +这是一个很实用的函数,用于随机生成K行N个文件,使用场景:原来的文件行数较多,想从中随机提取组合N个文件时。 \ No newline at end of file diff --git a/md/191.md b/md/191.md index c1de5a3b..1178ad58 100644 --- a/md/191.md +++ b/md/191.md @@ -1,9 +1,40 @@ ```markdown @author jackzhenguo -@desc +@desc 格式化Pandas的时间列 @tag @version @date 2020/03/29 ``` - \ No newline at end of file + +### 第191个小例子: 格式化Pandas的时间列 + + + +```python +import pandas as pd +from datetime import datetime, time + +def series_dt_fmt(s:pd.Series,fmt:str)-> pd.Series: + """ + 根据fmt格式,格式化s列 + s列是datetime 或者 datetime的str类型,如'2020-12-30 11:44:00' + """ + st = pd.to_datetime(s) + return st.apply(lambda t: datetime.strftime(t,fmt)) +``` + +别看只有两行代码,却能实现更加丰富的功能,相比pandas,支持直接返回时分等格式: + +```python +s = pd.Series(['2020-12-30 11:44:00','2020-12-30 11:20:10']) + +# 只保留时分 +fmt = '%H:%M' +series_dt_fmt(s,fmt) + +# 输出结果 +0 11:44 +1 11:20 +dtype: object +``` \ No newline at end of file From 079c36ea5e1ddd8032665515e3b98fb5290759a3 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Sat, 20 Feb 2021 21:21:38 +0800 Subject: [PATCH 18/85] 192 --- README.md | 5 +++-- md/193.md | 28 +++++++++++++++++++++++++++- md/__pycache__/batch.cpython-37.pyc | Bin 1203 -> 0 bytes 3 files changed, 30 insertions(+), 3 deletions(-) delete mode 100644 md/__pycache__/batch.cpython-37.pyc diff --git a/README.md b/README.md index 825e2bb8..c2d27e50 100644 --- a/README.md +++ b/README.md @@ -268,8 +268,9 @@ | 187 | [split 求时分(HH:mm)的分钟差](/md/187.md) | pandas split | v1.0 | ⭐️⭐⭐ | | 188 | [melt透视数据小技巧](/md/188.md) | pandas melt | v1.0 | ⭐️⭐⭐ | | 189 | [pivot 透视小技巧](/md/189.md) | pandas melt | v1.0 | ⭐️⭐⭐ | -| 190 | [p随机读取文件的K行,生成N个](/md/189.md) | pandas sample | v1.0 | ⭐️⭐⭐ | -| 191 | [格式化Pandas的时间列](/md/189.md) | pandas apply | v1.0 | ⭐️⭐⭐⭐ | +| 190 | [p随机读取文件的K行,生成N个](/md/190.md) | pandas sample | v1.0 | ⭐️⭐⭐ | +| 191 | [格式化Pandas的时间列](/md/191.md) | pandas apply | v1.0 | ⭐️⭐⭐⭐ | +| 192 | [创建SQLite连接](/md/192.md) | pandas apply | v1.0 | ⭐️⭐⭐⭐ | diff --git a/md/193.md b/md/193.md index 03608d08..dfb459e4 100644 --- a/md/193.md +++ b/md/193.md @@ -6,4 +6,30 @@ @version @date 2020/03/31 ``` - \ No newline at end of file + +### 192: 创建SQLite连接 + +编写一个Python程序,创建一个SQLite数据库,并与数据库连接,打印SQLite数据库的版本 + +一种解决方法: + +```python +import sqlite3 +try: + sqlite_Connection = sqlite3.connect('temp.db') + conn = sqlite_Connection.cursor() + print("连接到 SQLite.") + sqlite_select_Query = "select sqlite_version();" + conn.execute(sqlite_select_Query) + record = conn.fetchall() + print("SQLite 数据库的版本是 ", record) + conn.close() +except sqlite3.Error as error: + print("连接到SQLite出错:", error) +finally: + if (sqlite_Connection): + sqlite_Connection.close() + print("关闭SQLite连接") +``` + +以上就是第192例,希望对你有用,欢迎点赞支持。 \ No newline at end of file diff --git a/md/__pycache__/batch.cpython-37.pyc b/md/__pycache__/batch.cpython-37.pyc deleted file mode 100644 index a5bd4868e2d00e50f42160cfcd4b7c4b9ebb03b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1203 zcmZ`&OOG5i5Vqa!$8@rr2?@Iq0%uK?+<5hlm?u=LUZO331?m_)0Wr{z6Vv^%6itvE;9+t890@MkFJd|)mIEWARq*T4n;3OOSe}~KwB#;TDbrTDh)>mCh~L# zX8k3=Nu`OV(0XY8CYduJf*aR(Kn0((cgbhFK$YKk+A)rxn?!Tt&%qi3)UY{w^m-GR z;M5h)si*zZz<7c$*n%!7CAwq0IaqA=2joNYF?rCt2T|c-v?ajXeM%!sk7w_PdwY9% ztPVtZT)bGvtz7>V=-=Y}qQTu^r_;kR3${Lqw(@9804HT3`=NDaX=U9rCb3tRmz6B6 zQ)?jeSf!w2Z@*M|td)c5022H7Ago)dw9x&IWmRq6TE|MO^X&;$4BEhcDr~4ahk#sJ zwtw6z;0#{E(7Bf0J4(Wfc?|;fIsjo^dWF5pcyO6*Q1u2x`c&bg>HF$381?c$uz}tt z!W9JMwC`JgG!kVp8d+A>3Mp=@Z?)P=qCN9JwV*ClTTpN_FU4UdZ{e;QFThy Date: Wed, 24 Feb 2021 23:27:00 +0800 Subject: [PATCH 19/85] 193# --- README.md | 6 +++--- md/192.md | 28 +++++++++++++++++++++++++++- md/193.md | 38 +++++++++++++++++--------------------- 3 files changed, 47 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index c2d27e50..327c94b9 100644 --- a/README.md +++ b/README.md @@ -269,9 +269,9 @@ | 188 | [melt透视数据小技巧](/md/188.md) | pandas melt | v1.0 | ⭐️⭐⭐ | | 189 | [pivot 透视小技巧](/md/189.md) | pandas melt | v1.0 | ⭐️⭐⭐ | | 190 | [p随机读取文件的K行,生成N个](/md/190.md) | pandas sample | v1.0 | ⭐️⭐⭐ | -| 191 | [格式化Pandas的时间列](/md/191.md) | pandas apply | v1.0 | ⭐️⭐⭐⭐ | -| 192 | [创建SQLite连接](/md/192.md) | pandas apply | v1.0 | ⭐️⭐⭐⭐ | - +| 191 | [格式化Pandas的时间列](md/191.md) | pandas apply | v1.0 | ⭐️⭐⭐⭐ | +| 192 | [创建SQLite连接](md/192.md) | SQLite | v1.0 | ⭐️⭐⭐⭐ | +| 193 | [json对象转python对象](md/192.md) | python json | v1.0 | ⭐️⭐⭐⭐ | ### Python 实战 diff --git a/md/192.md b/md/192.md index de3f35db..d36d0ae8 100644 --- a/md/192.md +++ b/md/192.md @@ -6,4 +6,30 @@ @version @date 2020/03/30 ``` - \ No newline at end of file + +### 192: 创建SQLite连接 + +编写一个Python程序,创建一个SQLite数据库,并与数据库连接,打印SQLite数据库的版本 + +一种解决方法: + +```python +import sqlite3 +try: + sqlite_Connection = sqlite3.connect('temp.db') + conn = sqlite_Connection.cursor() + print("连接到 SQLite.") + sqlite_select_Query = "select sqlite_version();" + conn.execute(sqlite_select_Query) + record = conn.fetchall() + print("SQLite 数据库的版本是 ", record) + conn.close() +except sqlite3.Error as error: + print("连接到SQLite出错:", error) +finally: + if (sqlite_Connection): + sqlite_Connection.close() + print("关闭SQLite连接") +``` + +以上就是第192例,希望对你有用,欢迎点赞支持。 \ No newline at end of file diff --git a/md/193.md b/md/193.md index dfb459e4..150a13ff 100644 --- a/md/193.md +++ b/md/193.md @@ -7,29 +7,25 @@ @date 2020/03/31 ``` -### 192: 创建SQLite连接 +### 193 json对象转python对象 +python的`json`模块`loads`方法将json对象转为字典,如下所示: -编写一个Python程序,创建一个SQLite数据库,并与数据库连接,打印SQLite数据库的版本 +```python +In [1]: import json -一种解决方法: +In [2]: json_obj = '{ "Name":"David", "Class":"I", "Age":6 }' -```python -import sqlite3 -try: - sqlite_Connection = sqlite3.connect('temp.db') - conn = sqlite_Connection.cursor() - print("连接到 SQLite.") - sqlite_select_Query = "select sqlite_version();" - conn.execute(sqlite_select_Query) - record = conn.fetchall() - print("SQLite 数据库的版本是 ", record) - conn.close() -except sqlite3.Error as error: - print("连接到SQLite出错:", error) -finally: - if (sqlite_Connection): - sqlite_Connection.close() - print("关闭SQLite连接") +In [3]: python_obj = json.loads(json_obj) + +In [4]: type(python_obj) +Out[4]: dict ``` -以上就是第192例,希望对你有用,欢迎点赞支持。 \ No newline at end of file +打印查看相关属性 +```python +print("\nJSON data:") +print(python_obj) +print("\nName: ",python_obj["Name"]) +print("Class: ",python_obj["Class"]) +print("Age: ",python_obj["Age"]) +``` \ No newline at end of file From a98f443ab3dc13316e7a1b8079a573bb5acf6596 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Fri, 26 Feb 2021 22:31:45 +0800 Subject: [PATCH 20/85] delete files --- V3.md | 7239 --------------------------------------------------- _config.yml | 1 - 2 files changed, 7240 deletions(-) delete mode 100644 V3.md delete mode 100644 _config.yml diff --git a/V3.md b/V3.md deleted file mode 100644 index f450ca22..00000000 --- a/V3.md +++ /dev/null @@ -1,7239 +0,0 @@ -
- - - - - -
-
- -
- -
- -## 介绍 - -告别枯燥,告别枯燥,致力于打造 Python 经典小例子、小案例。 - -
- -
- -
- -
- -如果转载本库小例子、小案例,请备注下方链接: - -Python小例子 https://github.com/jackzhenguo/python-small-examples - - - -## 贡献 - -欢迎贡献小例子到此库 - -## License - -允许按照要求转载,但禁止用于任何商用目的。 - -## 小例子 - -### 一、 数字 - -#### 1 求绝对值 - -绝对值或复数的模 - -```python -In [1]: abs(-6) -Out[1]: 6 -``` - -#### 2 进制转化 - -十进制转换为二进制: -```python -In [2]: bin(10) -Out[2]: '0b1010' -``` - -十进制转换为八进制: -```python -In [3]: oct(9) -Out[3]: '0o11' -``` - -十进制转换为十六进制: -```python -In [4]: hex(15) -Out[4]: '0xf' -``` - -#### 3 整数和ASCII互转 - -十进制整数对应的`ASCII字符` -```python -In [1]: chr(65) -Out[1]: 'A' -``` - -查看某个`ASCII字符`对应的十进制数 -```python -In [1]: ord('A') -Out[1]: 65 -``` - -#### 4 元素都为真检查 -所有元素都为真,返回 `True`,否则为`False` -```python -In [5]: all([1,0,3,6]) -Out[5]: False -``` -```python -In [6]: all([1,2,3]) -Out[6]: True -``` - -#### 5 元素至少一个为真检查  -至少有一个元素为真返回`True`,否则`False` -```python -In [7]: any([0,0,0,[]]) -Out[7]: False -``` - -```python -In [8]: any([0,0,1]) -Out[8]: True -``` - -#### 6 判断是真是假   -测试一个对象是True, 还是False. -```python -In [9]: bool([0,0,0]) -Out[9]: True - -In [10]: bool([]) -Out[10]: False - -In [11]: bool([1,0,1]) -Out[11]: True -``` - -#### 7 创建复数 - -创建一个复数 - -```python -In [1]: complex(1,2) -Out[1]: (1+2j) -``` - -#### 8 取商和余数   - -分别取商和余数 - -```python -In [1]: divmod(10,3) -Out[1]: (3, 1) -``` - -#### 9 转为浮点类型  - -将一个整数或数值型字符串转换为浮点数 - -```python -In [1]: float(3) -Out[1]: 3.0 -``` - -如果不能转化为浮点数,则会报`ValueError`: - -```python -In [2]: float('a') -# ValueError: could not convert string to float: 'a' -``` - -#### 10 转为整型   - -int(x, base =10) , x可能为字符串或数值,将x 转换为一个普通整数。如果参数是字符串,那么它可能包含符号和小数点。如果超出了普通整数的表示范围,一个长整数被返回。 - -```python -In [1]: int('12',16) -Out[1]: 18 -``` - -#### 11 次幂 - -base为底的exp次幂,如果mod给出,取余 - -```python -In [1]: pow(3, 2, 4) -Out[1]: 1 -``` - -#### 12 四舍五入 - -四舍五入,`ndigits`代表小数点后保留几位: - -```python -In [11]: round(10.0222222, 3) -Out[11]: 10.022 - -In [12]: round(10.05,1) -Out[12]: 10.1 -``` - -#### 13 链式比较 - -```python -i = 3 -print(1 < i < 3) # False -print(1 < i <= 3) # True -``` - -### 二、 字符串 - -#### 14 字符串转字节   -字符串转换为字节类型 - -```python -In [12]: s = "apple" - -In [13]: bytes(s,encoding='utf-8') -Out[13]: b'apple' -``` - -#### 15 任意对象转为字符串   -```python -In [14]: i = 100 - -In [15]: str(i) -Out[15]: '100' - -In [16]: str([]) -Out[16]: '[]' - -In [17]: str(tuple()) -Out[17]: '()' -``` - -#### 16 执行字符串表示的代码 - -将字符串编译成python能识别或可执行的代码,也可以将文字读成字符串再编译。 - -```python -In [1]: s = "print('helloworld')" - -In [2]: r = compile(s,"", "exec") - -In [3]: r -Out[3]: at 0x0000000005DE75D0, file "", line 1> - -In [4]: exec(r) -helloworld -``` -#### 17 计算表达式 - -将字符串str 当成有效的表达式来求值并返回计算结果取出字符串中内容 - -```python -In [1]: s = "1 + 3 +5" - ...: eval(s) - ...: -Out[1]: 9 -``` - -#### 18 字符串格式化  - -格式化输出字符串,format(value, format_spec)实质上是调用了value的__format__(format_spec)方法。 - -``` -In [104]: print("i am {0},age{1}".format("tom",18)) -i am tom,age18 -``` - -| 3.1415926 | {:.2f} | 3.14 | 保留小数点后两位 | -| ---------- | ------- | --------- | ---------------------------- | -| 3.1415926 | {:+.2f} | +3.14 | 带符号保留小数点后两位 | -| -1 | {:+.2f} | -1.00 | 带符号保留小数点后两位 | -| 2.71828 | {:.0f} | 3 | 不带小数 | -| 5 | {:0>2d} | 05 | 数字补零 (填充左边, 宽度为2) | -| 5 | {:x<4d} | 5xxx | 数字补x (填充右边, 宽度为4) | -| 10 | {:x<4d} | 10xx | 数字补x (填充右边, 宽度为4) | -| 1000000 | {:,} | 1,000,000 | 以逗号分隔的数字格式 | -| 0.25 | {:.2%} | 25.00% | 百分比格式 | -| 1000000000 | {:.2e} | 1.00e+09 | 指数记法 | -| 18 | {:>10d} | ' 18' | 右对齐 (默认, 宽度为10) | -| 18 | {:<10d} | '18 ' | 左对齐 (宽度为10) | -| 18 | {:^10d} | ' 18 ' | 中间对齐 (宽度为10) | - -### 三、 函数 - -#### 19 拿来就用的排序函数 - -排序: - -```python -In [1]: a = [1,4,2,3,1] - -In [2]: sorted(a,reverse=True) -Out[2]: [4, 3, 2, 1, 1] - -In [3]: a = [{'name':'xiaoming','age':18,'gender':'male'},{'name':' - ...: xiaohong','age':20,'gender':'female'}] -In [4]: sorted(a,key=lambda x: x['age'],reverse=False) -Out[4]: -[{'name': 'xiaoming', 'age': 18, 'gender': 'male'}, - {'name': 'xiaohong', 'age': 20, 'gender': 'female'}] -``` - -#### 20 求和函数 - -求和: - -```python -In [181]: a = [1,4,2,3,1] - -In [182]: sum(a) -Out[182]: 11 - -In [185]: sum(a,10) #求和的初始值为10 -Out[185]: 21 -``` - -#### 21 nonlocal用于内嵌函数中 - -关键词`nonlocal`常用于函数嵌套中,声明变量`i`为非局部变量; -如果不声明,`i+=1`表明`i`为函数`wrapper`内的局部变量,因为在`i+=1`引用(reference)时,i未被声明,所以会报`unreferenced variable`的错误。 - -```python -def excepter(f): - i = 0 - t1 = time.time() - def wrapper(): - try: - f() - except Exception as e: - nonlocal i - i += 1 - print(f'{e.args[0]}: {i}') - t2 = time.time() - if i == n: - print(f'spending time:{round(t2-t1,2)}') - return wrapper -``` - -#### 22 global 声明全局变量 - -先回答为什么要有`global`,一个变量被多个函数引用,想让全局变量被所有函数共享。有的伙伴可能会想这还不简单,这样写: - -```python -i = 5 -def f(): - print(i) - -def g(): - print(i) - pass - -f() -g() - -``` - -f和g两个函数都能共享变量`i`,程序没有报错,所以他们依然不明白为什么要用`global`. - -但是,如果我想要有个函数对`i`递增,这样: - -```python -def h(): - i += 1 - -h() -``` - -此时执行程序,bang, 出错了! 抛出异常:`UnboundLocalError`,原来编译器在解释`i+=1`时会把`i`解析为函数`h()`内的局部变量,很显然在此函数内,编译器找不到对变量`i`的定义,所以会报错。 - -`global`就是为解决此问题而被提出,在函数h内,显式地告诉编译器`i`为全局变量,然后编译器会在函数外面寻找`i`的定义,执行完`i+=1`后,`i`还为全局变量,值加1: - -```python -i = 0 -def h(): - global i - i += 1 - -h() -print(i) -``` - -#### 23 交换两元素 - -```python -def swap(a, b): - return b, a - - -print(swap(1, 0)) # (0,1) -``` - -#### 24 操作函数对象 - -```python -In [31]: def f(): - ...: print('i\'m f') - ...: - -In [32]: def g(): - ...: print('i\'m g') - ...: - -In [33]: [f,g][1]() -i'm g -``` - -创建函数对象的list,根据想要调用的index,方便统一调用。 - -#### 25 生成逆序序列 - -```python -list(range(10,-1,-1)) # [10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0] -``` - -第三个参数为负时,表示从第一个参数开始递减,终止到第二个参数(不包括此边界) - -#### 26 函数的五类参数使用例子 - -python五类参数:位置参数,关键字参数,默认参数,可变位置或关键字参数的使用。 - -```python -def f(a,*b,c=10,**d): - print(f'a:{a},b:{b},c:{c},d:{d}') -``` - -*默认参数`c`不能位于可变关键字参数`d`后.* - -调用f: - -```python -In [10]: f(1,2,5,width=10,height=20) -a:1,b:(2, 5),c:10,d:{'width': 10, 'height': 20} -``` - -可变位置参数`b`实参后被解析为元组`(2,5)`;而c取得默认值10; d被解析为字典. - -再次调用f: - -```python -In [11]: f(a=1,c=12) -a:1,b:(),c:12,d:{} -``` - -a=1传入时a就是关键字参数,b,d都未传值,c被传入12,而非默认值。 - -注意观察参数`a`, 既可以`f(1)`,也可以`f(a=1)` 其可读性比第一种更好,建议使用f(a=1)。如果要强制使用`f(a=1)`,需要在前面添加一个**星号**: - -```python -def f(*,a,**b): - print(f'a:{a},b:{b}') -``` - -此时f(1)调用,将会报错:`TypeError: f() takes 0 positional arguments but 1 was given` - -只能`f(a=1)`才能OK. - -说明前面的`*`发挥作用,它变为只能传入关键字参数,那么如何查看这个参数的类型呢?借助python的`inspect`模块: - -```python -In [22]: for name,val in signature(f).parameters.items(): - ...: print(name,val.kind) - ...: -a KEYWORD_ONLY -b VAR_KEYWORD -``` - -可看到参数`a`的类型为`KEYWORD_ONLY`,也就是仅仅为关键字参数。 - -但是,如果f定义为: - -```python -def f(a,*b): - print(f'a:{a},b:{b}') -``` - -查看参数类型: - -```python -In [24]: for name,val in signature(f).parameters.items(): - ...: print(name,val.kind) - ...: -a POSITIONAL_OR_KEYWORD -b VAR_POSITIONAL -``` - -可以看到参数`a`既可以是位置参数也可是关键字参数。 - -#### 27 使用slice对象 - -生成关于蛋糕的序列cake1: - -```python -In [1]: cake1 = list(range(5,0,-1)) - -In [2]: b = cake1[1:10:2] - -In [3]: b -Out[3]: [4, 2] - -In [4]: cake1 -Out[4]: [5, 4, 3, 2, 1] -``` - -再生成一个序列: - -```python -In [5]: from random import randint - ...: cake2 = [randint(1,100) for _ in range(100)] - ...: # 同样以间隔为2切前10个元素,得到切片d - ...: d = cake2[1:10:2] -In [6]: d -Out[6]: [75, 33, 63, 93, 15] -``` - -你看,我们使用同一种切法,分别切开两个蛋糕cake1,cake2. 后来发现这种切法`极为经典`,又拿它去切更多的容器对象。 - -那么,为什么不把这种切法封装为一个对象呢?于是就有了slice对象。 - -定义slice对象极为简单,如把上面的切法定义成slice对象: - -```python -perfect_cake_slice_way = slice(1,10,2) -#去切cake1 -cake1_slice = cake1[perfect_cake_slice_way] -cake2_slice = cake2[perfect_cake_slice_way] - -In [11]: cake1_slice -Out[11]: [4, 2] - -In [12]: cake2_slice -Out[12]: [75, 33, 63, 93, 15] -``` - -与上面的结果一致。 - -对于逆向序列切片,`slice`对象一样可行: - -```python -a = [1,3,5,7,9,0,3,5,7] -a_ = a[5:1:-1] - -named_slice = slice(5,1,-1) -a_slice = a[named_slice] - -In [14]: a_ -Out[14]: [0, 9, 7, 5] - -In [15]: a_slice -Out[15]: [0, 9, 7, 5] -``` - -频繁使用同一切片的操作可使用slice对象抽出来,复用的同时还能提高代码可读性。 - -#### 28 lambda 函数的动画演示 - -有些读者反映,`lambda`函数不太会用,问我能不能解释一下。 - -比如,下面求这个 `lambda`函数: - -```python -def max_len(*lists): - return max(*lists, key=lambda v: len(v)) -``` - -有两点疑惑: - -- 参数`v`的取值? -- `lambda`函数有返回值吗?如果有,返回值是多少? - -调用上面函数,求出以下三个最长的列表: - -```python -r = max_len([1, 2, 3], [4, 5, 6, 7], [8]) -print(f'更长的列表是{r}') -``` - -程序完整运行过程,动画演示如下: - - - - -结论: - -- 参数v的可能取值为`*lists`,也就是 `tuple` 的一个元素。 - -- `lambda`函数返回值,等于`lambda v`冒号后表达式的返回值。 - -### 四、 数据结构 - -#### 29 转为字典   - -创建数据字典 - -```python -In [1]: dict() -Out[1]: {} - -In [2]: dict(a='a',b='b') -Out[2]: {'a': 'a', 'b': 'b'} - -In [3]: dict(zip(['a','b'],[1,2])) -Out[3]: {'a': 1, 'b': 2} - -In [4]: dict([('a',1),('b',2)]) -Out[4]: {'a': 1, 'b': 2} -``` - -#### 30 冻结集合   - -创建一个不可修改的集合。 - -```python -In [1]: frozenset([1,1,3,2,3]) -Out[1]: frozenset({1, 2, 3}) -``` - -因为不可修改,所以没有像`set`那样的`add`和`pop`方法 - -#### 31 转为集合类型 - -返回一个set对象,集合内不允许有重复元素: - -```python -In [159]: a = [1,4,2,3,1] - -In [160]: set(a) -Out[160]: {1, 2, 3, 4} -``` - -#### 32 转为切片对象 - -*class* slice(*start*, *stop*[, *step*]) - -返回一个表示由 range(start, stop, step) 所指定索引集的 slice对象,它让代码可读性、可维护性变好。 - -```python -In [1]: a = [1,4,2,3,1] - -In [2]: my_slice_meaning = slice(0,5,2) - -In [3]: a[my_slice_meaning] -Out[3]: [1, 2, 1] -``` - -#### 33 转元组 - - `tuple()` 将对象转为一个不可变的序列类型 - - ```python - In [16]: i_am_list = [1,3,5] - In [17]: i_am_tuple = tuple(i_am_list) - In [18]: i_am_tuple - Out[18]: (1, 3, 5) - ``` - -### 五、 类和对象 -#### 34 是否可调用   -检查对象是否可被调用 - -```python -In [1]: callable(str) -Out[1]: True - -In [2]: callable(int) -Out[2]: True -``` - -```python -In [18]: class Student(): - ...: def __init__(self,id,name): - ...: self.id = id - ...: self.name = name - ...: def __repr__(self): - ...: return 'id = '+self.id +', name = '+self.name - ... - -In [19]: xiaoming = Student('001','xiaoming') - -In [20]: callable(xiaoming) -Out[20]: False -``` -如果能调用`xiaoming()`, 需要重写`Student`类的`__call__`方法: - -```python -In [1]: class Student(): - ...: def __init__(self,id,name): - ...: self.id = id - ...: self.name = name - ...: def __repr__(self): - ...: return 'id = '+self.id +', name = '+self.name - ...: def __call__(self): - ...: print('I can be called') - ...: print(f'my name is {self.name}') - ...: - -In [2]: t = Student('001','xiaoming') - -In [3]: t() -I can be called -my name is xiaoming -``` - -#### 35 ascii 展示对象   - -调用对象的 `__repr__` 方法,获得该方法的返回值,如下例子返回值为字符串 - -```python ->>> class Student(): - def __init__(self,id,name): - self.id = id - self.name = name - def __repr__(self): - return 'id = '+self.id +', name = '+self.name -``` -调用: -```python ->>> xiaoming = Student(id='1',name='xiaoming') ->>> xiaoming -id = 1, name = xiaoming ->>> ascii(xiaoming) -'id = 1, name = xiaoming' -``` - -#### 36 类方法  - -`classmethod` 装饰器对应的函数不需要实例化,不需要 `self `参数,但第一个参数需要是表示自身类的 cls 参数,可以来调用类的属性,类的方法,实例化对象等。 - -```python -In [1]: class Student(): - ...: def __init__(self,id,name): - ...: self.id = id - ...: self.name = name - ...: def __repr__(self): - ...: return 'id = '+self.id +', name = '+self.name - ...: @classmethod - ...: def f(cls): - ...: print(cls) -``` - -#### 37 动态删除属性   - -删除对象的属性 - -```python -In [1]: delattr(xiaoming,'id') - -In [2]: hasattr(xiaoming,'id') -Out[2]: False -``` - - -#### 38 一键查看对象所有方法  - -不带参数时返回`当前范围`内的变量、方法和定义的类型列表;带参数时返回`参数`的属性,方法列表。 - -```python -In [96]: dir(xiaoming) -Out[96]: -['__class__', - '__delattr__', - '__dict__', - '__dir__', - '__doc__', - '__eq__', - '__format__', - '__ge__', - '__getattribute__', - '__gt__', - '__hash__', - '__init__', - '__init_subclass__', - '__le__', - '__lt__', - '__module__', - '__ne__', - '__new__', - '__reduce__', - '__reduce_ex__', - '__repr__', - '__setattr__', - '__sizeof__', - '__str__', - '__subclasshook__', - '__weakref__', - - 'name'] -``` - -#### 39 动态获取对象属性  - -获取对象的属性 - -```python -In [1]: class Student(): - ...: def __init__(self,id,name): - ...: self.id = id - ...: self.name = name - ...: def __repr__(self): - ...: return 'id = '+self.id +', name = '+self.name - -In [2]: xiaoming = Student(id='001',name='xiaoming') -In [3]: getattr(xiaoming,'name') # 获取xiaoming这个实例的name属性值 -Out[3]: 'xiaoming' -``` - -#### 40 对象是否有这个属性 - -```python -In [1]: class Student(): - ...: def __init__(self,id,name): - ...: self.id = id - ...: self.name = name - ...: def __repr__(self): - ...: return 'id = '+self.id +', name = '+self.name - -In [2]: xiaoming = Student(id='001',name='xiaoming') -In [3]: hasattr(xiaoming,'name') -Out[3]: True - -In [4]: hasattr(xiaoming,'address') -Out[4]: False -``` - -#### 41 对象门牌号  - -返回对象的内存地址 - -```python -In [1]: id(xiaoming) -Out[1]: 98234208 -``` - -#### 42 isinstance - -判断*object*是否为类*classinfo*的实例,是返回true - -```python -In [1]: class Student(): - ...: def __init__(self,id,name): - ...: self.id = id - ...: self.name = name - ...: def __repr__(self): - ...: return 'id = '+self.id +', name = '+self.name - -In [2]: xiaoming = Student(id='001',name='xiaoming') - -In [3]: isinstance(xiaoming,Student) -Out[3]: True -``` - -#### 43 父子关系鉴定 - -```python -In [1]: class undergraduate(Student): - ...: def studyClass(self): - ...: pass - ...: def attendActivity(self): - ...: pass - -In [2]: issubclass(undergraduate,Student) -Out[2]: True - -In [3]: issubclass(object,Student) -Out[3]: False - -In [4]: issubclass(Student,object) -Out[4]: True -``` - -如果class是classinfo元组中某个元素的子类,也会返回True - -```python -In [1]: issubclass(int,(int,float)) -Out[1]: True -``` - -#### 44 所有对象之根 - -object 是所有类的基类 - -```python -In [1]: o = object() - -In [2]: type(o) -Out[2]: object -``` - -#### 45 创建属性的两种方式 - -返回 property 属性,典型的用法: - -```python -class C: - def __init__(self): - self._x = None - - def getx(self): - return self._x - - def setx(self, value): - self._x = value - - def delx(self): - del self._x - # 使用property类创建 property 属性 - x = property(getx, setx, delx, "I'm the 'x' property.") -``` - -使用python装饰器,实现与上完全一样的效果代码: - -```python -class C: - def __init__(self): - self._x = None - - @property - def x(self): - return self._x - - @x.setter - def x(self, value): - self._x = value - - @x.deleter - def x(self): - del self._x -``` - -#### 46 查看对象类型 - -*class* `type`(*name*, *bases*, *dict*) - -传入一个参数时,返回 *object* 的类型: - -```python -In [1]: class Student(): - ...: def __init__(self,id,name): - ...: self.id = id - ...: self.name = name - ...: def __repr__(self): - ...: return 'id = '+self.id +', name = '+self.name - ...: - -In [2]: xiaoming = Student(id='001',name='xiaoming') -In [3]: type(xiaoming) -Out[3]: __main__.Student - -In [4]: type(tuple()) -Out[4]: tuple -``` - -#### 47 元类 - -`xiaoming`, `xiaohong`, `xiaozhang` 都是学生,这类群体叫做 `Student`. - -Python 定义类的常见方法,使用关键字 `class` - -```python -In [36]: class Student(object): - ...: pass -``` - -`xiaoming`, `xiaohong`, `xiaozhang` 是类的实例,则: - -```python -xiaoming = Student() -xiaohong = Student() -xiaozhang = Student() -``` - -创建后,xiaoming 的 `__class__` 属性,返回的便是 `Student`类 - -```python -In [38]: xiaoming.__class__ -Out[38]: __main__.Student -``` - -问题在于,`Student` 类有 `__class__`属性,如果有,返回的又是什么? - -```python -In [39]: xiaoming.__class__.__class__ -Out[39]: type -``` - -哇,程序没报错,返回 `type` - -那么,我们不妨猜测:`Student` 类,类型就是 `type` - -换句话说,`Student`类就是一个**对象**,它的类型就是 `type` - -所以,Python 中一切皆对象,**类也是对象** - -Python 中,将描述 `Student` 类的类被称为:元类。 - -按照此逻辑延伸,描述元类的类被称为:*元元类*,开玩笑了~ 描述元类的类也被称为元类。 - -聪明的朋友会问了,既然 `Student` 类可创建实例,那么 `type` 类可创建实例吗? 如果能,它创建的实例就叫:类 了。 你们真聪明! - -说对了,`type` 类一定能创建实例,比如 `Student` 类了。 - -```python -In [40]: Student = type('Student',(),{}) - -In [41]: Student -Out[41]: __main__.Student -``` - -它与使用 `class` 关键字创建的 `Student` 类一模一样。 - -Python 的类,因为又是对象,所以和 `xiaoming`,`xiaohong` 对象操作相似。支持: - -- 赋值 -- 拷贝 -- 添加属性 -- 作为函数参数 - -```python -In [43]: StudentMirror = Student # 类直接赋值 # 类直接赋值 -In [44]: Student.class_property = 'class_property' # 添加类属性 -In [46]: hasattr(Student, 'class_property') -Out[46]: True -``` - -元类,确实使用不是那么多,也许先了解这些,就能应付一些场合。就连 Python 界的领袖 `Tim Peters` 都说: - -“元类就是深度的魔法,99%的用户应该根本不必为此操心。 - -### 六、工具 - -#### 48 枚举对象   - -返回一个可以枚举的对象,该对象的next()方法将返回一个元组。 - -```python -In [1]: s = ["a","b","c"] - ...: for i ,v in enumerate(s,1): - ...: print(i,v) - ...: -1 a -2 b -3 c -``` - -#### 49 查看变量所占字节数 - -```python -In [1]: import sys - -In [2]: a = {'a':1,'b':2.0} - -In [3]: sys.getsizeof(a) # 占用240个字节 -Out[3]: 240 -``` - -#### 50 过滤器   - -在函数中设定过滤条件,迭代元素,保留返回值为`True`的元素: - -```python -In [1]: fil = filter(lambda x: x>10,[1,11,2,45,7,6,13]) - -In [2]: list(fil) -Out[2]: [11, 45, 13] -``` - -#### 51 返回对象的哈希值   - -返回对象的哈希值,值得注意的是自定义的实例都是可哈希的,`list`, `dict`, `set`等可变对象都是不可哈希的(unhashable) - - ```python -In [1]: hash(xiaoming) -Out[1]: 6139638 - -In [2]: hash([1,2,3]) -# TypeError: unhashable type: 'list' - ``` - -#### 52 一键帮助  - -返回对象的帮助文档 - -```python -In [1]: help(xiaoming) -Help on Student in module __main__ object: - -class Student(builtins.object) - | Methods defined here: - | - | __init__(self, id, name) - | - | __repr__(self) - | - | Data descriptors defined here: - | - | __dict__ - | dictionary for instance variables (if defined) - | - | __weakref__ - | list of weak references to the object (if defined) -``` - -### 53 获取用户输入  - -获取用户输入内容 - -```python -In [1]: input() -aa -Out[1]: 'aa' -``` - -#### 54 创建迭代器类型 - -使用`iter(obj, sentinel)`, 返回一个可迭代对象, sentinel可省略(一旦迭代到此元素,立即终止) - -```python -In [1]: lst = [1,3,5] - -In [2]: for i in iter(lst): - ...: print(i) - ...: -1 -3 -5 -``` - -```python -In [1]: class TestIter(object): - ...: def __init__(self): - ...: self.l=[1,3,2,3,4,5] - ...: self.i=iter(self.l) - ...: def __call__(self): #定义了__call__方法的类的实例是可调用的 - ...: item = next(self.i) - ...: print ("__call__ is called,fowhich would return",item) - ...: return item - ...: def __iter__(self): #支持迭代协议(即定义有__iter__()函数) - ...: print ("__iter__ is called!!") - ...: return iter(self.l) -In [2]: t = TestIter() -In [3]: t() # 因为实现了__call__,所以t实例能被调用 -__call__ is called,which would return 1 -Out[3]: 1 - -In [4]: for e in TestIter(): # 因为实现了__iter__方法,所以t能被迭代 - ...: print(e) - ...: -__iter__ is called!! -1 -3 -2 -3 -4 -5 -``` - -#### 55 打开文件 - -返回文件对象 - -```python -In [1]: fo = open('D:/a.txt',mode='r', encoding='utf-8') - -In [2]: fo.read() -Out[2]: '\ufefflife is not so long,\nI use Python to play.' -``` - -mode取值表: - -| 字符 | 意义 | -| :---- | :------------------------------- | -| `'r'` | 读取(默认) | -| `'w'` | 写入,并先截断文件 | -| `'x'` | 排它性创建,如果文件已存在则失败 | -| `'a'` | 写入,如果文件存在则在末尾追加 | -| `'b'` | 二进制模式 | -| `'t'` | 文本模式(默认) | -| `'+'` | 打开用于更新(读取与写入) | - -#### 56 创建range序列 - -1) range(stop) -2) range(start, stop[,step]) - -生成一个不可变序列: - -```python -In [1]: range(11) -Out[1]: range(0, 11) - -In [2]: range(0,11,1) -Out[2]: range(0, 11) -``` - -#### 57 反向迭代器 - -```python -In [1]: rev = reversed([1,4,2,3,1]) - -In [2]: for i in rev: - ...: print(i) - ...: -1 -3 -2 -4 -1 -``` - -#### 58 聚合迭代器 - -创建一个聚合了来自每个可迭代对象中的元素的迭代器: - -```python -In [1]: x = [3,2,1] -In [2]: y = [4,5,6] -In [3]: list(zip(y,x)) -Out[3]: [(4, 3), (5, 2), (6, 1)] - -In [4]: a = range(5) -In [5]: b = list('abcde') -In [6]: b -Out[6]: ['a', 'b', 'c', 'd', 'e'] -In [7]: [str(y) + str(x) for x,y in zip(a,b)] -Out[7]: ['a0', 'b1', 'c2', 'd3', 'e4'] -``` - -#### 59 链式操作 - -```python -from operator import (add, sub) - - -def add_or_sub(a, b, oper): - return (add if oper == '+' else sub)(a, b) - - -add_or_sub(1, 2, '-') # -1 -``` - -#### 60 对象序列化 - -对象序列化,是指将内存中的对象转化为可存储或传输的过程。很多场景,直接一个类对象,传输不方便。 - -但是,当对象序列化后,就会更加方便,因为约定俗成的,接口间的调用或者发起的 web 请求,一般使用 json 串传输。 - -实际使用中,一般对类对象序列化。先创建一个 Student 类型,并创建两个实例。 - -```python -class Student(): - def __init__(self,**args): - self.ids = args['ids'] - self.name = args['name'] - self.address = args['address'] -xiaoming = Student(ids = 1,name = 'xiaoming',address = '北京') -xiaohong = Student(ids = 2,name = 'xiaohong',address = '南京') -``` - -导入 json 模块,调用 dump 方法,就会将列表对象 [xiaoming,xiaohong],序列化到文件 json.txt 中。 - -```python -import json - -with open('json.txt', 'w') as f: - json.dump([xiaoming,xiaohong], f, default=lambda obj: obj.__dict__, ensure_ascii=False, indent=2, sort_keys=True) -``` - -生成的文件内容,如下: - -```json -[ - { - "address":"北京", - "ids":1, - "name":"xiaoming" - }, - { - "address":"南京", - "ids":2, - "name":"xiaohong" - } -] -``` - -### 七、 小案例 - - -#### 61 不用else和if实现计算器 - -```python -from operator import * - - -def calculator(a, b, k): - return { - '+': add, - '-': sub, - '*': mul, - '/': truediv, - '**': pow - }[k](a, b) - - -calculator(1, 2, '+') # 3 -calculator(3, 4, '**') # 81 -``` - -#### 62 去最求平均 - -```python -def score_mean(lst): - lst.sort() - lst2=lst[1:(len(lst)-1)] - return round((sum(lst2)/len(lst2)),1) - -lst=[9.1, 9.0,8.1, 9.7, 19,8.2, 8.6,9.8] -score_mean(lst) # 9.1 -``` - -#### 63 打印99乘法表 - -打印出如下格式的乘法表 - -```python -1*1=1 -1*2=2 2*2=4 -1*3=3 2*3=6 3*3=9 -1*4=4 2*4=8 3*4=12 4*4=16 -1*5=5 2*5=10 3*5=15 4*5=20 5*5=25 -1*6=6 2*6=12 3*6=18 4*6=24 5*6=30 6*6=36 -1*7=7 2*7=14 3*7=21 4*7=28 5*7=35 6*7=42 7*7=49 -1*8=8 2*8=16 3*8=24 4*8=32 5*8=40 6*8=48 7*8=56 8*8=64 -1*9=9 2*9=18 3*9=27 4*9=36 5*9=45 6*9=54 7*9=63 8*9=72 9*9=81 -``` - -一共有10 行,第`i`行的第`j`列等于:`j*i`, - -其中, - - `i`取值范围:`1<=i<=9` - - `j`取值范围:`1<=j<=i` - -根据`例子分析`的语言描述,转化为如下代码: - -```python -for i in range(1, 10): - for j in range(1, i+1): - print('%d * %d = %d' % (j, i, j * i) , end="\t") - print() -``` - -#### 64 全展开 - -对于如下数组: - -``` -[[[1,2,3],[4,5]]] -``` - -如何完全展开成一维的。这个小例子实现的`flatten`是递归版,两个参数分别表示带展开的数组,输出数组。 - -```python -from collections.abc import * - -def flatten(lst, out_lst=None): - if out_lst is None: - out_lst = [] - for i in lst: - if isinstance(i, Iterable): # 判断i是否可迭代 - flatten(i, out_lst) # 尾数递归 - else: - out_lst.append(i) # 产生结果 - return out_lst -``` - -调用`flatten`: - -```python -print(flatten([[1,2,3],[4,5]])) -print(flatten([[1,2,3],[4,5]], [6,7])) -print(flatten([[[1,2,3],[4,5,6]]])) -# 结果: -[1, 2, 3, 4, 5] -[6, 7, 1, 2, 3, 4, 5] -[1, 2, 3, 4, 5, 6] -``` - -numpy里的`flatten`与上面的函数实现有些微妙的不同: - -```python -import numpy -b = numpy.array([[1,2,3],[4,5]]) -b.flatten() -array([list([1, 2, 3]), list([4, 5])], dtype=object) -``` - -#### 65 列表等分 - -```python -from math import ceil - -def divide(lst, size): - if size <= 0: - return [lst] - return [lst[i * size:(i+1)*size] for i in range(0, ceil(len(lst) / size))] - - -r = divide([1, 3, 5, 7, 9], 2) -print(r) # [[1, 3], [5, 7], [9]] - -r = divide([1, 3, 5, 7, 9], 0) -print(r) # [[1, 3, 5, 7, 9]] - -r = divide([1, 3, 5, 7, 9], -3) -print(r) # [[1, 3, 5, 7, 9]] - -``` - -#### 66 列表压缩 - -```python -def filter_false(lst): - return list(filter(bool, lst)) - - -r = filter_false([None, 0, False, '', [], 'ok', [1, 2]]) -print(r) # ['ok', [1, 2]] - -``` - -#### 67 更长列表 - -```python -def max_length(*lst): - return max(*lst, key=lambda v: len(v)) - - -r = max_length([1, 2, 3], [4, 5, 6, 7], [8]) -print(f'更长的列表是{r}') # [4, 5, 6, 7] - -r = max_length([1, 2, 3], [4, 5, 6, 7], [8, 9]) -print(f'更长的列表是{r}') # [4, 5, 6, 7] -``` - -#### 68 求众数 - -```python -def top1(lst): - return max(lst, default='列表为空', key=lambda v: lst.count(v)) - -lst = [1, 3, 3, 2, 1, 1, 2] -r = top1(lst) -print(f'{lst}中出现次数最多的元素为:{r}') # [1, 3, 3, 2, 1, 1, 2]中出现次数最多的元素为:1 -``` - -#### 69 多表之最 -```python -def max_lists(*lst): - return max(max(*lst, key=lambda v: max(v))) - - -r = max_lists([1, 2, 3], [6, 7, 8], [4, 5]) -print(r) # 8 -``` - -#### 70 列表查重 - -```python -def has_duplicates(lst): - return len(lst) == len(set(lst)) - - -x = [1, 1, 2, 2, 3, 2, 3, 4, 5, 6] -y = [1, 2, 3, 4, 5] -has_duplicates(x) # False -has_duplicates(y) # True -``` - - - -#### 71 列表反转 - -```python -def reverse(lst): - return lst[::-1] - - -r = reverse([1, -2, 3, 4, 1, 2]) -print(r) # [2, 1, 4, 3, -2, 1] -``` - -#### 72 浮点数等差数列 - -```python -def rang(start, stop, n): - start,stop,n = float('%.2f' % start), float('%.2f' % stop),int('%.d' % n) - step = (stop-start)/n - lst = [start] - while n > 0: - start,n = start+step,n-1 - lst.append(round((start), 2)) - return lst - -rang(1, 8, 10) # [1.0, 1.7, 2.4, 3.1, 3.8, 4.5, 5.2, 5.9, 6.6, 7.3, 8.0] -``` - -#### 73 按条件分组 - -```python -def bif_by(lst, f): - return [ [x for x in lst if f(x)],[x for x in lst if not f(x)]] - -records = [25,89,31,34] -bif_by(records, lambda x: x<80) # [[25, 31, 34], [89]] -``` - -#### 74 map实现向量运算 - -```python -#多序列运算函数—map(function,iterabel,iterable2) -lst1=[1,2,3,4,5,6] -lst2=[3,4,5,6,3,2] -list(map(lambda x,y:x*y+1,lst1,lst2)) -### [4, 9, 16, 25, 16, 13] -``` - -#### 75 值最大的字典 - -```python -def max_pairs(dic): - if len(dic) == 0: - return dic - max_val = max(map(lambda v: v[1], dic.items())) - return [item for item in dic.items() if item[1] == max_val] - - -r = max_pairs({'a': -10, 'b': 5, 'c': 3, 'd': 5}) -print(r) # [('b', 5), ('d', 5)] -``` - -#### 76 合并两个字典 - -```python -def merge_dict(dic1, dic2): - return {**dic1, **dic2} # python3.5后支持的一行代码实现合并字典 - -merge_dict({'a': 1, 'b': 2}, {'c': 3}) # {'a': 1, 'b': 2, 'c': 3} -``` - -#### 77 topn字典 - -```python -from heapq import nlargest - -# 返回字典d前n个最大值对应的键 - -def topn_dict(d, n): - return nlargest(n, d, key=lambda k: d[k]) - -topn_dict({'a': 10, 'b': 8, 'c': 9, 'd': 10}, 3) # ['a', 'd', 'c'] -``` - - -#### 78 异位词 - -```python -from collections import Counter - -# 检查两个字符串是否 相同字母异序词,简称:互为变位词 - -def anagram(str1, str2): - return Counter(str1) == Counter(str2) - -anagram('eleven+two', 'twelve+one') # True 这是一对神器的变位词 -anagram('eleven', 'twelve') # False -``` - -#### 79 逻辑上合并字典 -(1) 两种合并字典方法 -这是一般的字典合并写法 - -```python -dic1 = {'x': 1, 'y': 2 } -dic2 = {'y': 3, 'z': 4 } -merged1 = {**dic1, **dic2} # {'x': 1, 'y': 3, 'z': 4} -``` - -修改merged['x']=10,dic1中的x值`不变`,`merged`是重新生成的一个`新字典`。 - -但是,`ChainMap`却不同,它在内部创建了一个容纳这些字典的列表。因此使用ChainMap合并字典,修改merged['x']=10后,dic1中的x值`改变`,如下所示: - -```python -from collections import ChainMap -merged2 = ChainMap(dic1,dic2) -print(merged2) # ChainMap({'x': 1, 'y': 2}, {'y': 3, 'z': 4}) -``` - -#### 80 命名元组提高可读性 - -```python -from collections import namedtuple -Point = namedtuple('Point', ['x', 'y', 'z']) # 定义名字为Point的元祖,字段属性有x,y,z -lst = [Point(1.5, 2, 3.0), Point(-0.3, -1.0, 2.1), Point(1.3, 2.8, -2.5)] -print(lst[0].y - lst[1].y) -``` - -使用命名元组写出来的代码可读性更好,尤其处理上百上千个属性时作用更加凸显。 - -#### 81 样本抽样 - -使用`sample`抽样,如下例子从100个样本中随机抽样10个。 - -```python -from random import randint,sample -lst = [randint(0,50) for _ in range(100)] -print(lst[:5])# [38, 19, 11, 3, 6] -lst_sample = sample(lst,10) -print(lst_sample) # [33, 40, 35, 49, 24, 15, 48, 29, 37, 24] -``` - -#### 82 重洗数据集 - -使用`shuffle`用来重洗数据集,**值得注意`shuffle`是对lst就地(in place)洗牌,节省存储空间** - -```python -from random import shuffle -lst = [randint(0,50) for _ in range(100)] -shuffle(lst) -print(lst[:5]) # [50, 3, 48, 1, 26] -``` - -#### 83 10个均匀分布的坐标点 - -random模块中的`uniform(a,b)`生成[a,b)内的一个随机数,如下生成10个均匀分布的二维坐标点 - -```python -from random import uniform -In [1]: [(uniform(0,10),uniform(0,10)) for _ in range(10)] -Out[1]: -[(9.244361194237328, 7.684326645514235), - (8.129267671737324, 9.988395854203773), - (9.505278771040661, 2.8650440524834107), - (3.84320100484284, 1.7687190176304601), - (6.095385729409376, 2.377133802224657), - (8.522913365698605, 3.2395995841267844), - (8.827829601859406, 3.9298809217233766), - (1.4749644859469302, 8.038753079253127), - (9.005430657826324, 7.58011186920019), - (8.700789540392917, 1.2217577293254112)] -``` - -#### 84 10个高斯分布的坐标点 - -random模块中的`gauss(u,sigma)`生成均值为u, 标准差为sigma的满足高斯分布的值,如下生成10个二维坐标点,样本误差(y-2*x-1)满足均值为0,标准差为1的高斯分布: - -```python -from random import gauss -x = range(10) -y = [2*xi+1+gauss(0,1) for xi in x] -points = list(zip(x,y)) -### 10个二维点: -[(0, -0.86789025305992), - (1, 4.738439437453464), - (2, 5.190278040856102), - (3, 8.05270893133576), - (4, 9.979481700775292), - (5, 11.960781766216384), - (6, 13.025427054303737), - (7, 14.02384035204836), - (8, 15.33755823101161), - (9, 17.565074449028497)] -``` - -#### 85 chain高效串联多个容器对象 - -`chain`函数串联a和b,兼顾内存效率同时写法更加优雅。 - -```python -from itertools import chain -a = [1,3,5,0] -b = (2,4,6) - -for i in chain(a,b): - print(i) -### 结果 -1 -3 -5 -0 -2 -4 -6 -``` - -#### 86 product 案例 - -```python -def product(*args, repeat=1): - pools = [tuple(pool) for pool in args] * repeat - result = [[]] - for pool in pools: - result = [x+[y] for x in result for y in pool] - for prod in result: - yield tuple(prod) -``` - - -调用函数: - -```python -rtn = product('xyz', '12', repeat=3) -print(list(rtn)) -``` - -### 二、Python字符串和正则 - -字符串无所不在,字符串的处理也是最常见的操作。本章节将总结和字符串处理相关的一切操作。主要包括基本的字符串操作;高级字符串操作之正则。目前共有`25`个小例子 - -#### 91 反转字符串 - -```python -st="python" -#方法1 -''.join(reversed(st)) -#方法2 -st[::-1] -``` - -#### 92 字符串切片操作 - -```python -字符串切片操作——查找替换3或5的倍数 -In [1]:[str("java"[i%3*4:]+"python"[i%5*6:] or i) for i in range(1,15)] -OUT[1]:['1', - '2', - 'java', - '4', - 'python', - 'java', - '7', - '8', - 'java', - 'python', - '11', - 'java', - '13', - '14'] -``` -#### 93 join串联字符串 -```python -In [4]: mystr = ['1', - ...: '2', - ...: 'java', - ...: '4', - ...: 'python', - ...: 'java', - ...: '7', - ...: '8', - ...: 'java', - ...: 'python', - ...: '11', - ...: 'java', - ...: '13', - ...: '14'] - -In [5]: ','.join(mystr) #用逗号连接字符串 -Out[5]: '1,2,java,4,python,java,7,8,java,python,11,java,13,14' -``` - -#### 94 字符串的字节长度 - -```python -def str_byte_len(mystr): - return (len(mystr.encode('utf-8'))) - - -str_byte_len('i love python') # 13(个字节) -str_byte_len('字符') # 6(个字节) -``` - - - -**以下是正则部分** - -```python -import re -``` - -#### 95 查找第一个匹配串 - -```python -s = 'i love python very much' -pat = 'python' -r = re.search(pat,s) -print(r.span()) #(7,13) -``` - -#### 96 查找所有 1 的索引 - -```python -s = '山东省潍坊市青州第1中学高三1班' -pat = '1' -r = re.finditer(pat,s) -for i in r: - print(i) - -# -# -``` - -#### 97 \d 匹配数字[0-9] -findall找出全部位置的所有匹配 -```python -s = '一共20行代码运行时间13.59s' -pat = r'\d+' # +表示匹配数字(\d表示数字的通用字符)1次或多次 -r = re.findall(pat,s) -print(r) -# ['20', '13', '59'] -``` - -#### 98 匹配浮点数和整数 - -?表示前一个字符匹配0或1次 -```python -s = '一共20行代码运行时间13.59s' -pat = r'\d+\.?\d+' # ?表示匹配小数点(\.)0次或1次,这种写法有个小bug,不能匹配到个位数的整数 -r = re.findall(pat,s) -print(r) -# ['20', '13.59'] - -# 更好的写法: -pat = r'\d+\.\d+|\d+' # A|B,匹配A失败才匹配B -``` -#### 99 ^匹配字符串的开头 - -```python -s = 'This module provides regular expression matching operations similar to those found in Perl' -pat = r'^[emrt]' # 查找以字符e,m,r或t开始的字符串 -r = re.findall(pat,s) -print(r) -# [],因为字符串的开头是字符`T`,不在emrt匹配范围内,所以返回为空 -IN [11]: s2 = 'email for me is guozhennianhua@163.com' -re.findall('^[emrt].*',s2)# 匹配以e,m,r,t开始的字符串,后面是多个任意字符 -Out[11]: ['email for me is guozhennianhua@163.com'] - -``` -#### 100 re.I 忽略大小写 - -```python -s = 'That' -pat = r't' -r = re.findall(pat,s,re.I) -In [22]: r -Out[22]: ['T', 't'] -``` -#### 101 理解compile的作用 -如果要做很多次匹配,可以先编译匹配串: -```python -import re -pat = re.compile('\W+') # \W 匹配不是数字和字母的字符 -has_special_chars = pat.search('ed#2@edc') -if has_special_chars: - print(f'str contains special characters:{has_special_chars.group(0)}') - -###输出结果: - # str contains special characters:# - -### 再次使用pat正则编译对象 做匹配 -again_pattern = pat.findall('guozhennianhua@163.com') -if '@' in again_pattern: - print('possibly it is an email') - -``` - -#### 102 使用()捕获单词,不想带空格 -使用`()`捕获 -```python -s = 'This module provides regular expression matching operations similar to those found in Perl' -pat = r'\s([a-zA-Z]+)' -r = re.findall(pat,s) -print(r) #['module', 'provides', 'regular', 'expression', 'matching', 'operations', 'similar', 'to', 'those', 'found', 'in', 'Perl'] -``` -看到提取单词中未包括第一个单词,使用`?`表示前面字符出现0次或1次,但是此字符还有表示贪心或非贪心匹配含义,使用时要谨慎。 -```python -s = 'This module provides regular expression matching operations similar to those found in Perl' -pat = r'\s?([a-zA-Z]+)' -r = re.findall(pat,s) -print(r) #['This', 'module', 'provides', 'regular', 'expression', 'matching', 'operations', 'similar', 'to', 'those', 'found', 'in', 'Perl'] -``` - -#### 103 split分割单词 -使用以上方法分割单词不是简洁的,仅仅是为了演示。分割单词最简单还是使用`split`函数。 -```python -s = 'This module provides regular expression matching operations similar to those found in Perl' -pat = r'\s+' -r = re.split(pat,s) -print(r) # ['This', 'module', 'provides', 'regular', 'expression', 'matching', 'operations', 'similar', 'to', 'those', 'found', 'in', 'Perl'] - -### 上面这句话也可直接使用str自带的split函数: -s.split(' ') #使用空格分隔 - -### 但是,对于风格符更加复杂的情况,split无能为力,只能使用正则 - -s = 'This,,, module ; \t provides|| regular ; ' -words = re.split('[,\s;|]+',s) #这样分隔出来,最后会有一个空字符串 -words = [i for i in words if len(i)>0] -``` - -#### 104 match从字符串开始位置匹配 -注意`match`,`search`等的不同: -1) match函数 -```python -import re -### match -mystr = 'This' -pat = re.compile('hi') -pat.match(mystr) # None -pat.match(mystr,1) # 从位置1处开始匹配 -Out[90]: -``` -2) search函数 -search是从字符串的任意位置开始匹配 -```python -In [91]: mystr = 'This' - ...: pat = re.compile('hi') - ...: pat.search(mystr) -Out[91]: -``` - -#### 105 替换匹配的子串 -`sub`函数实现对匹配子串的替换 -```python -content="hello 12345, hello 456321" -pat=re.compile(r'\d+') #要替换的部分 -m=pat.sub("666",content) -print(m) # hello 666, hello 666 -``` - -#### 106 贪心捕获 -(.*)表示捕获任意多个字符,尽可能多的匹配字符 -```python -content='ddedadsad
graph
bb
math
cc' -pat=re.compile(r"
(.*)
") #贪婪模式 -m=pat.findall(content) -print(m) #匹配结果为: ['graphbb
math'] -``` -#### 107 非贪心捕获 -仅添加一个问号(`?`),得到结果完全不同,这是非贪心匹配,通过这个例子体会贪心和非贪心的匹配的不同。 -```python -content='ddedadsad
graph
bb
math
cc' -pat=re.compile(r"
(.*?)
") -m=pat.findall(content) -print(m) # ['graph', 'math'] -``` -非贪心捕获,见好就收。 - -#### 108 常用元字符总结 - - . 匹配任意字符 - ^ 匹配字符串开始位置 - $ 匹配字符串中结束的位置 - * 前面的原子重复0次、1次、多次 - ? 前面的原子重复0次或者1次 - + 前面的原子重复1次或多次 - {n} 前面的原子出现了 n 次 - {n,} 前面的原子至少出现 n 次 - {n,m} 前面的原子出现次数介于 n-m 之间 - ( ) 分组,需要输出的部分 - -#### 109 常用通用字符总结 - - \s 匹配空白字符 - \w 匹配任意字母/数字/下划线 - \W 和小写 w 相反,匹配任意字母/数字/下划线以外的字符 - \d 匹配十进制数字 - \D 匹配除了十进制数以外的值 - [0-9] 匹配一个0-9之间的数字 - [a-z] 匹配小写英文字母 - [A-Z] 匹配大写英文字母 - -#### 110 密码安全检查 - -密码安全要求:1)要求密码为6到20位; 2)密码只包含英文字母和数字 - -```python -pat = re.compile(r'\w{6,20}') # 这是错误的,因为\w通配符匹配的是字母,数字和下划线,题目要求不能含有下划线 -# 使用最稳的方法:\da-zA-Z满足`密码只包含英文字母和数字` -pat = re.compile(r'[\da-zA-Z]{6,20}') -``` -选用最保险的`fullmatch`方法,查看是否整个字符串都匹配: -```python -pat.fullmatch('qaz12') # 返回 None, 长度小于6 -pat.fullmatch('qaz12wsxedcrfvtgb67890942234343434') # None 长度大于22 -pat.fullmatch('qaz_231') # None 含有下划线 -pat.fullmatch('n0passw0Rd') -Out[4]: -``` - -#### 111 爬取百度首页标题 - -```python -import re -from urllib import request - -#爬虫爬取百度首页内容 -data=request.urlopen("http://www.baidu.com/").read().decode() - -#分析网页,确定正则表达式 -pat=r'(.*?)' - -result=re.search(pat,data) -print(result) - -result.group() # 百度一下,你就知道 -``` - -#### 112 批量转化为驼峰格式(Camel) - -数据库字段名批量转化为驼峰格式 - -分析过程 - -```python -# 用到的正则串讲解 -# \s 指匹配: [ \t\n\r\f\v] -# A|B:表示匹配A串或B串 -# re.sub(pattern, newchar, string): -# substitue代替,用newchar字符替代与pattern匹配的字符所有. -``` - - - -```python -# title(): 转化为大写,例子: -# 'Hello world'.title() # 'Hello World' -``` - - - -```python -# print(re.sub(r"\s|_|", "", "He llo_worl\td")) -s = re.sub(r"(\s|_|-)+", " ", - 'some_database_field_name').title().replace(" ", "") -#结果: SomeDatabaseFieldName -``` - - - -```python -# 可以看到此时的第一个字符为大写,需要转化为小写 -s = s[0].lower()+s[1:] # 最终结果 -``` - - - -整理以上分析得到如下代码: - -```python -import re -def camel(s): - s = re.sub(r"(\s|_|-)+", " ", s).title().replace(" ", "") - return s[0].lower() + s[1:] - -# 批量转化 -def batch_camel(slist): - return [camel(s) for s in slist] -``` - -测试结果: - -```python -s = batch_camel(['student_id', 'student\tname', 'student-add']) -print(s) -# 结果 -['studentId', 'studentName', 'studentAdd'] -``` - - - -#### 113 str1是否为str2的permutation - -排序词(permutation):两个字符串含有相同字符,但字符顺序不同。 - -```python -from collections import defaultdict - - -def is_permutation(str1, str2): - if str1 is None or str2 is None: - return False - if len(str1) != len(str2): - return False - unq_s1 = defaultdict(int) - unq_s2 = defaultdict(int) - for c1 in str1: - unq_s1[c1] += 1 - for c2 in str2: - unq_s2[c2] += 1 - - return unq_s1 == unq_s2 -``` - -这个小例子,使用python内置的`defaultdict`,默认类型初始化为`int`,计数默次数都为0. 这个解法本质是 `hash map lookup` - -统计出的两个defaultdict:unq_s1,unq_s2,如果相等,就表明str1、 str2互为排序词。 - -下面测试: - -```python -r = is_permutation('nice', 'cine') -print(r) # True - -r = is_permutation('', '') -print(r) # True - -r = is_permutation('', None) -print(r) # False - -r = is_permutation('work', 'woo') -print(r) # False - -``` - -以上就是使用defaultdict的小例子,希望对读者朋友理解此类型有帮助。 - -#### 114 str1是否由str2旋转而来 - -`stringbook`旋转后得到`bookstring`,写一段代码验证`str1`是否为`str2`旋转得到。 - -**思路** - -转化为判断:`str1`是否为`str2+str2`的子串 - -```python -def is_rotation(s1: str, s2: str) -> bool: - if s1 is None or s2 is None: - return False - if len(s1) != len(s2): - return False - - def is_substring(s1: str, s2: str) -> bool: - return s1 in s2 - return is_substring(s1, s2 + s2) -``` - -**测试** - -```python -r = is_rotation('stringbook', 'bookstring') -print(r) # True - -r = is_rotation('greatman', 'maneatgr') -print(r) # False -``` - -#### 115 正浮点数 - -从一系列字符串中,挑选出所有正浮点数。 - -该怎么办? - -玩玩正则表达式,用正则搞它! - -关键是,正则表达式该怎么写呢? - -有了! - -`^[1-9]\d*\.\d*$` - -`^` 表示字符串开始 - -`[1-9]` 表示数字1,2,3,4,5,6,7,8,9 - -`^[1-9]` 连起来表示以数字 `1-9` 作为开头 - -`\d` 表示一位 `0-9` 的数字 - -`*` 表示前一位字符出现 0 次,1 次或多次 - -`\d*` 表示数字出现 0 次,1 次或多次 - -`\.` 表示小数点 - -`\$` 表示字符串以前一位的字符结束 - -`^[1-9]\d*\.\d*$` 连起来就求出所有大于 1.0 的正浮点数。 - -那 0.0 到 1.0 之间的正浮点数,怎么求,干嘛不直接汇总到上面的正则表达式中呢? - -这样写不行吗:`^[0-9]\d*\.\d*$` - -OK! - -那我们立即测试下呗 - -```python -In [85]: import re - -In [87]: recom = re.compile(r'^[0-9]\d*\.\d*$') - -In [88]: recom.match('000.2') -Out[88]: -``` - -结果显示,正则表达式 `^[0-9]\d*\.\d*$` 竟然匹配到 `000.2 `,认为它是一个正浮点数~~~!!!! - -晕!!!!!! - -所以知道为啥要先匹配大于 1.0 的浮点数了吧! - -如果能写出这个正则表达式,再写另一部分就不困难了! - -0.0 到 1.0 间的浮点数:`^0\.\d*[1-9]\d*$` - -两个式子连接起来就是最终的结果: - -`^[1-9]\d*\.\d*|0\.\d*[1-9]\d*$` - -如果还是看不懂,看看下面的正则分布剖析图吧: - - - -### 三、Python文件、日期和多线程 - -Python文件IO操作涉及文件读写操作,获取文件`后缀名`,修改后缀名,获取文件修改时间,`压缩`文件,`加密`文件等操作。 - -Python日期章节,由表示大日期的`calendar`, `date`模块,逐渐过渡到表示时间刻度更小的模块:`datetime`, `time`模块,按照此逻辑展开。 - -Python`多线程`希望透过5个小例子,帮助你对多线程模型编程本质有些更清晰的认识。 - -一共总结最常用的`26`个关于文件和时间处理模块的例子。 - -#### 116 获取后缀名 - -```python -import os -file_ext = os.path.splitext('./data/py/test.py') -front,ext = file_ext -In [5]: front -Out[5]: './data/py/test' - -In [6]: ext -Out[6]: '.py' -``` - -#### 117 文件读操作 - -```python -import os -# 创建文件夹 - -def mkdir(path): - isexists = os.path.exists(path) - if not isexists: - os.mkdir(path) -# 读取文件信息 - -def openfile(filename): - f = open(filename) - fllist = f.read() - f.close() - return fllist # 返回读取内容 -``` - -#### 118 文件写操作 - -```python -# 写入文件信息 -# example1 -# w写入,如果文件存在,则清空内容后写入,不存在则创建 -f = open(r"./data/test.txt", "w", encoding="utf-8") -print(f.write("测试文件写入")) -f.close - -# example2 -# a写入,文件存在,则在文件内容后追加写入,不存在则创建 -f = open(r"./data/test.txt", "a", encoding="utf-8") -print(f.write("测试文件写入")) -f.close - -# example3 -# with关键字系统会自动关闭文件和处理异常 -with open(r"./data/test.txt", "w") as f: - f.write("hello world!") -``` - -#### 119 路径中的文件名 - -```python -In [11]: import os - ...: file_ext = os.path.split('./data/py/test.py') - ...: ipath,ifile = file_ext - ...: - -In [12]: ipath -Out[12]: './data/py' - -In [13]: ifile -Out[13]: 'test.py' -``` - -#### 120 批量修改文件后缀 - -**批量修改文件后缀** - -本例子使用Python的`os`模块和 `argparse`模块,将工作目录`work_dir`下所有后缀名为`old_ext`的文件修改为后缀名为`new_ext` - -通过本例子,大家将会大概清楚`argparse`模块的主要用法。 - -导入模块 - -```python -import argparse -import os -``` - -定义脚本参数 - -```python -def get_parser(): - parser = argparse.ArgumentParser( - description='工作目录中文件后缀名修改') - parser.add_argument('work_dir', metavar='WORK_DIR', type=str, nargs=1, - help='修改后缀名的文件目录') - parser.add_argument('old_ext', metavar='OLD_EXT', - type=str, nargs=1, help='原来的后缀') - parser.add_argument('new_ext', metavar='NEW_EXT', - type=str, nargs=1, help='新的后缀') - return parser -``` - -后缀名批量修改 - -```python -def batch_rename(work_dir, old_ext, new_ext): - """ - 传递当前目录,原来后缀名,新的后缀名后,批量重命名后缀 - """ - for filename in os.listdir(work_dir): - # 获取得到文件后缀 - split_file = os.path.splitext(filename) - file_ext = split_file[1] - # 定位后缀名为old_ext 的文件 - if old_ext == file_ext: - # 修改后文件的完整名称 - newfile = split_file[0] + new_ext - # 实现重命名操作 - os.rename( - os.path.join(work_dir, filename), - os.path.join(work_dir, newfile) - ) - print("完成重命名") - print(os.listdir(work_dir)) -``` - -实现Main - -```python -def main(): - """ - main函数 - """ - # 命令行参数 - parser = get_parser() - args = vars(parser.parse_args()) - # 从命令行参数中依次解析出参数 - work_dir = args['work_dir'][0] - old_ext = args['old_ext'][0] - if old_ext[0] != '.': - old_ext = '.' + old_ext - new_ext = args['new_ext'][0] - if new_ext[0] != '.': - new_ext = '.' + new_ext - - batch_rename(work_dir, old_ext, new_ext) -``` - - - -#### 121 xls批量转换成xlsx - -```python -import os - - -def xls_to_xlsx(work_dir): - """ - 传递当前目录,原来后缀名,新的后缀名后,批量重命名后缀 - """ - old_ext, new_ext = '.xls', '.xlsx' - for filename in os.listdir(work_dir): - # 获取得到文件后缀 - split_file = os.path.splitext(filename) - file_ext = split_file[1] - # 定位后缀名为old_ext 的文件 - if old_ext == file_ext: - # 修改后文件的完整名称 - newfile = split_file[0] + new_ext - # 实现重命名操作 - os.rename( - os.path.join(work_dir, filename), - os.path.join(work_dir, newfile) - ) - print("完成重命名") - print(os.listdir(work_dir)) - - -xls_to_xlsx('./data') - -# 输出结果: -# ['cut_words.csv', 'email_list.xlsx', 'email_test.docx', 'email_test.jpg', 'email_test.xlsx', 'geo_data.png', 'geo_data.xlsx', -'iotest.txt', 'pyside2.md', 'PySimpleGUI-4.7.1-py3-none-any.whl', 'test.txt', 'test_excel.xlsx', 'ziptest', 'ziptest.zip'] -``` - - - -#### 122 定制文件不同行 - - -比较两个文件在哪些行内容不同,返回这些行的编号,行号编号从1开始。 - -定义统计文件行数的函数 - -```python -# 统计文件个数 - def statLineCnt(statfile): - print('文件名:'+statfile) - cnt = 0 - with open(statfile, encoding='utf-8') as f: - while f.readline(): - cnt += 1 - return cnt -``` - - - -统计文件不同之处的子函数: - -```python -# more表示含有更多行数的文件 - def diff(more, cnt, less): - difflist = [] - with open(less, encoding='utf-8') as l: - with open(more, encoding='utf-8') as m: - lines = l.readlines() - for i, line in enumerate(lines): - if line.strip() != m.readline().strip(): - difflist.append(i) - if cnt - i > 1: - difflist.extend(range(i + 1, cnt)) - return [no+1 for no in difflist] -``` - - - -主函数: - -```python -# 返回的结果行号从1开始 -# list表示fileA和fileB不同的行的编号 - -def file_diff_line_nos(fileA, fileB): - try: - cntA = statLineCnt(fileA) - cntB = statLineCnt(fileB) - if cntA > cntB: - return diff(fileA, cntA, fileB) - return diff(fileB, cntB, fileA) - - except Exception as e: - print(e) -``` - -比较两个文件A和B,拿相对较短的文件去比较,过滤行后的换行符`\n`和空格。 - -暂未考虑某个文件最后可能有的多行空行等特殊情况 - -使用`file_diff_line_nos` 函数: - -```python -if __name__ == '__main__': - import os - print(os.getcwd()) - - ''' - 例子: - fileA = "'hello world!!!!''\ - 'nice to meet you'\ - 'yes'\ - 'no1'\ - 'jack'" - fileB = "'hello world!!!!''\ - 'nice to meet you'\ - 'yes' " - ''' - diff = file_diff_line_nos('./testdir/a.txt', './testdir/b.txt') - print(diff) # [4, 5] -``` - -关于文件比较的,实际上,在Python中有对应模块`difflib` , 提供更多其他格式的文件更详细的比较,大家可参考: - -> https://docs.python.org/3/library/difflib.html?highlight=difflib#module-difflib - - - -#### 123 获取指定后缀名的文件 - -```python -import os - -def find_file(work_dir,extension='jpg'): - lst = [] - for filename in os.listdir(work_dir): - print(filename) - splits = os.path.splitext(filename) - ext = splits[1] # 拿到扩展名 - if ext == '.'+extension: - lst.append(filename) - return lst - -r = find_file('.','md') -print(r) # 返回所有目录下的md文件 -``` - - -#### 124 批量获取文件修改时间 - -```python -# 获取目录下文件的修改时间 -import os -from datetime import datetime - -print(f"当前时间:{datetime.now().strftime('%Y-%m-%d %H:%M:%S')}") - -def get_modify_time(indir): - for root, _, files in os.walk(indir): # 循环D:\works目录和子目录 - for file in files: - absfile = os.path.join(root, file) - modtime = datetime.fromtimestamp(os.path.getmtime(absfile)) - now = datetime.now() - difftime = now-modtime - if difftime.days < 20: # 条件筛选超过指定时间的文件 - print(f"""{absfile} - 修改时间[{modtime.strftime('%Y-%m-%d %H:%M:%S')}] - 距今[{difftime.days:3d}天{difftime.seconds//3600:2d}时{difftime.seconds%3600//60:2d}]""" - ) # 打印相关信息 - - -get_modify_time('./data') -``` - - 打印效果: - 当前时间:2019-12-22 16:38:53 - ./data\cut_words.csv - 修改时间[2019-12-21 10:34:15] - 距今[ 1天 6时 4] - 当前时间:2019-12-22 16:38:53 - ./data\cut_words.csv - 修改时间[2019-12-21 10:34:15] - 距今[ 1天 6时 4] - ./data\email_test.docx - 修改时间[2019-12-03 07:46:29] - 距今[ 19天 8时52] - ./data\email_test.jpg - 修改时间[2019-12-03 07:46:29] - 距今[ 19天 8时52] - ./data\email_test.xlsx - 修改时间[2019-12-03 07:46:29] - 距今[ 19天 8时52] - ./data\iotest.txt - 修改时间[2019-12-13 08:23:18] - 距今[ 9天 8时15] - ./data\pyside2.md - 修改时间[2019-12-05 08:17:22] - 距今[ 17天 8时21] - ./data\PySimpleGUI-4.7.1-py3-none-any.whl - 修改时间[2019-12-05 00:25:47] - 距今[ 17天16时13] - -#### 125 批量压缩文件 - - -```python -import zipfile # 导入zipfile,这个是用来做压缩和解压的Python模块; -import os -import time - - -def batch_zip(start_dir): - start_dir = start_dir # 要压缩的文件夹路径 - file_news = start_dir + '.zip' # 压缩后文件夹的名字 - - z = zipfile.ZipFile(file_news, 'w', zipfile.ZIP_DEFLATED) - for dir_path, dir_names, file_names in os.walk(start_dir): - # 这一句很重要,不replace的话,就从根目录开始复制 - f_path = dir_path.replace(start_dir, '') - f_path = f_path and f_path + os.sep # 实现当前文件夹以及包含的所有文件的压缩 - for filename in file_names: - z.write(os.path.join(dir_path, filename), f_path + filename) - z.close() - return file_news - - -batch_zip('./data/ziptest') - - -``` - -#### 126 32位加密 - -```python -import hashlib -# 对字符串s实现32位加密 - - -def hash_cry32(s): - m = hashlib.md5() - m.update((str(s).encode('utf-8'))) - return m.hexdigest() - - -print(hash_cry32(1)) # c4ca4238a0b923820dcc509a6f75849b -print(hash_cry32('hello')) # 5d41402abc4b2a76b9719d911017c592 -``` - -#### 127 年的日历图 - -```python -import calendar -from datetime import date -mydate = date.today() -year_calendar_str = calendar.calendar(2019) -print(f"{mydate.year}年的日历图:{year_calendar_str}\n") -``` - -打印结果: - -```python -2019 - - January February March -Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su - 1 2 3 4 5 6 1 2 3 1 2 3 - 7 8 9 10 11 12 13 4 5 6 7 8 9 10 4 5 6 7 8 9 10 -14 15 16 17 18 19 20 11 12 13 14 15 16 17 11 12 13 14 15 16 17 -21 22 23 24 25 26 27 18 19 20 21 22 23 24 18 19 20 21 22 23 24 -28 29 30 31 25 26 27 28 25 26 27 28 29 30 31 - - April May June -Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su - 1 2 3 4 5 6 7 1 2 3 4 5 1 2 - 8 9 10 11 12 13 14 6 7 8 9 10 11 12 3 4 5 6 7 8 9 -15 16 17 18 19 20 21 13 14 15 16 17 18 19 10 11 12 13 14 15 16 -22 23 24 25 26 27 28 20 21 22 23 24 25 26 17 18 19 20 21 22 23 -29 30 27 28 29 30 31 24 25 26 27 28 29 30 - - July August September -Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su - 1 2 3 4 5 6 7 1 2 3 4 1 - 8 9 10 11 12 13 14 5 6 7 8 9 10 11 2 3 4 5 6 7 8 -15 16 17 18 19 20 21 12 13 14 15 16 17 18 9 10 11 12 13 14 15 -22 23 24 25 26 27 28 19 20 21 22 23 24 25 16 17 18 19 20 21 22 -29 30 31 26 27 28 29 30 31 23 24 25 26 27 28 29 - 30 - - October November December -Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su - 1 2 3 4 5 6 1 2 3 1 - 7 8 9 10 11 12 13 4 5 6 7 8 9 10 2 3 4 5 6 7 8 -14 15 16 17 18 19 20 11 12 13 14 15 16 17 9 10 11 12 13 14 15 -21 22 23 24 25 26 27 18 19 20 21 22 23 24 16 17 18 19 20 21 22 -28 29 30 31 25 26 27 28 29 30 23 24 25 26 27 28 29 - 30 31 -``` - -#### 128 判断是否为闰年 - -```python -import calendar -from datetime import date - -mydate = date.today() -is_leap = calendar.isleap(mydate.year) -print_leap_str = "%s年是闰年" if is_leap else "%s年不是闰年\n" -print(print_leap_str % mydate.year) -``` - -打印结果: - -```python -2019年不是闰年 -``` - -#### 129 月的日历图 - -```python -import calendar -from datetime import date - -mydate = date.today() -month_calendar_str = calendar.month(mydate.year, mydate.month) - -print(f"{mydate.year}年-{mydate.month}月的日历图:{month_calendar_str}\n") -``` - -打印结果: - -```python -December 2019 -Mo Tu We Th Fr Sa Su - 1 - 2 3 4 5 6 7 8 - 9 10 11 12 13 14 15 -16 17 18 19 20 21 22 -23 24 25 26 27 28 29 -30 31 -``` - -#### 130 月有几天 - -```python -import calendar -from datetime import date - -mydate = date.today() -weekday, days = calendar.monthrange(mydate.year, mydate.month) -print(f'{mydate.year}年-{mydate.month}月的第一天是那一周的第{weekday}天\n') -print(f'{mydate.year}年-{mydate.month}月共有{days}天\n') -``` - -打印结果: - -```python -2019年-12月的第一天是那一周的第6天 - -2019年-12月共有31天 -``` - - - -#### 131 月第一天 - -```python -from datetime import date -mydate = date.today() -month_first_day = date(mydate.year, mydate.month, 1) -print(f"当月第一天:{month_first_day}\n") -``` - -打印结果: - -```python -# 当月第一天:2019-12-01 -``` - - - -#### 131 月最后一天 - -```python -from datetime import date -import calendar -mydate = date.today() -_, days = calendar.monthrange(mydate.year, mydate.month) -month_last_day = date(mydate.year, mydate.month, days) -print(f"当月最后一天:{month_last_day}\n") -``` - -打印结果: - -```python -当月最后一天:2019-12-31 -``` - - - -#### 132 获取当前时间 - -```python -from datetime import date, datetime -from time import localtime - -today_date = date.today() -print(today_date) # 2019-12-22 - -today_time = datetime.today() -print(today_time) # 2019-12-22 18:02:33.398894 - -local_time = localtime() -print(strftime("%Y-%m-%d %H:%M:%S", local_time)) # 转化为定制的格式 2019-12-22 18:13:41 -``` - - - -#### 133 字符时间转时间 - -```python -from time import strptime - -# parse str time to struct time -struct_time = strptime('2019-12-22 10:10:08', "%Y-%m-%d %H:%M:%S") -print(struct_time) # struct_time类型就是time中的一个类 - -# time.struct_time(tm_year=2019, tm_mon=12, tm_mday=22, tm_hour=10, tm_min=10, tm_sec=8, tm_wday=6, tm_yday=356, tm_isdst=-1) -``` - - - -#### 134 时间转字符时间 - -```python -from time import strftime, strptime, localtime - -In [2]: print(localtime()) #这是输入的时间 -Out[2]: time.struct_time(tm_year=2019, tm_mon=12, tm_mday=22, tm_hour=18, tm_min=24, tm_sec=56, tm_wday=6, tm_yday=356, tm_isdst=0) - -print(strftime("%m-%d-%Y %H:%M:%S", localtime())) # 转化为定制的格式 -# 这是字符串表示的时间: 12-22-2019 18:26:21 -``` - - - -#### 135 默认启动主线程 - -一般的,程序默认执行只在一个线程,这个线程称为主线程,例子演示如下: - -导入线程相关的模块 `threading`: - -```python -import threading -``` - -threading的类方法 `current_thread()`返回当前线程: - -```python -t = threading.current_thread() -print(t) # <_MainThread(MainThread, started 139908235814720)> -``` - -所以,验证了程序默认是在`MainThead`中执行。 - -`t.getName()`获得这个线程的名字,其他常用方法,`getName()`获得线程`id`,`isAlive()`判断线程是否存活等。 - -```python -print(t.getName()) # MainThread -print(t.ident) # 139908235814720 -print(t.isAlive()) # True -``` - -以上这些仅是介绍多线程的`背景知识`,因为到目前为止,我们有且仅有一个"干活"的主线程 - -#### 136 创建线程 - -创建一个线程: - -```python -my_thread = threading.Thread() -``` - -创建一个名称为`my_thread`的线程: - -```python -my_thread = threading.Thread(name='my_thread') -``` - -创建线程的目的是告诉它帮助我们做些什么,做些什么通过参数`target`传入,参数类型为`callable`,函数就是可调用的: - -```python -def print_i(i): - print('打印i:%d'%(i,)) -my_thread = threading.Thread(target=print_i,args=(1,)) -``` - -`my_thread`线程已经全副武装,但是我们得按下发射按钮,启动start(),它才开始真正起飞。 - -```python -my_thread().start() -``` - -打印结果如下,其中`args`指定函数`print_i`需要的参数i,类型为元祖。 - -```python -打印i:1 -``` - -至此,多线程相关的核心知识点,已经总结完毕。但是,仅仅知道这些,还不够!光纸上谈兵,当然远远不够。 - -接下来,聊聊应用多线程编程,最本质的一些东西。 - -**3 交替获得CPU时间片** - -为了更好解释,假定计算机是单核的,尽管对于`cpython`,这个假定有些多余。 - -开辟3个线程,装到`threads`中: - -```python -import time -from datetime import datetime -import threading - - -def print_time(): - for _ in range(5): # 在每个线程中打印5次 - time.sleep(0.1) # 模拟打印前的相关处理逻辑 - print('当前线程%s,打印结束时间为:%s'%(threading.current_thread().getName(),datetime.today())) - - -threads = [threading.Thread(name='t%d'%(i,),target=print_time) for i in range(3)] -``` - -启动3个线程: - -```python -[t.start() for t in threads] -``` - -打印结果如下,`t0`,`t1`,`t2`三个线程,根据操作系统的调度算法,轮询获得CPU时间片,注意观察,`t2`线程可能被连续调度,从而获得时间片。 - -```python -当前线程t0,打印结束时间为:2020-01-12 02:27:15.705235 -当前线程t1,打印结束时间为:2020-01-12 02:27:15.705402 -当前线程t2,打印结束时间为:2020-01-12 02:27:15.705687 -当前线程t0,打印结束时间为:2020-01-12 02:27:15.805767 -当前线程t1,打印结束时间为:2020-01-12 02:27:15.805886 -当前线程t2,打印结束时间为:2020-01-12 02:27:15.806044 -当前线程t0,打印结束时间为:2020-01-12 02:27:15.906200 -当前线程t2,打印结束时间为:2020-01-12 02:27:15.906320 -当前线程t1,打印结束时间为:2020-01-12 02:27:15.906433 -当前线程t0,打印结束时间为:2020-01-12 02:27:16.006581 -当前线程t1,打印结束时间为:2020-01-12 02:27:16.006766 -当前线程t2,打印结束时间为:2020-01-12 02:27:16.007006 -当前线程t2,打印结束时间为:2020-01-12 02:27:16.107564 -当前线程t0,打印结束时间为:2020-01-12 02:27:16.107290 -当前线程t1,打印结束时间为:2020-01-12 02:27:16.107741 -``` - -#### 137 多线程抢夺同一个变量 - -多线程编程,存在抢夺同一个变量的问题。 - -比如下面例子,创建的10个线程同时竞争全局变量`a`: -​ - -```python -import threading - - -a = 0 -def add1(): - global a - a += 1 - print('%s adds a to 1: %d'%(threading.current_thread().getName(),a)) - -threads = [threading.Thread(name='t%d'%(i,),target=add1) for i in range(10)] -[t.start() for t in threads] -``` - -执行结果: - -```python -t0 adds a to 1: 1 -t1 adds a to 1: 2 -t2 adds a to 1: 3 -t3 adds a to 1: 4 -t4 adds a to 1: 5 -t5 adds a to 1: 6 -t6 adds a to 1: 7 -t7 adds a to 1: 8 -t8 adds a to 1: 9 -t9 adds a to 1: 10 -``` - -结果一切正常,每个线程执行一次,把`a`的值加1,最后`a` 变为10,一切正常。 - -运行上面代码十几遍,一切也都正常。 - -所以,我们能下结论:这段代码是线程安全的吗? - -NO! - -多线程中,只要存在同时读取和修改一个全局变量的情况,如果不采取其他措施,就一定不是线程安全的。 - -尽管,有时,某些情况的资源竞争,暴露出问题的概率`极低极低`: - -本例中,如果线程0 在修改a后,其他某些线程还是get到的是没有修改前的值,就会暴露问题。 - - - -但是在本例中,`a = a + 1`这种修改操作,花费的时间太短了,短到我们无法想象。所以,线程间轮询执行时,都能get到最新的a值。所以,暴露问题的概率就变得微乎其微。 - -#### 138 代码稍作改动,叫问题暴露出来 - -只要弄明白问题暴露的原因,叫问题出现还是不困难的。 - -想象数据库的写入操作,一般需要耗费我们可以感知的时间。 - -为了模拟这个写入动作,简化期间,我们只需要延长修改变量`a`的时间,问题很容易就会还原出来。 - -```python -import threading -import time - - -a = 0 -def add1(): - global a - tmp = a + 1 - time.sleep(0.2) # 延时0.2秒,模拟写入所需时间 - a = tmp - print('%s adds a to 1: %d'%(threading.current_thread().getName(),a)) - -threads = [threading.Thread(name='t%d'%(i,),target=add1) for i in range(10)] -[t.start() for t in threads] -``` - -重新运行代码,只需一次,问题立马完全暴露,结果如下: - -```python -t0 adds a to 1: 1 -t1 adds a to 1: 1 -t2 adds a to 1: 1 -t3 adds a to 1: 1 -t4 adds a to 1: 1 -t5 adds a to 1: 1 -t7 adds a to 1: 1 -t6 adds a to 1: 1 -t8 adds a to 1: 1 -t9 adds a to 1: 1 -``` - -看到,10个线程全部运行后,`a`的值只相当于一个线程执行的结果。 - -下面分析,为什么会出现上面的结果: - -这是一个很有说服力的例子,因为在修改a前,有0.2秒的休眠时间,某个线程延时后,CPU立即分配计算资源给其他线程。直到分配给所有线程后,根据结果反映出,0.2秒的休眠时长还没耗尽,这样每个线程get到的a值都是0,所以才出现上面的结果。 - - - -以上最核心的三行代码: - -```python -tmp = a + 1 -time.sleep(0.2) # 延时0.2秒,模拟写入所需时间 -a = tmp -``` - -#### 139 加上一把锁,避免以上情况出现 - -知道问题出现的原因后,要想修复问题,也没那么复杂。 - -通过python中提供的锁机制,某段代码只能单线程执行时,上锁,其他线程等待,直到释放锁后,其他线程再争锁,执行代码,释放锁,重复以上。 - -创建一把锁`locka`: - -```python -import threading -import time - - -locka = threading.Lock() -``` - -通过 `locka.acquire()` 获得锁,通过`locka.release()`释放锁,它们之间的这些代码,只能单线程执行。 - -```python -a = 0 -def add1(): - global a - try: - locka.acquire() # 获得锁 - tmp = a + 1 - time.sleep(0.2) # 延时0.2秒,模拟写入所需时间 - a = tmp - finally: - locka.release() # 释放锁 - print('%s adds a to 1: %d'%(threading.current_thread().getName(),a)) - -threads = [threading.Thread(name='t%d'%(i,),target=add1) for i in range(10)] -[t.start() for t in threads] -``` - -执行结果如下: - -```python -t0 adds a to 1: 1 -t1 adds a to 1: 2 -t2 adds a to 1: 3 -t3 adds a to 1: 4 -t4 adds a to 1: 5 -t5 adds a to 1: 6 -t6 adds a to 1: 7 -t7 adds a to 1: 8 -t8 adds a to 1: 9 -t9 adds a to 1: 10 -``` - -一起正常,其实这已经是单线程顺序执行了,就本例子而言,已经失去多线程的价值,并且还带来了因为线程创建开销,浪费时间的副作用。 - -程序中只有一把锁,通过 `try...finally`还能确保不发生死锁。但是,当程序中启用多把锁,还是很容易发生死锁。 - -注意使用场合,避免死锁,是我们在使用多线程开发时需要注意的一些问题。 - -#### 140 1 分钟掌握 time 模块 - -time 模块提供时间相关的类和函数 - -记住一个类:`struct_time`,9 个整数组成的元组 - -记住下面 5 个最常用函数 - -首先导入`time`模块 - -```python -import time -``` - -**1 此时此刻时间浮点数** - -```python -In [58]: seconds = time.time() -In [60]: seconds -Out[60]: 1582341559.0950701 -``` - -**2 时间数组** - -```python -In [61]: local_time = time.localtime(seconds) - -In [62]: local_time -Out[62]: time.struct_time(tm_year=2020, tm_mon=2, tm_mday=22, tm_hour=11, tm_min=19, tm_sec=19, tm_wday=5, tm_yday=53, tm_isdst=0) -``` - -**3 时间字符串** - -`time.asctime` 语义: `as convert time` - -```python -In [63]: str_time = time.asctime(local_time) - -In [64]: str_time -Out[64]: 'Sat Feb 22 11:19:19 2020' -``` - -**4 格式化时间字符串** - -`time.strftime` 语义: `string format time` - -```python -In [65]: format_time = time.strftime('%Y-%m-%d %H:%M:%S',local_time) - -In [66]: format_time -Out[66]: '2020-02-22 11:19:19' -``` - -**5 字符时间转时间数组** - -```python -In [68]: str_to_struct = time.strptime(format_time,'%Y-%m-%d %H:%M:%S') - -In [69]: str_to_struct -Out[69]: time.struct_time(tm_year=2020, tm_mon=2, tm_mday=22, tm_hour=11, tm_min=19, tm_sec=19, tm_wday=5, tm_yday=53, tm_isdst=-1) -``` - -最后再记住常用字符串格式 - -**常用字符串格式** - -%m:月 - -%M: 分钟 - -```markdown - %Y Year with century as a decimal number. - %m Month as a decimal number [01,12]. - %d Day of the month as a decimal number [01,31]. - %H Hour (24-hour clock) as a decimal number [00,23]. - %M Minute as a decimal number [00,59]. - %S Second as a decimal number [00,61]. - %z Time zone offset from UTC. - %a Locale's abbreviated weekday name. - %A Locale's full weekday name. - %b Locale's abbreviated month name. -``` - -#### 141 4G 内存处理 10G 大小的文件 - -4G 内存处理 10G 大小的文件,单机怎么做? - -下面的讨论基于的假定:可以单独处理一行数据,行间数据相关性为零。 - -方法一: - -仅使用 Python 内置模板,逐行读取到内存。 - -使用 yield,好处是解耦读取操作和处理操作: - -```python -def python_read(filename): - with open(filename,'r',encoding='utf-8') as f: - while True: - line = f.readline() - if not line: - return - yield line -``` - -以上每次读取一行,逐行迭代,逐行处理数据 - -```python -if __name__ == '__main__': - g = python_read('./data/movies.dat') - for c in g: - print(c) - # process c -``` - -方法二: - -方法一有缺点,逐行读入,频繁的 IO 操作拖累处理效率。是否有一次 IO ,读取多行的方法? - -`pandas` 包 `read_csv` 函数,参数有 38 个之多,功能非常强大。 - -关于单机处理大文件,`read_csv` 的 `chunksize` 参数能做到,设置为 `5`, 意味着一次读取 5 行。 - -```python -def pandas_read(filename,sep=',',chunksize=5): - reader = pd.read_csv(filename,sep,chunksize=chunksize) - while True: - try: - yield reader.get_chunk() - except StopIteration: - print('---Done---') - break -``` - -使用如同方法一: -```python -if __name__ == '__main__': - g = pandas_read('./data/movies.dat',sep="::") - for c in g: - print(c) - # process c -``` - -以上就是单机处理大文件的两个方法,推荐使用方法二,更加灵活。除了工作中会用到,面试中也有时被问到。 - -### 四、Python三大利器 - -Python中的三大利器包括:`迭代器`,`生成器`,`装饰器`,利用好它们才能开发出最高性能的Python程序,涉及到的内置模块 `itertools`提供迭代器相关的操作。此部分收录有意思的例子共计`15`例。 - - -#### 142 寻找第n次出现位置 - -```python -def search_n(s, c, n): - size = 0 - for i, x in enumerate(s): - if x == c: - size += 1 - if size == n: - return i - return -1 - - - -print(search_n("fdasadfadf", "a", 3))# 结果为7,正确 -print(search_n("fdasadfadf", "a", 30))# 结果为-1,正确 -``` - - -#### 143 斐波那契数列前n项 - -```python -def fibonacci(n): - a, b = 1, 1 - for _ in range(n): - yield a - a, b = b, a + b - - -list(fibonacci(5)) # [1, 1, 2, 3, 5] -``` - -#### 144 找出所有重复元素 - -```python -from collections import Counter - - -def find_all_duplicates(lst): - c = Counter(lst) - return list(filter(lambda k: c[k] > 1, c)) - - -find_all_duplicates([1, 2, 2, 3, 3, 3]) # [2,3] -``` - -#### 145 联合统计次数 -Counter对象间可以做数学运算 - -```python -from collections import Counter -a = ['apple', 'orange', 'computer', 'orange'] -b = ['computer', 'orange'] - -ca = Counter(a) -cb = Counter(b) -#Counter对象间可以做数学运算 -ca + cb # Counter({'orange': 3, 'computer': 2, 'apple': 1}) - - -# 进一步抽象,实现多个列表内元素的个数统计 - - -def sumc(*c): - if (len(c) < 1): - return - mapc = map(Counter, c) - s = Counter([]) - for ic in mapc: # ic 是一个Counter对象 - s += ic - return s - - -#Counter({'orange': 3, 'computer': 3, 'apple': 1, 'abc': 1, 'face': 1}) -sumc(a, b, ['abc'], ['face', 'computer']) - -``` - -#### 146 groupby单字段分组 - -天气记录: - -```python -a = [{'date': '2019-12-15', 'weather': 'cloud'}, - {'date': '2019-12-13', 'weather': 'sunny'}, - {'date': '2019-12-14', 'weather': 'cloud'}] -``` - -按照天气字段`weather`分组汇总: - -```python -from itertools import groupby -for k, items in groupby(a,key=lambda x:x['weather']): - print(k) -``` - -输出结果看出,分组失败!原因:分组前必须按照分组字段`排序`,这个很坑~ - -```python -cloud -sunny -cloud -``` - -修改代码: - -```python -a.sort(key=lambda x: x['weather']) -for k, items in groupby(a,key=lambda x:x['weather']): - print(k) - for i in items: - print(i) -``` - -输出结果: - -```python -cloud -{'date': '2019-12-15', 'weather': 'cloud'} -{'date': '2019-12-14', 'weather': 'cloud'} -sunny -{'date': '2019-12-13', 'weather': 'sunny'} -``` - -#### 147 itemgetter和key函数 - -注意到`sort`和`groupby`所用的`key`函数,除了`lambda`写法外,还有一种简写,就是使用`itemgetter`: - -```python -a = [{'date': '2019-12-15', 'weather': 'cloud'}, - {'date': '2019-12-13', 'weather': 'sunny'}, - {'date': '2019-12-14', 'weather': 'cloud'}] -from operator import itemgetter -from itertools import groupby - -a.sort(key=itemgetter('weather')) -for k, items in groupby(a, key=itemgetter('weather')): - print(k) - for i in items: - print(i) -``` - -结果: - -```python -cloud -{'date': '2019-12-15', 'weather': 'cloud'} -{'date': '2019-12-14', 'weather': 'cloud'} -sunny -{'date': '2019-12-13', 'weather': 'sunny'} -``` - -#### 148 groupby多字段分组 - -`itemgetter`是一个类,`itemgetter('weather')`返回一个可调用的对象,它的参数可有多个: - -```python -from operator import itemgetter -from itertools import groupby - -a.sort(key=itemgetter('weather', 'date')) -for k, items in groupby(a, key=itemgetter('weather')): - print(k) - for i in items: - print(i) -``` - -结果如下,使用`weather`和`date`两个字段排序`a`, - -```python -cloud -{'date': '2019-12-14', 'weather': 'cloud'} -{'date': '2019-12-15', 'weather': 'cloud'} -sunny -{'date': '2019-12-13', 'weather': 'sunny'} -``` - -注意这个结果与上面结果有些微妙不同,这个更多是我们想看到和使用更多的。 - -#### 149 sum函数计算和聚合同时做 - -Python中的聚合类函数`sum`,`min`,`max`第一个参数是`iterable`类型,一般使用方法如下: - -```python -a = [4,2,5,1] -sum([i+1 for i in a]) # 16 -``` - -使用列表生成式`[i+1 for i in a]`创建一个长度与`a`一行的临时列表,这步完成后,再做`sum`聚合。 - -试想如果你的数组`a`长度十百万级,再创建一个这样的临时列表就很不划算,最好是一边算一边聚合,稍改动为如下: - -```python -a = [4,2,5,1] -sum(i+1 for i in a) # 16 -``` - -此时`i+1 for i in a`是`(i+1 for i in a)`的简写,得到一个生成器(`generator`)对象,如下所示: - -```python -In [8]:(i+1 for i in a) -OUT [8]: at 0x000002AC7FFA8CF0> -``` - -生成器每迭代一步吐出(`yield`)一个元素并计算和聚合后,进入下一次迭代,直到终点。 - -#### 150 list分组(生成器版) - -```python -from math import ceil - -def divide_iter(lst, n): - if n <= 0: - yield lst - return - i, div = 0, ceil(len(lst) / n) - while i < n: - yield lst[i * div: (i + 1) * div] - i += 1 - -list(divide_iter([1, 2, 3, 4, 5], 0)) # [[1, 2, 3, 4, 5]] -list(divide_iter([1, 2, 3, 4, 5], 2)) # [[1, 2, 3], [4, 5]] -``` - -#### 151 列表全展开(生成器版) -```python -#多层列表展开成单层列表 -a=[1,2,[3,4,[5,6],7],8,["python",6],9] -def function(lst): - for i in lst: - if type(i)==list: - yield from function(i) - else: - yield i -print(list(function(a))) # [1, 2, 3, 4, 5, 6, 7, 8, 'python', 6, 9] -``` - -#### 152 测试函数运行时间的装饰器 -```python -#测试函数执行时间的装饰器示例 -import time -def timing_func(fn): - def wrapper(): - start=time.time() - fn() #执行传入的fn参数 - stop=time.time() - return (stop-start) - return wrapper -@timing_func -def test_list_append(): - lst=[] - for i in range(0,100000): - lst.append(i) -@timing_func -def test_list_compre(): - [i for i in range(0,100000)] #列表生成式 -a=test_list_append() -c=test_list_compre() -print("test list append time:",a) -print("test list comprehension time:",c) -print("append/compre:",round(a/c,3)) - -test list append time: 0.0219423770904541 -test list comprehension time: 0.007980823516845703 -append/compre: 2.749 -``` - -#### 153 统计异常出现次数和时间的装饰器 - - -写一个装饰器,统计某个异常重复出现指定次数时,经历的时长。 -```python -import time -import math - - -def excepter(f): - i = 0 - t1 = time.time() - def wrapper(): - try: - f() - except Exception as e: - nonlocal i - i += 1 - print(f'{e.args[0]}: {i}') - t2 = time.time() - if i == n: - print(f'spending time:{round(t2-t1,2)}') - return wrapper - -``` - -关键词`nonlocal`常用于函数嵌套中,声明变量i为非局部变量; - -如果不声明,`i+=1`表明`i`为函数`wrapper`内的局部变量,因为在`i+=1`引用(reference)时,`i`未被声明,所以会报`unreferenced variable`的错误。 - -使用创建的装饰函数`excepter`, `n`是异常出现的次数。 - -共测试了两类常见的异常:`被零除`和`数组越界`。 - -```python -n = 10 # except count - -@excepter -def divide_zero_except(): - time.sleep(0.1) - j = 1/(40-20*2) - -# test zero divived except -for _ in range(n): - divide_zero_except() - - -@excepter -def outof_range_except(): - a = [1,3,5] - time.sleep(0.1) - print(a[3]) -# test out of range except -for _ in range(n): - outof_range_except() - -``` - -打印出来的结果如下: -```python -division by zero: 1 -division by zero: 2 -division by zero: 3 -division by zero: 4 -division by zero: 5 -division by zero: 6 -division by zero: 7 -division by zero: 8 -division by zero: 9 -division by zero: 10 -spending time:1.01 -list index out of range: 1 -list index out of range: 2 -list index out of range: 3 -list index out of range: 4 -list index out of range: 5 -list index out of range: 6 -list index out of range: 7 -list index out of range: 8 -list index out of range: 9 -list index out of range: 10 -spending time:1.01 -``` - - -#### 154 测试运行时长的装饰器 - - -```python -#测试函数执行时间的装饰器示例 -import time -def timing(fn): - def wrapper(): - start=time.time() - fn() #执行传入的fn参数 - stop=time.time() - return (stop-start) - return wrapper - -@timing -def test_list_append(): - lst=[] - for i in range(0,100000): - lst.append(i) - -@timing -def test_list_compre(): - [i for i in range(0,100000)] #列表生成式 - -a=test_list_append() -c=test_list_compre() -print("test list append time:",a) -print("test list comprehension time:",c) -print("append/compre:",round(a/c,3)) - -# test list append time: 0.0219 -# test list comprehension time: 0.00798 -# append/compre: 2.749 -``` - -#### 155 装饰器通俗理解 - -再看一个装饰器: - -```python -def call_print(f): - def g(): - print('you\'re calling %s function'%(f.__name__,)) - return g -``` - -使用`call_print`装饰器: - -```python -@call_print -def myfun(): - pass - -@call_print -def myfun2(): - pass -``` - -myfun()后返回: - -```python -In [27]: myfun() -you're calling myfun function - -In [28]: myfun2() -you're calling myfun2 function -``` - -**使用call_print** - -你看,`@call_print`放置在任何一个新定义的函数上面,都会默认输出一行,你正在调用这个函数的名。 - -这是为什么呢?注意观察新定义的`call_print`函数(加上@后便是装饰器): - -```python -def call_print(f): - def g(): - print('you\'re calling %s function'%(f.__name__,)) - return g -``` - -它必须接受一个函数`f`,然后返回另外一个函数`g`. - -**装饰器本质** - -本质上,它与下面的调用方式效果是等效的: - -``` -def myfun(): - pass - -def myfun2(): - pass - -def call_print(f): - def g(): - print('you\'re calling %s function'%(f.__name__,)) - return g -``` - -下面是最重要的代码: - -``` -myfun = call_print(myfun) -myfun2 = call_print(myfun2) -``` - -大家看明白吗?也就是call_print(myfun)后不是返回一个函数吗,然后再赋值给myfun. - -再次调用myfun, myfun2时,效果是这样的: - -```python -In [32]: myfun() -you're calling myfun function - -In [33]: myfun2() -you're calling myfun2 function -``` - -你看,这与装饰器的实现效果是一模一样的。装饰器的写法可能更加直观些,所以不用显示的这样赋值:`myfun = call_print(myfun)`,`myfun2 = call_print(myfun2)`,但是装饰器的这种封装,猛一看,有些不好理解。 - -#### 156 定制递减迭代器 - -```python -#编写一个迭代器,通过循环语句,实现对某个正整数的依次递减1,直到0. -class Descend(Iterator): - def __init__(self,N): - self.N=N - self.a=0 - def __iter__(self): - return self - def __next__(self): - while self.a - -#### 159 wordcloud词云图 - - -```python -import hashlib -import pandas as pd -from wordcloud import WordCloud -geo_data=pd.read_excel(r"../data/geo_data.xlsx") -print(geo_data) -# 0 深圳 -# 1 深圳 -# 2 深圳 -# 3 深圳 -# 4 深圳 -# 5 深圳 -# 6 深圳 -# 7 广州 -# 8 广州 -# 9 广州 - -words = ','.join(x for x in geo_data['city'] if x != []) #筛选出非空列表值 -wc = WordCloud( - background_color="green", #背景颜色"green"绿色 - max_words=100, #显示最大词数 - font_path='./fonts/simhei.ttf', #显示中文 - min_font_size=5, - max_font_size=100, - width=500 #图幅宽度 - ) -x = wc.generate(words) -x.to_file('../data/geo_data.png') -``` - -#### 160 plotly画柱状图和折线图 - -```python -#柱状图+折线图 -import plotly.graph_objects as go -fig = go.Figure() -fig.add_trace( - go.Scatter( - x=[0, 1, 2, 3, 4, 5], - y=[1.5, 1, 1.3, 0.7, 0.8, 0.9] - )) -fig.add_trace( - go.Bar( - x=[0, 1, 2, 3, 4, 5], - y=[2, 0.5, 0.7, -1.2, 0.3, 0.4] - )) -fig.show() -``` - - - - -#### 161 seaborn热力图 - -```python -# 导入库 -import seaborn as sns -import pandas as pd -import numpy as np -import matplotlib.pyplot as plt - -# 生成数据集 -data = np.random.random((6,6)) -np.fill_diagonal(data,np.ones(6)) -features = ["prop1","prop2","prop3","prop4","prop5", "prop6"] -data = pd.DataFrame(data, index = features, columns=features) -print(data) -# 绘制热力图 -heatmap_plot = sns.heatmap(data, center=0, cmap='gist_rainbow') -plt.show() -``` - - - -#### 162 matplotlib折线图 - -模块名称:example_utils.py,里面包括三个函数,各自功能如下: - -```python -import matplotlib.pyplot as plt - -# 创建画图fig和axes -def setup_axes(): - fig, axes = plt.subplots(ncols=3, figsize=(6.5,3)) - for ax in fig.axes: - ax.set(xticks=[], yticks=[]) - fig.subplots_adjust(wspace=0, left=0, right=0.93) - return fig, axes -# 图片标题 -def title(fig, text, y=0.9): - fig.suptitle(text, size=14, y=y, weight='semibold', x=0.98, ha='right', - bbox=dict(boxstyle='round', fc='floralwhite', ec='#8B7E66', - lw=2)) -# 为数据添加文本注释 -def label(ax, text, y=0): - ax.annotate(text, xy=(0.5, 0.00), xycoords='axes fraction', ha='center', - style='italic', - bbox=dict(boxstyle='round', facecolor='floralwhite', - ec='#8B7E66')) -``` - - - -```python -import numpy as np -import matplotlib.pyplot as plt - -import example_utils - -x = np.linspace(0, 10, 100) - -fig, axes = example_utils.setup_axes() -for ax in axes: - ax.margins(y=0.10) - -# 子图1 默认plot多条线,颜色系统分配 -for i in range(1, 6): - axes[0].plot(x, i * x) - -# 子图2 展示线的不同linestyle -for i, ls in enumerate(['-', '--', ':', '-.']): - axes[1].plot(x, np.cos(x) + i, linestyle=ls) - -# 子图3 展示线的不同linestyle和marker -for i, (ls, mk) in enumerate(zip(['', '-', ':'], ['o', '^', 's'])): - axes[2].plot(x, np.cos(x) + i * x, linestyle=ls, marker=mk, markevery=10) - -# 设置标题 -# example_utils.title(fig, '"ax.plot(x, y, ...)": Lines and/or markers', y=0.95) -# 保存图片 -fig.savefig('plot_example.png', facecolor='none') -# 展示图片 -plt.show() -``` - -#### 163 matplotlib散点图 - - -对应代码: - -```python -""" -散点图的基本用法 -""" -import numpy as np -import matplotlib.pyplot as plt - -import example_utils - -# 随机生成数据 -np.random.seed(1874) -x, y, z = np.random.normal(0, 1, (3, 100)) -t = np.arctan2(y, x) -size = 50 * np.cos(2 * t)**2 + 10 - -fig, axes = example_utils.setup_axes() - -# 子图1 -axes[0].scatter(x, y, marker='o', color='darkblue', facecolor='white', s=80) -example_utils.label(axes[0], 'scatter(x, y)') - -# 子图2 -axes[1].scatter(x, y, marker='s', color='darkblue', s=size) -example_utils.label(axes[1], 'scatter(x, y, s)') - -# 子图3 -axes[2].scatter(x, y, s=size, c=z, cmap='gist_ncar') -example_utils.label(axes[2], 'scatter(x, y, s, c)') - -# example_utils.title(fig, '"ax.scatter(...)": Colored/scaled markers', -# y=0.95) -fig.savefig('scatter_example.png', facecolor='none') - -plt.show() -``` - -#### 164 matplotlib柱状图 - - - -对应代码: - -```python -import numpy as np -import matplotlib.pyplot as plt - -import example_utils - - -def main(): - fig, axes = example_utils.setup_axes() - - basic_bar(axes[0]) - tornado(axes[1]) - general(axes[2]) - - # example_utils.title(fig, '"ax.bar(...)": Plot rectangles') - fig.savefig('bar_example.png', facecolor='none') - plt.show() - -# 子图1 -def basic_bar(ax): - y = [1, 3, 4, 5.5, 3, 2] - err = [0.2, 1, 2.5, 1, 1, 0.5] - x = np.arange(len(y)) - ax.bar(x, y, yerr=err, color='lightblue', ecolor='black') - ax.margins(0.05) - ax.set_ylim(bottom=0) - example_utils.label(ax, 'bar(x, y, yerr=e)') - -# 子图2 -def tornado(ax): - y = np.arange(8) - x1 = y + np.random.random(8) + 1 - x2 = y + 3 * np.random.random(8) + 1 - ax.barh(y, x1, color='lightblue') - ax.barh(y, -x2, color='salmon') - ax.margins(0.15) - example_utils.label(ax, 'barh(x, y)') - -# 子图3 -def general(ax): - num = 10 - left = np.random.randint(0, 10, num) - bottom = np.random.randint(0, 10, num) - width = np.random.random(num) + 0.5 - height = np.random.random(num) + 0.5 - ax.bar(left, height, width, bottom, color='salmon') - ax.margins(0.15) - example_utils.label(ax, 'bar(l, h, w, b)') - - -main() -``` - -#### 165 matplotlib等高线图 - - - -对应代码: - -```python -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.cbook import get_sample_data - -import example_utils - -z = np.load(get_sample_data('bivariate_normal.npy')) - -fig, axes = example_utils.setup_axes() - -axes[0].contour(z, cmap='gist_earth') -example_utils.label(axes[0], 'contour') - -axes[1].contourf(z, cmap='gist_earth') -example_utils.label(axes[1], 'contourf') - -axes[2].contourf(z, cmap='gist_earth') -cont = axes[2].contour(z, colors='black') -axes[2].clabel(cont, fontsize=6) -example_utils.label(axes[2], 'contourf + contour\n + clabel') - -# example_utils.title(fig, '"contour, contourf, clabel": Contour/label 2D data', -# y=0.96) -fig.savefig('contour_example.png', facecolor='none') - -plt.show() -``` - -#### 166 imshow图 - - - -对应代码: - -```python -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.cbook import get_sample_data -from mpl_toolkits import axes_grid1 - -import example_utils - - -def main(): - fig, axes = setup_axes() - plot(axes, *load_data()) - # example_utils.title(fig, '"ax.imshow(data, ...)": Colormapped or RGB arrays') - fig.savefig('imshow_example.png', facecolor='none') - plt.show() - - -def plot(axes, img_data, scalar_data, ny): - - # 默认线性插值 - axes[0].imshow(scalar_data, cmap='gist_earth', extent=[0, ny, ny, 0]) - - # 最近邻插值 - axes[1].imshow(scalar_data, cmap='gist_earth', interpolation='nearest', - extent=[0, ny, ny, 0]) - - # 展示RGB/RGBA数据 - axes[2].imshow(img_data) - - -def load_data(): - img_data = plt.imread(get_sample_data('5.png')) - ny, nx, nbands = img_data.shape - scalar_data = np.load(get_sample_data('bivariate_normal.npy')) - return img_data, scalar_data, ny - - -def setup_axes(): - fig = plt.figure(figsize=(6, 3)) - axes = axes_grid1.ImageGrid(fig, [0, 0, .93, 1], (1, 3), axes_pad=0) - - for ax in axes: - ax.set(xticks=[], yticks=[]) - return fig, axes - - -main() -``` - -#### 167 pyecharts绘制仪表盘 - -使用pip install pyecharts 安装,版本为 v1.6,pyecharts绘制仪表盘,只需要几行代码: - -```python -from pyecharts import charts - -# 仪表盘 -gauge = charts.Gauge() -gauge.add('Python小例子', [('Python机器学习', 30), ('Python基础', 70.), - ('Python正则', 90)]) -gauge.render(path="./data/仪表盘.html") -print('ok') -``` - -仪表盘中共展示三项,每项的比例为30%,70%,90%,如下图默认名称显示第一项:Python机器学习,完成比例为30% - - - -#### 168 pyecharts漏斗图 - -```python -from pyecharts import options as opts -from pyecharts.charts import Funnel, Page -from random import randint - -def funnel_base() -> Funnel: - c = ( - Funnel() - .add("豪车", [list(z) for z in zip(['宝马', '法拉利', '奔驰', '奥迪', '大众', '丰田', '特斯拉'], - [randint(1, 20) for _ in range(7)])]) - .set_global_opts(title_opts=opts.TitleOpts(title="豪车漏斗图")) - ) - return c -funnel_base().render('./img/car_fnnel.html') -``` - -以7种车型及某个属性值绘制的漏斗图,属性值大越靠近漏斗的大端。 - - - -#### 169 pyecharts日历图 - -```python -import datetime -import random -from pyecharts import options as opts -from pyecharts.charts import Calendar - -def calendar_interval_1() -> Calendar: - begin = datetime.date(2019, 1, 1) - end = datetime.date(2019, 12, 27) - data = [ - [str(begin + datetime.timedelta(days=i)), random.randint(1000, 25000)] - for i in range(0, (end - begin).days + 1, 2) # 隔天统计 - ] - calendar = ( - Calendar(init_opts=opts.InitOpts(width="1200px")).add( - "", data, calendar_opts=opts.CalendarOpts(range_="2019")) - .set_global_opts( - title_opts=opts.TitleOpts(title="Calendar-2019年步数统计"), - visualmap_opts=opts.VisualMapOpts( - max_=25000, - min_=1000, - orient="horizontal", - is_piecewise=True, - pos_top="230px", - pos_left="100px", - ), - ) - ) - return calendar - -calendar_interval_1().render('./img/calendar.html') -``` - -绘制2019年1月1日到12月27日的步行数,官方给出的图形宽度`900px`不够,只能显示到9月份,本例使用`opts.InitOpts(width="1200px")`做出微调,并且`visualmap`显示所有步数,每隔一天显示一次: - - - -#### 170 pyecharts绘制graph图 - -```python -import json -import os -from pyecharts import options as opts -from pyecharts.charts import Graph, Page - -def graph_base() -> Graph: - nodes = [ - {"name": "cus1", "symbolSize": 10}, - {"name": "cus2", "symbolSize": 30}, - {"name": "cus3", "symbolSize": 20} - ] - links = [] - for i in nodes: - if i.get('name') == 'cus1': - continue - for j in nodes: - if j.get('name') == 'cus1': - continue - links.append({"source": i.get("name"), "target": j.get("name")}) - c = ( - Graph() - .add("", nodes, links, repulsion=8000) - .set_global_opts(title_opts=opts.TitleOpts(title="customer-influence")) - ) - return c -``` - -构建图,其中客户点1与其他两个客户都没有关系(`link`),也就是不存在有效边: - - - -#### 171 pyecharts水球图 - -```python -from pyecharts import options as opts -from pyecharts.charts import Liquid, Page -from pyecharts.globals import SymbolType - -def liquid() -> Liquid: - c = ( - Liquid() - .add("lq", [0.67, 0.30, 0.15]) - .set_global_opts(title_opts=opts.TitleOpts(title="Liquid")) - ) - return c - -liquid().render('./img/liquid.html') -``` - -水球图的取值`[0.67, 0.30, 0.15]`表示下图中的`三个波浪线`,一般代表三个百分比: - - - -#### 172 pyecharts饼图 - -```python -from pyecharts import options as opts -from pyecharts.charts import Pie -from random import randint - -def pie_base() -> Pie: - c = ( - Pie() - .add("", [list(z) for z in zip(['宝马', '法拉利', '奔驰', '奥迪', '大众', '丰田', '特斯拉'], - [randint(1, 20) for _ in range(7)])]) - .set_global_opts(title_opts=opts.TitleOpts(title="Pie-基本示例")) - .set_series_opts(label_opts=opts.LabelOpts(formatter="{b}: {c}")) - ) - return c - -pie_base().render('./img/pie_pyecharts.html') -``` - - - -#### 173 pyecharts极坐标图 - -```python -import random -from pyecharts import options as opts -from pyecharts.charts import Page, Polar - -def polar_scatter0() -> Polar: - data = [(alpha, random.randint(1, 100)) for alpha in range(101)] # r = random.randint(1, 100) - print(data) - c = ( - Polar() - .add("", data, type_="bar", label_opts=opts.LabelOpts(is_show=False)) - .set_global_opts(title_opts=opts.TitleOpts(title="Polar")) - ) - return c - -polar_scatter0().render('./img/polar.html') -``` - -极坐标表示为`(夹角,半径)`,如(6,94)表示夹角为6,半径94的点: - - - -#### 174 pyecharts词云图 - -```python -from pyecharts import options as opts -from pyecharts.charts import Page, WordCloud -from pyecharts.globals import SymbolType - -words = [ - ("Python", 100), - ("C++", 80), - ("Java", 95), - ("R", 50), - ("JavaScript", 79), - ("C", 65) -] - -def wordcloud() -> WordCloud: - c = ( - WordCloud() - # word_size_range: 单词字体大小范围 - .add("", words, word_size_range=[20, 100], shape='cardioid') - .set_global_opts(title_opts=opts.TitleOpts(title="WordCloud")) - ) - return c - -wordcloud().render('./img/wordcloud.html') -``` - -`("C",65)`表示在本次统计中C语言出现65次 - - - -#### 175 pyecharts系列柱状图 - -```python -from pyecharts import options as opts -from pyecharts.charts import Bar -from random import randint - -def bar_series() -> Bar: - c = ( - Bar() - .add_xaxis(['宝马', '法拉利', '奔驰', '奥迪', '大众', '丰田', '特斯拉']) - .add_yaxis("销量", [randint(1, 20) for _ in range(7)]) - .add_yaxis("产量", [randint(1, 20) for _ in range(7)]) - .set_global_opts(title_opts=opts.TitleOpts(title="Bar的主标题", subtitle="Bar的副标题")) - ) - return c - -bar_series().render('./img/bar_series.html') -``` - - - -#### 176 pyecharts热力图 - -```python -import random -from pyecharts import options as opts -from pyecharts.charts import HeatMap - -def heatmap_car() -> HeatMap: - x = ['宝马', '法拉利', '奔驰', '奥迪', '大众', '丰田', '特斯拉'] - y = ['中国','日本','南非','澳大利亚','阿根廷','阿尔及利亚','法国','意大利','加拿大'] - value = [[i, j, random.randint(0, 100)] - for i in range(len(x)) for j in range(len(y))] - c = ( - HeatMap() - .add_xaxis(x) - .add_yaxis("销量", y, value) - .set_global_opts( - title_opts=opts.TitleOpts(title="HeatMap"), - visualmap_opts=opts.VisualMapOpts(), - ) - ) - return c - -heatmap_car().render('./img/heatmap_pyecharts.html') -``` - -热力图描述的实际是三维关系,x轴表示车型,y轴表示国家,每个色块的颜色值代表销量,颜色刻度尺显示在左下角,颜色越红表示销量越大。 - - - - - -#### 178 matplotlib绘制动画 - -`matplotlib`是python中最经典的绘图包,里面`animation`模块能绘制动画。 - -首先导入小例子使用的模块: -```python -from matplotlib import pyplot as plt -from matplotlib import animation -from random import randint, random -``` - -生成数据,`frames_count`是帧的个数,`data_count`每个帧的柱子个数 - -```python -class Data: - data_count = 32 - frames_count = 2 - - def __init__(self, value): - self.value = value - self.color = (0.5, random(), random()) #rgb - - # 造数据 - @classmethod - def create(cls): - return [[Data(randint(1, cls.data_count)) for _ in range(cls.data_count)] - for frame_i in range(cls.frames_count)] -``` - -绘制动画:`animation.FuncAnimation`函数的回调函数的参数`fi`表示第几帧,注意要调用`axs.cla()`清除上一帧。 - -```python -def draw_chart(): - fig = plt.figure(1, figsize=(16, 9)) - axs = fig.add_subplot(111) - axs.set_xticks([]) - axs.set_yticks([]) - - # 生成数据 - frames = Data.create() - - def animate(fi): - axs.cla() # clear last frame - axs.set_xticks([]) - axs.set_yticks([]) - return axs.bar(list(range(Data.data_count)), # X - [d.value for d in frames[fi]], # Y - 1, # width - color=[d.color for d in frames[fi]] # color - ) - # 动画展示 - anim = animation.FuncAnimation(fig, animate, frames=len(frames)) - plt.show() - - -draw_chart() -``` - -#### 179 pyecharts绘图属性设置方法 - -昨天一位读者朋友问我`pyecharts`中,y轴如何显示在右侧。先说下如何设置,同时阐述例子君是如何找到找到此属性的。 - -这是pyecharts中一般的绘图步骤: -```python -from pyecharts.faker import Faker -from pyecharts import options as opts -from pyecharts.charts import Bar -from pyecharts.commons.utils import JsCode - -def bar_base() -> Bar: - c = ( - Bar() - .add_xaxis(Faker.choose()) - .add_yaxis("商家A", Faker.values()) - .set_global_opts(title_opts=opts.TitleOpts(title="Bar-基本示例", subtitle="我是副标题")) - ) - return c - -bar_base().render('./bar.html') -``` -那么,如何设置y轴显示在右侧,添加一行代码: -```python -.set_global_opts(yaxis_opts=opts.AxisOpts(position='right')) -``` -也就是: -```python -c = ( - Bar() - .add_xaxis(Faker.choose()) - .add_yaxis("商家A", Faker.values()) - .set_global_opts(title_opts=opts.TitleOpts(title="Bar-基本示例", subtitle="我是副标题")) - .set_global_opts(yaxis_opts=opts.AxisOpts(position='right')) - ) -``` - -如何锁定这个属性,首先应该在set_global_opts函数的参数中找,它一共有以下`11`个设置参数,它们位于模块`charts.py`: -```python -title_opts: types.Title = opts.TitleOpts(), -legend_opts: types.Legend = opts.LegendOpts(), -tooltip_opts: types.Tooltip = None, -toolbox_opts: types.Toolbox = None, -brush_opts: types.Brush = None, -xaxis_opts: types.Axis = None, -yaxis_opts: types.Axis = None, -visualmap_opts: types.VisualMap = None, -datazoom_opts: types.DataZoom = None, -graphic_opts: types.Graphic = None, -axispointer_opts: types.AxisPointer = None, -``` -因为是设置y轴显示在右侧,自然想到设置参数`yaxis_opts`,因为其类型为`types.Axis`,所以再进入`types.py`,同时定位到`Axis`: -```python -Axis = Union[opts.AxisOpts, dict, None] -``` -Union是pyecharts中可容纳多个类型的并集列表,也就是Axis可能为`opts.AxisOpt`, `dict`, 或`None`三种类型。查看第一个`opts.AxisOpt`类,它共定义以下`25`个参数: -```python -type_: Optional[str] = None, -name: Optional[str] = None, -is_show: bool = True, -is_scale: bool = False, -is_inverse: bool = False, -name_location: str = "end", -name_gap: Numeric = 15, -name_rotate: Optional[Numeric] = None, -interval: Optional[Numeric] = None, -grid_index: Numeric = 0, -position: Optional[str] = None, -offset: Numeric = 0, -split_number: Numeric = 5, -boundary_gap: Union[str, bool, None] = None, -min_: Union[Numeric, str, None] = None, -max_: Union[Numeric, str, None] = None, -min_interval: Numeric = 0, -max_interval: Optional[Numeric] = None, -axisline_opts: Union[AxisLineOpts, dict, None] = None, -axistick_opts: Union[AxisTickOpts, dict, None] = None, -axislabel_opts: Union[LabelOpts, dict, None] = None, -axispointer_opts: Union[AxisPointerOpts, dict, None] = None, -name_textstyle_opts: Union[TextStyleOpts, dict, None] = None, -splitarea_opts: Union[SplitAreaOpts, dict, None] = None, -splitline_opts: Union[SplitLineOpts, dict] = SplitLineOpts(), -``` -观察后尝试参数`position`,结合官档:`https://pyecharts.org/#/zh-cn/global_options?id=axisopts%ef%bc%9a%e5%9d%90%e6%a0%87%e8%bd%b4%e9%85%8d%e7%bd%ae%e9%a1%b9`,介绍x轴设置position时有bottom, top, 所以y轴设置很可能就是left,right. - -OK! - -#### 180 pyecharts绘图属性设置方法(下) - - - -**分步讲解如何配置为上图** - -1)柱状图显示效果动画对应控制代码: - -```python -animation_opts=opts.AnimationOpts( - animation_delay=500, animation_easing="cubicOut" - ) -``` -2)柱状图显示主题对应控制代码: -```python -theme=ThemeType.MACARONS -``` -3)添加x轴对应的控制代码: -```python -add_xaxis( ["草莓", "芒果", "葡萄", "雪梨", "西瓜", "柠檬", "车厘子"] -``` -4)添加y轴对应的控制代码: -```python -add_yaxis("A", Faker.values(), -``` -5)修改柱间距对应的控制代码: -```python -category_gap="50%" -``` - -6)A系列柱子是否显示对应的控制代码: -```python -is_selected=True -``` - -7)A系列柱子颜色渐变对应的控制代码: -```python -itemstyle_opts={ - "normal": { - "color": JsCode("""new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ - offset: 0, - color: 'rgba(0, 244, 255, 1)' - }, { - offset: 1, - color: 'rgba(0, 77, 167, 1)' - }], false)"""), - "barBorderRadius": [6, 6, 6, 6], - "shadowColor": 'rgb(0, 160, 221)', - }} -``` -8)A系列柱子最大和最小值`标记点`对应的控制代码: -```python -markpoint_opts=opts.MarkPointOpts( - data=[ - opts.MarkPointItem(type_="max", name="最大值"), - opts.MarkPointItem(type_="min", name="最小值"), - ] - ) -``` -9)A系列柱子最大和最小值`标记线`对应的控制代码: -```python -markline_opts=opts.MarkLineOpts( - data=[ - opts.MarkLineItem(type_="min", name="最小值"), - opts.MarkLineItem(type_="max", name="最大值") - ] - ) -``` -10)柱状图标题对应的控制代码: -```python -title_opts=opts.TitleOpts(title="Bar-参数使用例子" -``` -11)柱状图非常有用的toolbox显示对应的控制代码: -```python -toolbox_opts=opts.ToolboxOpts() -``` - -12)Y轴显示在右侧对应的控制代码: -```python -yaxis_opts=opts.AxisOpts(position="right") -``` -13)Y轴名称对应的控制代码: -```python -yaxis_opts=opts.AxisOpts(,name="Y轴") -``` -14)数据轴区域放大缩小设置对应的控制代码: -```python -datazoom_opts=opts.DataZoomOpts() -``` - -**完整代码** - -```python -def bar_border_radius(): - c = ( - Bar(init_opts=opts.InitOpts( - animation_opts=opts.AnimationOpts( - animation_delay=500, animation_easing="cubicOut" - ), - theme=ThemeType.MACARONS)) - .add_xaxis( ["草莓", "芒果", "葡萄", "雪梨", "西瓜", "柠檬", "车厘子"]) - .add_yaxis("A", Faker.values(),category_gap="50%",markpoint_opts=opts.MarkPointOpts(),is_selected=True) - .set_series_opts(itemstyle_opts={ - "normal": { - "color": JsCode("""new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ - offset: 0, - color: 'rgba(0, 244, 255, 1)' - }, { - offset: 1, - color: 'rgba(0, 77, 167, 1)' - }], false)"""), - "barBorderRadius": [6, 6, 6, 6], - "shadowColor": 'rgb(0, 160, 221)', - }}, markpoint_opts=opts.MarkPointOpts( - data=[ - opts.MarkPointItem(type_="max", name="最大值"), - opts.MarkPointItem(type_="min", name="最小值"), - ] - ),markline_opts=opts.MarkLineOpts( - data=[ - opts.MarkLineItem(type_="min", name="最小值"), - opts.MarkLineItem(type_="max", name="最大值") - ] - )) - .set_global_opts(title_opts=opts.TitleOpts(title="Bar-参数使用例子"), toolbox_opts=opts.ToolboxOpts(),yaxis_opts=opts.AxisOpts(position="right",name="Y轴"),datazoom_opts=opts.DataZoomOpts(),) - - ) - - return c - -bar_border_radius().render() -``` - -#### 181 pyecharts原来可以这样快速入门(上) - -最近两天,翻看下`pyecharts`的源码,感叹这个框架写的真棒,思路清晰,设计简洁,通俗易懂,推荐读者们有空也阅读下。 - -bee君是被pyecharts官档介绍-五个特性所吸引: - -1)简洁的 API 设计,使用如丝滑般流畅,支持链式调用; - -2)囊括了 30+ 种常见图表,应有尽有; - -3)支持主流 Notebook 环境,Jupyter Notebook 和 JupyterLab; - -4)可轻松集成至 Flask,Django 等主流 Web 框架; - -5)高度灵活的配置项,可轻松搭配出精美的图表 - -pyecharts 确实也如上面五个特性介绍那样,使用起来非常方便。那么,有些读者不禁好奇会问,pyecharts 是如何做到的? - -我们不妨从pyecharts官档`5分钟入门pyecharts`章节开始,由表(最高层函数)及里(底层函数也就是所谓的`源码`),一探究竟。 - - - -**官方第一个例子** - -不妨从官档给出的第一个例子说起, - -```python -from pyecharts.charts import Bar - -bar = Bar() -bar.add_xaxis(["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]) -bar.add_yaxis("商家A", [5, 20, 36, 10, 75, 90]) -# render 会生成本地 HTML 文件,默认会在当前目录生成 render.html 文件 -# 也可以传入路径参数,如 bar.render("mycharts.html") -bar.render() -``` - -第一行代码:`from pyecharts.charts import Bar`,先上一张源码中`包的结构图`: - -![](./img/pyecharts1.jpg) - -`bar.py`模块中定义了类`Bar(RectChart)`,如下所示: - -```python -class Bar(RectChart): - """ - <<< Bar Chart >>> - - Bar chart presents categorical data with rectangular bars - with heights or lengths proportional to the values that they represent. - """ -``` - - - -这里有读者可能会有以下两个问题: - -1)为什么根据图1中的包结构,为什么不这么写:`from pyecharts.charts.basic_charts import Bar` - -![](./img/pyechart2.jpg) - - - -答:请看图2中`__init__.py`模块,文件内容如下,看到导入`charts`包,而非`charts.basic_charts` - -```python -from pyecharts import charts, commons, components, datasets, options, render, scaffold -from pyecharts._version import __author__, __version__ -``` - -2)`Bar(RectChart)`是什么意思 - -答:RectChart是Bar的子类 - -下面4行代码,很好理解,没有特殊性。 - -pyecharts主要两个大版本,0.5基版本和1.0基版本,从1.0基版本开始全面支持`链式调用`,bee君也很喜爱这种链式调用模式,代码看起来更加紧凑: - -```python -from pyecharts.charts import Bar - -bar = ( - Bar() - .add_xaxis(["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]) - .add_yaxis("商家A", [5, 20, 36, 10, 75, 90]) -) -bar.render() -``` - -实现`链式调用`也没有多难,保证返回类本身`self`即可,如果非要有其他返回对象,那么要提到类内以便被全局共享, - -add_xaxis函数返回`self` - -```python - def add_xaxis(self, xaxis_data: Sequence): - self.options["xAxis"][0].update(data=xaxis_data) - self._xaxis_data = xaxis_data - return self -``` - -add_yaxis函数同样返回`self`. - -#### 182 pyecharts原来可以这样快速入门(中) - -**一切皆options** - -pyecharts用起来很爽的另一个重要原因,`参数配置项`封装的非常nice,通过定义一些列基础的配置组件,比如`global_options.py`模块中定义的配置对象有以下`27`个 - -```python - AngleAxisItem, - AngleAxisOpts, - AnimationOpts, - Axis3DOpts, - AxisLineOpts, - AxisOpts, - AxisPointerOpts, - AxisTickOpts, - BrushOpts, - CalendarOpts, - DataZoomOpts, - Grid3DOpts, - GridOpts, - InitOpts, - LegendOpts, - ParallelAxisOpts, - ParallelOpts, - PolarOpts, - RadarIndicatorItem, - RadiusAxisItem, - RadiusAxisOpts, - SingleAxisOpts, - TitleOpts, - ToolBoxFeatureOpts, - ToolboxOpts, - TooltipOpts, - VisualMapOpts, -``` - -#### 183 pyecharts原来可以这样快速入门(下) - -**第二个例子** - -了解上面的配置对象后,再看官档给出的第二个例子,与第一个例子相比,增加了一行代码:`set_global_opts`函数 - -```python -from pyecharts.charts import Bar -from pyecharts import options as opts - -# V1 版本开始支持链式调用 -# 你所看到的格式其实是 `black` 格式化以后的效果 -# 可以执行 `pip install black` 下载使用 -bar = ( - Bar() - .add_xaxis(["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]) - .add_yaxis("商家A", [5, 20, 36, 10, 75, 90]) - .set_global_opts(title_opts=opts.TitleOpts(title="主标题", subtitle="副标题")) - -bar.render() -``` - -`set_global_opts`函数在pyecharts中被高频使用,它定义在底层基础模块`Chart.py`中,它是前面说到的`RectChart`的子类,`Bar`类的孙子类。 - -浏览下函数的参数: - -```python -def set_global_opts( - self, - title_opts: types.Title = opts.TitleOpts(), - legend_opts: types.Legend = opts.LegendOpts(), - tooltip_opts: types.Tooltip = None, - toolbox_opts: types.Toolbox = None, - brush_opts: types.Brush = None, - xaxis_opts: types.Axis = None, - yaxis_opts: types.Axis = None, - visualmap_opts: types.VisualMap = None, - datazoom_opts: types.DataZoom = None, - graphic_opts: types.Graphic = None, - axispointer_opts: types.AxisPointer = None, - ): -``` - -以第二个参数`title_opts`为例,说明`pyecharts`中参数赋值的风格。 - -首先,`title_opts`是`默认参数`,默认值为`opts.TitleOpts()`,这个对象在上一节中,我们提到过,是`global_options.py`模块中定义的`27`个配置对象种的一个。 - -其次,pyecharts中为了增强代码可读性,参数的类型都显示的给出。此处它的类型为:`types.Title`. 这是什么类型?它的类型不是`TitleOpts`吗?不急,看看Title这个类型的定义: - -```python -Title = Union[opts.TitleOpts, dict] -``` - -原来`Title`可能是`opts.TitleOpts`, 也可能是python原生的`dict`. 通过`Union`实现的就是这种`类型效果`。所以这就解释了官档中为什么说也可以使用字典配置参数的问题,如下官档: - -```python - # 或者直接使用字典参数 - # .set_global_opts(title_opts={"text": "主标题", "subtext": "副标题"}) -) -``` - -最后,真正的关于图表的标题相关的属性都被封装到TitleOpts类中,比如`title`,`subtitle`属性,查看源码,TitleOpts对象还有更多属性: - -```python -class TitleOpts(BasicOpts): - def __init__( - self, - title: Optional[str] = None, - title_link: Optional[str] = None, - title_target: Optional[str] = None, - subtitle: Optional[str] = None, - subtitle_link: Optional[str] = None, - subtitle_target: Optional[str] = None, - pos_left: Optional[str] = None, - pos_right: Optional[str] = None, - pos_top: Optional[str] = None, - pos_bottom: Optional[str] = None, - padding: Union[Sequence, Numeric] = 5, - item_gap: Numeric = 10, - title_textstyle_opts: Union[TextStyleOpts, dict, None] = None, - subtitle_textstyle_opts: Union[TextStyleOpts, dict, None] = None, - ): -``` - -OK. 到此跟随5分钟入门的官档,结合两个例子实现的背后源码,探讨了: - -1)与包结构组织相关的`__init__.py`; - -2)类的继承关系:Bar->RectChart->Chart; - -3)链式调用; - -4)重要的参数配置包`options`,以TitleOpts类为例,`set_global_opts`将它装载到Bar类中实现属性自定义。 - -#### 184 1 分钟学会画 pairplot 图 - -seaborn 绘图库,基于 matplotlib 开发,提供更高层绘图接口。 - -学习使用 seaborn 绘制 `pairplot` 图 - -`pairplot` 图能直观的反映出两两特征间的关系,帮助我们对数据集建立初步印象,更好的完成分类和聚类任务。 - -使用 skearn 导入经典的 Iris 数据集,共有 150 条记录,4 个特征,target 有三种不同值。如下所示: - -```markdown - sepal_length sepal_width petal_length petal_width species -0 5.1 3.5 1.4 0.2 setosa -1 4.9 3.0 1.4 0.2 setosa -2 4.7 3.2 1.3 0.2 setosa -3 4.6 3.1 1.5 0.2 setosa -4 5.0 3.6 1.4 0.2 setosa -.. ... ... ... ... ... -145 6.7 3.0 5.2 2.3 virginica -146 6.3 2.5 5.0 1.9 virginica -147 6.5 3.0 5.2 2.0 virginica -148 6.2 3.4 5.4 2.3 virginica -149 5.9 3.0 5.1 1.8 virginica -``` - -使用 seaborn 绘制 `sepal_length`, `petal_length` 两个特征间的关系矩阵: - -```python -from sklearn.datasets import load_iris -import matplotlib.pyplot as plt -import seaborn as sns -from sklearn import tree - -sns.set(style="ticks") - -df02 = df.iloc[:,[0,2,4]] # 选择一对特征 -sns.pairplot(df02) -plt.show() -``` - - - -设置颜色多显: - -``` -sns.pairplot(df02, hue="species") -plt.show() -``` - -绘制所有特征散点矩阵: - -``` -sns.pairplot(df, hue="species") -plt.show() -``` - - - -### 六、 Python 坑点和工具 - -#### 185 含单个元素的元组 - -Python中有些函数的参数类型为元组,其内有1个元素,这样创建是错误的: - -```python -c = (5) # NO! -``` - -它实际创建一个整型元素5,必须要在元素后加一个`逗号`: - -```python -c = (5,) # YES! -``` - -#### 186 默认参数设为空 - -含有默认参数的函数,如果类型为容器,且设置为空: - -```python -def f(a,b=[]): # NO! - print(b) - return b - -ret = f(1) -ret.append(1) -ret.append(2) -# 当再调用f(1)时,预计打印为 [] -f(1) -# 但是却为 [1,2] -``` - -这是可变类型的默认参数之坑,请务必设置此类默认参数为None: - -```python -def f(a,b=None): # YES! - pass -``` - -#### 187 共享变量未绑定之坑 - -有时想要多个函数共享一个全局变量,但却在某个函数内试图修改它为局部变量: - -```python -i = 1 -def f(): - i+=1 #NO! - -def g(): - print(i) -``` - -应该在f函数内显示声明`i`为global变量: - -```python -i = 1 -def f(): - global i # YES! - i+=1 -``` - -#### 188 lambda自由参数之坑 - -排序和分组的key函数常使用lambda,表达更加简洁,但是有个坑新手容易掉进去: - -```python -a = [lambda x: x+i for i in range(3)] # NO! -for f in a: - print(f(1)) -# 你可能期望输出:1,2,3 -``` - -但是实际却输出: 3,3,3. 定义lambda使用的`i`被称为自由参数,它只在调用lambda函数时,值才被真正确定下来,这就犹如下面打印出2,你肯定确信无疑吧。 - -```python -a = 0 -a = 1 -a = 2 -def f(a): - print(a) -``` - -正确做法是转化`自由参数`为lambda函数的`默认参数`: - -```python -a = [lambda x,i=i: x+i for i in range(3)] # YES! -``` - -#### 189 各种参数使用之坑 - -Python强大多变,原因之一在于函数参数类型的多样化。方便的同时,也为使用者带来更多的约束规则。如果不了解这些规则,调用函数时,可能会出现如下一些语法异常: - -*(1) SyntaxError: positional argument follows keyword argument* - - -*(2) TypeError: f() missing 1 required keyword-only argument: 'b'* - - -*(3) SyntaxError: keyword argument repeated* - -*(4) TypeError: f() missing 1 required positional argument: 'b'* - -*(5) TypeError: f() got an unexpected keyword argument 'a'* - -*(6) TypeError: f() takes 0 positional arguments but 1 was given* - - -总结主要的参数使用规则 - -位置参数 - -`位置参数`的定义:`函数调用`时根据函数定义的参数位(形参)置来传递参数,是最常见的参数类型。 - -```python -def f(a): - return a - -f(1) # 位置参数 -``` -位置参数不能缺少: -```python -def f(a,b): - pass - -f(1) # TypeError: f() missing 1 required positional argument: 'b' -``` - -**规则1:位置参数必须一一对应,缺一不可** - -关键字参数 - -在函数调用时,通过‘键--值’方式为函数形参传值,不用按照位置为函数形参传值。 - -```python -def f(a): - print(f'a:{a}') -``` -这么调用,`a`就是关键字参数: -```python -f(a=1) -``` -但是下面调用就不OK: -```python -f(a=1,20.) # SyntaxError: positional argument follows keyword argument -``` - -**规则2:关键字参数必须在位置参数右边** - - -下面调用也不OK: -```python -f(1,width=20.,width=30.) #SyntaxError: keyword argument repeated - -``` - -**规则3:对同一个形参不能重复传值** - - -默认参数 - -在定义函数时,可以为形参提供默认值。对于有默认值的形参,调用函数时如果为该参数传值,则使用传入的值,否则使用默认值。如下`b`是默认参数: -```python -def f(a,b=1): - print(f'a:{a}, b:{b}') - -``` - - -**规则4:无论是函数的定义还是调用,默认参数的定义应该在位置形参右面** - -只在定义时赋值一次;默认参数通常应该定义成不可变类型 - - -可变位置参数 - -如下定义的参数a为可变位置参数: -```python -def f(*a): - print(a) -``` -调用方法: -```python -f(1) #打印结果为元组: (1,) -f(1,2,3) #打印结果:(1, 2, 3) -``` - -但是,不能这么调用: -```python -f(a=1) # TypeError: f() got an unexpected keyword argument 'a' -``` - - -可变关键字参数 - -如下`a`是可变关键字参数: -```python -def f(**a): - print(a) -``` -调用方法: -```python -f(a=1) #打印结果为字典:{'a': 1} -f(a=1,b=2,width=3) #打印结果:{'a': 1, 'b': 2, 'width': 3} -``` - -但是,不能这么调用: -```python -f(1) TypeError: f() takes 0 positional arguments but 1 was given -``` - -接下来,单独推送分析一个小例子,综合以上各种参数类型的函数及调用方法,敬请关注。 - -#### 190 列表删除之坑 - -删除一个列表中的元素,此元素可能在列表中重复多次: - -```python -def del_item(lst,e): - return [lst.remove(i) for i in e if i==e] # NO! -``` - -考虑删除这个序列[1,3,3,3,5]中的元素3,结果发现只删除其中两个: - -```python -del_item([1,3,3,3,5],3) # 结果:[1,3,5] -``` - -正确做法: - -```python -def del_item(lst,e): - d = dict(zip(range(len(lst)),lst)) # YES! 构造字典 - return [v for k,v in d.items() if v!=e] - -``` - -#### 191 列表快速复制之坑 - -在python中`*`与列表操作,实现快速元素复制: - -```python -a = [1,3,5] * 3 # [1,3,5,1,3,5,1,3,5] -a[0] = 10 # [10, 2, 3, 1, 2, 3, 1, 2, 3] -``` - -如果列表元素为列表或字典等复合类型: - -```python -a = [[1,3,5],[2,4]] * 3 # [[1, 3, 5], [2, 4], [1, 3, 5], [2, 4], [1, 3, 5], [2, 4]] - -a[0][0] = 10 # -``` - -结果可能出乎你的意料,其他`a[1[0]`等也被修改为10 - -```python -[[10, 3, 5], [2, 4], [10, 3, 5], [2, 4], [10, 3, 5], [2, 4]] -``` - -这是因为*复制的复合对象都是浅引用,也就是说id(a[0])与id(a[2])门牌号是相等的。如果想要实现深复制效果,这么做: - -```python -a = [[] for _ in range(3)] -``` - -#### 192 字符串驻留 -```python -In [1]: a = 'something' - ...: b = 'some'+'thing' - ...: id(a)==id(b) -Out[1]: True -``` -如果上面例子返回`True`,但是下面例子为什么是`False`: -```python -In [1]: a = '@zglg.com' - -In [2]: b = '@zglg'+'.com' - -In [3]: id(a)==id(b) -Out[3]: False -``` -这与Cpython 编译优化相关,行为称为`字符串驻留`,但驻留的字符串中只包含字母,数字或下划线。 - -#### 193 相同值的不可变对象 -```python -In [5]: d = {} - ...: d[1] = 'java' - ...: d[1.0] = 'python' - -In [6]: d -Out[6]: {1: 'python'} - -### key=1,value=java的键值对神奇消失了 -In [7]: d[1] -Out[7]: 'python' -In [8]: d[1.0] -Out[8]: 'python' -``` -这是因为具有相同值的不可变对象在Python中始终具有`相同的哈希值` - -由于存在`哈希冲突`,不同值的对象也可能具有相同的哈希值。 - -#### 194 对象销毁顺序 -创建一个类`SE`: -```python -class SE(object): - def __init__(self): - print('init') - def __del__(self): - print('del') -``` -创建两个SE实例,使用`is`判断: -```python -In [63]: SE() is SE() -init -init -del -del -Out[63]: False - -``` -创建两个SE实例,使用`id`判断: -```python -In [64]: id(SE()) == id(SE()) -init -del -init -del -Out[64]: True -``` - -调用`id`函数, Python 创建一个 SE 类的实例,并使用`id`函数获得内存地址后,销毁内存丢弃这个对象。 - -当连续两次进行此操作, Python会将相同的内存地址分配给第二个对象,所以两个对象的id值是相同的. - - -但是is行为却与之不同,通过打印顺序就可以看到。 - -#### 195 充分认识for -```python -In [65]: for i in range(5): - ...: print(i) - ...: i = 10 -0 -1 -2 -3 -4 -``` -为什么不是执行一次就退出? - -按照for在Python中的工作方式, i = 10 并不会影响循环。range(5)生成的下一个元素就被解包,并赋值给目标列表的变量`i`. - -#### 196 认识执行时机 - -```python -array = [1, 3, 5] -g = (x for x in array if array.count(x) > 0) -``` -`g`为生成器,list(g)后返回`[1,3,5]`,因为每个元素肯定至少都出现一次。所以这个结果这不足为奇。但是,请看下例: -```python -array = [1, 3, 5] -g = (x for x in array if array.count(x) > 0) -array = [5, 7, 9] -``` -请问,list(g)等于多少?这不是和上面那个例子结果一样吗,结果也是`[1,3,5]`,但是: -```python -In [74]: list(g) -Out[74]: [5] -``` - -这有些不可思议~~ 原因在于: - -生成器表达式中, in 子句在声明时执行, 而条件子句则是在运行时执行。 - - -所以代码: -```python -array = [1, 3, 5] -g = (x for x in array if array.count(x) > 0) -array = [5, 7, 9] -``` - -等价于: -```python -g = (x for x in [1,3,5] if [5,7,9].count(x) > 0) -``` - -#### 197 创建空集合错误 - -这是Python的一个集合:`{1,3,5}`,它里面没有重复元素,在去重等场景有重要应用。下面这样创建空集合是错误的: - -```python -empty = {} #NO! -``` - -cpython会解释它为字典 - -使用内置函数`set()`创建空集合: - -```python -empty = set() #YES! -``` - -#### 198 pyecharts传入Numpy数据绘图失败 - -echarts使用广泛,echarts+python结合后的包:pyecharts,同样可很好用,但是传入Numpy的数据,像下面这样绘图会失败: - -```python -from pyecharts.charts import Bar -import pyecharts.options as opts -import numpy as np -c = ( - Bar() - .add_xaxis([1, 2, 3, 4, 5]) - # 传入Numpy数据绘图失败! - .add_yaxis("商家A", np.array([0.1, 0.2, 0.3, 0.4, 0.5])) -) - -c.render() -``` - - - -由此可见pyecharts对Numpy数据绘图不支持,传入原生Python的list: - -```python -from pyecharts.charts import Bar -import pyecharts.options as opts -import numpy as np -c = ( - Bar() - .add_xaxis([1, 2, 3, 4, 5]) - # 传入Python原生list - .add_yaxis("商家A", np.array([0.1, 0.2, 0.3, 0.4, 0.5]).tolist()) -) - -c.render() -``` - - - -#### 199 优化代码异常输出包 - -一行代码优化输出的异常信息 -```python -pip install pretty-errors -``` - -写一个函数测试: - -```python -def divided_zero(): - for i in range(10, -1, -1): - print(10/i) - - -divided_zero() -``` - -在没有import这个`pretty-errors`前,输出的错误信息有些冗余: - -```python -Traceback (most recent call last): - File "c:\Users\HUAWEI\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\ptvsd_launcher.py", line 43, in - main(ptvsdArgs) - File "c:\Users\HUAWEI\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\lib\python\old_ptvsd\ptvsd\__main__.py", -line 432, in main - run() - File "c:\Users\HUAWEI\.vscode\extensions\ms-python.python-2019.11.50794\pythonFiles\lib\python\old_ptvsd\ptvsd\__main__.py", -line 316, in run_file - runpy.run_path(target, run_name='__main__') - File "D:\anaconda3\lib\runpy.py", line 263, in run_path - pkg_name=pkg_name, script_name=fname) - File "D:\anaconda3\lib\runpy.py", line 96, in _run_module_code - mod_name, mod_spec, pkg_name, script_name) - File "D:\anaconda3\lib\runpy.py", line 85, in _run_code - exec(code, run_globals) - File "d:\source\sorting-visualizer-master\sorting\debug_test.py", line 6, in - divided_zero() - File "d:\source\sorting-visualizer-master\sorting\debug_test.py", line 3, in divided_zero - print(10/i) -ZeroDivisionError: division by zero -``` - -我们使用刚安装的`pretty_errors`,`import`下: - -```python -import pretty_errors - -def divided_zero(): - for i in range(10, -1, -1): - print(10/i) - -divided_zero() -``` - -此时看看输出的错误信息,非常精简只有2行,去那些冗余信息: - -```python -ZeroDivisionError: -division by zero -``` - -完整的输出信息如下图片所示: - - - -#### 200 图像处理包pillow - -两行代码实现旋转和缩放图像 - -首先安装pillow: - -```python -pip install pillow -``` - -旋转图像下面图像45度: - - - -```python -In [1]: from PIL import Image -In [2]: im = Image.open('./img/plotly2.png') -In [4]: im.rotate(45).show() -``` - -旋转45度后的效果图 - - - -等比例缩放图像: - -```python -im.thumbnail((128,72),Image.ANTIALIAS) -``` - -缩放后的效果图: - -![](./img/pillow_suofang.png) - - - -过滤图像后的效果图: - -```python -from PIL import ImageFilter -im.filter(ImageFilter.CONTOUR).show() -``` - - - -#### 201 一行代码找到编码 - -兴高采烈地,从网页上抓取一段 `content` - -但是,一 `print ` 就不那么兴高采烈了,结果看到一串这个: - -```markdown -b'\xc8\xcb\xc9\xfa\xbf\xe0\xb6\xcc\xa3\xac\xce\xd2\xd3\xc3Python' -``` - -这是啥? 又 x 又 c 的! - -再一看,哦,原来是十六进制字节串 (`bytes`),`\x` 表示十六进制 - -接下来,你一定想转化为人类能看懂的语言,想到 `decode`: - -```python -In [3]: b'\xc8\xcb\xc9\xfa\xbf\xe0\xb6\xcc\xa3\xac\xce\xd2\xd3\xc3Python'.decode() -UnicodeDecodeError Traceback (most recent call last) - in -UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc8 in position 0: invalid continuation byte -``` - -马上,一盆冷水泼头上,抛异常了。。。。。 - -根据提示,`UnicodeDecodeError`,这是 unicode 解码错误。 - -原来,`decode` 默认的编码方法:`utf-8` - -所以排除 b'\xc8\xcb\xc9\xfa\xbf\xe0\xb6\xcc\xa3\xac\xce\xd2\xd3\xc3Python' 使用 `utf-8` 的编码方式 - -可是,这不是四选一选择题啊,逐个排除不正确的! - -编码方式几十种,不可能逐个排除吧。 - -那就猜吧!!!!!!!!!!!!! - -**人生苦短,我用Python** - -**Python, 怎忍心让你受累呢~** - -尽量三行代码解决问题 - -**第一步,安装 chardet** 它是 char detect 的缩写。 - -**第二步,pip install chardet** - -**第三步,出结果** - -```python -In [6]: chardet.detect(b'\xc8\xcb\xc9\xfa\xbf\xe0\xb6\xcc\xa3\xac\xce\xd2\xd3\xc3Python') -Out[6]: {'encoding': 'GB2312', 'confidence': 0.99, 'language': 'Chinese'} -``` - -编码方法:gb2312 - -解密字节串: - -```python -In [7]: b'\xc8\xcb\xc9\xfa\xbf\xe0\xb6\xcc\xa3\xac\xce\xd2\xd3\xc3Python'.decode('gb2312') -Out[7]: '人生苦短,我用Python' -``` - -目前,`chardet` 包支持的检测编码几十种。 - -### 八、Python 实战 - - -#### 219 环境搭建 - -区分几个小白容易混淆的概念:pycharm,python解释器,conda安装,pip安装,总结来说: - -- `pycharm`是python开发的集成开发环境(Integrated Development Environment,简称IDE),它本身无法执行Python代码 -- `python解释器`才是真正执行代码的工具,pycharm里可设置Python解释器,一般去python官网下载python3.7或python3.8版本;如果安装过`anaconda`,它里面必然也包括一个某版本的Python解释器;pycharm配置python解释器选择哪一个都可以。 -- anaconda是python常用包的合集,并提供给我们使用`conda`命令非常方便的安装各种Python包。 -- `conda安装`:我们安装过anaconda软件后,就能够使用conda命令下载anaconda源里(比如中科大镜像源)的包 -- `pip安装`:类似于conda安装的python安装包的方法,更加全面 - -**修改镜像源** - -在使用安装`conda` 安装某些包会出现慢或安装失败问题,最有效方法是修改镜像源为国内镜像源。之前都选用清华镜像源,但是2019年后已停止服务。推荐选用中科大镜像源。 - -先查看已经安装过的镜像源,cmd窗口执行命令: - -```python -conda config --show -``` - -查看配置项`channels`,如果显示带有`tsinghua`,则说明已安装过清华镜像。 - -```python -channels: -- https://mirrors.tuna.tsinghua.edu.cn/tensorflow/linux/cpu/ -- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/ -- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ -- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ -- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/ -``` - -下一步,使用`conda config --remove channels url地址 `删除清华镜像,如下命令删除第一个。然后,依次删除所有镜像源 - -```python -conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/tensorflow/linux/cpu/ -``` - -添加目前可用的中科大镜像源: - -``` -conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/ -``` - -并设置搜索时显示通道地址: - -```python -conda config --set show_channel_urls yes -``` - -确认是否安装镜像源成功,执行`conda config --show`,找到`channels`值为如下: - -``` -channels: - - https://mirrors.ustc.edu.cn/anaconda/pkgs/free/ - - defaults -``` - -Done~ - -#### 220 pytorch慢到无法安装,怎么办? - -**1 安装慢到装不上** - -最近几天,后台几个小伙伴问我,无论pip还是conda安装`pytorch`都太慢了,都是安装官方文档去做的,就是超时装不上,无法开展下一步,卡脖子的感觉太不好受。 - -这些小伙伴按照pytorch官档提示,选择好后,完整复制上面命令`conda install pytorch torchvision cudatoolkit=10.1 -c pytorch`到cmd中,系统是windows. - - - -接下来提示,conda需要安装的包,他们操作选择`y`,继续安装,但是在安装时,发现进度条几乎一动不动。 - -反复尝试,就是这样,有些无奈,还感叹怎么深度学习的路一开始就TMD的这么难! - -**2 这样能正常安装** - -无论是安装`cpu`版还是`cuda`版,网上关于这些的参考资料太多了,无非就是cuda硬件和cuda开发包的版本要对应,python版本要对应等,这些bee君觉得都不是事。 - -就像几位读者朋友遇到的问题,关键还是如何解决`慢到无法装`的问题。 - -最有效方法是添加镜像源,常见的清华或中科大。 - -先查看是否已经安装相关镜像源,windows系统在`cmd`窗口中执行命令: - -```python -conda config --show -``` - -bee君这里显示: -```python -channels: - - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/ - - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/menpo/ - - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/ - - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/ - - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ - - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ - - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ -``` -说明已经安装好清华的镜像源。如果没有安装,请参考下面命令安装源: -```python -conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/ -``` -依次安装上面所有的源。 - -并设置搜索时显示通道地址,执行下面命令: - -```python -conda config --set show_channel_urls yes -``` - -**3 最关键一步** - -有的读者问我,他们已经都安装好镜像源,但是为什么安装还是龟速?问他们,是用哪个命令,他们回复:`conda install pytorch torchvision cudatoolkit=10.1 -c pytorch` - -好吧,执行上面命令,因为命令最后是`-c pytorch`,所以默认还是从conda源下载,新安装的清华等源没有用上。 - -正确命令:`conda install pytorch torchvision cudatoolkit=10.1`,也就是去掉`-c pytorch` - -并且在安装时,也能看到使用了清华源。并且安装速度直线提升,顺利done - -**4 测试是否安装成功** - -结合官档,执行下面代码,`torch.cuda.is_available()`返回`True`,说明安装cuda成功。 - -```python -In [1]: import torch - -In [2]: torch.cuda -Out[2]: - -In [3]: torch.cuda.is_available() -Out[3]: True - -In [4]: from __future__ import print_function - -In [5]: x = torch.rand(5,3) - -In [6]: print(x) -tensor([[0.0604, 0.1135, 0.2656], - [0.5353, 0.9246, 0.3004], - [0.4872, 0.9592, 0.2215], - [0.2598, 0.5031, 0.6093], - [0.2986, 0.1599, 0.5862]]) -``` - -这篇文章主要讨论安装`pytorch`慢到不能装的问题及方案,希望对读者朋友们有帮助。 - -#### 221 自动群发邮件 - -Python自动群发邮件 - -```python -import smtplib -from email import (header) -from email.mime import (text, application, multipart) -import time - -def sender_mail(): - smt_p = smtplib.SMTP() - smt_p.connect(host='smtp.qq.com', port=25) - sender, password = '113097485@qq.com', "**************" - smt_p.login(sender, password) - receiver_addresses, count_num = [ - 'guozhennianhua@163.com', 'xiaoxiazi99@163.com'], 1 - for email_address in receiver_addresses: - try: - msg = multipart.MIMEMultipart() - msg['From'] = "zhenguo" - msg['To'] = email_address - msg['subject'] = header.Header('这是邮件主题通知', 'utf-8') - msg.attach(text.MIMEText( - '这是一封测试邮件,请勿回复本邮件~', 'plain', 'utf-8')) - smt_p.sendmail(sender, email_address, msg.as_string()) - time.sleep(10) - print('第%d次发送给%s' % (count_num, email_address)) - count_num = count_num + 1 - except Exception as e: - print('第%d次给%s发送邮件异常' % (count_num, email_address)) - continue - smt_p.quit() - -sender_mail() -``` - - - -注意: -发送邮箱是qq邮箱,所以要在qq邮箱中设置开启SMTP服务,设置完成时会生成一个授权码,将这个授权码赋值给文中的`password`变量 - -#### 222 二分搜索 - -二分搜索是程序员必备的算法,无论什么场合,都要非常熟练地写出来。 - -小例子描述: -在**有序数组**`arr`中,指定区间`[left,right]`范围内,查找元素`x` -如果不存在,返回`-1` - -二分搜索`binarySearch`实现的主逻辑 - -```python -def binarySearch(arr, left, right, x): - while left <= right: - - mid = int(left + (right - left) / 2); # 找到中间位置。求中点写成(left+right)/2更容易溢出,所以不建议这样写 - - # 检查x是否出现在位置mid - if arr[mid] == x: - print('found %d 在索引位置%d 处' %(x,mid)) - return mid - - # 假如x更大,则不可能出现在左半部分 - elif arr[mid] < x: - left = mid + 1 #搜索区间变为[mid+1,right] - print('区间缩小为[%d,%d]' %(mid+1,right)) - - # 同理,假如x更小,则不可能出现在右半部分 - elif x - -```python -import requests -from lxml import etree -import pandas as pd -import re - -url = 'http://www.weather.com.cn/weather1d/101010100.shtml#input' -with requests.get(url) as res: - content = res.content - html = etree.HTML(content) -``` - - - -通过lxml模块提取值 - -lxml比beautifulsoup解析在某些场合更高效 - -```python -location = html.xpath('//*[@id="around"]//a[@target="_blank"]/span/text()') -temperature = html.xpath('//*[@id="around"]/div/ul/li/a/i/text()') -``` - -结果: - -```python -['香河', '涿州', '唐山', '沧州', '天津', '廊坊', '太原', '石家庄', '涿鹿', '张家口', '保定', '三河', '北京孔庙', '北京国子监', '中国地质博物馆', '月坛公 -园', '明城墙遗址公园', '北京市规划展览馆', '什刹海', '南锣鼓巷', '天坛公园', '北海公园', '景山公园', '北京海洋馆'] - -['11/-5°C', '14/-5°C', '12/-6°C', '12/-5°C', '11/-1°C', '11/-5°C', '8/-7°C', '13/-2°C', '8/-6°C', '5/-9°C', '14/-6°C', '11/-4°C', '13/-3°C' -, '13/-3°C', '12/-3°C', '12/-3°C', '13/-3°C', '12/-2°C', '12/-3°C', '13/-3°C', '12/-2°C', '12/-2°C', '12/-2°C', '12/-3°C'] -``` - - -构造DataFrame对象 - -```python -df = pd.DataFrame({'location':location, 'temperature':temperature}) -print('温度列') -print(df['temperature']) -``` - -正则解析温度值 - -```python -df['high'] = df['temperature'].apply(lambda x: int(re.match('(-?[0-9]*?)/-?[0-9]*?°C', x).group(1) ) ) -df['low'] = df['temperature'].apply(lambda x: int(re.match('-?[0-9]*?/(-?[0-9]*?)°C', x).group(1) ) ) -print(df) -``` - -详细说明子字符创捕获 - -除了简单地判断是否匹配之外,正则表达式还有提取子串的强大功能。用`()`表示的就是要提取的分组(group)。比如:`^(\d{3})-(\d{3,8})$`分别定义了两个组,可以直接从匹配的字符串中提取出区号和本地号码 - -```python -m = re.match(r'^(\d{3})-(\d{3,8})$', '010-12345') -print(m.group(0)) -print(m.group(1)) -print(m.group(2)) - -# 010-12345 -# 010 -# 12345 -``` - -如果正则表达式中定义了组,就可以在`Match`对象上用`group()`方法提取出子串来。 - -注意到`group(0)`永远是原始字符串,`group(1)`、`group(2)`……表示第1、2、……个子串。 - - -最终结果 - -```kepython -Name: temperature, dtype: object - location temperature high low -0 香河 11/-5°C 11 -5 -1 涿州 14/-5°C 14 -5 -2 唐山 12/-6°C 12 -6 -3 沧州 12/-5°C 12 -5 -4 天津 11/-1°C 11 -1 -5 廊坊 11/-5°C 11 -5 -6 太原 8/-7°C 8 -7 -7 石家庄 13/-2°C 13 -2 -8 涿鹿 8/-6°C 8 -6 -9 张家口 5/-9°C 5 -9 -10 保定 14/-6°C 14 -6 -11 三河 11/-4°C 11 -4 -12 北京孔庙 13/-3°C 13 -3 -13 北京国子监 13/-3°C 13 -3 -14 中国地质博物馆 12/-3°C 12 -3 -15 月坛公园 12/-3°C 12 -3 -16 明城墙遗址公园 13/-3°C 13 -3 -17 北京市规划展览馆 12/-2°C 12 -2 -18 什刹海 12/-3°C 12 -3 -19 南锣鼓巷 13/-3°C 13 -3 -20 天坛公园 12/-2°C 12 -2 -21 北海公园 12/-2°C 12 -2 -22 景山公园 12/-2°C 12 -2 -23 北京海洋馆 12/-3°C 12 -3 -``` - -### 十、数据分析 - -本项目基于Kaggle电影影评数据集,通过这个系列,你将学到如何进行数据探索性分析(EDA),学会使用数据分析利器`pandas`,会用绘图包`pyecharts`,以及EDA时可能遇到的各种实际问题及一些处理技巧。 - - - -本项目需要导入的包: - -```python -import pandas as pd -import numpy as np -import matplotlib.pyplot as plt -from pyecharts.charts import Bar,Grid,Line -import pyecharts.options as opts -from pyecharts.globals import ThemeType -``` - -#### 1 创建DataFrame -pandas中一个dataFrame实例: -```python -Out[89]: - a val -0 apple1 1.0 -1 apple2 2.0 -2 apple3 3.0 -3 apple4 4.0 -4 apple5 5.0 -``` - -我们的**目标**是变为如下结构: -```python -a apple1 apple2 apple3 apple4 apple5 -0 1.0 2.0 3.0 4.0 5.0 -``` - -乍看可使用`pivot`,但很难一步到位。 - -所以另辟蹊径,提供一种简单且好理解的方法: - -```python -In [113]: pd.DataFrame(index=[0],columns=df.a,data=dict(zip(df.a,df.val))) -Out[113]: -a apple1 apple2 apple3 apple4 apple5 -0 1.0 2.0 3.0 4.0 5.0 -``` -以上方法是重新创建一个DataFrame,直接把`df.a`所有可能取值作为新dataframe的列,index调整为`[0]`,注意类型必须是数组类型(array-like 或者 Index),两个轴确定后,`data`填充数据域。 - -```python -In [116]: dict(zip(df.a,df.val)) -Out[116]: {'apple1': 1.0, 'apple2': 2.0, 'apple3': 3.0, 'apple4': 4.0, 'apple5': 5.0} -``` - - - -#### 2 导入数据 -数据来自kaggle,共包括三个文件: - -1. movies.dat -2. ratings.dat -3. users.dat - -`movies.dat`包括三个字段:['Movie ID', 'Movie Title', 'Genre'] - -使用pandas导入此文件: - -```python -import pandas as pd - -movies = pd.read_csv('./data/movietweetings/movies.dat', delimiter='::', engine='python', header=None, names = ['Movie ID', 'Movie Title', 'Genre']) -``` - -导入后,显示前5行: - -```python - Movie ID Movie Title \ -0 8 Edison Kinetoscopic Record of a Sneeze (1894) -1 10 La sortie des usines Lumi猫re (1895) -2 12 The Arrival of a Train (1896) -3 25 The Oxford and Cambridge University Boat Race ... -4 91 Le manoir du diable (1896) -5 131 Une nuit terrible (1896) -6 417 Le voyage dans la lune (1902) -7 439 The Great Train Robbery (1903) -8 443 Hiawatha, the Messiah of the Ojibway (1903) -9 628 The Adventures of Dollie (1908) - Genre -0 Documentary|Short -1 Documentary|Short -2 Documentary|Short -3 NaN -4 Short|Horror -5 Short|Comedy|Horror -6 Short|Action|Adventure|Comedy|Fantasy|Sci-Fi -7 Short|Action|Crime|Western -8 NaN -9 Action|Short -``` - - - -次导入其他两个数据文件 - -`users.dat`: - -```python -users = pd.read_csv('./data/movietweetings/users.dat', delimiter='::', engine='python', header=None, names = ['User ID', 'Twitter ID']) -print(users.head()) -``` - -结果: - -```python - User ID Twitter ID -0 1 397291295 -1 2 40501255 -2 3 417333257 -3 4 138805259 -4 5 2452094989 -5 6 391774225 -6 7 47317010 -7 8 84541461 -8 9 2445803544 -9 10 995885060 -``` - - - -`rating.data`: - -```python -ratings = pd.read_csv('./data/movietweetings/ratings.dat', delimiter='::', engine='python', header=None, names = ['User ID', 'Movie ID', 'Rating', 'Rating Timestamp']) -print(ratings.head()) -``` - -结果: - -```python - User ID Movie ID Rating Rating Timestamp -0 1 111161 10 1373234211 -1 1 117060 7 1373415231 -2 1 120755 6 1373424360 -3 1 317919 6 1373495763 -4 1 454876 10 1373621125 -5 1 790724 8 1374641320 -6 1 882977 8 1372898763 -7 1 1229238 9 1373506523 -8 1 1288558 5 1373154354 -9 1 1300854 8 1377165712 -``` - - **read_csv 使用说明** - -说明,本次导入`dat`文件使用`pandas.read_csv`函数。 - -第一个位置参数`./data/movietweetings/ratings.dat` 表示文件的相对路径 - -第二个关键字参数:`delimiter='::'`,表示文件分隔符使用`::` - -后面几个关键字参数分别代表使用的引擎,文件没有表头,所以`header`为`None;` - -导入后dataframe的列名使用`names`关键字设置,这个参数大家可以记住,比较有用。 - - - -Kaggle电影数据集第一节,我们使用数据处理利器 `pandas`, 函数`read_csv` 导入给定的三个数据文件。 - -```python -import pandas as pd - -movies = pd.read_csv('./data/movietweetings/movies.dat', delimiter='::', engine='python', header=None, names = ['Movie ID', 'Movie Title', 'Genre']) -users = pd.read_csv('./data/movietweetings/users.dat', delimiter='::', engine='python', header=None, names = ['User ID', 'Twitter ID']) -ratings = pd.read_csv('./data/movietweetings/ratings.dat', delimiter='::', engine='python', header=None, names = ['User ID', 'Movie ID', 'Rating', 'Rating Timestamp']) -``` - -用到的`read_csv`,某些重要的参数,如何使用在上一节也有所提到。下面开始数据探索分析(EDA) - -> 找出得分前10喜剧(comedy) - - - -#### 3 处理组合值 - -表`movies`字段`Genre`表示电影的类型,可能有多个值,分隔符为`|`,取值也可能为`None`. - -针对这类字段取值,可使用Pandas中Series提供的`str`做一步转化,**注意它是向量级的**,下一步,如Python原生的`str`类似,使用`contains`判断是否含有`comedy`字符串: - -```python -mask = movies.Genre.str.contains('comedy',case=False,na=False) -``` - -注意使用的两个参数:`case`, `na` - -case为 False,表示对大小写不敏感; -na Genre列某个单元格为`NaN`时,我们使用的充填值,此处填充为`False` - -返回的`mask`是一维的`Series`,结构与 movies.Genre相同,取值为True 或 False. - -观察结果: - -```python -0 False -1 False -2 False -3 False -4 False -5 True -6 True -7 False -8 False -9 False -Name: Genre, dtype: bool - -``` - - - #### 4 访问某列 - -得到掩码mask后,pandas非常方便地能提取出目标记录: - -```python -comedy = movies[mask] -comdey_ids = comedy['Movie ID'] - -``` - -以上,在pandas中被最频率使用,不再解释。看结果`comedy_ids.head()`: - -```python -5 131 -6 417 -15 2354 -18 3863 -19 4099 -20 4100 -21 4101 -22 4210 -23 4395 -25 4518 -Name: Movie ID, dtype: int64 - -``` - - - -1-4介绍`数据读入`,`处理组合值`,`索引数据`等, pandas中使用较多的函数,基于Kaggle真实电影影评数据集,最后得到所有`喜剧 ID`: - -```python -5 131 -6 417 -15 2354 -18 3863 -19 4099 -20 4100 -21 4101 -22 4210 -23 4395 -25 4518 -Name: Movie ID, dtype: int64 - -``` - -下面继续数据探索之旅~ - -#### 5 连接两个表 - -拿到所有喜剧的ID后,要想找出其中平均得分最高的前10喜剧,需要关联另一张表:`ratings`: - -再回顾下ratings表结构: - -```python - User ID Movie ID Rating Rating Timestamp -0 1 111161 10 1373234211 -1 1 117060 7 1373415231 -2 1 120755 6 1373424360 -3 1 317919 6 1373495763 -4 1 454876 10 1373621125 -5 1 790724 8 1374641320 -6 1 882977 8 1372898763 -7 1 1229238 9 1373506523 -8 1 1288558 5 1373154354 -9 1 1300854 8 1377165712 - -``` - - -pandas 中使用`join`关联两张表,连接字段是`Movie ID`,如果顺其自然这么使用`join`: - -```python -combine = ratings.join(comedy, on='Movie ID', rsuffix='2') - -``` - -左右滑动,查看完整代码 - -大家可验证这种写法,仔细一看,会发现结果非常诡异。 - -究其原因,这是pandas join函数使用的一个算是坑点,它在官档中介绍,连接右表时,此处右表是`comedy`,它的`index`要求是连接字段,也就是 `Movie ID`. - -左表的index不要求,但是要在参数 `on`中给定。 - -**以上是要注意的一点** - -修改为: - -```python -combine = ratings.join(comedy.set_index('Movie ID'), on='Movie ID') -print(combine.head(10)) - -``` - -以上是OK的写法 - -观察结果: - -```python - User ID Movie ID Rating Rating Timestamp Movie Title Genre -0 1 111161 10 1373234211 NaN NaN -1 1 117060 7 1373415231 NaN NaN -2 1 120755 6 1373424360 NaN NaN -3 1 317919 6 1373495763 NaN NaN -4 1 454876 10 1373621125 NaN NaN -5 1 790724 8 1374641320 NaN NaN -6 1 882977 8 1372898763 NaN NaN -7 1 1229238 9 1373506523 NaN NaN -8 1 1288558 5 1373154354 NaN NaN -9 1 1300854 8 1377165712 NaN NaN - -``` - -Genre列为`NaN`表明,这不是喜剧。需要筛选出此列不为`NaN` 的记录。 - -#### 6 按列筛选 - -pandas最方便的地方,就是向量化运算,尽可能减少了for循环的嵌套。 - -按列筛选这种常见需求,自然可以轻松应对。 - -为了照顾初次接触 pandas 的朋友,分两步去写: - -```python -mask = pd.notnull(combine['Genre']) - -``` - -结果是一列只含`True 或 False`的值 - -```python -result = combine[mask] -print(result.head()) - -``` - -结果中,Genre字段中至少含有一个Comedy字符串,表明验证了我们以上操作是OK的。 - -```python - User ID Movie ID Rating Rating Timestamp Movie Title \ -12 1 1588173 9 1372821281 Warm Bodies (2013) -13 1 1711425 3 1372604878 21 & Over (2013) -14 1 2024432 8 1372703553 Identity Thief (2013) -17 1 2101441 1 1372633473 Spring Breakers (2012) -28 2 1431045 7 1457733508 Deadpool (2016) - - Genre -12 Comedy|Horror|Romance -13 Comedy -14 Adventure|Comedy|Crime|Drama -17 Comedy|Crime|Drama -28 Action|Adventure|Comedy|Sci-Fi - - -``` - - - -截止目前已经求出所有喜剧电影`result`,前5行如下,Genre中都含有`Comedy`字符串: -```python - User ID Movie ID Rating Rating Timestamp Movie Title \ -12 1 1588173 9 1372821281 Warm Bodies (2013) -13 1 1711425 3 1372604878 21 & Over (2013) -14 1 2024432 8 1372703553 Identity Thief (2013) -17 1 2101441 1 1372633473 Spring Breakers (2012) -28 2 1431045 7 1457733508 Deadpool (2016) - - Genre -12 Comedy|Horror|Romance -13 Comedy -14 Adventure|Comedy|Crime|Drama -17 Comedy|Crime|Drama -28 Action|Adventure|Comedy|Sci-Fi -``` - - - -#### 7 按照Movie ID 分组 - -result中会有很多观众对同一部电影的打分,所以要求得分前10的喜剧,先按照`Movie ID`分组,然后求出平均值: -```python -score_as_movie = result.groupby('Movie ID').mean() -``` - -前5行显示如下: -```python - User ID Rating Rating Timestamp -Movie ID -131 34861.000000 7.0 1.540639e+09 -417 34121.409091 8.5 1.458680e+09 -2354 6264.000000 8.0 1.456343e+09 -3863 43803.000000 10.0 1.430439e+09 -4099 25084.500000 7.0 1.450323e+09 -``` - -#### 8 按照电影得分排序 - -```python -score_as_movie.sort_values(by='Rating', ascending = False,inplace=True) -score_as_movie -``` -前5行显示如下: -```python - User ID Rating Rating Timestamp -Movie ID -7134690 30110.0 10.0 1.524974e+09 -416889 1319.0 10.0 1.543320e+09 -57840 23589.0 10.0 1.396802e+09 -5693562 50266.0 10.0 1.511024e+09 -5074 43803.0 10.0 1.428352e+09 -``` -都是满分?这有点奇怪,会不会这些电影都只有几个人评分,甚至只有1个?评分样本个数太少,显然最终的平均分数不具有太强的说服力。 - -所以,下面要进行每部电影的评分人数统计 - -#### 9 分组后使用聚合函数 - -根据`Movie ID`分组后,使用`count`函数统计`每组个数`,只保留count列,最后得到`watchs2`: - -```python -watchs = result.groupby('Movie ID').agg(['count']) -watchs2 = watchs['Rating']['count'] -``` -打印前20行: -```python -print(watchs2.head(20)) -``` -结果: -```python -Movie ID -131 1 -417 22 -2354 1 -3863 1 -4099 2 -4100 1 -4101 1 -4210 1 -4395 1 -4518 1 -4546 2 -4936 2 -5074 1 -5571 1 -6177 1 -6414 3 -6684 1 -6689 1 -7145 1 -7162 2 -Name: count, dtype: int64 -``` -果然,竟然有这么多电影的评论数只有1次!样本个数太少,评论的平均值也就没有什么说服力。 - -查看`watchs2`一些重要统计量: -```python -watchs2.describe() -``` -结果: -```python -count 10740.000000 -mean 20.192086 -std 86.251411 -min 1.000000 -25% 1.000000 -50% 2.000000 -75% 7.000000 -max 1843.000000 -Name: count, dtype: float64 -``` -共有10740部**喜剧**电影被评分,平均打分次数20次,标准差86,75%的电影样本打分次数小于7次,最小1次,最多1843次。 - -#### 10 频率分布直方图 - -绘制评论数的频率分布直方图,便于更直观的观察电影被评论的分布情况。上面分析到,75%的电影打分次数小于7次,所以绘制打分次数小于20次的直方图: - -```python -fig = plt.figure(figsize=(12,8)) -histn = plt.hist(watchs2[watchs2 <=19],19,histtype='step') -plt.scatter([i+1 for i in range(len(histn[0]))],histn[0]) -``` - -![](./img/20200131094927.jpg) - -`histn`元祖表示个数和对应的被分割的区间,查看`histn[0]`: -```python -array([4383., 1507., 787., 541., 356., 279., 209., 163., 158., - 118., 114., 90., 104., 81., 80., 73., 62., 65., - 52.]) -``` -```python -sum(histn[0]) # 9222 -``` -看到电影评论次数1到19次的喜剧电影9222部,共有10740部喜剧电影,大约`86%`的喜剧电影评论次数`小于20次`,有`1518`部电影评论数不小于20次。 - -我们肯定希望挑选出被评论次数尽可能多的电影,因为难免会有水军和滥竽充数等`异常评论`行为。那么,如何准确的量化最小抽样量呢? - - - -#### 11 最小抽样量 - -根据统计学的知识,最小抽样量和Z值、样本方差和样本误差相关,下面给出具体的求解最小样本量的计算方法。 - -采用如下计算公式: - -$$ n = \frac{Z^2\sigma^2}{E^2} $$ - - -此处,$Z$ 值取为95%的置信度对应的Z值也就是1.96,样本误差取为均值的2.5%. - -根据以上公式,编写下面代码: - -```python -n3 = result.groupby('Movie ID').agg(['count','mean','std']) -n3r = n3[n3['Rating']['count']>=20]['Rating'] -``` -只计算影评超过20次,且满足最小样本量的电影。计算得到的`n3r`前5行: -```python - count mean std -Movie ID -417 22 8.500000 1.263027 -12349 68 8.485294 1.227698 -15324 20 8.350000 1.039990 -15864 51 8.431373 1.374844 -17925 44 8.636364 1.259216 -``` -进一步求出最小样本量: -```python -nmin = (1.96**2*n3r['std']**2) / ( (n3r['mean']*0.025)**2 ) -``` -`nmin`前5行: -```python -Movie ID -417 135.712480 -12349 128.671290 -15324 95.349276 -15864 163.434005 -17925 130.668350 -``` - -筛选出满足最小抽样量的喜剧电影: - -```python -n3s = n3r[ n3r['count'] >= nmin ] -``` -结果显示如下,因此共有`173`部电影满足最小样本抽样量。 - -```python - -count mean std -Movie ID -53604 129 8.635659 1.230714 -57012 207 8.449275 1.537899 -70735 224 8.839286 1.190799 -75686 209 8.095694 1.358885 -88763 296 8.945946 1.026984 -... ... ... ... -6320628 860 7.966279 1.469924 -6412452 276 7.510870 1.389529 -6662050 22 10.000000 0.000000 -6966692 907 8.673649 1.286455 -7131622 1102 7.851180 1.751500 -173 rows × 3 columns -``` - -#### 12 去重和连表 - -按照平均得分从大到小排序: -```python -n3s_sort = n3s.sort_values(by='mean',ascending=False) -``` -结果: -```python - count mean std -Movie ID -6662050 22 10.000000 0.000000 -4921860 48 10.000000 0.000000 -5262972 28 10.000000 0.000000 -5512872 353 9.985836 0.266123 -3863552 199 9.010050 1.163372 -... ... ... ... -1291150 647 6.327666 1.785968 -2557490 546 6.307692 1.858434 -1478839 120 6.200000 0.728761 -2177771 485 6.150515 1.523922 -1951261 1091 6.083410 1.736127 -173 rows × 3 columns -``` -仅靠`Movie ID`还是不知道哪些电影,连接`movies`表: -```python -ms = movies.drop_duplicates(subset=['Movie ID']) -ms = ms.set_index('Movie ID') -n3s_final = n3s_drops.join(ms,on='Movie ID') -``` - -#### 13 结果分析 - -喜剧榜单前50名: -```python -Movie Title -Five Minutes (2017) -MSG 2 the Messenger (2015) -Avengers: Age of Ultron Parody (2015) -Be Somebody (2016) -Bajrangi Bhaijaan (2015) -Back to the Future (1985) -La vita 鐚?bella (1997) -The Intouchables (2011) -The Sting (1973) -Coco (2017) -Toy Story 3 (2010) -3 Idiots (2009) -Green Book (2018) -Dead Poets Society (1989) -The Apartment (1960) -P.K. (2014) -The Truman Show (1998) -Am鑼卨ie (2001) -Inside Out (2015) -Toy Story 4 (2019) -Toy Story (1995) -Finding Nemo (2003) -Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964) -Home Alone (1990) -Zootopia (2016) -Up (2009) -Monsters, Inc. (2001) -La La Land (2016) -Relatos salvajes (2014) -En man som heter Ove (2015) -Snatch (2000) -Lock, Stock and Two Smoking Barrels (1998) -How to Train Your Dragon 2 (2014) -As Good as It Gets (1997) -Guardians of the Galaxy (2014) -The Grand Budapest Hotel (2014) -Fantastic Mr. Fox (2009) -Silver Linings Playbook (2012) -Sing Street (2016) -Deadpool (2016) -Annie Hall (1977) -Pride (2014) -In Bruges (2008) -Big Hero 6 (2014) -Groundhog Day (1993) -The Breakfast Club (1985) -Little Miss Sunshine (2006) -Deadpool 2 (2018) -The Terminal (2004) -``` - -前10名评论数图: - -![](./img/2020013109495711.jpg) - -代码: -```python -x = n3s_final['Movie Title'][:10].tolist()[::-1] -y = n3s_final['count'][:10].tolist()[::-1] -bar = ( - Bar() - .add_xaxis(x) - .add_yaxis('评论数',y,category_gap='50%') - .reversal_axis() - .set_global_opts(title_opts=opts.TitleOpts(title="喜剧电影被评论次数"), - toolbox_opts=opts.ToolboxOpts(),) -) -grid = ( - Grid(init_opts=opts.InitOpts(theme=ThemeType.LIGHT)) - .add(bar, grid_opts=opts.GridOpts(pos_left="30%")) -) -grid.render_notebook() -``` - -前10名得分图: - -![](./img/2020013109500812.jpg) - -代码: -```python -x = n3s_final['Movie Title'][:10].tolist()[::-1] -y = n3s_final['mean'][:10].round(3).tolist()[::-1] -bar = ( - Bar() - .add_xaxis(x) - .add_yaxis('平均得分',y,category_gap='50%') - .reversal_axis() - .set_global_opts(title_opts=opts.TitleOpts(title="喜剧电影平均得分"), - xaxis_opts=opts.AxisOpts(min_=8.0,name='平均得分'), - toolbox_opts=opts.ToolboxOpts(),) -) -grid = ( - Grid(init_opts=opts.InitOpts(theme=ThemeType.MACARONS)) - .add(bar, grid_opts=opts.GridOpts(pos_left="30%")) -) -grid.render_notebook() -``` - - - -#### 14 生成哑变量 - -分类变量的数值化,是指将枚举类变量转化为indicator变量或称dummy变量。 - -那么什么是`indicator变量`,看看如下例子,A变量解析为:`[1,0,0]`, B解析为:`[0,1,0]`, C解析为:`[0,0,1]` -```python -In [8]: s = pd.Series(list('ABCA')) -In [9]: pd.get_dummies(s) -Out[9]: - A B C -0 1 0 0 -1 0 1 0 -2 0 0 1 -3 1 0 0 -``` - -如果输入的字符有4个唯一值,看到字符a被解析为[1,0,0,0],向量长度为4. - -```python -In [5]: s = pd.Series(list('abaccd')) -In [6]: pd.get_dummies(s) -Out[6]: - a b c d -0 1 0 0 0 -1 0 1 0 0 -2 1 0 0 0 -3 0 0 1 0 -4 0 0 1 0 -5 0 0 0 1 -``` - -也就是说dummy向量的长度等于输入字符串中,唯一字符的个数。 - -#### 15 讨厌的SettingWithCopyWarning!!! - -Pandas 处理数据,太好用了,谁用谁知道! - -使用过 Pandas 的,几乎都会遇到一个警告: - -*SettingWithCopyWarning* - -非常烦人! - -尤其是刚接触 Pandas 的,完全不理解为什么弹出这么一串: - -```python -d:\source\test\settingwithcopy.py:9: SettingWithCopyWarning: -A value is trying to be set on a copy of a slice from a DataFrame. -Try using .loc[row_indexer,col_indexer] = value instead - -See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy -``` - -归根结底,是因为代码中出现`链式操作`... - -有人就问了,什么是`链式操作`? - -这样的: - -```python -tmp = df[df.a<4] -tmp['c'] = 200 -``` - -先记住这个最典型的情况,即可! - -有的人就问了:出现这个 Warning, 需要理会它吗? - -如果结果不对,当然要理会;如果结果对,不care. - -举个例子~~ - -```python -import pandas as pd - -df = pd.DataFrame({'a':[1,3,5],'b':[4,2,7]},index=['a','b','c']) -df.loc[df.a<4,'c'] = 100 -print(df) -print('it\'s ok') - -tmp = df[df.a<4] -tmp['c'] = 200 -print('-----tmp------') -print(tmp) -print('-----df-------') -print(df) -``` - -输出结果: -```python - a b c -a 1 4 100.0 -b 3 2 100.0 -c 5 7 NaN -it's ok -d:\source\test\settingwithcopy.py:9: SettingWithCopyWarning: -A value is trying to be set on a copy of a slice from a DataFrame. -Try using .loc[row_indexer,col_indexer] = value instead - -See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy - tmp['c'] = 200 ------tmp------ - a b c -a 1 4 200 -b 3 2 200 ------df------- - a b c -a 1 4 100.0 -b 3 2 100.0 -c 5 7 NaN -``` - -it's ok 行后面的发生链式赋值,导致结果错误。因为 tmp 变了,df 没赋上值啊,所以必须理会。 - -it's ok 行前的是正解。 - -以上,链式操作尽量避免,如何避免?多使用 `.loc[row_indexer,col_indexer]`,提示告诉我们的~ - -#### 16 NumPy 数据归一化、分布可视化 - -仅使用 `NumPy`,下载数据,归一化,使用 `seaborn` 展示数据分布。 - -**下载数据** - -```python -import numpy as np - -url = 'https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data' -wid = np.genfromtxt(url, delimiter=',', dtype='float', usecols=[1]) -``` -仅提取 `iris` 数据集的第二列 `usecols = [1]` - -**展示数据** - -```python -array([3.5, 3. , 3.2, 3.1, 3.6, 3.9, 3.4, 3.4, 2.9, 3.1, 3.7, 3.4, 3. , - 3. , 4. , 4.4, 3.9, 3.5, 3.8, 3.8, 3.4, 3.7, 3.6, 3.3, 3.4, 3. , - 3.4, 3.5, 3.4, 3.2, 3.1, 3.4, 4.1, 4.2, 3.1, 3.2, 3.5, 3.1, 3. , - 3.4, 3.5, 2.3, 3.2, 3.5, 3.8, 3. , 3.8, 3.2, 3.7, 3.3, 3.2, 3.2, - 3.1, 2.3, 2.8, 2.8, 3.3, 2.4, 2.9, 2.7, 2. , 3. , 2.2, 2.9, 2.9, - 3.1, 3. , 2.7, 2.2, 2.5, 3.2, 2.8, 2.5, 2.8, 2.9, 3. , 2.8, 3. , - 2.9, 2.6, 2.4, 2.4, 2.7, 2.7, 3. , 3.4, 3.1, 2.3, 3. , 2.5, 2.6, - 3. , 2.6, 2.3, 2.7, 3. , 2.9, 2.9, 2.5, 2.8, 3.3, 2.7, 3. , 2.9, - 3. , 3. , 2.5, 2.9, 2.5, 3.6, 3.2, 2.7, 3. , 2.5, 2.8, 3.2, 3. , - 3.8, 2.6, 2.2, 3.2, 2.8, 2.8, 2.7, 3.3, 3.2, 2.8, 3. , 2.8, 3. , - 2.8, 3.8, 2.8, 2.8, 2.6, 3. , 3.4, 3.1, 3. , 3.1, 3.1, 3.1, 2.7, - 3.2, 3.3, 3. , 2.5, 3. , 3.4, 3. ]) - -``` - -这是单变量(univariate)长度为 150 的一维 NumPy 数组。 - -**归一化** - -求出最大值、最小值 -```python -smax = np.max(wid) -smin = np.min(wid) - -In [51]: smax,smin -Out[51]: (4.4, 2.0) -```` -归一化公式: -```python -s = (wid - smin) / (smax - smin) -``` -只打印小数点后三位设置: -```python -np.set_printoptions(precision=3) -``` - -归一化结果: -```markdown -array([0.625, 0.417, 0.5 , 0.458, 0.667, 0.792, 0.583, 0.583, 0.375, - 0.458, 0.708, 0.583, 0.417, 0.417, 0.833, 1. , 0.792, 0.625, - 0.75 , 0.75 , 0.583, 0.708, 0.667, 0.542, 0.583, 0.417, 0.583, - 0.625, 0.583, 0.5 , 0.458, 0.583, 0.875, 0.917, 0.458, 0.5 , - 0.625, 0.458, 0.417, 0.583, 0.625, 0.125, 0.5 , 0.625, 0.75 , - 0.417, 0.75 , 0.5 , 0.708, 0.542, 0.5 , 0.5 , 0.458, 0.125, - 0.333, 0.333, 0.542, 0.167, 0.375, 0.292, 0. , 0.417, 0.083, - 0.375, 0.375, 0.458, 0.417, 0.292, 0.083, 0.208, 0.5 , 0.333, - 0.208, 0.333, 0.375, 0.417, 0.333, 0.417, 0.375, 0.25 , 0.167, - 0.167, 0.292, 0.292, 0.417, 0.583, 0.458, 0.125, 0.417, 0.208, - 0.25 , 0.417, 0.25 , 0.125, 0.292, 0.417, 0.375, 0.375, 0.208, - 0.333, 0.542, 0.292, 0.417, 0.375, 0.417, 0.417, 0.208, 0.375, - 0.208, 0.667, 0.5 , 0.292, 0.417, 0.208, 0.333, 0.5 , 0.417, - 0.75 , 0.25 , 0.083, 0.5 , 0.333, 0.333, 0.292, 0.542, 0.5 , - 0.333, 0.417, 0.333, 0.417, 0.333, 0.75 , 0.333, 0.333, 0.25 , - 0.417, 0.583, 0.458, 0.417, 0.458, 0.458, 0.458, 0.292, 0.5 , - 0.542, 0.417, 0.208, 0.417, 0.583, 0.417]) -``` - -**分布可视化** - -```python -import seaborn as sns -sns.distplot(s,kde=False,rug=True) -``` -频率分布直方图: - - -![](https://imgkr.cn-bj.ufileos.com/49bf5190-429c-4172-a53c-e3f6b66d4e64.png) - - -```python -sns.distplot(s,hist=True,kde=True,rug=True) -``` -带高斯密度核函数的直方图: - -![](https://imgkr.cn-bj.ufileos.com/4e4a72a5-8f59-4893-b435-e4b57e22a18e.png) - - - -**分布 fit 图** - -拿 `gamma` 分布去 fit : -```python -from scipy import stats -sns.distplot(s, kde=False, fit = stats.gamma) -``` - - - -![](https://imgkr.cn-bj.ufileos.com/89446755-7420-4f96-97fe-c4e45d0d3dec.png) - - -拿双 `gamma` 去 fit: -```python -from scipy import stats -sns.distplot(s, kde=False, fit = stats.dgamma) -``` - -![](https://imgkr.cn-bj.ufileos.com/f2c2a660-5433-4b4f-ad7b-d01da4121319.png) - -#### 17 Pandas 使用技巧 - -对于动辄就几十或几百个 G 的数据,在读取的这么大数据的时候,我们有没有办法随机选取一小部分数据,然后读入内存,快速了解数据和开展 EDA ? - -使用 Pandas 的 skiprows 和 概率知识,就能做到。 - -下面解释具体怎么做。 - -如下所示,读取某 100 G 大小的 big_data.csv 数据 - -1) 使用 skiprows 参数, - -2) x > 0 确保首行读入, - -3) np.random.rand() > 0.01 表示 99% 的数据都会被随机过滤掉 - -言外之意,只有全部数据的 1% 才有机会选入内存中。 - -```python -import pandas as pd -import numpy as np - -df = pd.read_csv("big_data.csv", -skiprows = -lambda x: x>0 and np.random.rand() > 0.01) - -print("The shape of the df is {}. -It has been reduced 100 times!".format(df.shape)) -``` - -使用这种方法,读取的数据量迅速缩减到原来的 1% ,对于迅速展开数据分析有一定的帮助。 - -### 十一、一步一步掌握Flask web开发 - -#### 1 Flask版 hello world - -Flask是Python轻量级web框架,容易上手,被广大Python开发者所喜爱。 - -今天我们先从hello world开始,一步一步掌握Flask web开发。例子君是Flask框架的小白,接下来与读者朋友们,一起学习这个对我而言的新框架,大家多多指导。 - -首先`pip install Flask`,安装Flask,然后import Flask,同时创建一个 `app` -```python -from flask import Flask - -App = Flask(__name__) -``` - -写一个index页的入口函数,返回hello world. - -通过装饰器:App.route('/')创建index页的路由或地址,一个`/`表示index页,也就是主页。 - -```python -@App.route('/') -def index(): - return "hello world" -``` - -调用 `index`函数: -```python -if __name__ == "__main__": - App.run(debug=True) -``` - -然后启动,会在console下看到如下启动信息,表明`服务启动成功`。 -```python -* Debug mode: on - * Restarting with stat - * Debugger is active! - * Debugger PIN: 663-788-611 - * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit) -``` - - 接下来,打开一个网页,相当于启动客户端,并在Url栏中输入:`http://127.0.0.1:5000/`,看到页面上答应出`hello world`,证明服务访问成功。 - - 同时在服务端后台看到如下信息,表示处理一次来自客户端的`get`请求。 - ```python - 27.0.0.1 - - [03/Feb/2020 21:26:50] "GET / HTTP/1.1" 200 - - ``` - - 以上就是flask的hello world 版 - -#### 2 Flask之数据入库操作 - -数据持久化就是将数据写入到数据库存储的过程。 - -本例子使用`sqlite3`数据库。 - -1)导入`sqlite3`,未安装前使用命令`pip install sqlite3` - -创建一个`py`文件:`sqlite3_started.py`,并写下第一行代码: -```python -import sqlite3 -``` -2)手动创建一个数据库实例`db`, 命名`test.db` - -3)创建与数据库实例`test.db`的连接: -```python -conn = sqlite3.connect("test.db") -``` - -4)拿到连接`conn`的cursor -```python -c = conn.cursor() -``` - -5)创建第一张表`books` - -共有四个字段:`id`,`sort`,`name`,`price`,类型分别为:`int`,`int`,`text`,`real`. 其中`id`为`primary key`. 主键的取值必须是唯一的(`unique`),否则会报错。 - - -```python -c.execute('''CREATE TABLE books - (id int primary key, - sort int, - name text, - price real)''') -``` -第一次执行上面语句,表`books`创建完成。当再次执行时,就会报`重复建表`的错误。需要优化脚本,检查表是否存在`IF NOT EXISTS books`,不存在再创建: -```python -c.execute('''CREATE TABLE IF NOT EXISTS books - (id int primary key, - sort int, - name text, - price real)''') -``` - -6)插入一行记录 - -共为4个字段赋值 - -```python -c.execute('''INSERT INTO books VALUES - (1, - 1, - 'computer science', - 39.0)''') -``` - -7)一次插入多行记录 - -先创建一个list:`books`,使用`executemany`一次插入多行。 -```python -books = [(2, 2, 'Cook book', 68), - (3, 2, 'Python intro', 89), - (4, 3, 'machine learning', 59), - ] - - -c.executemany('INSERT INTO books VALUES (?, ?, ?, ?)', books) -``` - -8)提交 - -提交后才会真正生效,写入到数据库 - -```python -conn.commit() -``` - -9)关闭期初建立的连接conn - -务必记住手动关闭,否则会出现内存泄漏 -```python -conn.close() -print('Done') -``` - -10)查看结果 -例子君使用`vs code`,在扩展库中选择:`SQLite`安装。 - -![image-20200208211721377](./img/image-20200208211721377.png) - -新建一个`sq`文件:`a.sql`,内容如下: - -```sql -SELECT * from books -``` -右键`run query`,得到表`books`插入的4行记录可视化图: - -![image-20200208211806853](./img/image-20200208211806853.png) - -以上十步就是sqlite3写入数据库的主要步骤,作为Flask系列的第二篇,为后面的前端讲解打下基础。 - -#### 3 Flask各层调用关系 - -这篇介绍Flask和B/S模式,即浏览器/服务器模式,是接下来快速理解Flask代码的关键理论篇:**理解Views、models和渲染模板层的调用关系**。 - -1) 发出请求 - -当我们在浏览器地址栏中输入某个地址,按回车后,完成第一步。 - -2) 视图层 views接收1)步发出的请求,Flask中使用解释器的方式处理这个求情,实例代码如下,它通常涉及到调用models层和模板文件层 - -```python -@main_blue.route('/', methods=['GET', 'POST']) -def index(): - form = TestForm() - print('test') -``` - -3) models层会负责创建数据模型,执行CRUD操作 - -4) 模板文件层处理html模板 - -5) 组合后返回html - -6) models层和html模板组合后返回给views层 - -7)最后views层响应并渲染到浏览器页面,我们就能看到请求的页面。 - -完整过程图如下所示: - -![image-20200211152007983](./img/web1.png) - -读者朋友们,如果你和例子君一样都是初学Flask编程,需要好好理解上面的过程。理解这些对于接下来的编程会有一定的理论指导,方向性指导价值。 - -### Python 问答 - -#### 2:Python 如何生成二维码? - - - - - -## qrcode - -今天先来解答如何生成二维码。Python的`qrcode`包支持生成二维码。 - -用法也很简单: - -```python -import qrcode - -# 二维码内容 -data = "http://www.zglg.work/wp-content/uploads/2020/10/image-3.png" -# 生成二维码 -img = qrcode.make(data=data) -# 直接显示二维码 -img.show() -# 保存二维码为文件 -img.save("我的微信.jpg") -``` - -生成的二维码如下: - -![](https://imgkr2.cn-bj.ufileos.com/f0b08c53-0107-483b-bbe5-072bebc58e8d.png?UCloudPublicKey=TOKEN_8d8b72be-579a-4e83-bfd0-5f6ce1546f13&Signature=rVtaeBWhzLPPq%252BFCVtiOv6rS0tI%253D&Expires=1603544615) - - -大家微信扫描后,会出现我的二维码。 - -另外,还可以设置二维码的颜色等样式: - -```python -import qrcode - -# 实例化二维码生成类 -qr = qrcode.QRCode(border=2) -# 设置二维码数据 -data = "http://www.zglg.work/wp-content/uploads/2020/10/image-3.png" -qr.add_data(data=data) -# 启用二维码颜色设置 -qr.make(fit=True) -img = qr.make_image(fill_color="orange", back_color="white") - -# 显示二维码 -img.show() -``` - -生成一个orange的二维码: - -![](https://imgkr2.cn-bj.ufileos.com/cbd26fd8-27cf-4630-935f-6896822ce483.png?UCloudPublicKey=TOKEN_8d8b72be-579a-4e83-bfd0-5f6ce1546f13&Signature=uy1r24x%252Fp5QpI5Wy10Ebdaz%252BpLM%253D&Expires=1603544681) - -更多样式,大家可以自己去玩耍。 - diff --git a/_config.yml b/_config.yml deleted file mode 100644 index ddeb671b..00000000 --- a/_config.yml +++ /dev/null @@ -1 +0,0 @@ -theme: jekyll-theme-time-machine \ No newline at end of file From 1d5e900506b6de3ae293ac00ff23de921240bd34 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Fri, 26 Feb 2021 22:40:13 +0800 Subject: [PATCH 21/85] fix bug --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 327c94b9..f55e8930 100644 --- a/README.md +++ b/README.md @@ -271,7 +271,7 @@ | 190 | [p随机读取文件的K行,生成N个](/md/190.md) | pandas sample | v1.0 | ⭐️⭐⭐ | | 191 | [格式化Pandas的时间列](md/191.md) | pandas apply | v1.0 | ⭐️⭐⭐⭐ | | 192 | [创建SQLite连接](md/192.md) | SQLite | v1.0 | ⭐️⭐⭐⭐ | -| 193 | [json对象转python对象](md/192.md) | python json | v1.0 | ⭐️⭐⭐⭐ | +| 193 | [json对象转python对象](md/193.md) | python json | v1.0 | ⭐️⭐⭐⭐ | ### Python 实战 From 84e66378c344d5638899657840f7a6f3b4c7de4f Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Fri, 26 Feb 2021 22:45:25 +0800 Subject: [PATCH 22/85] python-level --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f55e8930..64b1a569 100644 --- a/README.md +++ b/README.md @@ -32,15 +32,16 @@ 允许按照要求转载,但禁止用于任何商用目的。 ## Python 原创教程 -这是经过很久打磨的一个Python教程,全部是个人原创,已首发在公众号,并且托管在我的[个人网站](http://www.zglg.work/?page_id=535)。想系统入门Python的欢迎学习: +这是经过很久打磨的一个Python教程,全部是个人原创,已首发在公众号,并且托管在我的[个人网站](http://www.zglg.work/python-level/)。想系统入门Python的欢迎学习: -[Python技术栈完整教程](http://www.zglg.work/?page_id=535) +[Python进阶完整教程](http://www.zglg.work/python-level/) ![](./img/大纲.png) 适合小白的 Python 系统入门课程 -- [1 数字专题](http://www.zglg.work/?page_id=530) +- [0 Python引言](http://www.zglg.work/Python-20-topics/intro-python/) +- [1 数字专题](http://www.zglg.work/Python-20-topics/python-number/) - [2 字符串专题](http://www.zglg.work/?page_id=540) - 3 列表专题 - [3.1 列表基础](http://www.zglg.work/?page_id=563) From c3b3de0e3288d4051d2b33522f50dc1cfcd9d593 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Sat, 27 Feb 2021 00:01:06 +0800 Subject: [PATCH 23/85] readme --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 64b1a569..91d6965d 100644 --- a/README.md +++ b/README.md @@ -262,14 +262,14 @@ | 180 | [category列转数值](./md/180.md) | pandas category | v1.0 | ⭐️⭐⭐ | | 181 | [rank排名](./md/181.md) | pandas rank | v1.0 | ⭐️⭐⭐| | 182 | [完成数据下采样,调整步长由小时为天](./md/182.md) | pandas resample | v1.0 | ⭐️⭐⭐ | -| 183 | [如何用 Pandas 快速生成时间序列数据](/md/183.md) | pandas util | v1.0 | ⭐️⭐⭐ | -| 184 | [如何快速找出 DataFrame 所有列 null 值个数](/md/184.md) | pandas isnull sum | v1.0 | ⭐️⭐⭐ | -| 185 | [重新排序 DataFrame 的列](/md/185.md) | pandas dataframe | v1.0 | ⭐️⭐⭐ | -| 186 | [使用 count 统计词条 出现次数](/md/186.md) | pandas count | v1.0 | ⭐️⭐⭐ | -| 187 | [split 求时分(HH:mm)的分钟差](/md/187.md) | pandas split | v1.0 | ⭐️⭐⭐ | -| 188 | [melt透视数据小技巧](/md/188.md) | pandas melt | v1.0 | ⭐️⭐⭐ | -| 189 | [pivot 透视小技巧](/md/189.md) | pandas melt | v1.0 | ⭐️⭐⭐ | -| 190 | [p随机读取文件的K行,生成N个](/md/190.md) | pandas sample | v1.0 | ⭐️⭐⭐ | +| 183 | [如何用 Pandas 快速生成时间序列数据](./md/183.md) | pandas util | v1.0 | ⭐️⭐⭐ | +| 184 | [如何快速找出 DataFrame 所有列 null 值个数](./md/184.md) | pandas isnull sum | v1.0 | ⭐️⭐⭐ | +| 185 | [重新排序 DataFrame 的列](./md/185.md) | pandas dataframe | v1.0 | ⭐️⭐⭐ | +| 186 | [使用 count 统计词条 出现次数](./md/186.md) | pandas count | v1.0 | ⭐️⭐⭐ | +| 187 | [split 求时分(HH:mm)的分钟差](./md/187.md) | pandas split | v1.0 | ⭐️⭐⭐ | +| 188 | [melt透视数据小技巧](./md/188.md) | pandas melt | v1.0 | ⭐️⭐⭐ | +| 189 | [pivot 透视小技巧](./md/189.md) | pandas melt | v1.0 | ⭐️⭐⭐ | +| 190 | [p随机读取文件的K行,生成N个](./md/190.md) | pandas sample | v1.0 | ⭐️⭐⭐ | | 191 | [格式化Pandas的时间列](md/191.md) | pandas apply | v1.0 | ⭐️⭐⭐⭐ | | 192 | [创建SQLite连接](md/192.md) | SQLite | v1.0 | ⭐️⭐⭐⭐ | | 193 | [json对象转python对象](md/193.md) | python json | v1.0 | ⭐️⭐⭐⭐ | From 7a47666db53309716442c1775449b316f56231d7 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Sat, 27 Feb 2021 00:16:54 +0800 Subject: [PATCH 24/85] readme --- md/182.md | 40 +++------------------------------------- 1 file changed, 3 insertions(+), 37 deletions(-) diff --git a/md/182.md b/md/182.md index a318168a..8770769d 100644 --- a/md/182.md +++ b/md/182.md @@ -1,18 +1,12 @@ ```markdown @author jackzhenguo -<<<<<<< HEAD -@desc **完成数据下采样,调整步长由小时为天** -======= -@desc 完成数据下采样,步长小时调整为天 ->>>>>>> c71f26070eb30c7a48f537edde0083fa46adc020 +@desc 完成数据下采样,调整步长由小时为天 @tag @version @date 2020/03/20 -``` - -<<<<<<< HEAD 第 182 个小例子:**完成数据下采样,调整步长由小时为天** +``` 步长为小时的时间序列数据,有没有小技巧,快速完成下采样,采集成按天的数据呢?先生成测试数据: @@ -21,46 +15,18 @@ import pandas as pd import numpy as np df = pd.DataFrame(np.random.randint(1,10,size=(240,3)), \ columns = ['商品编码','商品销量','商品库存']) -======= -182 如何完成数据下采样,调整步长由小时为天? - -步长为小时的时间序列数据,有没有小技巧,快速完成下采样,采集成按天的数据呢? -先生成测试数据: -```python -import pandas as pd -import numpy as np -``` - -```python -df = pd.DataFrame(np.random.randint(1,10,size=(240,3)), \ -columns = ['商品编码','商品销量','商品库存']) ``` ```python ->>>>>>> c71f26070eb30c7a48f537edde0083fa46adc020 df.index = pd.util.testing.makeDateIndex(240,freq='H') df -``` - -<<<<<<< HEAD 使用 resample 方法,合并为天(D) - -======= -生成 240 行步长为小时间隔的数据: - -![](../img/182-1.png) +``` 小技巧,使用 resample 方法,合并为天(D) ->>>>>>> c71f26070eb30c7a48f537edde0083fa46adc020 ```python day_df = df.resample("D")["商品销量"].sum().to_frame() day_df ``` -<<<<<<< HEAD 结果如下,10行,240小时,正好为 10 days -======= -结果如下,10行,240小时,正好为 10 days: - -![](../img/182-2.png) ->>>>>>> c71f26070eb30c7a48f537edde0083fa46adc020 From db84998be8cb994f16fbe0b3d8c4b27f1350cf62 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Sat, 27 Feb 2021 12:37:42 +0800 Subject: [PATCH 25/85] add naviate in bottom of file --- script/.idea/.gitignore | 3 ++ .../inspectionProfiles/Project_Default.xml | 45 +++++++++++++++++++ .../inspectionProfiles/profiles_settings.xml | 6 +++ script/.idea/misc.xml | 4 ++ script/.idea/modules.xml | 8 ++++ script/.idea/script.iml | 11 +++++ script/.idea/vcs.xml | 6 +++ script/add_nav.py | 17 +++++++ 8 files changed, 100 insertions(+) create mode 100644 script/.idea/.gitignore create mode 100644 script/.idea/inspectionProfiles/Project_Default.xml create mode 100644 script/.idea/inspectionProfiles/profiles_settings.xml create mode 100644 script/.idea/misc.xml create mode 100644 script/.idea/modules.xml create mode 100644 script/.idea/script.iml create mode 100644 script/.idea/vcs.xml create mode 100644 script/add_nav.py diff --git a/script/.idea/.gitignore b/script/.idea/.gitignore new file mode 100644 index 00000000..26d33521 --- /dev/null +++ b/script/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/script/.idea/inspectionProfiles/Project_Default.xml b/script/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 00000000..e4919dcd --- /dev/null +++ b/script/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,45 @@ + + + + \ No newline at end of file diff --git a/script/.idea/inspectionProfiles/profiles_settings.xml b/script/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 00000000..105ce2da --- /dev/null +++ b/script/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/script/.idea/misc.xml b/script/.idea/misc.xml new file mode 100644 index 00000000..8161a60d --- /dev/null +++ b/script/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/script/.idea/modules.xml b/script/.idea/modules.xml new file mode 100644 index 00000000..7e8a5742 --- /dev/null +++ b/script/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/script/.idea/script.iml b/script/.idea/script.iml new file mode 100644 index 00000000..8dc09e54 --- /dev/null +++ b/script/.idea/script.iml @@ -0,0 +1,11 @@ + + + + + + + + + + \ No newline at end of file diff --git a/script/.idea/vcs.xml b/script/.idea/vcs.xml new file mode 100644 index 00000000..6c0b8635 --- /dev/null +++ b/script/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/script/add_nav.py b/script/add_nav.py new file mode 100644 index 00000000..47b8986f --- /dev/null +++ b/script/add_nav.py @@ -0,0 +1,17 @@ +# function: give each *.md example to a navigation in bottom of file +# author: zhenguo +# date: 2021.2.27 +# version: 1.0 + +import os + +for file in os.listdir('../md'): + if os.path.splitext(file)[-1] == '.md': + with open('../md/' + file, 'a') as f: + file_name = os.path.splitext(file)[0] + try: + c = '\n\n
[上一个例子](%s.md) [下一个例子](%s.md)
' % (str(int(file_name) - 1), str(int(file_name) + 1)) + f.write(c) + print('文件%s写入成功' % (file,)) + except: + print(ex) From 9dfc6c9a5dcfac19256fccc5f7d3bf7071111bf7 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Sat, 27 Feb 2021 12:41:36 +0800 Subject: [PATCH 26/85] add nav for files in bottom --- md/1.md | 3 +++ md/10.md | 3 +++ md/100.md | 4 +++- md/101.md | 4 +++- md/102.md | 4 +++- md/103.md | 4 +++- md/104.md | 4 +++- md/105.md | 4 +++- md/106.md | 4 +++- md/107.md | 4 +++- md/108.md | 4 +++- md/109.md | 4 +++- md/11.md | 3 +++ md/110.md | 4 +++- md/111.md | 4 +++- md/112.md | 4 +++- md/113.md | 4 +++- md/114.md | 4 +++- md/115.md | 4 +++- md/116.md | 4 +++- md/117.md | 4 +++- md/118.md | 4 +++- md/119.md | 4 +++- md/12.md | 3 +++ md/120.md | 4 +++- md/121.md | 4 +++- md/122.md | 4 +++- md/123.md | 4 +++- md/124.md | 4 +++- md/125.md | 4 +++- md/126.md | 4 +++- md/127.md | 4 +++- md/128.md | 4 +++- md/129.md | 4 +++- md/13.md | 3 +++ md/130.md | 4 +++- md/131.md | 4 +++- md/132.md | 4 +++- md/133.md | 3 +++ md/134.md | 4 +++- md/135.md | 4 +++- md/136.md | 3 +++ md/137.md | 4 +++- md/138.md | 4 +++- md/139.md | 4 +++- md/14.md | 3 +++ md/140.md | 4 +++- md/141.md | 4 +++- md/142.md | 4 +++- md/143.md | 4 +++- md/144.md | 4 +++- md/145.md | 4 +++- md/146.md | 4 +++- md/147.md | 4 +++- md/148.md | 4 +++- md/149.md | 4 +++- md/15.md | 4 +++- md/150.md | 4 +++- md/151.md | 4 +++- md/152.md | 4 +++- md/153.md | 4 +++- md/154.md | 4 +++- md/155.md | 4 +++- md/156.md | 3 +++ md/157.md | 4 +++- md/158.md | 3 +++ md/159.md | 4 +++- md/16.md | 4 +++- md/160.md | 4 +++- md/161.md | 4 +++- md/162.md | 4 +++- md/163.md | 4 +++- md/164.md | 4 +++- md/165.md | 4 +++- md/166.md | 4 +++- md/167.md | 4 +++- md/168.md | 4 +++- md/169.md | 4 +++- md/17.md | 4 +++- md/170.md | 4 +++- md/171.md | 4 +++- md/172.md | 4 +++- md/173.md | 4 +++- md/174.md | 4 +++- md/175.md | 3 +++ md/176.md | 4 +++- md/177.md | 4 +++- md/178.md | 4 +++- md/179.md | 3 +++ md/18.md | 4 +++- md/180.md | 4 +++- md/181.md | 4 +++- md/182.md | 3 +++ md/183.md | 4 +++- md/184.md | 4 +++- md/185.md | 4 +++- md/186.md | 3 +++ md/187.md | 4 +++- md/188.md | 4 +++- md/189.md | 4 +++- md/19.md | 4 +++- md/190.md | 4 +++- md/191.md | 4 +++- md/192.md | 4 +++- md/193.md | 4 +++- md/194.md | 4 +++- md/195.md | 4 +++- md/196.md | 4 +++- md/197.md | 4 +++- md/198.md | 4 +++- md/199.md | 4 +++- md/2.md | 3 +++ md/20.md | 4 +++- md/200.md | 4 +++- md/201.md | 4 +++- md/202.md | 4 +++- md/203.md | 4 +++- md/204.md | 4 +++- md/205.md | 4 +++- md/206.md | 4 +++- md/207.md | 4 +++- md/208.md | 4 +++- md/209.md | 4 +++- md/21.md | 4 +++- md/210.md | 4 +++- md/211.md | 4 +++- md/212.md | 4 +++- md/213.md | 4 +++- md/214.md | 4 +++- md/215.md | 4 +++- md/216.md | 4 +++- md/217.md | 4 +++- md/218.md | 4 +++- md/219.md | 4 +++- md/22.md | 4 +++- md/220.md | 4 +++- md/221.md | 4 +++- md/222.md | 4 +++- md/223.md | 4 +++- md/224.md | 4 +++- md/225.md | 4 +++- md/226.md | 4 +++- md/227.md | 4 +++- md/228.md | 4 +++- md/229.md | 4 +++- md/23.md | 4 +++- md/230.md | 4 +++- md/231.md | 4 +++- md/232.md | 4 +++- md/233.md | 4 +++- md/24.md | 4 +++- md/25.md | 4 +++- md/26.md | 4 +++- md/27.md | 4 +++- md/28.md | 4 +++- md/29.md | 4 +++- md/3.md | 4 +++- md/30.md | 4 +++- md/31.md | 4 +++- md/32.md | 4 +++- md/33.md | 4 +++- md/34.md | 4 +++- md/35.md | 4 +++- md/36.md | 4 +++- md/37.md | 4 +++- md/38.md | 4 +++- md/39.md | 4 +++- md/4.md | 4 +++- md/40.md | 4 +++- md/41.md | 4 +++- md/42.md | 4 +++- md/43.md | 4 +++- md/44.md | 4 +++- md/45.md | 4 +++- md/46.md | 4 +++- md/47.md | 4 +++- md/48.md | 4 +++- md/49.md | 4 +++- md/5.md | 4 +++- md/50.md | 4 +++- md/51.md | 4 +++- md/52.md | 4 +++- md/53.md | 4 +++- md/54.md | 4 +++- md/55.md | 4 +++- md/56.md | 4 +++- md/57.md | 4 +++- md/58.md | 4 +++- md/59.md | 4 +++- md/6.md | 3 +++ md/60.md | 4 +++- md/61.md | 4 +++- md/62.md | 4 +++- md/63.md | 4 +++- md/64.md | 3 +++ md/65.md | 4 +++- md/66.md | 4 +++- md/67.md | 3 +++ md/68.md | 4 +++- md/69.md | 4 +++- md/7.md | 3 +++ md/70.md | 4 +++- md/71.md | 3 +++ md/72.md | 3 +++ md/73.md | 4 +++- md/74.md | 3 +++ md/75.md | 3 +++ md/76.md | 3 +++ md/77.md | 4 +++- md/78.md | 4 +++- md/79.md | 4 +++- md/8.md | 3 +++ md/80.md | 4 +++- md/81.md | 4 +++- md/82.md | 4 +++- md/83.md | 4 +++- md/84.md | 4 +++- md/85.md | 4 +++- md/86.md | 3 +++ md/87.md | 4 +++- md/88.md | 3 +++ md/89.md | 4 +++- md/9.md | 4 +++- md/90.md | 4 +++- md/91.md | 4 +++- md/92.md | 4 +++- md/93.md | 3 +++ md/94.md | 4 +++- md/95.md | 4 +++- md/96.md | 4 +++- md/97.md | 4 +++- md/98.md | 4 +++- md/99.md | 4 +++- 233 files changed, 699 insertions(+), 205 deletions(-) diff --git a/md/1.md b/md/1.md index f3dc1de3..6a824b8e 100644 --- a/md/1.md +++ b/md/1.md @@ -25,3 +25,6 @@ relu(5) # 5 relu(-1) # 0 ``` + + +
[上一个例子](0.md) [下一个例子](2.md)
\ No newline at end of file diff --git a/md/10.md b/md/10.md index 5ac085b2..3cc76980 100644 --- a/md/10.md +++ b/md/10.md @@ -12,3 +12,6 @@ int(x, base =10) , x可能为字符串或数值,将x 转换为一个普通整 In [1]: int('12',16) Out[1]: 18 ``` + + +
[上一个例子](9.md) [下一个例子](11.md)
\ No newline at end of file diff --git a/md/100.md b/md/100.md index 1dc596f0..3e7fdf39 100644 --- a/md/100.md +++ b/md/100.md @@ -46,4 +46,6 @@ print(r) # False r = is_permutation('work', 'woo') print(r) # False -``` \ No newline at end of file +``` + +
[上一个例子](99.md) [下一个例子](101.md)
\ No newline at end of file diff --git a/md/101.md b/md/101.md index 639c4df6..5c78429e 100644 --- a/md/101.md +++ b/md/101.md @@ -32,4 +32,6 @@ print(r) # True r = is_rotation('greatman', 'maneatgr') print(r) # False -``` \ No newline at end of file +``` + +
[上一个例子](100.md) [下一个例子](102.md)
\ No newline at end of file diff --git a/md/102.md b/md/102.md index ff19dd37..56130bf5 100644 --- a/md/102.md +++ b/md/102.md @@ -59,4 +59,6 @@ Out[88]: 两个式子连接起来就是最终的结果: -`^[1-9]\d*\.\d*|0\.\d*[1-9]\d*$` \ No newline at end of file +`^[1-9]\d*\.\d*|0\.\d*[1-9]\d*$` + +
[上一个例子](101.md) [下一个例子](103.md)
\ No newline at end of file diff --git a/md/103.md b/md/103.md index 4dd2b710..3b039296 100644 --- a/md/103.md +++ b/md/103.md @@ -15,4 +15,6 @@ Out[5]: './data/py/test' In [6]: ext Out[6]: '.py' -``` \ No newline at end of file +``` + +
[上一个例子](102.md) [下一个例子](104.md)
\ No newline at end of file diff --git a/md/104.md b/md/104.md index 57e79708..a7d32078 100644 --- a/md/104.md +++ b/md/104.md @@ -17,4 +17,6 @@ Out[12]: './data/py' In [13]: ifile Out[13]: 'test.py' -``` \ No newline at end of file +``` + +
[上一个例子](103.md) [下一个例子](105.md)
\ No newline at end of file diff --git a/md/105.md b/md/105.md index 9c6d75ee..a0d5d5d7 100644 --- a/md/105.md +++ b/md/105.md @@ -78,4 +78,6 @@ def main(): new_ext = '.' + new_ext batch_rename(work_dir, old_ext, new_ext) -``` \ No newline at end of file +``` + +
[上一个例子](104.md) [下一个例子](106.md)
\ No newline at end of file diff --git a/md/106.md b/md/106.md index e65c908e..e3025b60 100644 --- a/md/106.md +++ b/md/106.md @@ -37,4 +37,6 @@ xls_to_xlsx('./data') # 输出结果: # ['cut_words.csv', 'email_list.xlsx', 'email_test.docx', 'email_test.jpg', 'email_test.xlsx', 'geo_data.png', 'geo_data.xlsx', 'iotest.txt', 'pyside2.md', 'PySimpleGUI-4.7.1-py3-none-any.whl', 'test.txt', 'test_excel.xlsx', 'ziptest', 'ziptest.zip'] -``` \ No newline at end of file +``` + +
[上一个例子](105.md) [下一个例子](107.md)
\ No newline at end of file diff --git a/md/107.md b/md/107.md index b60e8ea7..e148f023 100644 --- a/md/107.md +++ b/md/107.md @@ -21,4 +21,6 @@ def find_file(work_dir,extension='jpg'): r = find_file('.','md') print(r) # 返回所有目录下的md文件 -``` \ No newline at end of file +``` + +
[上一个例子](106.md) [下一个例子](108.md)
\ No newline at end of file diff --git a/md/108.md b/md/108.md index 92285829..530a221c 100644 --- a/md/108.md +++ b/md/108.md @@ -31,4 +31,6 @@ def batch_zip(start_dir): batch_zip('./data/ziptest') -``` \ No newline at end of file +``` + +
[上一个例子](107.md) [下一个例子](109.md)
\ No newline at end of file diff --git a/md/109.md b/md/109.md index 54638ac2..3e52f2c0 100644 --- a/md/109.md +++ b/md/109.md @@ -19,4 +19,6 @@ def hash_cry32(s): print(hash_cry32(1)) # c4ca4238a0b923820dcc509a6f75849b print(hash_cry32('hello')) # 5d41402abc4b2a76b9719d911017c592 -``` \ No newline at end of file +``` + +
[上一个例子](108.md) [下一个例子](110.md)
\ No newline at end of file diff --git a/md/11.md b/md/11.md index 527d50d9..40874b42 100644 --- a/md/11.md +++ b/md/11.md @@ -12,3 +12,6 @@ base为底的exp次幂,如果mod给出,取余 In [1]: pow(3, 2, 4) Out[1]: 1 ``` + + +
[上一个例子](10.md) [下一个例子](12.md)
\ No newline at end of file diff --git a/md/110.md b/md/110.md index e0a26a5d..1d09c097 100644 --- a/md/110.md +++ b/md/110.md @@ -52,4 +52,6 @@ Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su 21 22 23 24 25 26 27 18 19 20 21 22 23 24 16 17 18 19 20 21 22 28 29 30 31 25 26 27 28 29 30 23 24 25 26 27 28 29 30 31 -``` \ No newline at end of file +``` + +
[上一个例子](109.md) [下一个例子](111.md)
\ No newline at end of file diff --git a/md/111.md b/md/111.md index 139d494c..a5463347 100644 --- a/md/111.md +++ b/md/111.md @@ -20,4 +20,6 @@ print(print_leap_str % mydate.year) ```python 2019年不是闰年 -``` \ No newline at end of file +``` + +
[上一个例子](110.md) [下一个例子](112.md)
\ No newline at end of file diff --git a/md/112.md b/md/112.md index 0b6d20a8..e3ae7ce2 100644 --- a/md/112.md +++ b/md/112.md @@ -16,4 +16,6 @@ print(f'{mydate.year}年-{mydate.month}月共有{days}天\n') 2019年-12月的第一天是那一周的第6天 2019年-12月共有31天 -``` \ No newline at end of file +``` + +
[上一个例子](111.md) [下一个例子](113.md)
\ No newline at end of file diff --git a/md/113.md b/md/113.md index 9e17b876..24f0cc60 100644 --- a/md/113.md +++ b/md/113.md @@ -11,4 +11,6 @@ print(f"当月第一天:{month_first_day}\n") ```python # 当月第一天:2019-12-01 -``` \ No newline at end of file +``` + +
[上一个例子](112.md) [下一个例子](114.md)
\ No newline at end of file diff --git a/md/114.md b/md/114.md index 5cfabc7a..04ddee42 100644 --- a/md/114.md +++ b/md/114.md @@ -19,4 +19,6 @@ print(f"当月最后一天:{month_last_day}\n") ```python 当月最后一天:2019-12-31 -``` \ No newline at end of file +``` + +
[上一个例子](113.md) [下一个例子](115.md)
\ No newline at end of file diff --git a/md/115.md b/md/115.md index ad518397..ddcdf2a1 100644 --- a/md/115.md +++ b/md/115.md @@ -18,4 +18,6 @@ print(today_time) # 2019-12-22 18:02:33.398894 local_time = localtime() print(strftime("%Y-%m-%d %H:%M:%S", local_time)) # 转化为定制的格式 2019-12-22 18:13:41 -``` \ No newline at end of file +``` + +
[上一个例子](114.md) [下一个例子](116.md)
\ No newline at end of file diff --git a/md/116.md b/md/116.md index 88e2e46a..356bc44e 100644 --- a/md/116.md +++ b/md/116.md @@ -14,4 +14,6 @@ struct_time = strptime('2019-12-22 10:10:08', "%Y-%m-%d %H:%M:%S") print(struct_time) # struct_time类型就是time中的一个类 # time.struct_time(tm_year=2019, tm_mon=12, tm_mday=22, tm_hour=10, tm_min=10, tm_sec=8, tm_wday=6, tm_yday=356, tm_isdst=-1) -``` \ No newline at end of file +``` + +
[上一个例子](115.md) [下一个例子](117.md)
\ No newline at end of file diff --git a/md/117.md b/md/117.md index 58701ed9..40d00118 100644 --- a/md/117.md +++ b/md/117.md @@ -14,4 +14,6 @@ Out[2]: time.struct_time(tm_year=2019, tm_mon=12, tm_mday=22, tm_hour=18, tm_min print(strftime("%m-%d-%Y %H:%M:%S", localtime())) # 转化为定制的格式 # 这是字符串表示的时间: 12-22-2019 18:26:21 -``` \ No newline at end of file +``` + +
[上一个例子](116.md) [下一个例子](118.md)
\ No newline at end of file diff --git a/md/118.md b/md/118.md index a86160ed..ca14fe8d 100644 --- a/md/118.md +++ b/md/118.md @@ -29,4 +29,6 @@ print(t) # <_MainThread(MainThread, started 139908235814720)> print(t.getName()) # MainThread print(t.ident) # 139908235814720 print(t.isAlive()) # True -``` \ No newline at end of file +``` + +
[上一个例子](117.md) [下一个例子](119.md)
\ No newline at end of file diff --git a/md/119.md b/md/119.md index 30a29c41..7db86481 100644 --- a/md/119.md +++ b/md/119.md @@ -38,4 +38,6 @@ my_thread().start() 打印i:1 ``` -至此,多线程相关的核心知识点,已经总结完毕。但是,仅仅知道这些,还不够!光纸上谈兵,当然远远不够。 \ No newline at end of file +至此,多线程相关的核心知识点,已经总结完毕。但是,仅仅知道这些,还不够!光纸上谈兵,当然远远不够。 + +
[上一个例子](118.md) [下一个例子](120.md)
\ No newline at end of file diff --git a/md/12.md b/md/12.md index 73c360c0..78fe34d1 100644 --- a/md/12.md +++ b/md/12.md @@ -15,3 +15,6 @@ Out[11]: 10.022 In [12]: round(10.05,1) Out[12]: 10.1 ``` + + +
[上一个例子](11.md) [下一个例子](13.md)
\ No newline at end of file diff --git a/md/120.md b/md/120.md index c332ad22..e79a709f 100644 --- a/md/120.md +++ b/md/120.md @@ -49,4 +49,6 @@ threads = [threading.Thread(name='t%d'%(i,),target=print_time) for i in range(3) 当前线程t2,打印结束时间为:2020-01-12 02:27:16.107564 当前线程t0,打印结束时间为:2020-01-12 02:27:16.107290 当前线程t1,打印结束时间为:2020-01-12 02:27:16.107741 -``` \ No newline at end of file +``` + +
[上一个例子](119.md) [下一个例子](121.md)
\ No newline at end of file diff --git a/md/121.md b/md/121.md index b5fbbc03..34608ac0 100644 --- a/md/121.md +++ b/md/121.md @@ -56,4 +56,6 @@ NO! -但是在本例中,`a = a + 1`这种修改操作,花费的时间太短了,短到我们无法想象。所以,线程间轮询执行时,都能get到最新的a值。所以,暴露问题的概率就变得微乎其微。 \ No newline at end of file +但是在本例中,`a = a + 1`这种修改操作,花费的时间太短了,短到我们无法想象。所以,线程间轮询执行时,都能get到最新的a值。所以,暴露问题的概率就变得微乎其微。 + +
[上一个例子](120.md) [下一个例子](122.md)
\ No newline at end of file diff --git a/md/122.md b/md/122.md index bb0ba278..ca307f18 100644 --- a/md/122.md +++ b/md/122.md @@ -58,4 +58,6 @@ t9 adds a to 1: 1 tmp = a + 1 time.sleep(0.2) # 延时0.2秒,模拟写入所需时间 a = tmp -``` \ No newline at end of file +``` + +
[上一个例子](121.md) [下一个例子](123.md)
\ No newline at end of file diff --git a/md/123.md b/md/123.md index d7763476..20f70c47 100644 --- a/md/123.md +++ b/md/123.md @@ -58,4 +58,6 @@ t9 adds a to 1: 10 程序中只有一把锁,通过 `try...finally`还能确保不发生死锁。但是,当程序中启用多把锁,还是很容易发生死锁。 -注意使用场合,避免死锁,是我们在使用多线程开发时需要注意的一些问题。 \ No newline at end of file +注意使用场合,避免死锁,是我们在使用多线程开发时需要注意的一些问题。 + +
[上一个例子](122.md) [下一个例子](124.md)
\ No newline at end of file diff --git a/md/124.md b/md/124.md index dbf40795..b96dbd89 100644 --- a/md/124.md +++ b/md/124.md @@ -32,4 +32,6 @@ Out[69]: time.struct_time(tm_year=2020, tm_mon=2, tm_mday=22, tm_hour=11, tm_min %a Locale's abbreviated weekday name. %A Locale's full weekday name. %b Locale's abbreviated month name. -``` \ No newline at end of file +``` + +
[上一个例子](123.md) [下一个例子](125.md)
\ No newline at end of file diff --git a/md/125.md b/md/125.md index 427d482d..4d5b486c 100644 --- a/md/125.md +++ b/md/125.md @@ -20,4 +20,6 @@ def search_n(s, c, n): print(search_n("fdasadfadf", "a", 3))# 结果为7,正确 print(search_n("fdasadfadf", "a", 30))# 结果为-1,正确 -``` \ No newline at end of file +``` + +
[上一个例子](124.md) [下一个例子](126.md)
\ No newline at end of file diff --git a/md/126.md b/md/126.md index 8332c1dc..7ad476fa 100644 --- a/md/126.md +++ b/md/126.md @@ -15,4 +15,6 @@ def fibonacci(n): list(fibonacci(5)) # [1, 1, 2, 3, 5] -``` \ No newline at end of file +``` + +
[上一个例子](125.md) [下一个例子](127.md)
\ No newline at end of file diff --git a/md/127.md b/md/127.md index 5424f588..bfe5eefe 100644 --- a/md/127.md +++ b/md/127.md @@ -16,4 +16,6 @@ def find_all_duplicates(lst): find_all_duplicates([1, 2, 2, 3, 3, 3]) # [2,3] -``` \ No newline at end of file +``` + +
[上一个例子](126.md) [下一个例子](128.md)
\ No newline at end of file diff --git a/md/128.md b/md/128.md index e94c6097..cfd3df4a 100644 --- a/md/128.md +++ b/md/128.md @@ -34,4 +34,6 @@ def sumc(*c): #Counter({'orange': 3, 'computer': 3, 'apple': 1, 'abc': 1, 'face': 1}) sumc(a, b, ['abc'], ['face', 'computer']) -``` \ No newline at end of file +``` + +
[上一个例子](127.md) [下一个例子](129.md)
\ No newline at end of file diff --git a/md/129.md b/md/129.md index daa12086..60a5560f 100644 --- a/md/129.md +++ b/md/129.md @@ -48,4 +48,6 @@ cloud {'date': '2019-12-14', 'weather': 'cloud'} sunny {'date': '2019-12-13', 'weather': 'sunny'} -``` \ No newline at end of file +``` + +
[上一个例子](128.md) [下一个例子](130.md)
\ No newline at end of file diff --git a/md/13.md b/md/13.md index 6c5365a1..634ac883 100644 --- a/md/13.md +++ b/md/13.md @@ -11,3 +11,6 @@ i = 3 print(1 < i < 3) # False print(1 < i <= 3) # True ``` + + +
[上一个例子](12.md) [下一个例子](14.md)
\ No newline at end of file diff --git a/md/130.md b/md/130.md index b5b1020e..510692f6 100644 --- a/md/130.md +++ b/md/130.md @@ -29,4 +29,6 @@ sunny {'date': '2019-12-13', 'weather': 'sunny'} ``` -注意这个结果与上面结果有些微妙不同,这个更多是我们想看到和使用更多的。 \ No newline at end of file +注意这个结果与上面结果有些微妙不同,这个更多是我们想看到和使用更多的。 + +
[上一个例子](129.md) [下一个例子](131.md)
\ No newline at end of file diff --git a/md/131.md b/md/131.md index 95a5ed4a..c2e00aad 100644 --- a/md/131.md +++ b/md/131.md @@ -30,4 +30,6 @@ cloud {'date': '2019-12-14', 'weather': 'cloud'} sunny {'date': '2019-12-13', 'weather': 'sunny'} -``` \ No newline at end of file +``` + +
[上一个例子](130.md) [下一个例子](132.md)
\ No newline at end of file diff --git a/md/132.md b/md/132.md index abd469c7..d9eb0078 100644 --- a/md/132.md +++ b/md/132.md @@ -29,4 +29,6 @@ In [8]:(i+1 for i in a) OUT [8]: at 0x000002AC7FFA8CF0> ``` -生成器每迭代一步吐出(`yield`)一个元素并计算和聚合后,进入下一次迭代,直到终点。 \ No newline at end of file +生成器每迭代一步吐出(`yield`)一个元素并计算和聚合后,进入下一次迭代,直到终点。 + +
[上一个例子](131.md) [下一个例子](133.md)
\ No newline at end of file diff --git a/md/133.md b/md/133.md index 613ea14b..39366435 100644 --- a/md/133.md +++ b/md/133.md @@ -43,3 +43,6 @@ In [3]: for day in getEverydaySince(2020,2,1): 2020-02-10 ``` + + +
[上一个例子](132.md) [下一个例子](134.md)
\ No newline at end of file diff --git a/md/134.md b/md/134.md index c22be448..c30c8de1 100644 --- a/md/134.md +++ b/md/134.md @@ -23,4 +23,6 @@ def divide_iter(lst, n): list(divide_iter([1, 2, 3, 4, 5], 0)) # [[1, 2, 3, 4, 5]] list(divide_iter([1, 2, 3, 4, 5], 2)) # [[1, 2, 3], [4, 5]] -``` \ No newline at end of file +``` + +
[上一个例子](133.md) [下一个例子](135.md)
\ No newline at end of file diff --git a/md/135.md b/md/135.md index 2bd9cc8b..d3fb5c77 100644 --- a/md/135.md +++ b/md/135.md @@ -18,4 +18,6 @@ def function(lst): else: yield i print(list(function(a))) # [1, 2, 3, 4, 5, 6, 7, 8, 'python', 6, 9] -``` \ No newline at end of file +``` + +
[上一个例子](134.md) [下一个例子](136.md)
\ No newline at end of file diff --git a/md/136.md b/md/136.md index 76880345..a29e3915 100644 --- a/md/136.md +++ b/md/136.md @@ -44,3 +44,6 @@ print("append/compre:",round(a/c,3)) #append/compre: 2.749 ``` + + +
[上一个例子](135.md) [下一个例子](137.md)
\ No newline at end of file diff --git a/md/137.md b/md/137.md index c72ccf32..6c067f1a 100644 --- a/md/137.md +++ b/md/137.md @@ -94,4 +94,6 @@ spending time:1.01 ``` -#### \ No newline at end of file +#### + +
[上一个例子](136.md) [下一个例子](138.md)
\ No newline at end of file diff --git a/md/138.md b/md/138.md index 4966e2f3..a6dff3a1 100644 --- a/md/138.md +++ b/md/138.md @@ -91,4 +91,6 @@ In [33]: myfun2() you're calling myfun2 function ``` -你看,这与装饰器的实现效果是一模一样的。装饰器的写法可能更加直观些,所以不用显示的这样赋值:`myfun = call_print(myfun)`,`myfun2 = call_print(myfun2)`,但是装饰器的这种封装,猛一看,有些不好理解。 \ No newline at end of file +你看,这与装饰器的实现效果是一模一样的。装饰器的写法可能更加直观些,所以不用显示的这样赋值:`myfun = call_print(myfun)`,`myfun2 = call_print(myfun2)`,但是装饰器的这种封装,猛一看,有些不好理解。 + +
[上一个例子](137.md) [下一个例子](139.md)
\ No newline at end of file diff --git a/md/139.md b/md/139.md index 6f038d5e..006ec56c 100644 --- a/md/139.md +++ b/md/139.md @@ -32,4 +32,6 @@ print(list(descend_iter)) 1 `__nex__ `名字不能变,实现定制的迭代逻辑 2 `raise StopIteration`:通过 raise 中断程序,必须这样写 - \ No newline at end of file + + +
[上一个例子](138.md) [下一个例子](140.md)
\ No newline at end of file diff --git a/md/14.md b/md/14.md index 90ee4b5b..a66f7aca 100644 --- a/md/14.md +++ b/md/14.md @@ -14,3 +14,6 @@ In [12]: s = "apple" In [13]: bytes(s,encoding='utf-8') Out[13]: b'apple' ``` + + +
[上一个例子](13.md) [下一个例子](15.md)
\ No newline at end of file diff --git a/md/140.md b/md/140.md index f9abebf1..3c6fc5bf 100644 --- a/md/140.md +++ b/md/140.md @@ -47,4 +47,6 @@ drawCircle(90,-30,'green') drawCircle(30,-30,'yellow') p.done() -``` \ No newline at end of file +``` + +
[上一个例子](139.md) [下一个例子](141.md)
\ No newline at end of file diff --git a/md/141.md b/md/141.md index ca3447e1..70c0e290 100644 --- a/md/141.md +++ b/md/141.md @@ -76,4 +76,6 @@ def main(): p.mainloop() main() -``` \ No newline at end of file +``` + +
[上一个例子](140.md) [下一个例子](142.md)
\ No newline at end of file diff --git a/md/142.md b/md/142.md index 757eddab..978f8df4 100644 --- a/md/142.md +++ b/md/142.md @@ -44,4 +44,6 @@ wc = WordCloud( ```python x = wc.generate(words) x.to_file('../data/geo_data.png') -``` \ No newline at end of file +``` + +
[上一个例子](141.md) [下一个例子](143.md)
\ No newline at end of file diff --git a/md/143.md b/md/143.md index 2e4cc805..aa633f4e 100644 --- a/md/143.md +++ b/md/143.md @@ -22,4 +22,6 @@ fig.add_trace( y=[2, 0.5, 0.7, -1.2, 0.3, 0.4] )) fig.show() -``` \ No newline at end of file +``` + +
[上一个例子](142.md) [下一个例子](144.md)
\ No newline at end of file diff --git a/md/144.md b/md/144.md index 1f3cdfc2..5cbd7e90 100644 --- a/md/144.md +++ b/md/144.md @@ -23,4 +23,6 @@ print(data) # 绘制热力图 heatmap_plot = sns.heatmap(data, center=0, cmap='gist_rainbow') plt.show() -``` \ No newline at end of file +``` + +
[上一个例子](143.md) [下一个例子](145.md)
\ No newline at end of file diff --git a/md/145.md b/md/145.md index 0311effb..0d3e538a 100644 --- a/md/145.md +++ b/md/145.md @@ -18,4 +18,6 @@ gauge.render(path="./data/仪表盘.html") print('ok') ``` -仪表盘中共展示三项,每项的比例为30%,70%,90%,如下图默认名称显示第一项:Python机器学习,完成比例为30% \ No newline at end of file +仪表盘中共展示三项,每项的比例为30%,70%,90%,如下图默认名称显示第一项:Python机器学习,完成比例为30% + +
[上一个例子](144.md) [下一个例子](146.md)
\ No newline at end of file diff --git a/md/146.md b/md/146.md index 29201849..e04770d8 100644 --- a/md/146.md +++ b/md/146.md @@ -21,4 +21,6 @@ def funnel_base() -> Funnel: ) return c funnel_base().render('./img/car_fnnel.html') -``` \ No newline at end of file +``` + +
[上一个例子](145.md) [下一个例子](147.md)
\ No newline at end of file diff --git a/md/147.md b/md/147.md index ef94ba8b..fd008bec 100644 --- a/md/147.md +++ b/md/147.md @@ -21,4 +21,6 @@ def liquid() -> Liquid: return c liquid().render('./img/liquid.html') -``` \ No newline at end of file +``` + +
[上一个例子](146.md) [下一个例子](148.md)
\ No newline at end of file diff --git a/md/148.md b/md/148.md index 1ab1ab02..508ea117 100644 --- a/md/148.md +++ b/md/148.md @@ -23,4 +23,6 @@ def pie_base() -> Pie: return c pie_base().render('./img/pie_pyecharts.html') -``` \ No newline at end of file +``` + +
[上一个例子](147.md) [下一个例子](149.md)
\ No newline at end of file diff --git a/md/149.md b/md/149.md index 0591ab0c..ae87e900 100644 --- a/md/149.md +++ b/md/149.md @@ -23,4 +23,6 @@ def polar_scatter0() -> Polar: return c polar_scatter0().render('./img/polar.html') -``` \ No newline at end of file +``` + +
[上一个例子](148.md) [下一个例子](150.md)
\ No newline at end of file diff --git a/md/15.md b/md/15.md index 9b5d5405..93b443f5 100644 --- a/md/15.md +++ b/md/15.md @@ -17,4 +17,6 @@ Out[16]: '[]' In [17]: str(tuple()) Out[17]: '()' -``` \ No newline at end of file +``` + +
[上一个例子](14.md) [下一个例子](16.md)
\ No newline at end of file diff --git a/md/150.md b/md/150.md index d4f75819..90d7fbbf 100644 --- a/md/150.md +++ b/md/150.md @@ -31,4 +31,6 @@ def wordcloud() -> WordCloud: return c wordcloud().render('./img/wordcloud.html') -``` \ No newline at end of file +``` + +
[上一个例子](149.md) [下一个例子](151.md)
\ No newline at end of file diff --git a/md/151.md b/md/151.md index 0df44065..1006c27b 100644 --- a/md/151.md +++ b/md/151.md @@ -31,4 +31,6 @@ def heatmap_car() -> HeatMap: heatmap_car().render('./img/heatmap_pyecharts.html') ``` -热力图描述的实际是三维关系,x轴表示车型,y轴表示国家,每个色块的颜色值代表销量,颜色刻度尺显示在左下角,颜色越红表示销量越大。 \ No newline at end of file +热力图描述的实际是三维关系,x轴表示车型,y轴表示国家,每个色块的颜色值代表销量,颜色刻度尺显示在左下角,颜色越红表示销量越大。 + +
[上一个例子](150.md) [下一个例子](152.md)
\ No newline at end of file diff --git a/md/152.md b/md/152.md index 4e7e1894..ee5530c0 100644 --- a/md/152.md +++ b/md/152.md @@ -67,4 +67,6 @@ def draw_chart(): ```python draw_chart() 179 -``` \ No newline at end of file +``` + +
[上一个例子](151.md) [下一个例子](153.md)
\ No newline at end of file diff --git a/md/153.md b/md/153.md index d7975e8e..b64115cd 100644 --- a/md/153.md +++ b/md/153.md @@ -58,4 +58,6 @@ plt.show() sns.pairplot(df, hue="species") plt.show() ``` - \ No newline at end of file + + +
[上一个例子](152.md) [下一个例子](154.md)
\ No newline at end of file diff --git a/md/154.md b/md/154.md index e8907e1d..8cdb47b1 100644 --- a/md/154.md +++ b/md/154.md @@ -19,4 +19,6 @@ c = (5) # NO! c = (5,) # YES! 186 -``` \ No newline at end of file +``` + +
[上一个例子](153.md) [下一个例子](155.md)
\ No newline at end of file diff --git a/md/155.md b/md/155.md index b6a16a84..56f84e76 100644 --- a/md/155.md +++ b/md/155.md @@ -30,4 +30,6 @@ f(1) 这是可变类型的默认参数之坑,请务必设置此类默认参数为None: def f(a,b=None): # YES! - pass \ No newline at end of file + pass + +
[上一个例子](154.md) [下一个例子](156.md)
\ No newline at end of file diff --git a/md/156.md b/md/156.md index eabae77d..3b11562b 100644 --- a/md/156.md +++ b/md/156.md @@ -29,3 +29,6 @@ def f(): i+=1 ``` + + +
[上一个例子](155.md) [下一个例子](157.md)
\ No newline at end of file diff --git a/md/157.md b/md/157.md index 6b4cf7c5..e7353abc 100644 --- a/md/157.md +++ b/md/157.md @@ -29,4 +29,6 @@ def f(a): 正确做法是转化自由参数为lambda函数的默认参数: ```python a = [lambda x,i=i: x+i for i in range(3)] # YES! -``` \ No newline at end of file +``` + +
[上一个例子](156.md) [下一个例子](158.md)
\ No newline at end of file diff --git a/md/158.md b/md/158.md index 0219b190..338514f4 100644 --- a/md/158.md +++ b/md/158.md @@ -128,3 +128,6 @@ f(a=1,b=2,width=3) #打印结果:{'a': 1, 'b': 2, 'width': 3} ```python f(1) TypeError: f() takes 0 positional arguments but 1 was given ``` + + +
[上一个例子](157.md) [下一个例子](159.md)
\ No newline at end of file diff --git a/md/159.md b/md/159.md index 1406e316..84bec8a9 100644 --- a/md/159.md +++ b/md/159.md @@ -29,4 +29,6 @@ def del_item(lst,e): d = dict(zip(range(len(lst)),lst)) # YES! 构造字典 return [v for k,v in d.items() if v!=e] -``` \ No newline at end of file +``` + +
[上一个例子](158.md) [下一个例子](160.md)
\ No newline at end of file diff --git a/md/16.md b/md/16.md index 7a0cb11a..45bccd41 100644 --- a/md/16.md +++ b/md/16.md @@ -18,4 +18,6 @@ Out[3]: at 0x0000000005DE75D0, file "", line 1> In [4]: exec(r) helloworld -``` \ No newline at end of file +``` + +
[上一个例子](15.md) [下一个例子](17.md)
\ No newline at end of file diff --git a/md/160.md b/md/160.md index ac2171a6..057584e7 100644 --- a/md/160.md +++ b/md/160.md @@ -33,4 +33,6 @@ a[0][0] = 10 # ```python a = [[] for _ in range(3)] -``` \ No newline at end of file +``` + +
[上一个例子](159.md) [下一个例子](161.md)
\ No newline at end of file diff --git a/md/161.md b/md/161.md index a6c0ff08..fc4b8173 100644 --- a/md/161.md +++ b/md/161.md @@ -24,4 +24,6 @@ In [2]: b = '@zglg'+'.com' In [3]: id(a)==id(b) Out[3]: False ``` -这与Cpython 编译优化相关,行为称为`字符串驻留`,但驻留的字符串中只包含字母,数字或下划线。 \ No newline at end of file +这与Cpython 编译优化相关,行为称为`字符串驻留`,但驻留的字符串中只包含字母,数字或下划线。 + +
[上一个例子](160.md) [下一个例子](162.md)
\ No newline at end of file diff --git a/md/162.md b/md/162.md index 8775d7ab..023623c3 100644 --- a/md/162.md +++ b/md/162.md @@ -24,4 +24,6 @@ Out[8]: 'python' ``` 这是因为具有相同值的不可变对象在Python中始终具有`相同的哈希值` -由于存在`哈希冲突`,不同值的对象也可能具有相同的哈希值。 \ No newline at end of file +由于存在`哈希冲突`,不同值的对象也可能具有相同的哈希值。 + +
[上一个例子](161.md) [下一个例子](163.md)
\ No newline at end of file diff --git a/md/163.md b/md/163.md index bcf3aed0..3803d3e4 100644 --- a/md/163.md +++ b/md/163.md @@ -41,4 +41,6 @@ Out[64]: True 当连续两次进行此操作, Python会将相同的内存地址分配给第二个对象,所以两个对象的id值是相同的. -但是is行为却与之不同,通过打印顺序就可以看到。 \ No newline at end of file +但是is行为却与之不同,通过打印顺序就可以看到。 + +
[上一个例子](162.md) [下一个例子](164.md)
\ No newline at end of file diff --git a/md/164.md b/md/164.md index 4fa085f7..b177bade 100644 --- a/md/164.md +++ b/md/164.md @@ -21,4 +21,6 @@ In [65]: for i in range(5): ``` 为什么不是执行一次就退出? -按照for在Python中的工作方式, i = 10 并不会影响循环。range(5)生成的下一个元素就被解包,并赋值给目标列表的变量`i`. \ No newline at end of file +按照for在Python中的工作方式, i = 10 并不会影响循环。range(5)生成的下一个元素就被解包,并赋值给目标列表的变量`i`. + +
[上一个例子](163.md) [下一个例子](165.md)
\ No newline at end of file diff --git a/md/165.md b/md/165.md index 209c6253..05653ab7 100644 --- a/md/165.md +++ b/md/165.md @@ -40,4 +40,6 @@ array = [5, 7, 9] 等价于: ```python g = (x for x in [1,3,5] if [5,7,9].count(x) > 0) -``` \ No newline at end of file +``` + +
[上一个例子](164.md) [下一个例子](166.md)
\ No newline at end of file diff --git a/md/166.md b/md/166.md index c413d061..17892f99 100644 --- a/md/166.md +++ b/md/166.md @@ -21,4 +21,6 @@ cpython会解释它为字典 ```python empty = set() #YES! -``` \ No newline at end of file +``` + +
[上一个例子](165.md) [下一个例子](167.md)
\ No newline at end of file diff --git a/md/167.md b/md/167.md index 95514f54..8dc039aa 100644 --- a/md/167.md +++ b/md/167.md @@ -43,4 +43,6 @@ c = ( c.render() ``` - \ No newline at end of file + + +
[上一个例子](166.md) [下一个例子](168.md)
\ No newline at end of file diff --git a/md/168.md b/md/168.md index 259cac5a..ef13d066 100644 --- a/md/168.md +++ b/md/168.md @@ -71,4 +71,6 @@ division by zero 完整的输出信息如下图片所示: - \ No newline at end of file + + +
[上一个例子](167.md) [下一个例子](169.md)
\ No newline at end of file diff --git a/md/169.md b/md/169.md index 680b4e00..39021b49 100644 --- a/md/169.md +++ b/md/169.md @@ -51,4 +51,6 @@ im.filter(ImageFilter.CONTOUR).show() ``` - \ No newline at end of file + + +
[上一个例子](168.md) [下一个例子](170.md)
\ No newline at end of file diff --git a/md/17.md b/md/17.md index ea3e9c1d..33dbc7f5 100644 --- a/md/17.md +++ b/md/17.md @@ -12,4 +12,6 @@ In [1]: s = "1 + 3 +5" ...: eval(s) Out[1]: 9 -``` \ No newline at end of file +``` + +
[上一个例子](16.md) [下一个例子](18.md)
\ No newline at end of file diff --git a/md/170.md b/md/170.md index a6333116..8c1ac757 100644 --- a/md/170.md +++ b/md/170.md @@ -70,4 +70,6 @@ In [7]: b'\xc8\xcb\xc9\xfa\xbf\xe0\xb6\xcc\xa3\xac\xce\xd2\xd3\xc3Python'.decode Out[7]: '人生苦短,我用Python' ``` -目前,`chardet` 包支持的检测编码几十种。 \ No newline at end of file +目前,`chardet` 包支持的检测编码几十种。 + +
[上一个例子](169.md) [下一个例子](171.md)
\ No newline at end of file diff --git a/md/171.md b/md/171.md index c3bcf1b2..392e8080 100644 --- a/md/171.md +++ b/md/171.md @@ -45,4 +45,6 @@ print(p.static_method()) print(p.class_method()) # 1.5 # 2.6666666666666665 -``` \ No newline at end of file +``` + +
[上一个例子](170.md) [下一个例子](172.md)
\ No newline at end of file diff --git a/md/172.md b/md/172.md index 8ec353e9..8329547a 100644 --- a/md/172.md +++ b/md/172.md @@ -35,4 +35,6 @@ array([[0., 0., 0., 0., 0., 0., 0., 0.], 此函数在为数组充填值,卷积中有重要应用。 -以上就是《python-small-examples》第 172 个小例子:NumPy 的 pad 填充方法。 \ No newline at end of file +以上就是《python-small-examples》第 172 个小例子:NumPy 的 pad 填充方法。 + +
[上一个例子](171.md) [下一个例子](173.md)
\ No newline at end of file diff --git a/md/173.md b/md/173.md index b8e4e79d..a29c0bef 100644 --- a/md/173.md +++ b/md/173.md @@ -20,4 +20,6 @@ In [2]: Z = np.diag(1+np.arange(4),k=-1) [0 0 0 4 0]] ``` - 其中,k 参数:大于0,表示与主对角线上移k,小于0下移k \ No newline at end of file + 其中,k 参数:大于0,表示与主对角线上移k,小于0下移k + +
[上一个例子](172.md) [下一个例子](174.md)
\ No newline at end of file diff --git a/md/174.md b/md/174.md index f4066e81..0c50e7fe 100644 --- a/md/174.md +++ b/md/174.md @@ -26,4 +26,6 @@ Length: 20 Categories (4, object): [D < C < B < A] ``` -分箱后,48分对应D,22分对应D,46对应D,84分对应B,... \ No newline at end of file +分箱后,48分对应D,22分对应D,46对应D,84分对应B,... + +
[上一个例子](173.md) [下一个例子](175.md)
\ No newline at end of file diff --git a/md/175.md b/md/175.md index 9a2b6d48..59b0b9ac 100644 --- a/md/175.md +++ b/md/175.md @@ -25,3 +25,6 @@ df.dropna(axis=0, how='all') df["a"].fillna(df["a"].mean(), inplace=True) ``` + + +
[上一个例子](174.md) [下一个例子](176.md)
\ No newline at end of file diff --git a/md/176.md b/md/176.md index ccd97fd1..6a9fa44f 100644 --- a/md/176.md +++ b/md/176.md @@ -31,4 +31,6 @@ pip --defualt-timeout = 600 install scrapy pip --defualt-timeout = 600 install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple ``` -后面安装你可以直接复制我这行命令,安装包的速度会快很多。 \ No newline at end of file +后面安装你可以直接复制我这行命令,安装包的速度会快很多。 + +
[上一个例子](175.md) [下一个例子](177.md)
\ No newline at end of file diff --git a/md/177.md b/md/177.md index 800b091a..e8e6e4ff 100644 --- a/md/177.md +++ b/md/177.md @@ -23,4 +23,6 @@ jupyter notebook 是运行 python 非常好用的笔记本之一,尤其作数 邀请伙伴直接进入你的notebook,多人协作,开发更快: -多了一种选择,调换着使用它们会很不错! \ No newline at end of file +多了一种选择,调换着使用它们会很不错! + +
[上一个例子](176.md) [下一个例子](178.md)
\ No newline at end of file diff --git a/md/178.md b/md/178.md index 7ab4eb6c..4a0c6ce8 100644 --- a/md/178.md +++ b/md/178.md @@ -33,4 +33,6 @@ Out[28]: 0 cd edc.rc 1 3 3 2 d ef 4 -``` \ No newline at end of file +``` + +
[上一个例子](177.md) [下一个例子](179.md)
\ No newline at end of file diff --git a/md/179.md b/md/179.md index bb6cd1c4..e2dc705c 100644 --- a/md/179.md +++ b/md/179.md @@ -31,3 +31,6 @@ d = {"male": 0, "female": 1} df["gender2"] = df["gender"].map(d) ``` + + +
[上一个例子](178.md) [下一个例子](180.md)
\ No newline at end of file diff --git a/md/18.md b/md/18.md index 5312f424..e4348925 100644 --- a/md/18.md +++ b/md/18.md @@ -26,4 +26,6 @@ i am tom,age18 | 1000000000 | {:.2e} | 1.00e+09 | 指数记法 | | 18 | {:>10d} | ' 18' | 右对齐 (默认, 宽度为10) | | 18 | {:<10d} | '18 ' | 左对齐 (宽度为10) | -| 18 | {:^10d} | ' 18 ' | 中间对齐 (宽度为10) | \ No newline at end of file +| 18 | {:^10d} | ' 18 ' | 中间对齐 (宽度为10) | + +
[上一个例子](17.md) [下一个例子](19.md)
\ No newline at end of file diff --git a/md/180.md b/md/180.md index e61fa1b8..49283079 100644 --- a/md/180.md +++ b/md/180.md @@ -25,4 +25,6 @@ def c2n(x): return 80 df['a'].apply(c2n) -``` \ No newline at end of file +``` + +
[上一个例子](179.md) [下一个例子](181.md)
\ No newline at end of file diff --git a/md/181.md b/md/181.md index 986d8979..482f7094 100644 --- a/md/181.md +++ b/md/181.md @@ -20,4 +20,6 @@ Out[53]: 2 1.0 3 3.0 4 5.0 -``` \ No newline at end of file +``` + +
[上一个例子](180.md) [下一个例子](182.md)
\ No newline at end of file diff --git a/md/182.md b/md/182.md index a318168a..af79d97d 100644 --- a/md/182.md +++ b/md/182.md @@ -64,3 +64,6 @@ day_df ![](../img/182-2.png) >>>>>>> c71f26070eb30c7a48f537edde0083fa46adc020 + + +
[上一个例子](181.md) [下一个例子](183.md)
\ No newline at end of file diff --git a/md/183.md b/md/183.md index 23eb43a4..b446ed36 100644 --- a/md/183.md +++ b/md/183.md @@ -61,4 +61,6 @@ df.index = pd.util.testing.makeDateIndex(10,freq='H') 2000-01-01 07:00:00 300 129 474 2000-01-01 08:00:00 966 372 835 2000-01-01 09:00:00 687 493 910 -``` \ No newline at end of file +``` + +
[上一个例子](182.md) [下一个例子](184.md)
\ No newline at end of file diff --git a/md/184.md b/md/184.md index c27c3235..fc582f4d 100644 --- a/md/184.md +++ b/md/184.md @@ -57,4 +57,6 @@ Age 列 177 个 null 值 Cabin 列 687 个 null 值 -Embarked 列 2 个 null 值 \ No newline at end of file +Embarked 列 2 个 null 值 + +
[上一个例子](183.md) [下一个例子](185.md)
\ No newline at end of file diff --git a/md/185.md b/md/185.md index 9c798e5d..3496470d 100644 --- a/md/185.md +++ b/md/185.md @@ -32,4 +32,6 @@ df3 = df[cols] df3 ``` -也能得到方法1的结果。 \ No newline at end of file +也能得到方法1的结果。 + +
[上一个例子](184.md) [下一个例子](186.md)
\ No newline at end of file diff --git a/md/186.md b/md/186.md index 16da4809..08ca6887 100644 --- a/md/186.md +++ b/md/186.md @@ -40,3 +40,6 @@ df["words_count"] = df["Title"].str.count(" ") + 1 df[["Title","words_count"]] ``` + + +
[上一个例子](185.md) [下一个例子](187.md)
\ No newline at end of file diff --git a/md/187.md b/md/187.md index 4e6308b5..0be0fdb3 100644 --- a/md/187.md +++ b/md/187.md @@ -28,4 +28,6 @@ df['bsplit'] = df['b'].str.split(':') ```python df['amins'] = df['asplit'].apply(lambda x: int(x[0])*60 + int(x[1])) df['bmins'] = df['bsplit'].apply(lambda x: int(x[0])*60 + int(x[1])) -``` \ No newline at end of file +``` + +
[上一个例子](186.md) [下一个例子](188.md)
\ No newline at end of file diff --git a/md/188.md b/md/188.md index 313d8538..97057f18 100644 --- a/md/188.md +++ b/md/188.md @@ -66,4 +66,6 @@ zip_code variable value 7 131415 retail 4 ``` -melt 透视数据后,因为组合多个列为1列,所以数据一定变长。 \ No newline at end of file +melt 透视数据后,因为组合多个列为1列,所以数据一定变长。 + +
[上一个例子](187.md) [下一个例子](189.md)
\ No newline at end of file diff --git a/md/189.md b/md/189.md index c4dcb6a0..447bd994 100644 --- a/md/189.md +++ b/md/189.md @@ -46,4 +46,6 @@ df_melt2.pivot(index='zip_code',columns='variable') index 设定第一个轴,为 zip_code,columns 设定哪些列或哪个列的不同取值组合为一个轴,此处设定为 variable 列,它一共有 2 种不同的取值,分别为 factory, retail,pivot 透视后变为列名,也就是 axis = 1 的轴 -pivot 方法没有聚合功能,它的升级版为 `pivot_table` 方法,能对数据聚合。 \ No newline at end of file +pivot 方法没有聚合功能,它的升级版为 `pivot_table` 方法,能对数据聚合。 + +
[上一个例子](188.md) [下一个例子](190.md)
\ No newline at end of file diff --git a/md/19.md b/md/19.md index 88c85901..776e9b44 100644 --- a/md/19.md +++ b/md/19.md @@ -20,4 +20,6 @@ In [4]: sorted(a,key=lambda x: x['age'],reverse=False) Out[4]: [{'name': 'xiaoming', 'age': 18, 'gender': 'male'}, {'name': 'xiaohong', 'age': 20, 'gender': 'female'}] -``` \ No newline at end of file +``` + +
[上一个例子](18.md) [下一个例子](20.md)
\ No newline at end of file diff --git a/md/190.md b/md/190.md index fe31f6d1..9b1d6139 100644 --- a/md/190.md +++ b/md/190.md @@ -26,4 +26,6 @@ def random_lines_save(filename,gen_file_cnt=10): print(str(n)+".xlsx") ``` -这是一个很实用的函数,用于随机生成K行N个文件,使用场景:原来的文件行数较多,想从中随机提取组合N个文件时。 \ No newline at end of file +这是一个很实用的函数,用于随机生成K行N个文件,使用场景:原来的文件行数较多,想从中随机提取组合N个文件时。 + +
[上一个例子](189.md) [下一个例子](191.md)
\ No newline at end of file diff --git a/md/191.md b/md/191.md index 1178ad58..cd572176 100644 --- a/md/191.md +++ b/md/191.md @@ -37,4 +37,6 @@ series_dt_fmt(s,fmt) 0 11:44 1 11:20 dtype: object -``` \ No newline at end of file +``` + +
[上一个例子](190.md) [下一个例子](192.md)
\ No newline at end of file diff --git a/md/192.md b/md/192.md index d36d0ae8..c11bebd8 100644 --- a/md/192.md +++ b/md/192.md @@ -32,4 +32,6 @@ finally: print("关闭SQLite连接") ``` -以上就是第192例,希望对你有用,欢迎点赞支持。 \ No newline at end of file +以上就是第192例,希望对你有用,欢迎点赞支持。 + +
[上一个例子](191.md) [下一个例子](193.md)
\ No newline at end of file diff --git a/md/193.md b/md/193.md index 150a13ff..c84b6c68 100644 --- a/md/193.md +++ b/md/193.md @@ -28,4 +28,6 @@ print(python_obj) print("\nName: ",python_obj["Name"]) print("Class: ",python_obj["Class"]) print("Age: ",python_obj["Age"]) -``` \ No newline at end of file +``` + +
[上一个例子](192.md) [下一个例子](194.md)
\ No newline at end of file diff --git a/md/194.md b/md/194.md index 38807c7f..2d63d3ef 100644 --- a/md/194.md +++ b/md/194.md @@ -6,4 +6,6 @@ @version @date 2020/04/01 ``` - \ No newline at end of file + + +
[上一个例子](193.md) [下一个例子](195.md)
\ No newline at end of file diff --git a/md/195.md b/md/195.md index b81246d8..a0f1adea 100644 --- a/md/195.md +++ b/md/195.md @@ -6,4 +6,6 @@ @version @date 2020/04/02 ``` - \ No newline at end of file + + +
[上一个例子](194.md) [下一个例子](196.md)
\ No newline at end of file diff --git a/md/196.md b/md/196.md index f3dfe76f..52e3cdea 100644 --- a/md/196.md +++ b/md/196.md @@ -6,4 +6,6 @@ @version @date 2020/04/03 ``` - \ No newline at end of file + + +
[上一个例子](195.md) [下一个例子](197.md)
\ No newline at end of file diff --git a/md/197.md b/md/197.md index 6564e6fc..36935d52 100644 --- a/md/197.md +++ b/md/197.md @@ -6,4 +6,6 @@ @version @date 2020/04/04 ``` - \ No newline at end of file + + +
[上一个例子](196.md) [下一个例子](198.md)
\ No newline at end of file diff --git a/md/198.md b/md/198.md index 54af1fb6..566f6437 100644 --- a/md/198.md +++ b/md/198.md @@ -6,4 +6,6 @@ @version @date 2020/04/05 ``` - \ No newline at end of file + + +
[上一个例子](197.md) [下一个例子](199.md)
\ No newline at end of file diff --git a/md/199.md b/md/199.md index b6f23790..18c86a06 100644 --- a/md/199.md +++ b/md/199.md @@ -6,4 +6,6 @@ @version @date 2020/04/06 ``` - \ No newline at end of file + + +
[上一个例子](198.md) [下一个例子](200.md)
\ No newline at end of file diff --git a/md/2.md b/md/2.md index 3982457a..22a5a27f 100644 --- a/md/2.md +++ b/md/2.md @@ -23,3 +23,6 @@ Out[3]: '0o11' In [4]: hex(15) Out[4]: '0xf' ``` + + +
[上一个例子](1.md) [下一个例子](3.md)
\ No newline at end of file diff --git a/md/20.md b/md/20.md index e5dfef1f..9517aecd 100644 --- a/md/20.md +++ b/md/20.md @@ -16,4 +16,6 @@ Out[182]: 11 In [185]: sum(a,10) #求和的初始值为10 Out[185]: 21 -``` \ No newline at end of file +``` + +
[上一个例子](19.md) [下一个例子](21.md)
\ No newline at end of file diff --git a/md/200.md b/md/200.md index bd31655d..61f6eebc 100644 --- a/md/200.md +++ b/md/200.md @@ -6,4 +6,6 @@ @version @date 2020/04/07 ``` - \ No newline at end of file + + +
[上一个例子](199.md) [下一个例子](201.md)
\ No newline at end of file diff --git a/md/201.md b/md/201.md index 0ecfc0fe..c4e37277 100644 --- a/md/201.md +++ b/md/201.md @@ -6,4 +6,6 @@ @version @date 2020/04/08 ``` - \ No newline at end of file + + +
[上一个例子](200.md) [下一个例子](202.md)
\ No newline at end of file diff --git a/md/202.md b/md/202.md index 79489391..c34f9255 100644 --- a/md/202.md +++ b/md/202.md @@ -6,4 +6,6 @@ @version @date 2020/04/09 ``` - \ No newline at end of file + + +
[上一个例子](201.md) [下一个例子](203.md)
\ No newline at end of file diff --git a/md/203.md b/md/203.md index 13ebb419..ddc0eea3 100644 --- a/md/203.md +++ b/md/203.md @@ -6,4 +6,6 @@ @version @date 2020/04/10 ``` - \ No newline at end of file + + +
[上一个例子](202.md) [下一个例子](204.md)
\ No newline at end of file diff --git a/md/204.md b/md/204.md index 40d77782..61845d72 100644 --- a/md/204.md +++ b/md/204.md @@ -6,4 +6,6 @@ @version @date 2020/04/11 ``` - \ No newline at end of file + + +
[上一个例子](203.md) [下一个例子](205.md)
\ No newline at end of file diff --git a/md/205.md b/md/205.md index 819a1c9f..eee98506 100644 --- a/md/205.md +++ b/md/205.md @@ -6,4 +6,6 @@ @version @date 2020/04/12 ``` - \ No newline at end of file + + +
[上一个例子](204.md) [下一个例子](206.md)
\ No newline at end of file diff --git a/md/206.md b/md/206.md index e813bb54..a98cb77d 100644 --- a/md/206.md +++ b/md/206.md @@ -6,4 +6,6 @@ @version @date 2020/04/13 ``` - \ No newline at end of file + + +
[上一个例子](205.md) [下一个例子](207.md)
\ No newline at end of file diff --git a/md/207.md b/md/207.md index a7ddeac8..5e385f74 100644 --- a/md/207.md +++ b/md/207.md @@ -6,4 +6,6 @@ @version @date 2020/04/14 ``` - \ No newline at end of file + + +
[上一个例子](206.md) [下一个例子](208.md)
\ No newline at end of file diff --git a/md/208.md b/md/208.md index 1b3371ee..502f14b2 100644 --- a/md/208.md +++ b/md/208.md @@ -6,4 +6,6 @@ @version @date 2020/04/15 ``` - \ No newline at end of file + + +
[上一个例子](207.md) [下一个例子](209.md)
\ No newline at end of file diff --git a/md/209.md b/md/209.md index 9ec7d645..1d1ffe09 100644 --- a/md/209.md +++ b/md/209.md @@ -6,4 +6,6 @@ @version @date 2020/04/16 ``` - \ No newline at end of file + + +
[上一个例子](208.md) [下一个例子](210.md)
\ No newline at end of file diff --git a/md/21.md b/md/21.md index 8f108abe..ee62cf7f 100644 --- a/md/21.md +++ b/md/21.md @@ -24,4 +24,6 @@ def excepter(f): if i == n: print(f'spending time:{round(t2-t1,2)}') return wrapper -``` \ No newline at end of file +``` + +
[上一个例子](20.md) [下一个例子](22.md)
\ No newline at end of file diff --git a/md/210.md b/md/210.md index a1ae84b0..1ab19e46 100644 --- a/md/210.md +++ b/md/210.md @@ -6,4 +6,6 @@ @version @date 2020/04/17 ``` - \ No newline at end of file + + +
[上一个例子](209.md) [下一个例子](211.md)
\ No newline at end of file diff --git a/md/211.md b/md/211.md index 83029be4..ffa2aea2 100644 --- a/md/211.md +++ b/md/211.md @@ -6,4 +6,6 @@ @version @date 2020/04/18 ``` - \ No newline at end of file + + +
[上一个例子](210.md) [下一个例子](212.md)
\ No newline at end of file diff --git a/md/212.md b/md/212.md index cb1bf8b8..3fde4ad6 100644 --- a/md/212.md +++ b/md/212.md @@ -6,4 +6,6 @@ @version @date 2020/04/19 ``` - \ No newline at end of file + + +
[上一个例子](211.md) [下一个例子](213.md)
\ No newline at end of file diff --git a/md/213.md b/md/213.md index 63d6816c..46cdecb4 100644 --- a/md/213.md +++ b/md/213.md @@ -6,4 +6,6 @@ @version @date 2020/04/20 ``` - \ No newline at end of file + + +
[上一个例子](212.md) [下一个例子](214.md)
\ No newline at end of file diff --git a/md/214.md b/md/214.md index cc93ab36..e57dcf16 100644 --- a/md/214.md +++ b/md/214.md @@ -6,4 +6,6 @@ @version @date 2020/04/21 ``` - \ No newline at end of file + + +
[上一个例子](213.md) [下一个例子](215.md)
\ No newline at end of file diff --git a/md/215.md b/md/215.md index 5bab8514..2efc7724 100644 --- a/md/215.md +++ b/md/215.md @@ -6,4 +6,6 @@ @version @date 2020/04/22 ``` - \ No newline at end of file + + +
[上一个例子](214.md) [下一个例子](216.md)
\ No newline at end of file diff --git a/md/216.md b/md/216.md index 36b5f3d4..fec07d1e 100644 --- a/md/216.md +++ b/md/216.md @@ -6,4 +6,6 @@ @version @date 2020/04/23 ``` - \ No newline at end of file + + +
[上一个例子](215.md) [下一个例子](217.md)
\ No newline at end of file diff --git a/md/217.md b/md/217.md index bd89698c..ae44bcb2 100644 --- a/md/217.md +++ b/md/217.md @@ -6,4 +6,6 @@ @version @date 2020/04/24 ``` - \ No newline at end of file + + +
[上一个例子](216.md) [下一个例子](218.md)
\ No newline at end of file diff --git a/md/218.md b/md/218.md index 6d7349b5..86e52cec 100644 --- a/md/218.md +++ b/md/218.md @@ -6,4 +6,6 @@ @version @date 2020/04/25 ``` - \ No newline at end of file + + +
[上一个例子](217.md) [下一个例子](219.md)
\ No newline at end of file diff --git a/md/219.md b/md/219.md index e62584a2..0a2d61dc 100644 --- a/md/219.md +++ b/md/219.md @@ -6,4 +6,6 @@ @version @date 2020/04/26 ``` - \ No newline at end of file + + +
[上一个例子](218.md) [下一个例子](220.md)
\ No newline at end of file diff --git a/md/22.md b/md/22.md index c63f993b..3dd911ef 100644 --- a/md/22.md +++ b/md/22.md @@ -45,4 +45,6 @@ def h(): h() print(i) -``` \ No newline at end of file +``` + +
[上一个例子](21.md) [下一个例子](23.md)
\ No newline at end of file diff --git a/md/220.md b/md/220.md index f9390a55..8239b0ce 100644 --- a/md/220.md +++ b/md/220.md @@ -6,4 +6,6 @@ @version @date 2020/04/27 ``` - \ No newline at end of file + + +
[上一个例子](219.md) [下一个例子](221.md)
\ No newline at end of file diff --git a/md/221.md b/md/221.md index be4076dc..6ec83e98 100644 --- a/md/221.md +++ b/md/221.md @@ -6,4 +6,6 @@ @version @date 2020/04/28 ``` - \ No newline at end of file + + +
[上一个例子](220.md) [下一个例子](222.md)
\ No newline at end of file diff --git a/md/222.md b/md/222.md index cc1acb6e..44ba88fd 100644 --- a/md/222.md +++ b/md/222.md @@ -6,4 +6,6 @@ @version @date 2020/04/29 ``` - \ No newline at end of file + + +
[上一个例子](221.md) [下一个例子](223.md)
\ No newline at end of file diff --git a/md/223.md b/md/223.md index 8467de00..b5ea2d36 100644 --- a/md/223.md +++ b/md/223.md @@ -6,4 +6,6 @@ @version @date 2020/04/30 ``` - \ No newline at end of file + + +
[上一个例子](222.md) [下一个例子](224.md)
\ No newline at end of file diff --git a/md/224.md b/md/224.md index 1350f6d8..1c6c6d78 100644 --- a/md/224.md +++ b/md/224.md @@ -6,4 +6,6 @@ @version @date 2020/05/01 ``` - \ No newline at end of file + + +
[上一个例子](223.md) [下一个例子](225.md)
\ No newline at end of file diff --git a/md/225.md b/md/225.md index e5265707..4d96d885 100644 --- a/md/225.md +++ b/md/225.md @@ -6,4 +6,6 @@ @version @date 2020/05/02 ``` - \ No newline at end of file + + +
[上一个例子](224.md) [下一个例子](226.md)
\ No newline at end of file diff --git a/md/226.md b/md/226.md index 03501fe0..786b30b0 100644 --- a/md/226.md +++ b/md/226.md @@ -6,4 +6,6 @@ @version @date 2020/05/03 ``` - \ No newline at end of file + + +
[上一个例子](225.md) [下一个例子](227.md)
\ No newline at end of file diff --git a/md/227.md b/md/227.md index 70486d56..d74d365b 100644 --- a/md/227.md +++ b/md/227.md @@ -6,4 +6,6 @@ @version @date 2020/05/04 ``` - \ No newline at end of file + + +
[上一个例子](226.md) [下一个例子](228.md)
\ No newline at end of file diff --git a/md/228.md b/md/228.md index 0963c4dc..f64a8378 100644 --- a/md/228.md +++ b/md/228.md @@ -6,4 +6,6 @@ @version @date 2020/05/05 ``` - \ No newline at end of file + + +
[上一个例子](227.md) [下一个例子](229.md)
\ No newline at end of file diff --git a/md/229.md b/md/229.md index 2ac03b6e..a06fca93 100644 --- a/md/229.md +++ b/md/229.md @@ -6,4 +6,6 @@ @version @date 2020/05/06 ``` - \ No newline at end of file + + +
[上一个例子](228.md) [下一个例子](230.md)
\ No newline at end of file diff --git a/md/23.md b/md/23.md index 62785f91..05fb188b 100644 --- a/md/23.md +++ b/md/23.md @@ -12,4 +12,6 @@ def swap(a, b): print(swap(1, 0)) # (0,1) -``` \ No newline at end of file +``` + +
[上一个例子](22.md) [下一个例子](24.md)
\ No newline at end of file diff --git a/md/230.md b/md/230.md index 383df973..603c1678 100644 --- a/md/230.md +++ b/md/230.md @@ -6,4 +6,6 @@ @version @date 2020/05/07 ``` - \ No newline at end of file + + +
[上一个例子](229.md) [下一个例子](231.md)
\ No newline at end of file diff --git a/md/231.md b/md/231.md index ce09e38f..5018855f 100644 --- a/md/231.md +++ b/md/231.md @@ -6,4 +6,6 @@ @version @date 2020/05/08 ``` - \ No newline at end of file + + +
[上一个例子](230.md) [下一个例子](232.md)
\ No newline at end of file diff --git a/md/232.md b/md/232.md index 0fe7f0a3..70a47be0 100644 --- a/md/232.md +++ b/md/232.md @@ -6,4 +6,6 @@ @version @date 2020/05/09 ``` - \ No newline at end of file + + +
[上一个例子](231.md) [下一个例子](233.md)
\ No newline at end of file diff --git a/md/233.md b/md/233.md index 8aa98ec3..f9384f14 100644 --- a/md/233.md +++ b/md/233.md @@ -6,4 +6,6 @@ @version @date 2020/05/10 ``` - \ No newline at end of file + + +
[上一个例子](232.md) [下一个例子](234.md)
\ No newline at end of file diff --git a/md/24.md b/md/24.md index fa6aafd0..6aa000d2 100644 --- a/md/24.md +++ b/md/24.md @@ -19,4 +19,6 @@ In [33]: [f,g][1]() i'm g ``` -创建函数对象的list,根据想要调用的index,方便统一调用。 \ No newline at end of file +创建函数对象的list,根据想要调用的index,方便统一调用。 + +
[上一个例子](23.md) [下一个例子](25.md)
\ No newline at end of file diff --git a/md/25.md b/md/25.md index 3899d98f..6a655eb4 100644 --- a/md/25.md +++ b/md/25.md @@ -10,4 +10,6 @@ list(range(10,-1,-1)) # [10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0] ``` -第三个参数为负时,表示从第一个参数开始递减,终止到第二个参数(不包括此边界) \ No newline at end of file +第三个参数为负时,表示从第一个参数开始递减,终止到第二个参数(不包括此边界) + +
[上一个例子](24.md) [下一个例子](26.md)
\ No newline at end of file diff --git a/md/26.md b/md/26.md index 548597f6..7cf30fc6 100644 --- a/md/26.md +++ b/md/26.md @@ -73,4 +73,6 @@ a POSITIONAL_OR_KEYWORD b VAR_POSITIONAL ``` -可以看到参数`a`既可以是位置参数也可是关键字参数。 \ No newline at end of file +可以看到参数`a`既可以是位置参数也可是关键字参数。 + +
[上一个例子](25.md) [下一个例子](27.md)
\ No newline at end of file diff --git a/md/27.md b/md/27.md index 622be3de..cc13a91b 100644 --- a/md/27.md +++ b/md/27.md @@ -68,4 +68,6 @@ In [15]: a_slice Out[15]: [0, 9, 7, 5] ``` -频繁使用同一切片的操作可使用slice对象抽出来,复用的同时还能提高代码可读性。 \ No newline at end of file +频繁使用同一切片的操作可使用slice对象抽出来,复用的同时还能提高代码可读性。 + +
[上一个例子](26.md) [下一个例子](28.md)
\ No newline at end of file diff --git a/md/28.md b/md/28.md index d564e80d..a6e167f6 100644 --- a/md/28.md +++ b/md/28.md @@ -32,4 +32,6 @@ print(f'更长的列表是{r}') - 参数v的可能取值为`*lists`,也就是 `tuple` 的一个元素。 -- `lambda`函数返回值,等于`lambda v`冒号后表达式的返回值。 \ No newline at end of file +- `lambda`函数返回值,等于`lambda v`冒号后表达式的返回值。 + +
[上一个例子](27.md) [下一个例子](29.md)
\ No newline at end of file diff --git a/md/29.md b/md/29.md index 93e8f31c..a2282893 100644 --- a/md/29.md +++ b/md/29.md @@ -20,4 +20,6 @@ Out[3]: {'a': 1, 'b': 2} In [4]: dict([('a',1),('b',2)]) Out[4]: {'a': 1, 'b': 2} -``` \ No newline at end of file +``` + +
[上一个例子](28.md) [下一个例子](30.md)
\ No newline at end of file diff --git a/md/3.md b/md/3.md index 36484fd3..58ba87fd 100644 --- a/md/3.md +++ b/md/3.md @@ -16,4 +16,6 @@ Out[1]: 'A' ```python In [1]: ord('A') Out[1]: 65 -``` \ No newline at end of file +``` + +
[上一个例子](2.md) [下一个例子](4.md)
\ No newline at end of file diff --git a/md/30.md b/md/30.md index c4e79784..7e965dbd 100644 --- a/md/30.md +++ b/md/30.md @@ -13,4 +13,6 @@ In [1]: frozenset([1,1,3,2,3]) Out[1]: frozenset({1, 2, 3}) ``` -因为不可修改,所以没有像`set`那样的`add`和`pop`方法 \ No newline at end of file +因为不可修改,所以没有像`set`那样的`add`和`pop`方法 + +
[上一个例子](29.md) [下一个例子](31.md)
\ No newline at end of file diff --git a/md/31.md b/md/31.md index dd8c1bdc..f2417ab3 100644 --- a/md/31.md +++ b/md/31.md @@ -13,4 +13,6 @@ In [159]: a = [1,4,2,3,1] In [160]: set(a) Out[160]: {1, 2, 3, 4} -``` \ No newline at end of file +``` + +
[上一个例子](30.md) [下一个例子](32.md)
\ No newline at end of file diff --git a/md/32.md b/md/32.md index cb6a40ae..0d70cbac 100644 --- a/md/32.md +++ b/md/32.md @@ -13,4 +13,6 @@ In [17]: i_am_tuple = tuple(i_am_list) In [18]: i_am_tuple Out[18]: (1, 3, 5) - ``` \ No newline at end of file + ``` + +
[上一个例子](31.md) [下一个例子](33.md)
\ No newline at end of file diff --git a/md/33.md b/md/33.md index c6f9d5a3..925a8ffe 100644 --- a/md/33.md +++ b/md/33.md @@ -49,4 +49,6 @@ In [2]: t = Student('001','xiaoming') In [3]: t() I can be called my name is xiaoming -``` \ No newline at end of file +``` + +
[上一个例子](32.md) [下一个例子](34.md)
\ No newline at end of file diff --git a/md/34.md b/md/34.md index 19faca4b..ea9db1d5 100644 --- a/md/34.md +++ b/md/34.md @@ -23,4 +23,6 @@ id = 1, name = xiaoming >>> ascii(xiaoming) 'id = 1, name = xiaoming' -``` \ No newline at end of file +``` + +
[上一个例子](33.md) [下一个例子](35.md)
\ No newline at end of file diff --git a/md/35.md b/md/35.md index 3a00ed45..81a4d483 100644 --- a/md/35.md +++ b/md/35.md @@ -20,4 +20,6 @@ In [1]: class Student(): ...: @classmethod ...: def f(cls): ...: print(cls) -``` \ No newline at end of file +``` + +
[上一个例子](34.md) [下一个例子](36.md)
\ No newline at end of file diff --git a/md/36.md b/md/36.md index ae53ef4c..96a3859e 100644 --- a/md/36.md +++ b/md/36.md @@ -30,4 +30,6 @@ In [1]: delattr(xiaoming,'id') In [2]: hasattr(xiaoming,'id') Out[2]: False -``` \ No newline at end of file +``` + +
[上一个例子](35.md) [下一个例子](37.md)
\ No newline at end of file diff --git a/md/37.md b/md/37.md index 745b92bb..274aafb4 100644 --- a/md/37.md +++ b/md/37.md @@ -39,4 +39,6 @@ Out[96]: '__weakref__', 'name'] -``` \ No newline at end of file +``` + +
[上一个例子](36.md) [下一个例子](38.md)
\ No newline at end of file diff --git a/md/38.md b/md/38.md index e29eb092..c21d43ac 100644 --- a/md/38.md +++ b/md/38.md @@ -19,4 +19,6 @@ In [1]: class Student(): In [2]: xiaoming = Student(id='001',name='xiaoming') In [3]: getattr(xiaoming,'name') # 获取xiaoming这个实例的name属性值 Out[3]: 'xiaoming' -``` \ No newline at end of file +``` + +
[上一个例子](37.md) [下一个例子](39.md)
\ No newline at end of file diff --git a/md/39.md b/md/39.md index 4c561876..677151e2 100644 --- a/md/39.md +++ b/md/39.md @@ -20,4 +20,6 @@ Out[3]: True In [4]: hasattr(xiaoming,'address') Out[4]: False -``` \ No newline at end of file +``` + +
[上一个例子](38.md) [下一个例子](40.md)
\ No newline at end of file diff --git a/md/4.md b/md/4.md index ad1d4326..a18e1c8d 100644 --- a/md/4.md +++ b/md/4.md @@ -14,4 +14,6 @@ Out[5]: False ```python In [6]: all([1,2,3]) Out[6]: True -``` \ No newline at end of file +``` + +
[上一个例子](3.md) [下一个例子](5.md)
\ No newline at end of file diff --git a/md/40.md b/md/40.md index f88638f6..2c7be683 100644 --- a/md/40.md +++ b/md/40.md @@ -22,4 +22,6 @@ In [2]: xiaoming = Student(id='001',name='xiaoming') ```python In [1]: id(xiaoming) Out[1]: 98234208 -``` \ No newline at end of file +``` + +
[上一个例子](39.md) [下一个例子](41.md)
\ No newline at end of file diff --git a/md/41.md b/md/41.md index 832a7ec5..af6c86a0 100644 --- a/md/41.md +++ b/md/41.md @@ -20,4 +20,6 @@ In [2]: xiaoming = Student(id='001',name='xiaoming') In [3]: isinstance(xiaoming,Student) Out[3]: True -``` \ No newline at end of file +``` + +
[上一个例子](40.md) [下一个例子](42.md)
\ No newline at end of file diff --git a/md/42.md b/md/42.md index 0aebf0cc..9a052976 100644 --- a/md/42.md +++ b/md/42.md @@ -28,4 +28,6 @@ Out[4]: True ```python In [1]: issubclass(int,(int,float)) Out[1]: True -``` \ No newline at end of file +``` + +
[上一个例子](41.md) [下一个例子](43.md)
\ No newline at end of file diff --git a/md/43.md b/md/43.md index 03c0bf36..1de14923 100644 --- a/md/43.md +++ b/md/43.md @@ -13,4 +13,6 @@ In [1]: o = object() In [2]: type(o) Out[2]: object -``` \ No newline at end of file +``` + +
[上一个例子](42.md) [下一个例子](44.md)
\ No newline at end of file diff --git a/md/44.md b/md/44.md index 92dde191..d8800eff 100644 --- a/md/44.md +++ b/md/44.md @@ -43,4 +43,6 @@ class C: @x.deleter def x(self): del self._x -``` \ No newline at end of file +``` + +
[上一个例子](43.md) [下一个例子](45.md)
\ No newline at end of file diff --git a/md/45.md b/md/45.md index 3388c94e..603a2645 100644 --- a/md/45.md +++ b/md/45.md @@ -25,4 +25,6 @@ Out[3]: __main__.Student In [4]: type(tuple()) Out[4]: tuple -``` \ No newline at end of file +``` + +
[上一个例子](44.md) [下一个例子](46.md)
\ No newline at end of file diff --git a/md/46.md b/md/46.md index 195fbcc2..6b7296e5 100644 --- a/md/46.md +++ b/md/46.md @@ -78,4 +78,6 @@ Out[46]: True 元类,确实使用不是那么多,也许先了解这些,就能应付一些场合。就连 Python 界的领袖 `Tim Peters` 都说: -“元类就是深度的魔法,99%的用户应该根本不必为此操心。 \ No newline at end of file +“元类就是深度的魔法,99%的用户应该根本不必为此操心。 + +
[上一个例子](45.md) [下一个例子](47.md)
\ No newline at end of file diff --git a/md/47.md b/md/47.md index 07b3fa9a..8a8c5a5d 100644 --- a/md/47.md +++ b/md/47.md @@ -16,4 +16,6 @@ In [1]: s = ["a","b","c"] 1 a 2 b 3 c -``` \ No newline at end of file +``` + +
[上一个例子](46.md) [下一个例子](48.md)
\ No newline at end of file diff --git a/md/48.md b/md/48.md index be4eaac1..38073257 100644 --- a/md/48.md +++ b/md/48.md @@ -13,4 +13,6 @@ In [2]: a = {'a':1,'b':2.0} In [3]: sys.getsizeof(a) # 占用240个字节 Out[3]: 240 -``` \ No newline at end of file +``` + +
[上一个例子](47.md) [下一个例子](49.md)
\ No newline at end of file diff --git a/md/49.md b/md/49.md index a31c4cc5..9586d968 100644 --- a/md/49.md +++ b/md/49.md @@ -13,4 +13,6 @@ In [1]: fil = filter(lambda x: x>10,[1,11,2,45,7,6,13]) In [2]: list(fil) Out[2]: [11, 45, 13] -``` \ No newline at end of file +``` + +
[上一个例子](48.md) [下一个例子](50.md)
\ No newline at end of file diff --git a/md/5.md b/md/5.md index 7e890b73..ccc279b2 100644 --- a/md/5.md +++ b/md/5.md @@ -15,4 +15,6 @@ Out[7]: False ```python In [8]: any([0,0,1]) Out[8]: True -``` \ No newline at end of file +``` + +
[上一个例子](4.md) [下一个例子](6.md)
\ No newline at end of file diff --git a/md/50.md b/md/50.md index 3624dfb8..b1ea2d86 100644 --- a/md/50.md +++ b/md/50.md @@ -14,4 +14,6 @@ Out[1]: 6139638 In [2]: hash([1,2,3]) # TypeError: unhashable type: 'list' - ``` \ No newline at end of file + ``` + +
[上一个例子](49.md) [下一个例子](51.md)
\ No newline at end of file diff --git a/md/51.md b/md/51.md index ff6c63c4..3ae2bcd9 100644 --- a/md/51.md +++ b/md/51.md @@ -26,4 +26,6 @@ class Student(builtins.object) | | __weakref__ | list of weak references to the object (if defined) -``` \ No newline at end of file +``` + +
[上一个例子](50.md) [下一个例子](52.md)
\ No newline at end of file diff --git a/md/52.md b/md/52.md index e1514579..ee915b1c 100644 --- a/md/52.md +++ b/md/52.md @@ -12,4 +12,6 @@ In [1]: input() aa Out[1]: 'aa' -``` \ No newline at end of file +``` + +
[上一个例子](51.md) [下一个例子](53.md)
\ No newline at end of file diff --git a/md/53.md b/md/53.md index f4ea9956..e9b5b39a 100644 --- a/md/53.md +++ b/md/53.md @@ -46,4 +46,6 @@ __iter__ is called!! 3 4 5 -``` \ No newline at end of file +``` + +
[上一个例子](52.md) [下一个例子](54.md)
\ No newline at end of file diff --git a/md/54.md b/md/54.md index 86770f90..6ad48f62 100644 --- a/md/54.md +++ b/md/54.md @@ -67,4 +67,6 @@ f.close # with关键字系统会自动关闭文件和处理异常 with open(r"./data/test.txt", "w") as f: f.write("hello world!") -``` \ No newline at end of file +``` + +
[上一个例子](53.md) [下一个例子](55.md)
\ No newline at end of file diff --git a/md/55.md b/md/55.md index 330960e5..22a3430d 100644 --- a/md/55.md +++ b/md/55.md @@ -17,4 +17,6 @@ Out[1]: range(0, 11) In [2]: range(0,11,1) Out[2]: range(0, 11) -``` \ No newline at end of file +``` + +
[上一个例子](54.md) [下一个例子](56.md)
\ No newline at end of file diff --git a/md/56.md b/md/56.md index fa80998e..35c5511f 100644 --- a/md/56.md +++ b/md/56.md @@ -17,4 +17,6 @@ In [2]: for i in rev: 2 4 1 -``` \ No newline at end of file +``` + +
[上一个例子](55.md) [下一个例子](57.md)
\ No newline at end of file diff --git a/md/57.md b/md/57.md index b94e1aa8..d8ab15db 100644 --- a/md/57.md +++ b/md/57.md @@ -20,4 +20,6 @@ In [6]: b Out[6]: ['a', 'b', 'c', 'd', 'e'] In [7]: [str(y) + str(x) for x,y in zip(a,b)] Out[7]: ['a0', 'b1', 'c2', 'd3', 'e4'] -``` \ No newline at end of file +``` + +
[上一个例子](56.md) [下一个例子](58.md)
\ No newline at end of file diff --git a/md/58.md b/md/58.md index 9a47cd9c..452b7c3f 100644 --- a/md/58.md +++ b/md/58.md @@ -15,4 +15,6 @@ def add_or_sub(a, b, oper): add_or_sub(1, 2, '-') # -1 -``` \ No newline at end of file +``` + +
[上一个例子](57.md) [下一个例子](59.md)
\ No newline at end of file diff --git a/md/59.md b/md/59.md index b632fc19..f1834c5e 100644 --- a/md/59.md +++ b/md/59.md @@ -46,4 +46,6 @@ with open('json.txt', 'w') as f: "name":"xiaohong" } ] -``` \ No newline at end of file +``` + +
[上一个例子](58.md) [下一个例子](60.md)
\ No newline at end of file diff --git a/md/6.md b/md/6.md index 5ac32890..265e7c55 100644 --- a/md/6.md +++ b/md/6.md @@ -17,3 +17,6 @@ Out[10]: False In [11]: bool([1,0,1]) Out[11]: True ``` + + +
[上一个例子](5.md) [下一个例子](7.md)
\ No newline at end of file diff --git a/md/60.md b/md/60.md index b8fe99e2..12fe4c24 100644 --- a/md/60.md +++ b/md/60.md @@ -16,4 +16,6 @@ def calculator(a, b, k): calculator(1, 2, '+') # 3 calculator(3, 4, '**') # 81 -``` \ No newline at end of file +``` + +
[上一个例子](59.md) [下一个例子](61.md)
\ No newline at end of file diff --git a/md/61.md b/md/61.md index 46e10760..e097f035 100644 --- a/md/61.md +++ b/md/61.md @@ -14,4 +14,6 @@ def score_mean(lst): lst=[9.1, 9.0,8.1, 9.7, 19,8.2, 8.6,9.8] score_mean(lst) # 9.1 -``` \ No newline at end of file +``` + +
[上一个例子](60.md) [下一个例子](62.md)
\ No newline at end of file diff --git a/md/62.md b/md/62.md index f584a6e9..65f4de5f 100644 --- a/md/62.md +++ b/md/62.md @@ -35,4 +35,6 @@ for i in range(1, 10): for j in range(1, i+1): print('%d * %d = %d' % (j, i, j * i) , end="\t") print() -``` \ No newline at end of file +``` + +
[上一个例子](61.md) [下一个例子](63.md)
\ No newline at end of file diff --git a/md/63.md b/md/63.md index 4765f04a..d3a807ca 100644 --- a/md/63.md +++ b/md/63.md @@ -47,4 +47,6 @@ import numpy b = numpy.array([[1,2,3],[4,5]]) b.flatten() array([list([1, 2, 3]), list([4, 5])], dtype=object) -``` \ No newline at end of file +``` + +
[上一个例子](62.md) [下一个例子](64.md)
\ No newline at end of file diff --git a/md/64.md b/md/64.md index 6acde3b3..283dd081 100644 --- a/md/64.md +++ b/md/64.md @@ -28,3 +28,6 @@ r = divide([1, 3, 5, 7, 9], -3) print(r) # [[1, 3, 5, 7, 9]] ``` + + +
[上一个例子](63.md) [下一个例子](65.md)
\ No newline at end of file diff --git a/md/65.md b/md/65.md index 11190a8f..58d09c89 100644 --- a/md/65.md +++ b/md/65.md @@ -14,4 +14,6 @@ def filter_false(lst): r = filter_false([None, 0, False, '', [], 'ok', [1, 2]]) print(r) # ['ok', [1, 2]] -``` \ No newline at end of file +``` + +
[上一个例子](64.md) [下一个例子](66.md)
\ No newline at end of file diff --git a/md/66.md b/md/66.md index 3ba4bb28..c35ae049 100644 --- a/md/66.md +++ b/md/66.md @@ -16,4 +16,6 @@ print(f'更长的列表是{r}') # [4, 5, 6, 7] r = max_length([1, 2, 3], [4, 5, 6, 7], [8, 9]) print(f'更长的列表是{r}') # [4, 5, 6, 7] -``` \ No newline at end of file +``` + +
[上一个例子](65.md) [下一个例子](67.md)
\ No newline at end of file diff --git a/md/67.md b/md/67.md index b7204cb0..50e3a6c5 100644 --- a/md/67.md +++ b/md/67.md @@ -20,3 +20,6 @@ print(f'{lst}中出现次数最多的元素为:{r}') # [1, 3, 3, 2, 1, 1, 2]中出现次数最多的元素为:1 ``` + + +
[上一个例子](66.md) [下一个例子](68.md)
\ No newline at end of file diff --git a/md/68.md b/md/68.md index 1fe090dd..00ae05ab 100644 --- a/md/68.md +++ b/md/68.md @@ -12,4 +12,6 @@ def max_lists(*lst): r = max_lists([1, 2, 3], [6, 7, 8], [4, 5]) print(r) # 8 -``` \ No newline at end of file +``` + +
[上一个例子](67.md) [下一个例子](69.md)
\ No newline at end of file diff --git a/md/69.md b/md/69.md index a01254dc..ed1b5207 100644 --- a/md/69.md +++ b/md/69.md @@ -15,4 +15,6 @@ x = [1, 1, 2, 2, 3, 2, 3, 4, 5, 6] y = [1, 2, 3, 4, 5] has_duplicates(x) # False has_duplicates(y) # True -``` \ No newline at end of file +``` + +
[上一个例子](68.md) [下一个例子](70.md)
\ No newline at end of file diff --git a/md/7.md b/md/7.md index 3f16318f..65310311 100644 --- a/md/7.md +++ b/md/7.md @@ -12,3 +12,6 @@ In [1]: complex(1,2) Out[1]: (1+2j) ``` + + +
[上一个例子](6.md) [下一个例子](8.md)
\ No newline at end of file diff --git a/md/70.md b/md/70.md index 7f649773..ac349b57 100644 --- a/md/70.md +++ b/md/70.md @@ -13,4 +13,6 @@ def reverse(lst): r = reverse([1, -2, 3, 4, 1, 2]) print(r) # [2, 1, 4, 3, -2, 1] -``` \ No newline at end of file +``` + +
[上一个例子](69.md) [下一个例子](71.md)
\ No newline at end of file diff --git a/md/71.md b/md/71.md index c2afa8f4..532d5dae 100644 --- a/md/71.md +++ b/md/71.md @@ -24,3 +24,6 @@ float_range(1, 8, 10) # [1.0, 1.7, 2.4, 3.1, 3.8, 4.5, 5.2, 5.9, 6.6, 7.3, 8.0] ``` + + +
[上一个例子](70.md) [下一个例子](72.md)
\ No newline at end of file diff --git a/md/72.md b/md/72.md index a6dc36f3..8e7b4c40 100644 --- a/md/72.md +++ b/md/72.md @@ -18,3 +18,6 @@ records = [25,89,31,34] bif_by(records, lambda x: x<80) # [[25, 31, 34], [89]] ``` + + +
[上一个例子](71.md) [下一个例子](73.md)
\ No newline at end of file diff --git a/md/73.md b/md/73.md index 519dde79..db9cfca9 100644 --- a/md/73.md +++ b/md/73.md @@ -15,4 +15,6 @@ lst1=[1,2,3,4,5,6] lst2=[3,4,5,6,3,2] list(map(lambda x,y:x*y+1,lst1,lst2)) ### [4, 9, 16, 25, 16, 13] -``` \ No newline at end of file +``` + +
[上一个例子](72.md) [下一个例子](74.md)
\ No newline at end of file diff --git a/md/74.md b/md/74.md index 67611552..58980265 100644 --- a/md/74.md +++ b/md/74.md @@ -21,3 +21,6 @@ r = max_pairs({'a': -10, 'b': 5, 'c': 3, 'd': 5}) print(r) # [('b', 5), ('d', 5)] ``` + + +
[上一个例子](73.md) [下一个例子](75.md)
\ No newline at end of file diff --git a/md/75.md b/md/75.md index f7ae0fda..4a34cb77 100644 --- a/md/75.md +++ b/md/75.md @@ -20,3 +20,6 @@ merge_dict({'a': 1, 'b': 2}, {'c': 3}) # {'a': 1, 'b': 2, 'c': 3} ``` + + +
[上一个例子](74.md) [下一个例子](76.md)
\ No newline at end of file diff --git a/md/76.md b/md/76.md index aadd8cf7..1736bef1 100644 --- a/md/76.md +++ b/md/76.md @@ -21,3 +21,6 @@ topn_dict({'a': 10, 'b': 8, 'c': 9, 'd': 10}, 3) # ['a', 'd', 'c'] ``` + + +
[上一个例子](75.md) [下一个例子](77.md)
\ No newline at end of file diff --git a/md/77.md b/md/77.md index c1b50cca..e6aa13f4 100644 --- a/md/77.md +++ b/md/77.md @@ -18,4 +18,6 @@ def anagram(str1, str2): anagram('eleven+two', 'twelve+one') # True 这是一对神器的变位词 anagram('eleven', 'twelve') # False -``` \ No newline at end of file +``` + +
[上一个例子](76.md) [下一个例子](78.md)
\ No newline at end of file diff --git a/md/78.md b/md/78.md index 33a09628..021ebbdc 100644 --- a/md/78.md +++ b/md/78.md @@ -22,4 +22,6 @@ merged1 = {**dic1, **dic2} # {'x': 1, 'y': 3, 'z': 4} from collections import ChainMap merged2 = ChainMap(dic1,dic2) print(merged2) # ChainMap({'x': 1, 'y': 2}, {'y': 3, 'z': 4}) -``` \ No newline at end of file +``` + +
[上一个例子](77.md) [下一个例子](79.md)
\ No newline at end of file diff --git a/md/79.md b/md/79.md index d0b884a8..720d755c 100644 --- a/md/79.md +++ b/md/79.md @@ -15,4 +15,6 @@ lst = [Point(1.5, 2, 3.0), Point(-0.3, -1.0, 2.1), Point(1.3, 2.8, -2.5)] print(lst[0].y - lst[1].y) ``` -使用命名元组写出来的代码可读性更好,尤其处理上百上千个属性时作用更加凸显。 \ No newline at end of file +使用命名元组写出来的代码可读性更好,尤其处理上百上千个属性时作用更加凸显。 + +
[上一个例子](78.md) [下一个例子](80.md)
\ No newline at end of file diff --git a/md/8.md b/md/8.md index 56cd79d9..56a96da7 100644 --- a/md/8.md +++ b/md/8.md @@ -12,3 +12,6 @@ In [1]: divmod(10,3) Out[1]: (3, 1) ``` + + +
[上一个例子](7.md) [下一个例子](9.md)
\ No newline at end of file diff --git a/md/80.md b/md/80.md index 2b038773..67f0e825 100644 --- a/md/80.md +++ b/md/80.md @@ -14,4 +14,6 @@ lst = [randint(0,50) for _ in range(100)] print(lst[:5])# [38, 19, 11, 3, 6] lst_sample = sample(lst,10) print(lst_sample) # [33, 40, 35, 49, 24, 15, 48, 29, 37, 24] -``` \ No newline at end of file +``` + +
[上一个例子](79.md) [下一个例子](81.md)
\ No newline at end of file diff --git a/md/81.md b/md/81.md index 04037010..9b02a67f 100644 --- a/md/81.md +++ b/md/81.md @@ -13,4 +13,6 @@ from random import shuffle lst = [randint(0,50) for _ in range(100)] shuffle(lst) print(lst[:5]) # [50, 3, 48, 1, 26] -``` \ No newline at end of file +``` + +
[上一个例子](80.md) [下一个例子](82.md)
\ No newline at end of file diff --git a/md/82.md b/md/82.md index 2f672128..765449cf 100644 --- a/md/82.md +++ b/md/82.md @@ -24,4 +24,6 @@ Out[1]: (1.4749644859469302, 8.038753079253127), (9.005430657826324, 7.58011186920019), (8.700789540392917, 1.2217577293254112)] -``` \ No newline at end of file +``` + +
[上一个例子](81.md) [下一个例子](83.md)
\ No newline at end of file diff --git a/md/83.md b/md/83.md index 572bd109..6b1f00d5 100644 --- a/md/83.md +++ b/md/83.md @@ -24,4 +24,6 @@ points = list(zip(x,y)) (7, 14.02384035204836), (8, 15.33755823101161), (9, 17.565074449028497)] -``` \ No newline at end of file +``` + +
[上一个例子](82.md) [下一个例子](84.md)
\ No newline at end of file diff --git a/md/84.md b/md/84.md index 0e034b48..849f5bac 100644 --- a/md/84.md +++ b/md/84.md @@ -23,4 +23,6 @@ for i in chain(a,b): 2 4 6 -``` \ No newline at end of file +``` + +
[上一个例子](83.md) [下一个例子](85.md)
\ No newline at end of file diff --git a/md/85.md b/md/85.md index 3ff3de43..2a6878c3 100644 --- a/md/85.md +++ b/md/85.md @@ -22,4 +22,6 @@ def product(*args, repeat=1): ```python rtn = product('xyz', '12', repeat=3) print(list(rtn)) -``` \ No newline at end of file +``` + +
[上一个例子](84.md) [下一个例子](86.md)
\ No newline at end of file diff --git a/md/86.md b/md/86.md index dc9fa83c..990acbe7 100644 --- a/md/86.md +++ b/md/86.md @@ -22,3 +22,6 @@ st="python" st[::-1] ``` + + +
[上一个例子](85.md) [下一个例子](87.md)
\ No newline at end of file diff --git a/md/87.md b/md/87.md index b294de46..e52ae6e1 100644 --- a/md/87.md +++ b/md/87.md @@ -13,4 +13,6 @@ In [4]: mystr = ['1','2','java','4','python','java','7','8','java','python','11' In [5]: ','.join(mystr) #用逗号连接字符串 Out[5]: '1,2,java,4,python,java,7,8,java,python,11,java,13,14' -``` \ No newline at end of file +``` + +
[上一个例子](86.md) [下一个例子](88.md)
\ No newline at end of file diff --git a/md/88.md b/md/88.md index e0116157..30aebbb2 100644 --- a/md/88.md +++ b/md/88.md @@ -18,3 +18,6 @@ str_byte_len('i love python') # 13(个字节) str_byte_len('字符') # 6(个字节) ``` + + +
[上一个例子](87.md) [下一个例子](89.md)
\ No newline at end of file diff --git a/md/89.md b/md/89.md index 3c51cb04..28300800 100644 --- a/md/89.md +++ b/md/89.md @@ -30,4 +30,6 @@ print(s2) ```python .* -``` \ No newline at end of file +``` + +
[上一个例子](88.md) [下一个例子](90.md)
\ No newline at end of file diff --git a/md/9.md b/md/9.md index b11c467b..b027f5ed 100644 --- a/md/9.md +++ b/md/9.md @@ -17,4 +17,6 @@ Out[1]: 3.0 ```python In [2]: float('a') # ValueError: could not convert string to float: 'a' -``` \ No newline at end of file +``` + +
[上一个例子](8.md) [下一个例子](10.md)
\ No newline at end of file diff --git a/md/90.md b/md/90.md index e3cebb06..00f299f8 100644 --- a/md/90.md +++ b/md/90.md @@ -16,4 +16,6 @@ 因此,普通字符是原子,正则中的通用字符(下面会讲到)也是原子。 -大家记住*原子*这个概念。 \ No newline at end of file +大家记住*原子*这个概念。 + +
[上一个例子](89.md) [下一个例子](91.md)
\ No newline at end of file diff --git a/md/91.md b/md/91.md index ab463b6a..5d77d62a 100644 --- a/md/91.md +++ b/md/91.md @@ -30,4 +30,6 @@ pat = '[0123456789 类似的通用正则字符还有几个,下面也会讲到。 -做一件事前,把规则弄清,触类旁通,相信大家理解其他几个也没问题。 \ No newline at end of file +做一件事前,把规则弄清,触类旁通,相信大家理解其他几个也没问题。 + +
[上一个例子](90.md) [下一个例子](92.md)
\ No newline at end of file diff --git a/md/92.md b/md/92.md index 80945a2a..e745030b 100644 --- a/md/92.md +++ b/md/92.md @@ -41,4 +41,6 @@ print(result) 以上就是使用正则的最普通例子。如果要找出前缀为grow的单词,比如可能为grows, growing 等,最普通查找实现起来就不方便。 -然而,借助于下面介绍的元字符、通用字符和捕获组合起来,便能应对解决复杂的匹配查找问题。 \ No newline at end of file +然而,借助于下面介绍的元字符、通用字符和捕获组合起来,便能应对解决复杂的匹配查找问题。 + +
[上一个例子](91.md) [下一个例子](93.md)
\ No newline at end of file diff --git a/md/93.md b/md/93.md index bdbca2ac..0094a997 100644 --- a/md/93.md +++ b/md/93.md @@ -46,3 +46,6 @@ result = re.findall(pat,s) 而\S, \W, \D 分别对应 \s, \w, \d匹配字符集的补集,例如\S 的意思是匹配 \s 以外的其他任意字符。 + + +
[上一个例子](92.md) [下一个例子](94.md)
\ No newline at end of file diff --git a/md/94.md b/md/94.md index 95b0d9cf..d03bc3bb 100644 --- a/md/94.md +++ b/md/94.md @@ -21,4 +21,6 @@ {n} 前面的原子出现了 n 次 {n,} 前面的原子至少出现 n 次 {n,m} 前面的原子出现次数介于 n-m 之间 -``` \ No newline at end of file +``` + +
[上一个例子](93.md) [下一个例子](95.md)
\ No newline at end of file diff --git a/md/95.md b/md/95.md index e603b0c1..e8cfaba3 100644 --- a/md/95.md +++ b/md/95.md @@ -75,4 +75,6 @@ pat = r'https:.*\)' pat = r'(https:.*)\)' ``` -此时返回结果完全正确,无任何多余字符。想要返回的子串外面添加一对括号还有个专业叫法:**捕获**或**分组**。 \ No newline at end of file +此时返回结果完全正确,无任何多余字符。想要返回的子串外面添加一对括号还有个专业叫法:**捕获**或**分组**。 + +
[上一个例子](94.md) [下一个例子](96.md)
\ No newline at end of file diff --git a/md/96.md b/md/96.md index 8bed0f3a..27f40030 100644 --- a/md/96.md +++ b/md/96.md @@ -47,4 +47,6 @@ print(result) '

这是一个段落>/p>'] ``` -以上例子仅仅用作演示两者区别,实际的html结构含有换行符等,环境比上面要复杂的多,贪心和非贪心捕获的写法可能不会导致结果不同,但是我们依然需要理解它们的区别。 \ No newline at end of file +以上例子仅仅用作演示两者区别,实际的html结构含有换行符等,环境比上面要复杂的多,贪心和非贪心捕获的写法可能不会导致结果不同,但是我们依然需要理解它们的区别。 + +

[上一个例子](95.md) [下一个例子](97.md)
\ No newline at end of file diff --git a/md/97.md b/md/97.md index e2d2fcb8..e011a205 100644 --- a/md/97.md +++ b/md/97.md @@ -24,4 +24,6 @@ pat.fullmatch('qaz12wsxedcrfvtgb67890942234343434') # None 长度大于22 pat.fullmatch('qaz_231') # None 含有下划线 pat.fullmatch('n0passw0Rd') Out[4]: -``` \ No newline at end of file +``` + +
[上一个例子](96.md) [下一个例子](98.md)
\ No newline at end of file diff --git a/md/98.md b/md/98.md index b7aaab0a..d12dce1b 100644 --- a/md/98.md +++ b/md/98.md @@ -20,4 +20,6 @@ result=re.search(pat,data) print(result) result.group() # 百度一下,你就知道 -``` \ No newline at end of file +``` + +
[上一个例子](97.md) [下一个例子](99.md)
\ No newline at end of file diff --git a/md/99.md b/md/99.md index 05a12564..4ba72add 100644 --- a/md/99.md +++ b/md/99.md @@ -63,4 +63,6 @@ s = batch_camel(['student_id', 'student\tname', 'student-add']) print(s) # 结果 ['studentId', 'studentName', 'studentAdd'] -``` \ No newline at end of file +``` + +
[上一个例子](98.md) [下一个例子](100.md)
\ No newline at end of file From 172b73319404e28069e617f06efbebca6d073b89 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Sat, 27 Feb 2021 12:45:22 +0800 Subject: [PATCH 27/85] revise a file --- md/182.md | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/md/182.md b/md/182.md index b92ca96c..02bf588c 100644 --- a/md/182.md +++ b/md/182.md @@ -29,15 +29,7 @@ day_df = df.resample("D")["商品销量"].sum().to_frame() day_df ``` -结果如下,10行,240小时,正好为 10 days -<<<<<<< HEAD -======= -======= -结果如下,10行,240小时,正好为 10 days: +果如下,10行,240小时,正好为 10 days: -![](../img/182-2.png) ->>>>>>> c71f26070eb30c7a48f537edde0083fa46adc020 - -
[上一个例子](181.md) [下一个例子](183.md)
->>>>>>> release-v1.90 +
[上一个例子](181.md) [下一个例子](183.md)
\ No newline at end of file From 360e122570d4d28d85b1c660161b3bbe80503ef2 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Mon, 1 Mar 2021 23:17:00 +0800 Subject: [PATCH 28/85] #194-196 --- README.md | 5 +++-- md/194.md | 43 +++++++++++++++++++++++++++++++++++++++++-- md/195.md | 25 ++++++++++++++++++++++++- md/196.md | 15 ++++++++++++++- 4 files changed, 82 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 91d6965d..1ca7f6b2 100644 --- a/README.md +++ b/README.md @@ -273,8 +273,9 @@ | 191 | [格式化Pandas的时间列](md/191.md) | pandas apply | v1.0 | ⭐️⭐⭐⭐ | | 192 | [创建SQLite连接](md/192.md) | SQLite | v1.0 | ⭐️⭐⭐⭐ | | 193 | [json对象转python对象](md/193.md) | python json | v1.0 | ⭐️⭐⭐⭐ | - - +| 194 | [python对象转json对象](md/194.md) | python json | v1.0 | ⭐️⭐⭐⭐ | +| 195 | [发现列表前3个最大或最小数](md/195.md) | list heapq | v1.0 | ⭐️⭐⭐⭐ | +| 196 | [使用堆排序列表为升序](md/196.md) | sort heapq | v1.0 | ⭐️⭐⭐⭐ | ### Python 实战 diff --git a/md/194.md b/md/194.md index 2d63d3ef..8ac0ff98 100644 --- a/md/194.md +++ b/md/194.md @@ -6,6 +6,45 @@ @version @date 2020/04/01 ``` - +#### 194 python对象转json对象 + +```python +import json +# a Python object (dict): +python_obj = { + "name": "David", + "class":"I", + "age": 6 +} +print(type(python_obj)) +``` + +使用`json.dumps`方法转化为json对象: +``` +# convert into JSON: +j_data = json.dumps(python_obj) + +# result is a JSON string: +print(j_data) +``` + +##### 带格式转为json + +若字典转化为json对象后,保证键有序,且缩进4格,如何做到? + +```python +json.dumps(j_str, sort_keys=True, indent=4) +``` + +例子: + +```python +import json +j_str = {'4': 5, '6': 7, '1': 3, '2': 4} +print(json.dumps(j_str, sort_keys=True, indent=4)) +``` + + + +
[上一个例子](193.md) [下一个例子](195.md)
-
[上一个例子](193.md) [下一个例子](195.md)
\ No newline at end of file diff --git a/md/195.md b/md/195.md index a0f1adea..f03c8cfe 100644 --- a/md/195.md +++ b/md/195.md @@ -6,6 +6,29 @@ @version @date 2020/04/02 ``` - +#### 195 发现列表前3个最大或最小数 + +使用堆模块 heapq 里的 nlargest 方法: + +```python +import heapq as hq +nums_list = [25, 35, 22, 85, 14, 65, 75, 22, 58] + +# Find three largest values +largest_nums = hq.nlargest(3, nums_list) +print(largest_nums) +``` + +相应的求最小3个数,使用堆模块 heapq 里的 nsmallest 方法: + +```python +import heapq as hq +nums_list = [25, 35, 22, 85, 14, 65, 75, 22, 58] +smallest_nums = hq.nsmallest(3, nums_list) +print("\nThree smallest numbers are:", smallest_nums) +``` + + +
[上一个例子](194.md) [下一个例子](196.md)
\ No newline at end of file diff --git a/md/196.md b/md/196.md index 52e3cdea..7a1342bd 100644 --- a/md/196.md +++ b/md/196.md @@ -6,6 +6,19 @@ @version @date 2020/04/03 ``` - + +### 196 使用堆排序列表为升序 + +使用 heapq 模块,首先对列表建堆,默认建立小根堆,调用len(nums) 次heapop: + +```python +import heapq as hq + +nums_list = [18, 14, 10, 9, 8, 7, 9, 3, 2, 4, 1] +hq.heapify(nums_list) +s_result = [hq.heappop(nums_list) for _ in range(len(nums_list))] +print(s_result) +``` +
[上一个例子](195.md) [下一个例子](197.md)
\ No newline at end of file From 0423c87c77f27f023385209cc5f0b1cc84137c8f Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Sun, 21 Mar 2021 12:40:19 +0800 Subject: [PATCH 29/85] re --- README.md | 5 +++++ md/197.md | 37 ++++++++++++++++++++++++++++++++++++- 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1ca7f6b2..4bec438b 100644 --- a/README.md +++ b/README.md @@ -276,6 +276,11 @@ | 194 | [python对象转json对象](md/194.md) | python json | v1.0 | ⭐️⭐⭐⭐ | | 195 | [发现列表前3个最大或最小数](md/195.md) | list heapq | v1.0 | ⭐️⭐⭐⭐ | | 196 | [使用堆排序列表为升序](md/196.md) | sort heapq | v1.0 | ⭐️⭐⭐⭐ | +| 197 | [使用正则提取正整数和大于0的浮点数](md/197.md) | re findall | v2 | ⭐️⭐⭐⭐ | + + + + ### Python 实战 diff --git a/md/197.md b/md/197.md index 36935d52..3d166a53 100644 --- a/md/197.md +++ b/md/197.md @@ -6,6 +6,41 @@ @version @date 2020/04/04 ``` + +下面正则适用于提取正整数和大于0的浮点数,参看我的,若有疏漏欢迎补充。 + +```python +>>> import re +>>> pat_integ = '[1-9]+\d*' +>>> pat_float0 = '0\.\d+[1-9]' +>>> pat_float1 = '[1-9]\d*\.d+' +>>> pat = 'r%s|%s|%s'%(pat_float_0,pat_float_1,pat_integ) +>>> re.findall(pat, r) +['0.78', '3446.73', '0.91', '13642.95', '1.06', '2672.12', '3000'] +``` + +排除这些串: + +000 +000100 +0.00 +000.00 + + +解释:`*`表示前一个字符出现0次或多次,`+`表示前一个字符出现1次或多次,`\d`表示数字[0-9],`[1-9]`表示1,2,3,4,5,6,7,8,9,`\.`表示小数点 + +主要考虑:正整数最左侧一位大于0,大于1的浮点数必须以[1-9]开始,大于0小于1的浮点数小数点前只有1个0. + + + + +Day163:使用Python正则 提取出输入一段文字中的所有浮点数和整数 #Python拆书1# + +例如: 截至收盘,上证指数涨0.78%,报3446.73点,深证成指涨0.91%,报13642.95点,创业板指涨1.06%,报2672.12点。指数午后震荡走高,碳中和概念强者恒强,板块内上演涨停潮,环保、物业、特高压板块午后涨幅扩大,数字货币板块尾盘冲高,钢铁、煤炭、有色板块全天较为低迷,题材股午后整体回暖,两市上涨个股逾3000家,赚钱效益较好。 + +提取出所有浮点数和整数: 0.78, 3446.73, 0.91,13642.95 等 + + -
[上一个例子](196.md) [下一个例子](198.md)
\ No newline at end of file +
[上一个例子](196.md) [下一个例子](198.md)
From 77cd96e30cad8fbe8b909dfd65e91a7a66243403 Mon Sep 17 00:00:00 2001 From: guozhen3 Date: Thu, 29 Apr 2021 15:45:55 +0800 Subject: [PATCH 30/85] =?UTF-8?q?=E5=8F=91=E8=B5=B7=E7=AC=AC=E4=B8=80?= =?UTF-8?q?=E4=B8=AAPython=E5=B0=8F=E9=A1=B9=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/README.md b/README.md index 4bec438b..b5241133 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,45 @@ 允许按照要求转载,但禁止用于任何商用目的。 +## 进行中Python小项目 + +上下文关键字(KWIC, Key Word In Context)是最常见的多行协调显示格式。 + +此小项目描述:输入一系列句子,给定一个给定单词,每个句子中至少会出现一次给定单词。目标输出,给定单词按照KWIC显示,KWIC显示的基本要求:待查询单词居中,前面`pre`序列右对齐,后面`post`序列左对齐,待查询单词前和后长度相等,若输入句子无法满足要求,用空格填充。 + +输入参数:输入句子sentences, 待查询单词selword, 滑动窗口长度`window_len` + +举例,输入如下六个句子,给定单词`secure`,输出如下字符串: + +```python + pre keyword post + + welfare , and secure the blessings of + nations , and secured immortal glory with + , and shall secure to you the + cherished . To secure us against these + defense as to secure our cities and + I can to secure economy and fidelity +``` + +请补充实现下面函数: + +```python +def kwic(sentences: List[str], selword: str, window_len: int) -> str: + """ + :type: sentences: input sentences + :type: selword: selected word + :type: window_len: window length + """ +``` + +更多KWIC显示参考如下: + +http://dep.chs.nihon-u.ac.jp/english_lang/tukamoto/kwic_e.html + + + + ## Python 原创教程 这是经过很久打磨的一个Python教程,全部是个人原创,已首发在公众号,并且托管在我的[个人网站](http://www.zglg.work/python-level/)。想系统入门Python的欢迎学习: From 12521fe25af63fe14d9739bf8460d0c852d200bb Mon Sep 17 00:00:00 2001 From: guozhen3 Date: Sat, 1 May 2021 17:29:17 +0800 Subject: [PATCH 31/85] add linke --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b5241133..6cc4c4cf 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,8 @@ 告别枯燥,告别枯燥,致力于打造 Python 经典小例子、小案例。 如果转载本库小例子、小案例,请备注下方链接:Python小例子 https://github.com/jackzhenguo/python-small-examples +并托管在[Python中文网](http://zglg.work/python-small-examples/) + 查看完整的旧版本:[改版前V3.0](V3.md) ## 贡献 From 10dd4b787dcb74eb45736e2fffbb0c403f42b775 Mon Sep 17 00:00:00 2001 From: jackzhenguo Date: Thu, 20 May 2021 00:15:11 +0800 Subject: [PATCH 32/85] python-20-level --- .idea/.gitignore | 0 .idea/inspectionProfiles/Project_Default.xml | 60 + .../inspectionProfiles/profiles_settings.xml | 6 + .idea/misc.xml | 4 + .idea/modules.xml | 8 + .idea/python-small-examples.iml | 10 + .idea/vcs.xml | 6 + .idea/workspace.xml | 34 + README.md | 335 +- venv/bin/Activate.ps1 | 241 + venv/bin/activate | 76 + venv/bin/activate.csh | 37 + venv/bin/activate.fish | 75 + venv/bin/pip | 8 + venv/bin/pip3 | 8 + venv/bin/pip3.8 | 8 + venv/bin/python | 1 + venv/bin/python3 | 1 + venv/bin/python3.8 | 1 + .../site-packages/_distutils_hack/__init__.py | 128 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 5090 bytes .../__pycache__/override.cpython-38.pyc | Bin 0 -> 202 bytes .../site-packages/_distutils_hack/override.py | 1 + .../site-packages/distutils-precedence.pth | 1 + .../pip-21.1.dist-info/INSTALLER | 1 + .../pip-21.1.dist-info/LICENSE.txt | 20 + .../site-packages/pip-21.1.dist-info/METADATA | 91 + .../site-packages/pip-21.1.dist-info/RECORD | 796 ++ .../site-packages/pip-21.1.dist-info/WHEEL | 5 + .../pip-21.1.dist-info/entry_points.txt | 5 + .../pip-21.1.dist-info/top_level.txt | 1 + .../python3.8/site-packages/pip/__init__.py | 14 + .../python3.8/site-packages/pip/__main__.py | 31 + .../pip/__pycache__/__init__.cpython-38.pyc | Bin 0 -> 552 bytes .../pip/__pycache__/__main__.cpython-38.pyc | Bin 0 -> 555 bytes .../site-packages/pip/_internal/__init__.py | 15 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 603 bytes .../__pycache__/build_env.cpython-38.pyc | Bin 0 -> 8644 bytes .../__pycache__/cache.cpython-38.pyc | Bin 0 -> 7833 bytes .../__pycache__/configuration.cpython-38.pyc | Bin 0 -> 10693 bytes .../__pycache__/exceptions.cpython-38.pyc | Bin 0 -> 15635 bytes .../_internal/__pycache__/main.cpython-38.pyc | Bin 0 -> 540 bytes .../__pycache__/pyproject.cpython-38.pyc | Bin 0 -> 3432 bytes .../self_outdated_check.cpython-38.pyc | Bin 0 -> 4277 bytes .../__pycache__/wheel_builder.cpython-38.pyc | Bin 0 -> 8273 bytes .../site-packages/pip/_internal/build_env.py | 275 + .../site-packages/pip/_internal/cache.py | 287 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-38.pyc | Bin 0 -> 236 bytes .../__pycache__/autocompletion.cpython-38.pyc | Bin 0 -> 4974 bytes .../__pycache__/base_command.cpython-38.pyc | Bin 0 -> 5674 bytes .../cli/__pycache__/cmdoptions.cpython-38.pyc | Bin 0 -> 21007 bytes .../command_context.cpython-38.pyc | Bin 0 -> 1180 bytes .../cli/__pycache__/main.cpython-38.pyc | Bin 0 -> 1281 bytes .../__pycache__/main_parser.cpython-38.pyc | Bin 0 -> 2066 bytes .../cli/__pycache__/parser.cpython-38.pyc | Bin 0 -> 9316 bytes .../__pycache__/progress_bars.cpython-38.pyc | Bin 0 -> 7400 bytes .../__pycache__/req_command.cpython-38.pyc | Bin 0 -> 11195 bytes .../cli/__pycache__/spinners.cpython-38.pyc | Bin 0 -> 4568 bytes .../__pycache__/status_codes.cpython-38.pyc | Bin 0 -> 315 bytes .../pip/_internal/cli/autocompletion.py | 162 + .../pip/_internal/cli/base_command.py | 221 + .../pip/_internal/cli/cmdoptions.py | 1024 ++ .../pip/_internal/cli/command_context.py | 30 + .../site-packages/pip/_internal/cli/main.py | 71 + .../pip/_internal/cli/main_parser.py | 89 + .../site-packages/pip/_internal/cli/parser.py | 305 + .../pip/_internal/cli/progress_bars.py | 261 + .../pip/_internal/cli/req_command.py | 461 + .../pip/_internal/cli/spinners.py | 172 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 110 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 2859 bytes .../commands/__pycache__/cache.cpython-38.pyc | Bin 0 -> 5713 bytes .../commands/__pycache__/check.cpython-38.pyc | Bin 0 -> 1489 bytes .../__pycache__/completion.cpython-38.pyc | Bin 0 -> 3043 bytes .../__pycache__/configuration.cpython-38.pyc | Bin 0 -> 7970 bytes .../commands/__pycache__/debug.cpython-38.pyc | Bin 0 -> 6330 bytes .../__pycache__/download.cpython-38.pyc | Bin 0 -> 3908 bytes .../__pycache__/freeze.cpython-38.pyc | Bin 0 -> 2887 bytes .../commands/__pycache__/hash.cpython-38.pyc | Bin 0 -> 1979 bytes .../commands/__pycache__/help.cpython-38.pyc | Bin 0 -> 1215 bytes .../__pycache__/install.cpython-38.pyc | Bin 0 -> 16732 bytes .../commands/__pycache__/list.cpython-38.pyc | Bin 0 -> 8771 bytes .../__pycache__/search.cpython-38.pyc | Bin 0 -> 4866 bytes .../commands/__pycache__/show.cpython-38.pyc | Bin 0 -> 6319 bytes .../__pycache__/uninstall.cpython-38.pyc | Bin 0 -> 2822 bytes .../commands/__pycache__/wheel.cpython-38.pyc | Bin 0 -> 4777 bytes .../pip/_internal/commands/cache.py | 228 + .../pip/_internal/commands/check.py | 48 + .../pip/_internal/commands/completion.py | 93 + .../pip/_internal/commands/configuration.py | 280 + .../pip/_internal/commands/debug.py | 215 + .../pip/_internal/commands/download.py | 141 + .../pip/_internal/commands/freeze.py | 104 + .../pip/_internal/commands/hash.py | 58 + .../pip/_internal/commands/help.py | 42 + .../pip/_internal/commands/install.py | 740 ++ .../pip/_internal/commands/list.py | 319 + .../pip/_internal/commands/search.py | 162 + .../pip/_internal/commands/show.py | 181 + .../pip/_internal/commands/uninstall.py | 92 + .../pip/_internal/commands/wheel.py | 178 + .../pip/_internal/configuration.py | 403 + .../pip/_internal/distributions/__init__.py | 20 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 732 bytes .../__pycache__/base.cpython-38.pyc | Bin 0 -> 1788 bytes .../__pycache__/installed.cpython-38.pyc | Bin 0 -> 1133 bytes .../__pycache__/sdist.cpython-38.pyc | Bin 0 -> 3384 bytes .../__pycache__/wheel.cpython-38.pyc | Bin 0 -> 1485 bytes .../pip/_internal/distributions/base.py | 39 + .../pip/_internal/distributions/installed.py | 22 + .../pip/_internal/distributions/sdist.py | 95 + .../pip/_internal/distributions/wheel.py | 34 + .../site-packages/pip/_internal/exceptions.py | 397 + .../pip/_internal/index/__init__.py | 2 + .../index/__pycache__/__init__.cpython-38.pyc | Bin 0 -> 190 bytes .../__pycache__/collector.cpython-38.pyc | Bin 0 -> 15066 bytes .../__pycache__/package_finder.cpython-38.pyc | Bin 0 -> 26629 bytes .../index/__pycache__/sources.cpython-38.pyc | Bin 0 -> 7155 bytes .../pip/_internal/index/collector.py | 556 ++ .../pip/_internal/index/package_finder.py | 1012 ++ .../pip/_internal/index/sources.py | 224 + .../pip/_internal/locations/__init__.py | 184 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 3672 bytes .../__pycache__/_distutils.cpython-38.pyc | Bin 0 -> 3867 bytes .../__pycache__/_sysconfig.cpython-38.pyc | Bin 0 -> 4468 bytes .../locations/__pycache__/base.cpython-38.pyc | Bin 0 -> 1178 bytes .../pip/_internal/locations/_distutils.py | 150 + .../pip/_internal/locations/_sysconfig.py | 174 + .../pip/_internal/locations/base.py | 48 + .../site-packages/pip/_internal/main.py | 13 + .../pip/_internal/metadata/__init__.py | 43 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 1689 bytes .../metadata/__pycache__/base.cpython-38.pyc | Bin 0 -> 5293 bytes .../__pycache__/pkg_resources.cpython-38.pyc | Bin 0 -> 4199 bytes .../pip/_internal/metadata/base.py | 142 + .../pip/_internal/metadata/pkg_resources.py | 126 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 224 bytes .../__pycache__/candidate.cpython-38.pyc | Bin 0 -> 1345 bytes .../__pycache__/direct_url.cpython-38.pyc | Bin 0 -> 6273 bytes .../__pycache__/format_control.cpython-38.pyc | Bin 0 -> 2498 bytes .../models/__pycache__/index.cpython-38.pyc | Bin 0 -> 1159 bytes .../models/__pycache__/link.cpython-38.pyc | Bin 0 -> 7194 bytes .../models/__pycache__/scheme.cpython-38.pyc | Bin 0 -> 928 bytes .../__pycache__/search_scope.cpython-38.pyc | Bin 0 -> 3309 bytes .../selection_prefs.cpython-38.pyc | Bin 0 -> 1569 bytes .../__pycache__/target_python.cpython-38.pyc | Bin 0 -> 3258 bytes .../models/__pycache__/wheel.cpython-38.pyc | Bin 0 -> 4169 bytes .../pip/_internal/models/candidate.py | 34 + .../pip/_internal/models/direct_url.py | 233 + .../pip/_internal/models/format_control.py | 86 + .../pip/_internal/models/index.py | 34 + .../pip/_internal/models/link.py | 248 + .../pip/_internal/models/scheme.py | 31 + .../pip/_internal/models/search_scope.py | 131 + .../pip/_internal/models/selection_prefs.py | 47 + .../pip/_internal/models/target_python.py | 114 + .../pip/_internal/models/wheel.py | 95 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 212 bytes .../network/__pycache__/auth.cpython-38.pyc | Bin 0 -> 7034 bytes .../network/__pycache__/cache.cpython-38.pyc | Bin 0 -> 2613 bytes .../__pycache__/download.cpython-38.pyc | Bin 0 -> 5033 bytes .../__pycache__/lazy_wheel.cpython-38.pyc | Bin 0 -> 7830 bytes .../__pycache__/session.cpython-38.pyc | Bin 0 -> 9473 bytes .../network/__pycache__/utils.cpython-38.pyc | Bin 0 -> 1282 bytes .../network/__pycache__/xmlrpc.cpython-38.pyc | Bin 0 -> 1875 bytes .../pip/_internal/network/auth.py | 312 + .../pip/_internal/network/cache.py | 76 + .../pip/_internal/network/download.py | 196 + .../pip/_internal/network/lazy_wheel.py | 224 + .../pip/_internal/network/session.py | 449 + .../pip/_internal/network/utils.py | 95 + .../pip/_internal/network/xmlrpc.py | 49 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 160 bytes .../__pycache__/check.cpython-38.pyc | Bin 0 -> 3668 bytes .../__pycache__/freeze.cpython-38.pyc | Bin 0 -> 5599 bytes .../__pycache__/prepare.cpython-38.pyc | Bin 0 -> 14205 bytes .../_internal/operations/build/__init__.py | 0 .../build/__pycache__/__init__.cpython-38.pyc | Bin 0 -> 166 bytes .../build/__pycache__/metadata.cpython-38.pyc | Bin 0 -> 1073 bytes .../metadata_legacy.cpython-38.pyc | Bin 0 -> 1873 bytes .../build/__pycache__/wheel.cpython-38.pyc | Bin 0 -> 1089 bytes .../__pycache__/wheel_legacy.cpython-38.pyc | Bin 0 -> 2475 bytes .../_internal/operations/build/metadata.py | 35 + .../operations/build/metadata_legacy.py | 74 + .../pip/_internal/operations/build/wheel.py | 38 + .../operations/build/wheel_legacy.py | 110 + .../pip/_internal/operations/check.py | 153 + .../pip/_internal/operations/freeze.py | 264 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 224 bytes .../editable_legacy.cpython-38.pyc | Bin 0 -> 1227 bytes .../install/__pycache__/legacy.cpython-38.pyc | Bin 0 -> 3043 bytes .../install/__pycache__/wheel.cpython-38.pyc | Bin 0 -> 20581 bytes .../operations/install/editable_legacy.py | 47 + .../_internal/operations/install/legacy.py | 125 + .../pip/_internal/operations/install/wheel.py | 819 ++ .../pip/_internal/operations/prepare.py | 655 ++ .../site-packages/pip/_internal/pyproject.py | 183 + .../pip/_internal/req/__init__.py | 98 + .../req/__pycache__/__init__.cpython-38.pyc | Bin 0 -> 2290 bytes .../__pycache__/constructors.cpython-38.pyc | Bin 0 -> 10959 bytes .../req/__pycache__/req_file.cpython-38.pyc | Bin 0 -> 12395 bytes .../__pycache__/req_install.cpython-38.pyc | Bin 0 -> 20441 bytes .../req/__pycache__/req_set.cpython-38.pyc | Bin 0 -> 5694 bytes .../__pycache__/req_tracker.cpython-38.pyc | Bin 0 -> 3875 bytes .../__pycache__/req_uninstall.cpython-38.pyc | Bin 0 -> 17350 bytes .../pip/_internal/req/constructors.py | 486 + .../pip/_internal/req/req_file.py | 557 ++ .../pip/_internal/req/req_install.py | 873 ++ .../pip/_internal/req/req_set.py | 199 + .../pip/_internal/req/req_tracker.py | 140 + .../pip/_internal/req/req_uninstall.py | 640 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 160 bytes .../__pycache__/base.cpython-38.pyc | Bin 0 -> 903 bytes .../pip/_internal/resolution/base.py | 16 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 167 bytes .../__pycache__/resolver.cpython-38.pyc | Bin 0 -> 11462 bytes .../_internal/resolution/legacy/resolver.py | 462 + .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 171 bytes .../__pycache__/base.cpython-38.pyc | Bin 0 -> 6281 bytes .../__pycache__/candidates.cpython-38.pyc | Bin 0 -> 17895 bytes .../__pycache__/factory.cpython-38.pyc | Bin 0 -> 15979 bytes .../found_candidates.cpython-38.pyc | Bin 0 -> 4625 bytes .../__pycache__/provider.cpython-38.pyc | Bin 0 -> 6573 bytes .../__pycache__/reporter.cpython-38.pyc | Bin 0 -> 3103 bytes .../__pycache__/requirements.cpython-38.pyc | Bin 0 -> 7035 bytes .../__pycache__/resolver.cpython-38.pyc | Bin 0 -> 8049 bytes .../_internal/resolution/resolvelib/base.py | 165 + .../resolution/resolvelib/candidates.py | 604 ++ .../resolution/resolvelib/factory.py | 650 ++ .../resolution/resolvelib/found_candidates.py | 145 + .../resolution/resolvelib/provider.py | 175 + .../resolution/resolvelib/reporter.py | 78 + .../resolution/resolvelib/requirements.py | 198 + .../resolution/resolvelib/resolver.py | 305 + .../pip/_internal/self_outdated_check.py | 187 + .../pip/_internal/utils/__init__.py | 0 .../utils/__pycache__/__init__.cpython-38.pyc | Bin 0 -> 155 bytes .../utils/__pycache__/appdirs.cpython-38.pyc | Bin 0 -> 1220 bytes .../utils/__pycache__/compat.cpython-38.pyc | Bin 0 -> 1416 bytes .../compatibility_tags.cpython-38.pyc | Bin 0 -> 3804 bytes .../utils/__pycache__/datetime.cpython-38.pyc | Bin 0 -> 426 bytes .../__pycache__/deprecation.cpython-38.pyc | Bin 0 -> 2725 bytes .../direct_url_helpers.cpython-38.pyc | Bin 0 -> 2502 bytes .../__pycache__/distutils_args.cpython-38.pyc | Bin 0 -> 1064 bytes .../utils/__pycache__/encoding.cpython-38.pyc | Bin 0 -> 1201 bytes .../__pycache__/entrypoints.cpython-38.pyc | Bin 0 -> 1224 bytes .../__pycache__/filesystem.cpython-38.pyc | Bin 0 -> 4882 bytes .../__pycache__/filetypes.cpython-38.pyc | Bin 0 -> 767 bytes .../utils/__pycache__/glibc.cpython-38.pyc | Bin 0 -> 1583 bytes .../utils/__pycache__/hashes.cpython-38.pyc | Bin 0 -> 4944 bytes .../inject_securetransport.cpython-38.pyc | Bin 0 -> 932 bytes .../utils/__pycache__/logging.cpython-38.pyc | Bin 0 -> 8869 bytes .../utils/__pycache__/misc.cpython-38.pyc | Bin 0 -> 21301 bytes .../utils/__pycache__/models.cpython-38.pyc | Bin 0 -> 1859 bytes .../__pycache__/packaging.cpython-38.pyc | Bin 0 -> 2483 bytes .../utils/__pycache__/parallel.cpython-38.pyc | Bin 0 -> 2948 bytes .../__pycache__/pkg_resources.cpython-38.pyc | Bin 0 -> 1679 bytes .../setuptools_build.cpython-38.pyc | Bin 0 -> 2951 bytes .../__pycache__/subprocess.cpython-38.pyc | Bin 0 -> 5622 bytes .../utils/__pycache__/temp_dir.cpython-38.pyc | Bin 0 -> 6794 bytes .../__pycache__/unpacking.cpython-38.pyc | Bin 0 -> 6340 bytes .../utils/__pycache__/urls.cpython-38.pyc | Bin 0 -> 1327 bytes .../__pycache__/virtualenv.cpython-38.pyc | Bin 0 -> 3168 bytes .../utils/__pycache__/wheel.cpython-38.pyc | Bin 0 -> 5941 bytes .../pip/_internal/utils/appdirs.py | 38 + .../pip/_internal/utils/compat.py | 65 + .../pip/_internal/utils/compatibility_tags.py | 174 + .../pip/_internal/utils/datetime.py | 12 + .../pip/_internal/utils/deprecation.py | 102 + .../pip/_internal/utils/direct_url_helpers.py | 117 + .../pip/_internal/utils/distutils_args.py | 43 + .../pip/_internal/utils/encoding.py | 37 + .../pip/_internal/utils/entrypoints.py | 28 + .../pip/_internal/utils/filesystem.py | 193 + .../pip/_internal/utils/filetypes.py | 28 + .../pip/_internal/utils/glibc.py | 92 + .../pip/_internal/utils/hashes.py | 161 + .../_internal/utils/inject_securetransport.py | 36 + .../pip/_internal/utils/logging.py | 387 + .../site-packages/pip/_internal/utils/misc.py | 825 ++ .../pip/_internal/utils/models.py | 47 + .../pip/_internal/utils/packaging.py | 89 + .../pip/_internal/utils/parallel.py | 101 + .../pip/_internal/utils/pkg_resources.py | 40 + .../pip/_internal/utils/setuptools_build.py | 173 + .../pip/_internal/utils/subprocess.py | 281 + .../pip/_internal/utils/temp_dir.py | 260 + .../pip/_internal/utils/unpacking.py | 267 + .../site-packages/pip/_internal/utils/urls.py | 49 + .../pip/_internal/utils/virtualenv.py | 111 + .../pip/_internal/utils/wheel.py | 189 + .../pip/_internal/vcs/__init__.py | 14 + .../vcs/__pycache__/__init__.cpython-38.pyc | Bin 0 -> 448 bytes .../vcs/__pycache__/bazaar.cpython-38.pyc | Bin 0 -> 2976 bytes .../vcs/__pycache__/git.cpython-38.pyc | Bin 0 -> 9983 bytes .../vcs/__pycache__/mercurial.cpython-38.pyc | Bin 0 -> 4577 bytes .../vcs/__pycache__/subversion.cpython-38.pyc | Bin 0 -> 7958 bytes .../__pycache__/versioncontrol.cpython-38.pyc | Bin 0 -> 19084 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 96 + .../site-packages/pip/_internal/vcs/git.py | 450 + .../pip/_internal/vcs/mercurial.py | 158 + .../pip/_internal/vcs/subversion.py | 329 + .../pip/_internal/vcs/versioncontrol.py | 715 ++ .../pip/_internal/wheel_builder.py | 360 + .../site-packages/pip/_vendor/__init__.py | 113 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 2912 bytes .../__pycache__/appdirs.cpython-38.pyc | Bin 0 -> 21405 bytes .../_vendor/__pycache__/distro.cpython-38.pyc | Bin 0 -> 36860 bytes .../__pycache__/pyparsing.cpython-38.pyc | Bin 0 -> 240848 bytes .../_vendor/__pycache__/six.cpython-38.pyc | Bin 0 -> 26887 bytes .../site-packages/pip/_vendor/appdirs.py | 633 ++ .../pip/_vendor/cachecontrol/__init__.py | 11 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 513 bytes .../__pycache__/_cmd.cpython-38.pyc | Bin 0 -> 1540 bytes .../__pycache__/adapter.cpython-38.pyc | Bin 0 -> 3047 bytes .../__pycache__/cache.cpython-38.pyc | Bin 0 -> 1746 bytes .../__pycache__/compat.cpython-38.pyc | Bin 0 -> 720 bytes .../__pycache__/controller.cpython-38.pyc | Bin 0 -> 7751 bytes .../__pycache__/filewrapper.cpython-38.pyc | Bin 0 -> 2139 bytes .../__pycache__/heuristics.cpython-38.pyc | Bin 0 -> 4698 bytes .../__pycache__/serialize.cpython-38.pyc | Bin 0 -> 4200 bytes .../__pycache__/wrapper.cpython-38.pyc | Bin 0 -> 637 bytes .../pip/_vendor/cachecontrol/_cmd.py | 57 + .../pip/_vendor/cachecontrol/adapter.py | 133 + .../pip/_vendor/cachecontrol/cache.py | 39 + .../_vendor/cachecontrol/caches/__init__.py | 2 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 257 bytes .../__pycache__/file_cache.cpython-38.pyc | Bin 0 -> 3231 bytes .../__pycache__/redis_cache.cpython-38.pyc | Bin 0 -> 1529 bytes .../_vendor/cachecontrol/caches/file_cache.py | 146 + .../cachecontrol/caches/redis_cache.py | 33 + .../pip/_vendor/cachecontrol/compat.py | 29 + .../pip/_vendor/cachecontrol/controller.py | 376 + .../pip/_vendor/cachecontrol/filewrapper.py | 80 + .../pip/_vendor/cachecontrol/heuristics.py | 135 + .../pip/_vendor/cachecontrol/serialize.py | 188 + .../pip/_vendor/cachecontrol/wrapper.py | 29 + .../pip/_vendor/certifi/__init__.py | 3 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 239 bytes .../__pycache__/__main__.cpython-38.pyc | Bin 0 -> 416 bytes .../certifi/__pycache__/core.cpython-38.pyc | Bin 0 -> 1499 bytes .../pip/_vendor/certifi/cacert.pem | 4325 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 76 + .../pip/_vendor/chardet/__init__.py | 83 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 1857 bytes .../__pycache__/big5freq.cpython-38.pyc | Bin 0 -> 27142 bytes .../__pycache__/big5prober.cpython-38.pyc | Bin 0 -> 1097 bytes .../chardistribution.cpython-38.pyc | Bin 0 -> 6183 bytes .../charsetgroupprober.cpython-38.pyc | Bin 0 -> 2224 bytes .../__pycache__/charsetprober.cpython-38.pyc | Bin 0 -> 3446 bytes .../codingstatemachine.cpython-38.pyc | Bin 0 -> 2873 bytes .../chardet/__pycache__/compat.cpython-38.pyc | Bin 0 -> 362 bytes .../__pycache__/cp949prober.cpython-38.pyc | Bin 0 -> 1104 bytes .../chardet/__pycache__/enums.cpython-38.pyc | Bin 0 -> 2611 bytes .../__pycache__/escprober.cpython-38.pyc | Bin 0 -> 2596 bytes .../chardet/__pycache__/escsm.cpython-38.pyc | Bin 0 -> 7437 bytes .../__pycache__/eucjpprober.cpython-38.pyc | Bin 0 -> 2414 bytes .../__pycache__/euckrfreq.cpython-38.pyc | Bin 0 -> 12026 bytes .../__pycache__/euckrprober.cpython-38.pyc | Bin 0 -> 1105 bytes .../__pycache__/euctwfreq.cpython-38.pyc | Bin 0 -> 27146 bytes .../__pycache__/euctwprober.cpython-38.pyc | Bin 0 -> 1105 bytes .../__pycache__/gb2312freq.cpython-38.pyc | Bin 0 -> 19070 bytes .../__pycache__/gb2312prober.cpython-38.pyc | Bin 0 -> 1113 bytes .../__pycache__/hebrewprober.cpython-38.pyc | Bin 0 -> 2986 bytes .../__pycache__/jisfreq.cpython-38.pyc | Bin 0 -> 22098 bytes .../chardet/__pycache__/jpcntx.cpython-38.pyc | Bin 0 -> 37571 bytes .../langbulgarianmodel.cpython-38.pyc | Bin 0 -> 21773 bytes .../__pycache__/langgreekmodel.cpython-38.pyc | Bin 0 -> 20449 bytes .../langhebrewmodel.cpython-38.pyc | Bin 0 -> 20517 bytes .../langhungarianmodel.cpython-38.pyc | Bin 0 -> 21718 bytes .../langrussianmodel.cpython-38.pyc | Bin 0 -> 26321 bytes .../__pycache__/langthaimodel.cpython-38.pyc | Bin 0 -> 20693 bytes .../langturkishmodel.cpython-38.pyc | Bin 0 -> 20533 bytes .../__pycache__/latin1prober.cpython-38.pyc | Bin 0 -> 3366 bytes .../mbcharsetprober.cpython-38.pyc | Bin 0 -> 2229 bytes .../mbcsgroupprober.cpython-38.pyc | Bin 0 -> 1094 bytes .../chardet/__pycache__/mbcssm.cpython-38.pyc | Bin 0 -> 16717 bytes .../sbcharsetprober.cpython-38.pyc | Bin 0 -> 3102 bytes .../sbcsgroupprober.cpython-38.pyc | Bin 0 -> 1667 bytes .../__pycache__/sjisprober.cpython-38.pyc | Bin 0 -> 2450 bytes .../universaldetector.cpython-38.pyc | Bin 0 -> 5794 bytes .../__pycache__/utf8prober.cpython-38.pyc | Bin 0 -> 1955 bytes .../__pycache__/version.cpython-38.pyc | Bin 0 -> 402 bytes .../pip/_vendor/chardet/big5freq.py | 386 + .../pip/_vendor/chardet/big5prober.py | 47 + .../pip/_vendor/chardet/chardistribution.py | 233 + .../pip/_vendor/chardet/charsetgroupprober.py | 107 + .../pip/_vendor/chardet/charsetprober.py | 145 + .../pip/_vendor/chardet/cli/__init__.py | 1 + .../cli/__pycache__/__init__.cpython-38.pyc | Bin 0 -> 159 bytes .../cli/__pycache__/chardetect.cpython-38.pyc | Bin 0 -> 2655 bytes .../pip/_vendor/chardet/cli/chardetect.py | 84 + .../pip/_vendor/chardet/codingstatemachine.py | 88 + .../pip/_vendor/chardet/compat.py | 36 + .../pip/_vendor/chardet/cp949prober.py | 49 + .../pip/_vendor/chardet/enums.py | 76 + .../pip/_vendor/chardet/escprober.py | 101 + .../pip/_vendor/chardet/escsm.py | 246 + .../pip/_vendor/chardet/eucjpprober.py | 92 + .../pip/_vendor/chardet/euckrfreq.py | 195 + .../pip/_vendor/chardet/euckrprober.py | 47 + .../pip/_vendor/chardet/euctwfreq.py | 387 + .../pip/_vendor/chardet/euctwprober.py | 46 + .../pip/_vendor/chardet/gb2312freq.py | 283 + .../pip/_vendor/chardet/gb2312prober.py | 46 + .../pip/_vendor/chardet/hebrewprober.py | 292 + .../pip/_vendor/chardet/jisfreq.py | 325 + .../pip/_vendor/chardet/jpcntx.py | 233 + .../pip/_vendor/chardet/langbulgarianmodel.py | 4650 +++++++++ .../pip/_vendor/chardet/langgreekmodel.py | 4398 +++++++++ .../pip/_vendor/chardet/langhebrewmodel.py | 4383 +++++++++ .../pip/_vendor/chardet/langhungarianmodel.py | 4650 +++++++++ .../pip/_vendor/chardet/langrussianmodel.py | 5718 +++++++++++ .../pip/_vendor/chardet/langthaimodel.py | 4383 +++++++++ .../pip/_vendor/chardet/langturkishmodel.py | 4383 +++++++++ .../pip/_vendor/chardet/latin1prober.py | 145 + .../pip/_vendor/chardet/mbcharsetprober.py | 91 + .../pip/_vendor/chardet/mbcsgroupprober.py | 54 + .../pip/_vendor/chardet/mbcssm.py | 572 ++ .../pip/_vendor/chardet/metadata/__init__.py | 0 .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 164 bytes .../__pycache__/languages.cpython-38.pyc | Bin 0 -> 7918 bytes .../pip/_vendor/chardet/metadata/languages.py | 310 + .../pip/_vendor/chardet/sbcharsetprober.py | 145 + .../pip/_vendor/chardet/sbcsgroupprober.py | 83 + .../pip/_vendor/chardet/sjisprober.py | 92 + .../pip/_vendor/chardet/universaldetector.py | 286 + .../pip/_vendor/chardet/utf8prober.py | 82 + .../pip/_vendor/chardet/version.py | 9 + .../pip/_vendor/colorama/__init__.py | 6 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 407 bytes .../colorama/__pycache__/ansi.cpython-38.pyc | Bin 0 -> 3192 bytes .../__pycache__/ansitowin32.cpython-38.pyc | Bin 0 -> 7736 bytes .../__pycache__/initialise.cpython-38.pyc | Bin 0 -> 1668 bytes .../colorama/__pycache__/win32.cpython-38.pyc | Bin 0 -> 3944 bytes .../__pycache__/winterm.cpython-38.pyc | Bin 0 -> 4628 bytes .../pip/_vendor/colorama/ansi.py | 102 + .../pip/_vendor/colorama/ansitowin32.py | 258 + .../pip/_vendor/colorama/initialise.py | 80 + .../pip/_vendor/colorama/win32.py | 152 + .../pip/_vendor/colorama/winterm.py | 169 + .../pip/_vendor/distlib/__init__.py | 23 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 1022 bytes .../distlib/__pycache__/compat.cpython-38.pyc | Bin 0 -> 32188 bytes .../__pycache__/database.cpython-38.pyc | Bin 0 -> 42079 bytes .../distlib/__pycache__/index.cpython-38.pyc | Bin 0 -> 17375 bytes .../__pycache__/locators.cpython-38.pyc | Bin 0 -> 38377 bytes .../__pycache__/manifest.cpython-38.pyc | Bin 0 -> 10197 bytes .../__pycache__/markers.cpython-38.pyc | Bin 0 -> 4461 bytes .../__pycache__/metadata.cpython-38.pyc | Bin 0 -> 26369 bytes .../__pycache__/resources.cpython-38.pyc | Bin 0 -> 10972 bytes .../__pycache__/scripts.cpython-38.pyc | Bin 0 -> 10878 bytes .../distlib/__pycache__/util.cpython-38.pyc | Bin 0 -> 48125 bytes .../__pycache__/version.cpython-38.pyc | Bin 0 -> 20331 bytes .../distlib/__pycache__/wheel.cpython-38.pyc | Bin 0 -> 25749 bytes .../pip/_vendor/distlib/_backport/__init__.py | 6 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 447 bytes .../_backport/__pycache__/misc.cpython-38.pyc | Bin 0 -> 1058 bytes .../__pycache__/shutil.cpython-38.pyc | Bin 0 -> 21514 bytes .../__pycache__/sysconfig.cpython-38.pyc | Bin 0 -> 15878 bytes .../__pycache__/tarfile.cpython-38.pyc | Bin 0 -> 62707 bytes .../pip/_vendor/distlib/_backport/misc.py | 41 + .../pip/_vendor/distlib/_backport/shutil.py | 764 ++ .../_vendor/distlib/_backport/sysconfig.cfg | 84 + .../_vendor/distlib/_backport/sysconfig.py | 786 ++ .../pip/_vendor/distlib/_backport/tarfile.py | 2607 +++++ .../pip/_vendor/distlib/compat.py | 1120 +++ .../pip/_vendor/distlib/database.py | 1339 +++ .../pip/_vendor/distlib/index.py | 516 + .../pip/_vendor/distlib/locators.py | 1302 +++ .../pip/_vendor/distlib/manifest.py | 393 + .../pip/_vendor/distlib/markers.py | 131 + .../pip/_vendor/distlib/metadata.py | 1056 +++ .../pip/_vendor/distlib/resources.py | 355 + .../pip/_vendor/distlib/scripts.py | 419 + .../site-packages/pip/_vendor/distlib/t32.exe | Bin 0 -> 96768 bytes .../site-packages/pip/_vendor/distlib/t64.exe | Bin 0 -> 105984 bytes .../site-packages/pip/_vendor/distlib/util.py | 1761 ++++ .../pip/_vendor/distlib/version.py | 736 ++ .../site-packages/pip/_vendor/distlib/w32.exe | Bin 0 -> 90112 bytes .../site-packages/pip/_vendor/distlib/w64.exe | Bin 0 -> 99840 bytes .../pip/_vendor/distlib/wheel.py | 1018 ++ .../site-packages/pip/_vendor/distro.py | 1230 +++ .../pip/_vendor/html5lib/__init__.py | 35 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 1278 bytes .../__pycache__/_ihatexml.cpython-38.pyc | Bin 0 -> 13764 bytes .../__pycache__/_inputstream.cpython-38.pyc | Bin 0 -> 21837 bytes .../__pycache__/_tokenizer.cpython-38.pyc | Bin 0 -> 39866 bytes .../__pycache__/_utils.cpython-38.pyc | Bin 0 -> 4781 bytes .../__pycache__/constants.cpython-38.pyc | Bin 0 -> 66295 bytes .../__pycache__/html5parser.cpython-38.pyc | Bin 0 -> 91239 bytes .../__pycache__/serializer.cpython-38.pyc | Bin 0 -> 10789 bytes .../pip/_vendor/html5lib/_ihatexml.py | 289 + .../pip/_vendor/html5lib/_inputstream.py | 918 ++ .../pip/_vendor/html5lib/_tokenizer.py | 1735 ++++ .../pip/_vendor/html5lib/_trie/__init__.py | 5 + .../_trie/__pycache__/__init__.cpython-38.pyc | Bin 0 -> 316 bytes .../_trie/__pycache__/_base.cpython-38.pyc | Bin 0 -> 1568 bytes .../_trie/__pycache__/py.cpython-38.pyc | Bin 0 -> 2225 bytes .../pip/_vendor/html5lib/_trie/_base.py | 40 + .../pip/_vendor/html5lib/_trie/py.py | 67 + .../pip/_vendor/html5lib/_utils.py | 159 + .../pip/_vendor/html5lib/constants.py | 2946 ++++++ .../pip/_vendor/html5lib/filters/__init__.py | 0 .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 164 bytes .../alphabeticalattributes.cpython-38.pyc | Bin 0 -> 1286 bytes .../filters/__pycache__/base.cpython-38.pyc | Bin 0 -> 834 bytes .../inject_meta_charset.cpython-38.pyc | Bin 0 -> 1840 bytes .../filters/__pycache__/lint.cpython-38.pyc | Bin 0 -> 2598 bytes .../__pycache__/optionaltags.cpython-38.pyc | Bin 0 -> 2727 bytes .../__pycache__/sanitizer.cpython-38.pyc | Bin 0 -> 16873 bytes .../__pycache__/whitespace.cpython-38.pyc | Bin 0 -> 1332 bytes .../filters/alphabeticalattributes.py | 29 + .../pip/_vendor/html5lib/filters/base.py | 12 + .../html5lib/filters/inject_meta_charset.py | 73 + .../pip/_vendor/html5lib/filters/lint.py | 93 + .../_vendor/html5lib/filters/optionaltags.py | 207 + .../pip/_vendor/html5lib/filters/sanitizer.py | 916 ++ .../_vendor/html5lib/filters/whitespace.py | 38 + .../pip/_vendor/html5lib/html5parser.py | 2795 ++++++ .../pip/_vendor/html5lib/serializer.py | 409 + .../_vendor/html5lib/treeadapters/__init__.py | 30 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 903 bytes .../__pycache__/genshi.cpython-38.pyc | Bin 0 -> 1509 bytes .../__pycache__/sax.cpython-38.pyc | Bin 0 -> 1444 bytes .../_vendor/html5lib/treeadapters/genshi.py | 54 + .../pip/_vendor/html5lib/treeadapters/sax.py | 50 + .../_vendor/html5lib/treebuilders/__init__.py | 88 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 3288 bytes .../__pycache__/base.cpython-38.pyc | Bin 0 -> 11301 bytes .../__pycache__/dom.cpython-38.pyc | Bin 0 -> 9421 bytes .../__pycache__/etree.cpython-38.pyc | Bin 0 -> 11803 bytes .../__pycache__/etree_lxml.cpython-38.pyc | Bin 0 -> 12998 bytes .../pip/_vendor/html5lib/treebuilders/base.py | 417 + .../pip/_vendor/html5lib/treebuilders/dom.py | 239 + .../_vendor/html5lib/treebuilders/etree.py | 343 + .../html5lib/treebuilders/etree_lxml.py | 392 + .../_vendor/html5lib/treewalkers/__init__.py | 154 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 3974 bytes .../__pycache__/base.cpython-38.pyc | Bin 0 -> 6969 bytes .../__pycache__/dom.cpython-38.pyc | Bin 0 -> 1698 bytes .../__pycache__/etree.cpython-38.pyc | Bin 0 -> 3483 bytes .../__pycache__/etree_lxml.cpython-38.pyc | Bin 0 -> 6636 bytes .../__pycache__/genshi.cpython-38.pyc | Bin 0 -> 1856 bytes .../pip/_vendor/html5lib/treewalkers/base.py | 252 + .../pip/_vendor/html5lib/treewalkers/dom.py | 43 + .../pip/_vendor/html5lib/treewalkers/etree.py | 131 + .../html5lib/treewalkers/etree_lxml.py | 215 + .../_vendor/html5lib/treewalkers/genshi.py | 69 + .../pip/_vendor/idna/__init__.py | 2 + .../idna/__pycache__/__init__.cpython-38.pyc | Bin 0 -> 221 bytes .../idna/__pycache__/codec.cpython-38.pyc | Bin 0 -> 2755 bytes .../idna/__pycache__/compat.cpython-38.pyc | Bin 0 -> 593 bytes .../idna/__pycache__/core.cpython-38.pyc | Bin 0 -> 9069 bytes .../idna/__pycache__/idnadata.cpython-38.pyc | Bin 0 -> 22102 bytes .../idna/__pycache__/intranges.cpython-38.pyc | Bin 0 -> 1773 bytes .../__pycache__/package_data.cpython-38.pyc | Bin 0 -> 175 bytes .../idna/__pycache__/uts46data.cpython-38.pyc | Bin 0 -> 177422 bytes .../site-packages/pip/_vendor/idna/codec.py | 110 + .../site-packages/pip/_vendor/idna/compat.py | 12 + .../site-packages/pip/_vendor/idna/core.py | 396 + .../pip/_vendor/idna/idnadata.py | 2050 ++++ .../pip/_vendor/idna/intranges.py | 53 + .../pip/_vendor/idna/package_data.py | 2 + .../pip/_vendor/idna/uts46data.py | 8356 +++++++++++++++++ .../pip/_vendor/msgpack/__init__.py | 54 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 1368 bytes .../__pycache__/_version.cpython-38.pyc | Bin 0 -> 182 bytes .../__pycache__/exceptions.cpython-38.pyc | Bin 0 -> 1816 bytes .../msgpack/__pycache__/ext.cpython-38.pyc | Bin 0 -> 6248 bytes .../__pycache__/fallback.cpython-38.pyc | Bin 0 -> 26733 bytes .../pip/_vendor/msgpack/_version.py | 1 + .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 193 + .../pip/_vendor/msgpack/fallback.py | 1087 +++ .../pip/_vendor/packaging/__about__.py | 27 + .../pip/_vendor/packaging/__init__.py | 26 + .../__pycache__/__about__.cpython-38.pyc | Bin 0 -> 679 bytes .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 535 bytes .../__pycache__/_compat.cpython-38.pyc | Bin 0 -> 1107 bytes .../__pycache__/_structures.cpython-38.pyc | Bin 0 -> 2861 bytes .../__pycache__/_typing.cpython-38.pyc | Bin 0 -> 1464 bytes .../__pycache__/markers.cpython-38.pyc | Bin 0 -> 9263 bytes .../__pycache__/requirements.cpython-38.pyc | Bin 0 -> 4112 bytes .../__pycache__/specifiers.cpython-38.pyc | Bin 0 -> 20916 bytes .../packaging/__pycache__/tags.cpython-38.pyc | Bin 0 -> 18518 bytes .../__pycache__/utils.cpython-38.pyc | Bin 0 -> 3585 bytes .../__pycache__/version.cpython-38.pyc | Bin 0 -> 12657 bytes .../pip/_vendor/packaging/_compat.py | 38 + .../pip/_vendor/packaging/_structures.py | 86 + .../pip/_vendor/packaging/_typing.py | 48 + .../pip/_vendor/packaging/markers.py | 336 + .../pip/_vendor/packaging/requirements.py | 160 + .../pip/_vendor/packaging/specifiers.py | 864 ++ .../pip/_vendor/packaging/tags.py | 866 ++ .../pip/_vendor/packaging/utils.py | 138 + .../pip/_vendor/packaging/version.py | 556 ++ .../pip/_vendor/pep517/__init__.py | 6 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 277 bytes .../pep517/__pycache__/build.cpython-38.pyc | Bin 0 -> 3469 bytes .../pep517/__pycache__/check.cpython-38.pyc | Bin 0 -> 4885 bytes .../__pycache__/colorlog.cpython-38.pyc | Bin 0 -> 2916 bytes .../pep517/__pycache__/compat.cpython-38.pyc | Bin 0 -> 1013 bytes .../__pycache__/dirtools.cpython-38.pyc | Bin 0 -> 1295 bytes .../__pycache__/envbuild.cpython-38.pyc | Bin 0 -> 4410 bytes .../pep517/__pycache__/meta.cpython-38.pyc | Bin 0 -> 2822 bytes .../__pycache__/wrappers.cpython-38.pyc | Bin 0 -> 10383 bytes .../site-packages/pip/_vendor/pep517/build.py | 127 + .../site-packages/pip/_vendor/pep517/check.py | 206 + .../pip/_vendor/pep517/colorlog.py | 115 + .../pip/_vendor/pep517/compat.py | 34 + .../pip/_vendor/pep517/dirtools.py | 44 + .../pip/_vendor/pep517/envbuild.py | 167 + .../pip/_vendor/pep517/in_process/__init__.py | 17 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 881 bytes .../__pycache__/_in_process.cpython-38.pyc | Bin 0 -> 8120 bytes .../_vendor/pep517/in_process/_in_process.py | 280 + .../site-packages/pip/_vendor/pep517/meta.py | 92 + .../pip/_vendor/pep517/wrappers.py | 318 + .../pip/_vendor/pkg_resources/__init__.py | 3296 +++++++ .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 100314 bytes .../__pycache__/py31compat.cpython-38.pyc | Bin 0 -> 612 bytes .../pip/_vendor/pkg_resources/py31compat.py | 23 + .../pip/_vendor/progress/__init__.py | 177 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 5581 bytes .../progress/__pycache__/bar.cpython-38.pyc | Bin 0 -> 2605 bytes .../__pycache__/counter.cpython-38.pyc | Bin 0 -> 1437 bytes .../__pycache__/spinner.cpython-38.pyc | Bin 0 -> 1364 bytes .../site-packages/pip/_vendor/progress/bar.py | 91 + .../pip/_vendor/progress/counter.py | 41 + .../pip/_vendor/progress/spinner.py | 43 + .../site-packages/pip/_vendor/pyparsing.py | 7107 ++++++++++++++ .../pip/_vendor/requests/__init__.py | 142 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 3648 bytes .../__pycache__/__version__.cpython-38.pyc | Bin 0 -> 519 bytes .../_internal_utils.cpython-38.pyc | Bin 0 -> 1284 bytes .../__pycache__/adapters.cpython-38.pyc | Bin 0 -> 16947 bytes .../requests/__pycache__/api.cpython-38.pyc | Bin 0 -> 6699 bytes .../requests/__pycache__/auth.cpython-38.pyc | Bin 0 -> 8303 bytes .../requests/__pycache__/certs.cpython-38.pyc | Bin 0 -> 597 bytes .../__pycache__/compat.cpython-38.pyc | Bin 0 -> 1576 bytes .../__pycache__/cookies.cpython-38.pyc | Bin 0 -> 18798 bytes .../__pycache__/exceptions.cpython-38.pyc | Bin 0 -> 5205 bytes .../requests/__pycache__/help.cpython-38.pyc | Bin 0 -> 2694 bytes .../requests/__pycache__/hooks.cpython-38.pyc | Bin 0 -> 956 bytes .../__pycache__/models.cpython-38.pyc | Bin 0 -> 23983 bytes .../__pycache__/packages.cpython-38.pyc | Bin 0 -> 466 bytes .../__pycache__/sessions.cpython-38.pyc | Bin 0 -> 19886 bytes .../__pycache__/status_codes.cpython-38.pyc | Bin 0 -> 4211 bytes .../__pycache__/structures.cpython-38.pyc | Bin 0 -> 4424 bytes .../requests/__pycache__/utils.cpython-38.pyc | Bin 0 -> 22567 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 42 + .../pip/_vendor/requests/adapters.py | 533 ++ .../site-packages/pip/_vendor/requests/api.py | 161 + .../pip/_vendor/requests/auth.py | 305 + .../pip/_vendor/requests/certs.py | 18 + .../pip/_vendor/requests/compat.py | 76 + .../pip/_vendor/requests/cookies.py | 549 ++ .../pip/_vendor/requests/exceptions.py | 123 + .../pip/_vendor/requests/help.py | 119 + .../pip/_vendor/requests/hooks.py | 34 + .../pip/_vendor/requests/models.py | 956 ++ .../pip/_vendor/requests/packages.py | 16 + .../pip/_vendor/requests/sessions.py | 781 ++ .../pip/_vendor/requests/status_codes.py | 123 + .../pip/_vendor/requests/structures.py | 105 + .../pip/_vendor/requests/utils.py | 992 ++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 604 bytes .../__pycache__/providers.cpython-38.pyc | Bin 0 -> 6490 bytes .../__pycache__/reporters.cpython-38.pyc | Bin 0 -> 2266 bytes .../__pycache__/resolvers.cpython-38.pyc | Bin 0 -> 15203 bytes .../__pycache__/structs.cpython-38.pyc | Bin 0 -> 6912 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 165 bytes .../collections_abc.cpython-38.pyc | Bin 0 -> 341 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 124 + .../pip/_vendor/resolvelib/reporters.py | 37 + .../pip/_vendor/resolvelib/resolvers.py | 474 + .../pip/_vendor/resolvelib/structs.py | 153 + .../site-packages/pip/_vendor/six.py | 982 ++ .../pip/_vendor/tenacity/__init__.py | 523 ++ .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 14664 bytes .../__pycache__/_asyncio.cpython-38.pyc | Bin 0 -> 2157 bytes .../__pycache__/_utils.cpython-38.pyc | Bin 0 -> 3933 bytes .../tenacity/__pycache__/after.cpython-38.pyc | Bin 0 -> 942 bytes .../__pycache__/before.cpython-38.pyc | Bin 0 -> 838 bytes .../__pycache__/before_sleep.cpython-38.pyc | Bin 0 -> 1186 bytes .../__pycache__/compat.cpython-38.pyc | Bin 0 -> 922 bytes .../tenacity/__pycache__/nap.cpython-38.pyc | Bin 0 -> 991 bytes .../tenacity/__pycache__/retry.cpython-38.pyc | Bin 0 -> 7376 bytes .../tenacity/__pycache__/stop.cpython-38.pyc | Bin 0 -> 3760 bytes .../__pycache__/tornadoweb.cpython-38.pyc | Bin 0 -> 1300 bytes .../tenacity/__pycache__/wait.cpython-38.pyc | Bin 0 -> 7315 bytes .../pip/_vendor/tenacity/_asyncio.py | 81 + .../pip/_vendor/tenacity/_utils.py | 159 + .../pip/_vendor/tenacity/after.py | 40 + .../pip/_vendor/tenacity/before.py | 35 + .../pip/_vendor/tenacity/before_sleep.py | 51 + .../pip/_vendor/tenacity/compat.py | 23 + .../site-packages/pip/_vendor/tenacity/nap.py | 40 + .../pip/_vendor/tenacity/retry.py | 192 + .../pip/_vendor/tenacity/stop.py | 95 + .../pip/_vendor/tenacity/tornadoweb.py | 49 + .../pip/_vendor/tenacity/wait.py | 183 + .../pip/_vendor/toml/__init__.py | 25 + .../toml/__pycache__/__init__.cpython-38.pyc | Bin 0 -> 696 bytes .../toml/__pycache__/decoder.cpython-38.pyc | Bin 0 -> 23259 bytes .../toml/__pycache__/encoder.cpython-38.pyc | Bin 0 -> 9397 bytes .../toml/__pycache__/ordered.cpython-38.pyc | Bin 0 -> 935 bytes .../toml/__pycache__/tz.cpython-38.pyc | Bin 0 -> 1237 bytes .../site-packages/pip/_vendor/toml/decoder.py | 1057 +++ .../site-packages/pip/_vendor/toml/encoder.py | 304 + .../site-packages/pip/_vendor/toml/ordered.py | 15 + .../site-packages/pip/_vendor/toml/tz.py | 24 + .../pip/_vendor/urllib3/__init__.py | 85 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 2153 bytes .../__pycache__/_collections.cpython-38.pyc | Bin 0 -> 10666 bytes .../__pycache__/_version.cpython-38.pyc | Bin 0 -> 177 bytes .../__pycache__/connection.cpython-38.pyc | Bin 0 -> 13343 bytes .../__pycache__/connectionpool.cpython-38.pyc | Bin 0 -> 24418 bytes .../__pycache__/exceptions.cpython-38.pyc | Bin 0 -> 11610 bytes .../urllib3/__pycache__/fields.cpython-38.pyc | Bin 0 -> 8147 bytes .../__pycache__/filepost.cpython-38.pyc | Bin 0 -> 2734 bytes .../__pycache__/poolmanager.cpython-38.pyc | Bin 0 -> 15092 bytes .../__pycache__/request.cpython-38.pyc | Bin 0 -> 5590 bytes .../__pycache__/response.cpython-38.pyc | Bin 0 -> 20690 bytes .../pip/_vendor/urllib3/_collections.py | 337 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 539 ++ .../pip/_vendor/urllib3/connectionpool.py | 1067 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 163 bytes .../_appengine_environ.cpython-38.pyc | Bin 0 -> 1387 bytes .../__pycache__/appengine.cpython-38.pyc | Bin 0 -> 8236 bytes .../__pycache__/ntlmpool.cpython-38.pyc | Bin 0 -> 3244 bytes .../__pycache__/pyopenssl.cpython-38.pyc | Bin 0 -> 15499 bytes .../securetransport.cpython-38.pyc | Bin 0 -> 21540 bytes .../contrib/__pycache__/socks.cpython-38.pyc | Bin 0 -> 5601 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 180 bytes .../__pycache__/bindings.cpython-38.pyc | Bin 0 -> 10713 bytes .../__pycache__/low_level.cpython-38.pyc | Bin 0 -> 9068 bytes .../contrib/_securetransport/bindings.py | 519 + .../contrib/_securetransport/low_level.py | 396 + .../pip/_vendor/urllib3/contrib/appengine.py | 314 + .../pip/_vendor/urllib3/contrib/ntlmpool.py | 121 + .../pip/_vendor/urllib3/contrib/pyopenssl.py | 509 + .../urllib3/contrib/securetransport.py | 920 ++ .../pip/_vendor/urllib3/contrib/socks.py | 216 + .../pip/_vendor/urllib3/exceptions.py | 323 + .../pip/_vendor/urllib3/fields.py | 274 + .../pip/_vendor/urllib3/filepost.py | 98 + .../pip/_vendor/urllib3/packages/__init__.py | 5 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 277 bytes .../packages/__pycache__/six.cpython-38.pyc | Bin 0 -> 26489 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 174 bytes .../__pycache__/makefile.cpython-38.pyc | Bin 0 -> 1278 bytes .../urllib3/packages/backports/makefile.py | 51 + .../pip/_vendor/urllib3/packages/six.py | 1021 ++ .../packages/ssl_match_hostname/__init__.py | 22 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 518 bytes .../_implementation.cpython-38.pyc | Bin 0 -> 3275 bytes .../ssl_match_hostname/_implementation.py | 160 + .../pip/_vendor/urllib3/poolmanager.py | 536 ++ .../pip/_vendor/urllib3/request.py | 170 + .../pip/_vendor/urllib3/response.py | 821 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-38.pyc | Bin 0 -> 1073 bytes .../__pycache__/connection.cpython-38.pyc | Bin 0 -> 3433 bytes .../util/__pycache__/proxy.cpython-38.pyc | Bin 0 -> 1317 bytes .../util/__pycache__/queue.cpython-38.pyc | Bin 0 -> 1028 bytes .../util/__pycache__/request.cpython-38.pyc | Bin 0 -> 3422 bytes .../util/__pycache__/response.cpython-38.pyc | Bin 0 -> 2321 bytes .../util/__pycache__/retry.cpython-38.pyc | Bin 0 -> 15946 bytes .../util/__pycache__/ssl_.cpython-38.pyc | Bin 0 -> 11052 bytes .../__pycache__/ssltransport.cpython-38.pyc | Bin 0 -> 7443 bytes .../util/__pycache__/timeout.cpython-38.pyc | Bin 0 -> 8915 bytes .../util/__pycache__/url.cpython-38.pyc | Bin 0 -> 10693 bytes .../util/__pycache__/wait.cpython-38.pyc | Bin 0 -> 3075 bytes .../pip/_vendor/urllib3/util/connection.py | 150 + .../pip/_vendor/urllib3/util/proxy.py | 56 + .../pip/_vendor/urllib3/util/queue.py | 22 + .../pip/_vendor/urllib3/util/request.py | 143 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 602 ++ .../pip/_vendor/urllib3/util/ssl_.py | 474 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 268 + .../pip/_vendor/urllib3/util/url.py | 430 + .../pip/_vendor/urllib3/util/wait.py | 153 + .../site-packages/pip/_vendor/vendor.txt | 22 + .../pip/_vendor/webencodings/__init__.py | 342 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 9703 bytes .../__pycache__/labels.cpython-38.pyc | Bin 0 -> 3801 bytes .../__pycache__/mklabels.cpython-38.pyc | Bin 0 -> 1897 bytes .../__pycache__/tests.cpython-38.pyc | Bin 0 -> 5063 bytes .../__pycache__/x_user_defined.cpython-38.pyc | Bin 0 -> 2631 bytes .../pip/_vendor/webencodings/labels.py | 231 + .../pip/_vendor/webencodings/mklabels.py | 59 + .../pip/_vendor/webencodings/tests.py | 153 + .../_vendor/webencodings/x_user_defined.py | 325 + venv/lib/python3.8/site-packages/pip/py.typed | 4 + .../site-packages/pkg_resources/__init__.py | 3288 +++++++ .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 100390 bytes .../pkg_resources/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 157 bytes .../__pycache__/appdirs.cpython-38.pyc | Bin 0 -> 20510 bytes .../__pycache__/pyparsing.cpython-38.pyc | Bin 0 -> 201634 bytes .../pkg_resources/_vendor/appdirs.py | 608 ++ .../_vendor/packaging/__about__.py | 27 + .../_vendor/packaging/__init__.py | 26 + .../__pycache__/__about__.cpython-38.pyc | Bin 0 -> 699 bytes .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 545 bytes .../__pycache__/_compat.cpython-38.pyc | Bin 0 -> 1117 bytes .../__pycache__/_structures.cpython-38.pyc | Bin 0 -> 2871 bytes .../__pycache__/_typing.cpython-38.pyc | Bin 0 -> 1462 bytes .../__pycache__/markers.cpython-38.pyc | Bin 0 -> 9306 bytes .../__pycache__/requirements.cpython-38.pyc | Bin 0 -> 4059 bytes .../__pycache__/specifiers.cpython-38.pyc | Bin 0 -> 20580 bytes .../packaging/__pycache__/tags.cpython-38.pyc | Bin 0 -> 17232 bytes .../__pycache__/utils.cpython-38.pyc | Bin 0 -> 1634 bytes .../__pycache__/version.cpython-38.pyc | Bin 0 -> 13309 bytes .../_vendor/packaging/_compat.py | 38 + .../_vendor/packaging/_structures.py | 86 + .../_vendor/packaging/_typing.py | 48 + .../_vendor/packaging/markers.py | 328 + .../_vendor/packaging/requirements.py | 145 + .../_vendor/packaging/specifiers.py | 863 ++ .../pkg_resources/_vendor/packaging/tags.py | 751 ++ .../pkg_resources/_vendor/packaging/utils.py | 65 + .../_vendor/packaging/version.py | 535 ++ .../pkg_resources/_vendor/pyparsing.py | 5742 +++++++++++ .../pkg_resources/extern/__init__.py | 73 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 2844 bytes .../__pycache__/setup.cpython-38.pyc | Bin 0 -> 285 bytes .../data/my-test-package-source/setup.py | 6 + .../setuptools-56.0.0.dist-info/INSTALLER | 1 + .../setuptools-56.0.0.dist-info/LICENSE | 19 + .../setuptools-56.0.0.dist-info/METADATA | 114 + .../setuptools-56.0.0.dist-info/RECORD | 294 + .../setuptools-56.0.0.dist-info/WHEEL | 5 + .../dependency_links.txt | 2 + .../entry_points.txt | 60 + .../setuptools-56.0.0.dist-info/top_level.txt | 3 + .../site-packages/setuptools/__init__.py | 241 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 8620 bytes .../_deprecation_warning.cpython-38.pyc | Bin 0 -> 516 bytes .../__pycache__/_imp.cpython-38.pyc | Bin 0 -> 2055 bytes .../__pycache__/archive_util.cpython-38.pyc | Bin 0 -> 5716 bytes .../__pycache__/build_meta.cpython-38.pyc | Bin 0 -> 8948 bytes .../__pycache__/config.cpython-38.pyc | Bin 0 -> 19762 bytes .../__pycache__/dep_util.cpython-38.pyc | Bin 0 -> 823 bytes .../__pycache__/depends.cpython-38.pyc | Bin 0 -> 5194 bytes .../__pycache__/dist.cpython-38.pyc | Bin 0 -> 33292 bytes .../__pycache__/errors.cpython-38.pyc | Bin 0 -> 816 bytes .../__pycache__/extension.cpython-38.pyc | Bin 0 -> 1906 bytes .../__pycache__/glob.cpython-38.pyc | Bin 0 -> 3670 bytes .../__pycache__/installer.cpython-38.pyc | Bin 0 -> 2751 bytes .../__pycache__/launch.cpython-38.pyc | Bin 0 -> 847 bytes .../__pycache__/lib2to3_ex.cpython-38.pyc | Bin 0 -> 2663 bytes .../__pycache__/monkey.cpython-38.pyc | Bin 0 -> 4585 bytes .../__pycache__/msvc.cpython-38.pyc | Bin 0 -> 43158 bytes .../__pycache__/namespaces.cpython-38.pyc | Bin 0 -> 3546 bytes .../__pycache__/package_index.cpython-38.pyc | Bin 0 -> 32954 bytes .../__pycache__/py34compat.cpython-38.pyc | Bin 0 -> 450 bytes .../__pycache__/sandbox.cpython-38.pyc | Bin 0 -> 15411 bytes .../__pycache__/ssl_support.cpython-38.pyc | Bin 0 -> 6838 bytes .../__pycache__/unicode_utils.cpython-38.pyc | Bin 0 -> 1086 bytes .../__pycache__/version.cpython-38.pyc | Bin 0 -> 292 bytes .../__pycache__/wheel.cpython-38.pyc | Bin 0 -> 7198 bytes .../windows_support.cpython-38.pyc | Bin 0 -> 989 bytes .../setuptools/_deprecation_warning.py | 7 + .../setuptools/_distutils/__init__.py | 15 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 424 bytes .../__pycache__/_msvccompiler.cpython-38.pyc | Bin 0 -> 13817 bytes .../__pycache__/archive_util.cpython-38.pyc | Bin 0 -> 6565 bytes .../__pycache__/bcppcompiler.cpython-38.pyc | Bin 0 -> 6490 bytes .../__pycache__/ccompiler.cpython-38.pyc | Bin 0 -> 33314 bytes .../_distutils/__pycache__/cmd.cpython-38.pyc | Bin 0 -> 13974 bytes .../__pycache__/config.cpython-38.pyc | Bin 0 -> 3535 bytes .../__pycache__/core.cpython-38.pyc | Bin 0 -> 6640 bytes .../cygwinccompiler.cpython-38.pyc | Bin 0 -> 8515 bytes .../__pycache__/debug.cpython-38.pyc | Bin 0 -> 220 bytes .../__pycache__/dep_util.cpython-38.pyc | Bin 0 -> 2740 bytes .../__pycache__/dir_util.cpython-38.pyc | Bin 0 -> 5849 bytes .../__pycache__/dist.cpython-38.pyc | Bin 0 -> 34553 bytes .../__pycache__/errors.cpython-38.pyc | Bin 0 -> 5276 bytes .../__pycache__/extension.cpython-38.pyc | Bin 0 -> 6949 bytes .../__pycache__/fancy_getopt.cpython-38.pyc | Bin 0 -> 10682 bytes .../__pycache__/file_util.cpython-38.pyc | Bin 0 -> 5959 bytes .../__pycache__/filelist.cpython-38.pyc | Bin 0 -> 9893 bytes .../_distutils/__pycache__/log.cpython-38.pyc | Bin 0 -> 2341 bytes .../__pycache__/msvc9compiler.cpython-38.pyc | Bin 0 -> 17503 bytes .../__pycache__/msvccompiler.cpython-38.pyc | Bin 0 -> 14714 bytes .../__pycache__/py35compat.cpython-38.pyc | Bin 0 -> 596 bytes .../__pycache__/py38compat.cpython-38.pyc | Bin 0 -> 393 bytes .../__pycache__/spawn.cpython-38.pyc | Bin 0 -> 3400 bytes .../__pycache__/sysconfig.cpython-38.pyc | Bin 0 -> 12405 bytes .../__pycache__/text_file.cpython-38.pyc | Bin 0 -> 8465 bytes .../__pycache__/unixccompiler.cpython-38.pyc | Bin 0 -> 6644 bytes .../__pycache__/util.cpython-38.pyc | Bin 0 -> 15653 bytes .../__pycache__/version.cpython-38.pyc | Bin 0 -> 7387 bytes .../versionpredicate.cpython-38.pyc | Bin 0 -> 5161 bytes .../setuptools/_distutils/_msvccompiler.py | 561 ++ .../setuptools/_distutils/archive_util.py | 256 + .../setuptools/_distutils/bcppcompiler.py | 393 + .../setuptools/_distutils/ccompiler.py | 1116 +++ .../setuptools/_distutils/cmd.py | 403 + .../setuptools/_distutils/command/__init__.py | 31 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 569 bytes .../command/__pycache__/bdist.cpython-38.pyc | Bin 0 -> 3692 bytes .../__pycache__/bdist_dumb.cpython-38.pyc | Bin 0 -> 3618 bytes .../__pycache__/bdist_msi.cpython-38.pyc | Bin 0 -> 19999 bytes .../__pycache__/bdist_rpm.cpython-38.pyc | Bin 0 -> 12403 bytes .../__pycache__/bdist_wininst.cpython-38.pyc | Bin 0 -> 8493 bytes .../command/__pycache__/build.cpython-38.pyc | Bin 0 -> 3907 bytes .../__pycache__/build_clib.cpython-38.pyc | Bin 0 -> 4840 bytes .../__pycache__/build_ext.cpython-38.pyc | Bin 0 -> 16229 bytes .../__pycache__/build_py.cpython-38.pyc | Bin 0 -> 10506 bytes .../__pycache__/build_scripts.cpython-38.pyc | Bin 0 -> 4350 bytes .../command/__pycache__/check.cpython-38.pyc | Bin 0 -> 4945 bytes .../command/__pycache__/clean.cpython-38.pyc | Bin 0 -> 2126 bytes .../command/__pycache__/config.cpython-38.pyc | Bin 0 -> 10253 bytes .../__pycache__/install.cpython-38.pyc | Bin 0 -> 13914 bytes .../__pycache__/install_data.cpython-38.pyc | Bin 0 -> 2315 bytes .../install_egg_info.cpython-38.pyc | Bin 0 -> 3022 bytes .../install_headers.cpython-38.pyc | Bin 0 -> 1734 bytes .../__pycache__/install_lib.cpython-38.pyc | Bin 0 -> 5139 bytes .../install_scripts.cpython-38.pyc | Bin 0 -> 2167 bytes .../__pycache__/py37compat.cpython-38.pyc | Bin 0 -> 996 bytes .../__pycache__/register.cpython-38.pyc | Bin 0 -> 8481 bytes .../command/__pycache__/sdist.cpython-38.pyc | Bin 0 -> 14542 bytes .../command/__pycache__/upload.cpython-38.pyc | Bin 0 -> 5195 bytes .../setuptools/_distutils/command/bdist.py | 143 + .../_distutils/command/bdist_dumb.py | 123 + .../_distutils/command/bdist_msi.py | 749 ++ .../_distutils/command/bdist_rpm.py | 579 ++ .../_distutils/command/bdist_wininst.py | 377 + .../setuptools/_distutils/command/build.py | 157 + .../_distutils/command/build_clib.py | 209 + .../_distutils/command/build_ext.py | 755 ++ .../setuptools/_distutils/command/build_py.py | 416 + .../_distutils/command/build_scripts.py | 160 + .../setuptools/_distutils/command/check.py | 148 + .../setuptools/_distutils/command/clean.py | 76 + .../setuptools/_distutils/command/config.py | 344 + .../setuptools/_distutils/command/install.py | 677 ++ .../_distutils/command/install_data.py | 79 + .../_distutils/command/install_egg_info.py | 77 + .../_distutils/command/install_headers.py | 47 + .../_distutils/command/install_lib.py | 217 + .../_distutils/command/install_scripts.py | 60 + .../_distutils/command/py37compat.py | 30 + .../setuptools/_distutils/command/register.py | 304 + .../setuptools/_distutils/command/sdist.py | 494 + .../setuptools/_distutils/command/upload.py | 214 + .../setuptools/_distutils/config.py | 130 + .../setuptools/_distutils/core.py | 234 + .../setuptools/_distutils/cygwinccompiler.py | 403 + .../setuptools/_distutils/debug.py | 5 + .../setuptools/_distutils/dep_util.py | 92 + .../setuptools/_distutils/dir_util.py | 210 + .../setuptools/_distutils/dist.py | 1257 +++ .../setuptools/_distutils/errors.py | 97 + .../setuptools/_distutils/extension.py | 240 + .../setuptools/_distutils/fancy_getopt.py | 457 + .../setuptools/_distutils/file_util.py | 238 + .../setuptools/_distutils/filelist.py | 327 + .../setuptools/_distutils/log.py | 77 + .../setuptools/_distutils/msvc9compiler.py | 788 ++ .../setuptools/_distutils/msvccompiler.py | 643 ++ .../setuptools/_distutils/py35compat.py | 19 + .../setuptools/_distutils/py38compat.py | 7 + .../setuptools/_distutils/spawn.py | 125 + .../setuptools/_distutils/sysconfig.py | 573 ++ .../setuptools/_distutils/text_file.py | 286 + .../setuptools/_distutils/unixccompiler.py | 328 + .../setuptools/_distutils/util.py | 561 ++ .../setuptools/_distutils/version.py | 347 + .../setuptools/_distutils/versionpredicate.py | 166 + .../site-packages/setuptools/_imp.py | 82 + .../setuptools/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 154 bytes .../__pycache__/ordered_set.cpython-38.pyc | Bin 0 -> 16412 bytes .../__pycache__/pyparsing.cpython-38.pyc | Bin 0 -> 201631 bytes .../setuptools/_vendor/ordered_set.py | 488 + .../setuptools/_vendor/packaging/__about__.py | 27 + .../setuptools/_vendor/packaging/__init__.py | 26 + .../__pycache__/__about__.cpython-38.pyc | Bin 0 -> 696 bytes .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 542 bytes .../__pycache__/_compat.cpython-38.pyc | Bin 0 -> 1114 bytes .../__pycache__/_structures.cpython-38.pyc | Bin 0 -> 2868 bytes .../__pycache__/_typing.cpython-38.pyc | Bin 0 -> 1459 bytes .../__pycache__/markers.cpython-38.pyc | Bin 0 -> 9300 bytes .../__pycache__/requirements.cpython-38.pyc | Bin 0 -> 4053 bytes .../__pycache__/specifiers.cpython-38.pyc | Bin 0 -> 20577 bytes .../packaging/__pycache__/tags.cpython-38.pyc | Bin 0 -> 17229 bytes .../__pycache__/utils.cpython-38.pyc | Bin 0 -> 1631 bytes .../__pycache__/version.cpython-38.pyc | Bin 0 -> 13306 bytes .../setuptools/_vendor/packaging/_compat.py | 38 + .../_vendor/packaging/_structures.py | 86 + .../setuptools/_vendor/packaging/_typing.py | 48 + .../setuptools/_vendor/packaging/markers.py | 328 + .../_vendor/packaging/requirements.py | 145 + .../_vendor/packaging/specifiers.py | 863 ++ .../setuptools/_vendor/packaging/tags.py | 751 ++ .../setuptools/_vendor/packaging/utils.py | 65 + .../setuptools/_vendor/packaging/version.py | 535 ++ .../setuptools/_vendor/pyparsing.py | 5742 +++++++++++ .../site-packages/setuptools/archive_util.py | 205 + .../site-packages/setuptools/build_meta.py | 281 + .../site-packages/setuptools/cli-32.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/cli-64.exe | Bin 0 -> 74752 bytes .../site-packages/setuptools/cli.exe | Bin 0 -> 65536 bytes .../setuptools/command/__init__.py | 17 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 693 bytes .../command/__pycache__/alias.cpython-38.pyc | Bin 0 -> 2337 bytes .../__pycache__/bdist_egg.cpython-38.pyc | Bin 0 -> 13003 bytes .../__pycache__/bdist_rpm.cpython-38.pyc | Bin 0 -> 1323 bytes .../__pycache__/build_clib.cpython-38.pyc | Bin 0 -> 2434 bytes .../__pycache__/build_ext.cpython-38.pyc | Bin 0 -> 9771 bytes .../__pycache__/build_py.cpython-38.pyc | Bin 0 -> 8644 bytes .../__pycache__/develop.cpython-38.pyc | Bin 0 -> 6386 bytes .../__pycache__/dist_info.cpython-38.pyc | Bin 0 -> 1361 bytes .../__pycache__/easy_install.cpython-38.pyc | Bin 0 -> 63221 bytes .../__pycache__/egg_info.cpython-38.pyc | Bin 0 -> 21661 bytes .../__pycache__/install.cpython-38.pyc | Bin 0 -> 4016 bytes .../install_egg_info.cpython-38.pyc | Bin 0 -> 2403 bytes .../__pycache__/install_lib.cpython-38.pyc | Bin 0 -> 4130 bytes .../install_scripts.cpython-38.pyc | Bin 0 -> 2394 bytes .../__pycache__/py36compat.cpython-38.pyc | Bin 0 -> 4555 bytes .../__pycache__/register.cpython-38.pyc | Bin 0 -> 811 bytes .../command/__pycache__/rotate.cpython-38.pyc | Bin 0 -> 2480 bytes .../__pycache__/saveopts.cpython-38.pyc | Bin 0 -> 889 bytes .../command/__pycache__/sdist.cpython-38.pyc | Bin 0 -> 7549 bytes .../command/__pycache__/setopt.cpython-38.pyc | Bin 0 -> 4497 bytes .../command/__pycache__/test.cpython-38.pyc | Bin 0 -> 8302 bytes .../command/__pycache__/upload.cpython-38.pyc | Bin 0 -> 784 bytes .../__pycache__/upload_docs.cpython-38.pyc | Bin 0 -> 6091 bytes .../site-packages/setuptools/command/alias.py | 78 + .../setuptools/command/bdist_egg.py | 456 + .../setuptools/command/bdist_rpm.py | 31 + .../setuptools/command/build_clib.py | 101 + .../setuptools/command/build_ext.py | 322 + .../setuptools/command/build_py.py | 270 + .../setuptools/command/develop.py | 216 + .../setuptools/command/dist_info.py | 36 + .../setuptools/command/easy_install.py | 2290 +++++ .../setuptools/command/egg_info.py | 727 ++ .../setuptools/command/install.py | 125 + .../setuptools/command/install_egg_info.py | 62 + .../setuptools/command/install_lib.py | 122 + .../setuptools/command/install_scripts.py | 69 + .../setuptools/command/launcher manifest.xml | 15 + .../setuptools/command/py36compat.py | 134 + .../setuptools/command/register.py | 18 + .../setuptools/command/rotate.py | 64 + .../setuptools/command/saveopts.py | 22 + .../site-packages/setuptools/command/sdist.py | 235 + .../setuptools/command/setopt.py | 148 + .../site-packages/setuptools/command/test.py | 274 + .../setuptools/command/upload.py | 17 + .../setuptools/command/upload_docs.py | 202 + .../site-packages/setuptools/config.py | 710 ++ .../site-packages/setuptools/dep_util.py | 25 + .../site-packages/setuptools/depends.py | 175 + .../site-packages/setuptools/dist.py | 1057 +++ .../site-packages/setuptools/errors.py | 16 + .../site-packages/setuptools/extension.py | 55 + .../setuptools/extern/__init__.py | 73 + .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 2867 bytes .../site-packages/setuptools/glob.py | 167 + .../site-packages/setuptools/gui-32.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/gui-64.exe | Bin 0 -> 75264 bytes .../site-packages/setuptools/gui.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/installer.py | 97 + .../site-packages/setuptools/launch.py | 36 + .../site-packages/setuptools/lib2to3_ex.py | 68 + .../site-packages/setuptools/monkey.py | 177 + .../site-packages/setuptools/msvc.py | 1826 ++++ .../site-packages/setuptools/namespaces.py | 107 + .../site-packages/setuptools/package_index.py | 1145 +++ .../site-packages/setuptools/py34compat.py | 13 + .../site-packages/setuptools/sandbox.py | 496 + .../setuptools/script (dev).tmpl | 6 + .../site-packages/setuptools/script.tmpl | 3 + .../site-packages/setuptools/ssl_support.py | 266 + .../site-packages/setuptools/unicode_utils.py | 42 + .../site-packages/setuptools/version.py | 6 + .../site-packages/setuptools/wheel.py | 213 + .../setuptools/windows_support.py | 29 + venv/lib64 | 1 + venv/pyvenv.cfg | 3 + 1108 files changed, 205797 insertions(+), 62 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/python-small-examples.iml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 venv/bin/Activate.ps1 create mode 100644 venv/bin/activate create mode 100644 venv/bin/activate.csh create mode 100644 venv/bin/activate.fish create mode 100755 venv/bin/pip create mode 100755 venv/bin/pip3 create mode 100755 venv/bin/pip3.8 create mode 120000 venv/bin/python create mode 120000 venv/bin/python3 create mode 120000 venv/bin/python3.8 create mode 100644 venv/lib/python3.8/site-packages/_distutils_hack/__init__.py create mode 100644 venv/lib/python3.8/site-packages/_distutils_hack/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/_distutils_hack/__pycache__/override.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/_distutils_hack/override.py create mode 100644 venv/lib/python3.8/site-packages/distutils-precedence.pth create mode 100644 venv/lib/python3.8/site-packages/pip-21.1.dist-info/INSTALLER create mode 100644 venv/lib/python3.8/site-packages/pip-21.1.dist-info/LICENSE.txt create mode 100644 venv/lib/python3.8/site-packages/pip-21.1.dist-info/METADATA create mode 100644 venv/lib/python3.8/site-packages/pip-21.1.dist-info/RECORD create mode 100644 venv/lib/python3.8/site-packages/pip-21.1.dist-info/WHEEL create mode 100644 venv/lib/python3.8/site-packages/pip-21.1.dist-info/entry_points.txt create mode 100644 venv/lib/python3.8/site-packages/pip-21.1.dist-info/top_level.txt create mode 100644 venv/lib/python3.8/site-packages/pip/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/__main__.py create mode 100644 venv/lib/python3.8/site-packages/pip/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/__pycache__/__main__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/__pycache__/build_env.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/__pycache__/cache.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/__pycache__/configuration.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/__pycache__/exceptions.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/__pycache__/main.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/__pycache__/pyproject.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/build_env.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cache.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/main.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/parser.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/base_command.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/command_context.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/main.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/main_parser.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/parser.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/req_command.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/spinners.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/cli/status_codes.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/cache.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/check.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/completion.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/debug.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/download.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/hash.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/help.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/install.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/list.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/search.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/show.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/cache.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/check.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/completion.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/configuration.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/debug.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/download.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/freeze.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/hash.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/help.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/install.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/list.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/search.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/show.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/uninstall.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/commands/wheel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/configuration.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/distributions/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/base.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/distributions/base.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/distributions/installed.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/distributions/sdist.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/distributions/wheel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/exceptions.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/index/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/index/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/index/__pycache__/collector.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/index/__pycache__/sources.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/index/collector.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/index/package_finder.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/index/sources.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/locations/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/locations/__pycache__/base.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/locations/_distutils.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/locations/base.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/main.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/metadata/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/metadata/__pycache__/base.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/metadata/base.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/candidate.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/format_control.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/index.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/link.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/scheme.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/target_python.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/wheel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/candidate.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/direct_url.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/format_control.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/index.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/link.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/scheme.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/search_scope.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/target_python.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/models/wheel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/auth.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/cache.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/download.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/session.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/utils.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/auth.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/cache.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/download.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/session.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/utils.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/__pycache__/check.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/check.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/freeze.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/install/legacy.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/operations/prepare.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/pyproject.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/req/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/constructors.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_file.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_install.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_set.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/req/constructors.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/req/req_file.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/req/req_install.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/req/req_set.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/req/req_tracker.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/__pycache__/base.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/base.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/self_outdated_check.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/logging.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/misc.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/models.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/parallel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/pkg_resources.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/urls.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/appdirs.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/compat.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/datetime.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/deprecation.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/distutils_args.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/encoding.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/filesystem.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/filetypes.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/glibc.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/hashes.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/inject_securetransport.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/logging.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/misc.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/models.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/packaging.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/parallel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/pkg_resources.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/subprocess.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/unpacking.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/urls.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/utils/wheel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/vcs/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/git.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/vcs/git.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/vcs/subversion.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 venv/lib/python3.8/site-packages/pip/_internal/wheel_builder.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/__pycache__/appdirs.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/__pycache__/distro.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/__pycache__/six.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/appdirs.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/compat.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/certifi/core.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/big5freq.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/big5prober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/chardistribution.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/charsetgroupprober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/charsetprober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/chardetect.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/codingstatemachine.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/compat.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/cp949prober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/enums.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/escprober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/escsm.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/eucjpprober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/euckrfreq.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/euckrprober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/euctwfreq.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/euctwprober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312freq.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312prober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/hebrewprober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/jisfreq.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/jpcntx.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/langbulgarianmodel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/langgreekmodel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/langhebrewmodel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/langhungarianmodel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/langrussianmodel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/langthaimodel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/langturkishmodel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/latin1prober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcharsetprober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcsgroupprober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcssm.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/metadata/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/metadata/languages.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/sbcharsetprober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/sbcsgroupprober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/sjisprober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/universaldetector.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/utf8prober.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/chardet/version.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/colorama/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/colorama/ansi.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/colorama/ansitowin32.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/colorama/initialise.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/colorama/win32.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/colorama/winterm.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/misc.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/shutil.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/tarfile.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/compat.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/database.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/index.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/locators.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/markers.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/resources.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/t32.exe create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/t64.exe create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/util.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/version.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/w32.exe create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/w64.exe create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/distro.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_ihatexml.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_inputstream.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_tokenizer.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/_base.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/py.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_utils.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/constants.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/base.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/lint.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/optionaltags.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/sanitizer.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/whitespace.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/html5parser.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/serializer.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/sax.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/base.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/dom.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/base.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/dom.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/core.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/codec.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/compat.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/core.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/intranges.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/package_data.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/msgpack/_version.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/__about__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/_typing.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/_compat.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/_typing.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/markers.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/tags.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/utils.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/packaging/version.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/build.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/check.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/colorlog.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/compat.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/dirtools.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/envbuild.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/in_process/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/in_process/_in_process.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/meta.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pep517/wrappers.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pkg_resources/py31compat.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/progress/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/progress/bar.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/progress/counter.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/progress/spinner.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/pyparsing.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/api.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/help.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/models.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/__version__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/adapters.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/api.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/auth.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/certs.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/compat.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/cookies.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/help.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/hooks.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/models.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/packages.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/sessions.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/structures.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/requests/utils.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/six.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/__pycache__/compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/_asyncio.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/_utils.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/after.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/before.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/before_sleep.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/compat.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/nap.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/retry.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/stop.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/tornadoweb.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/tenacity/wait.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/toml/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/toml/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/toml/__pycache__/decoder.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/toml/__pycache__/encoder.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/toml/__pycache__/ordered.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/toml/__pycache__/tz.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/toml/decoder.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/toml/encoder.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/toml/ordered.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/toml/tz.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/request.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/response.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/vendor.txt create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/webencodings/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/webencodings/labels.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/webencodings/mklabels.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/webencodings/tests.py create mode 100644 venv/lib/python3.8/site-packages/pip/_vendor/webencodings/x_user_defined.py create mode 100644 venv/lib/python3.8/site-packages/pip/py.typed create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/appdirs.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__about__.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__pycache__/_typing.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_compat.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_structures.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_typing.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/markers.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/requirements.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/specifiers.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/tags.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/utils.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/version.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/_vendor/pyparsing.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/extern/__init__.py create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py create mode 100644 venv/lib/python3.8/site-packages/setuptools-56.0.0.dist-info/INSTALLER create mode 100644 venv/lib/python3.8/site-packages/setuptools-56.0.0.dist-info/LICENSE create mode 100644 venv/lib/python3.8/site-packages/setuptools-56.0.0.dist-info/METADATA create mode 100644 venv/lib/python3.8/site-packages/setuptools-56.0.0.dist-info/RECORD create mode 100644 venv/lib/python3.8/site-packages/setuptools-56.0.0.dist-info/WHEEL create mode 100644 venv/lib/python3.8/site-packages/setuptools-56.0.0.dist-info/dependency_links.txt create mode 100644 venv/lib/python3.8/site-packages/setuptools-56.0.0.dist-info/entry_points.txt create mode 100644 venv/lib/python3.8/site-packages/setuptools-56.0.0.dist-info/top_level.txt create mode 100644 venv/lib/python3.8/site-packages/setuptools/__init__.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/_imp.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/archive_util.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/build_meta.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/config.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/dep_util.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/depends.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/dist.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/errors.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/extension.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/glob.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/installer.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/launch.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/monkey.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/msvc.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/namespaces.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/package_index.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/py34compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/sandbox.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/ssl_support.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/unicode_utils.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/version.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/wheel.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/__pycache__/windows_support.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_deprecation_warning.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__init__.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/config.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/core.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/debug.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/dist.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/errors.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/extension.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/log.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/py35compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/util.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/version.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/_msvccompiler.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/archive_util.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/bcppcompiler.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/ccompiler.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/cmd.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__init__.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_dumb.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_msi.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_rpm.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_wininst.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/build.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_clib.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_ext.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_py.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_scripts.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/check.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/clean.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/config.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/install.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_data.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_egg_info.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_headers.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_lib.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_scripts.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/py37compat.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/register.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/sdist.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/command/upload.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/config.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/core.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/cygwinccompiler.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/debug.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/dep_util.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/dir_util.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/dist.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/errors.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/extension.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/fancy_getopt.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/file_util.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/filelist.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/log.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/msvc9compiler.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/msvccompiler.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/py35compat.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/py38compat.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/spawn.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/sysconfig.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/text_file.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/unixccompiler.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/util.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/version.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_distutils/versionpredicate.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_imp.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/__init__.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/ordered_set.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__about__.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__init__.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__pycache__/_typing.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/_compat.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/_structures.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/_typing.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/markers.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/requirements.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/specifiers.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/tags.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/utils.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/version.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/_vendor/pyparsing.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/archive_util.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/build_meta.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/cli-32.exe create mode 100644 venv/lib/python3.8/site-packages/setuptools/cli-64.exe create mode 100644 venv/lib/python3.8/site-packages/setuptools/cli.exe create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__init__.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/alias.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/build_clib.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/build_ext.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/build_py.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/develop.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/dist_info.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/easy_install.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/egg_info.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/install.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/install_lib.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/install_scripts.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/py36compat.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/register.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/rotate.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/saveopts.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/sdist.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/setopt.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/test.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/upload.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/__pycache__/upload_docs.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/alias.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/bdist_egg.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/bdist_rpm.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/build_clib.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/build_ext.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/build_py.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/develop.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/dist_info.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/easy_install.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/egg_info.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/install.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/install_egg_info.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/install_lib.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/install_scripts.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/launcher manifest.xml create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/py36compat.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/register.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/rotate.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/saveopts.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/sdist.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/setopt.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/test.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/upload.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/command/upload_docs.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/config.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/dep_util.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/depends.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/dist.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/errors.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/extension.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/extern/__init__.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/extern/__pycache__/__init__.cpython-38.pyc create mode 100644 venv/lib/python3.8/site-packages/setuptools/glob.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/gui-32.exe create mode 100644 venv/lib/python3.8/site-packages/setuptools/gui-64.exe create mode 100644 venv/lib/python3.8/site-packages/setuptools/gui.exe create mode 100644 venv/lib/python3.8/site-packages/setuptools/installer.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/launch.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/lib2to3_ex.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/monkey.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/msvc.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/namespaces.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/package_index.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/py34compat.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/sandbox.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/script (dev).tmpl create mode 100644 venv/lib/python3.8/site-packages/setuptools/script.tmpl create mode 100644 venv/lib/python3.8/site-packages/setuptools/ssl_support.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/unicode_utils.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/version.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/wheel.py create mode 100644 venv/lib/python3.8/site-packages/setuptools/windows_support.py create mode 120000 venv/lib64 create mode 100644 venv/pyvenv.cfg diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 00000000..67240d70 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,60 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 00000000..105ce2da --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..6904bdce --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..869eee4f --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/python-small-examples.iml b/.idea/python-small-examples.iml new file mode 100644 index 00000000..74d515a0 --- /dev/null +++ b/.idea/python-small-examples.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..94a25f7f --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 00000000..4d2680a4 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + 1619363358717 + + + + \ No newline at end of file diff --git a/README.md b/README.md index 6cc4c4cf..141b5f8b 100644 --- a/README.md +++ b/README.md @@ -33,85 +33,258 @@ 允许按照要求转载,但禁止用于任何商用目的。 -## 进行中Python小项目 -上下文关键字(KWIC, Key Word In Context)是最常见的多行协调显示格式。 -此小项目描述:输入一系列句子,给定一个给定单词,每个句子中至少会出现一次给定单词。目标输出,给定单词按照KWIC显示,KWIC显示的基本要求:待查询单词居中,前面`pre`序列右对齐,后面`post`序列左对齐,待查询单词前和后长度相等,若输入句子无法满足要求,用空格填充。 -输入参数:输入句子sentences, 待查询单词selword, 滑动窗口长度`window_len` +## Python 原创教程 +这是经过很久打磨的一个Python教程,全部是个人原创,已首发在公众号,并且托管在我的[个人网站](http://www.zglg.work/python-level/)。想系统入门Python的欢迎学习: -举例,输入如下六个句子,给定单词`secure`,输出如下字符串: +[Python进阶完整教程](http://www.zglg.work/python-level/) -```python - pre keyword post +![](./img/大纲.png) - welfare , and secure the blessings of - nations , and secured immortal glory with - , and shall secure to you the - cherished . To secure us against these - defense as to secure our cities and - I can to secure economy and fidelity -``` +个人原创并开源的 Python 20个专题教程,欢迎学习和收藏。 -请补充实现下面函数: +### 1 前言 -```python -def kwic(sentences: List[str], selword: str, window_len: int) -> str: - """ - :type: sentences: input sentences - :type: selword: selected word - :type: window_len: window length - """ -``` +Python可以应用在众多的领域中,数据分析、组件集成、网络服务、图像处理、数值计算和科学计算等领域...... -更多KWIC显示参考如下: +点解下面链接学习: -http://dep.chs.nihon-u.ac.jp/english_lang/tukamoto/kwic_e.html +[Python前言](http://zglg.work/Python-20-topics/intro-python/) +[Google Python代码风格指南](http://zglg.work/Python-20-topics/google-python-coding-style/) +------ +### 2 Python数字 -## Python 原创教程 -这是经过很久打磨的一个Python教程,全部是个人原创,已首发在公众号,并且托管在我的[个人网站](http://www.zglg.work/python-level/)。想系统入门Python的欢迎学习: +Python关于数字的20个操作 -[Python进阶完整教程](http://www.zglg.work/python-level/) +[Python数字](http://zglg.work/Python-20-topics/python-number/) -![](./img/大纲.png) +[Python正则之提取正整数和大于0浮点数](http://zglg.work/python-level/python-re-integer-float.md) + +------ + +### 3 Python字符串 + +Python字符串专题总结 + +[Python字符串](http://zglg.work/Python-20-topics/python-string/) + +[CSV读写乱码问题](http://zglg.work/Python-20-topics/csv-rw-coding-issue/) + +[Unicode标准化](http://zglg.work/Python-20-topics/unicode-standard/) + +[Unicode, UTF-8, ASCII](http://zglg.work/Python-20-topics/unicode-utf-8/) + +[Python动态生成变量](http://zglg.work/Python-20-topics/dynamic_variable/) + +[Python字符串对齐](http://zglg.work/Python-20-topics/python-string-align/) + +[Python小项目1:文本句子关键词的KWIC显示](http://zglg.work/Python-20-topics/python-project1-kwic/) + +------ + +### 4 Python列表专题 + +[Python列表](http://zglg.work/Python-20-topics/python-list/) + +列表是一个容器,使用一对中括号`[]`创建一个列表。 + +一般数组内的元素要求同一类型,但是列表内可含有各种不同类型,包括再嵌套列表。 + +------ + +### 5 Python流程控制专题 + +[Python流程控制](http://zglg.work/Python-20-topics/python-control/) + +流程控制与代码的执行顺序息息相关,流程控制相关的关键字,如:`if`,`elif`,`for`,`while`,`break`,`continue`, `else`,`return`,`yield`,`pass`等。 + +本专题详细总结与流程控制相关的基础和进阶用法,大纲如下: + +- 1 if 用法 +- 2 for 用法 +- 3 while,break,continue +- 4 for 使用注意 +- 5 range 序列 +- 6 Python特色:循环与else +- 7 pass 与接口 +- 8 return 和 yield +- 9 短路原则 + +专题的开始,先总结与流程控制相关的基础用法。 + +------ + +### 6 Python编程习惯专题 + +[Python编程习惯专题](http://zglg.work/Python-20-topics/python-program-habit/) + +今天讨论 Python 编程风格,如何写出更加Pythonic的代码是本篇讨论的话题。 + +Python代码的编程习惯主要参考`PEP8`: + +https://www.python.org/dev/peps/pep-0008/ + +里面主要包括如每行代码长度不超过79,函数间空一行等。 + +其实这些格式化的东西,现有的工具能够辅助我们很快满足编程风格,如`flake8`等小插件。 + +所以,这篇专题总结不会过多去讲语法相关的格式化,更多精力放在对比分析上,告诉大家常用的代码书写习惯,哪些写法不够符合习惯等。 + +------ + +### 7 Python函数专题 + +[Python函数专题](http://zglg.work/Python-20-topics/python-functions/) + +可以看到函数主要组成部分: + +- 函数名:`foo` +- 函数形参:`nums` +- `:`: 函数体的控制字符,作用类似`Java`或`C++`的一对`{}` +- 缩进:一般为4个字符 +- `"""`:为函数添加注释 +- `return`: 函数返回值 + +以上函数求出列表`nums`中的所有偶数并返回,通过此函数了解Python函数的主要组成部分。 + +------ + +### 8 Python面向对象编程 + +[Python面向对象编程-上篇](http://zglg.work/Python-20-topics/python-oop-1/) + +[Python面向对象编程-下篇](http://zglg.work/Python-20-topics/python-oop-2/) + +面向对象程序设计思想,首先思考的不是程序执行流程,它的核心是抽象出一个对象,然后构思此对象包括的数据,以及操作数据的行为方法。 + +动物是自然界一个庞大的群体,以建模动物类为主要案例论述OOP编程。 + +------ + +### 9 Python十大数据结构使用专题 + +[Python十大数据结构使用专题](http://zglg.work/Python-20-topics/python-data-structure/) + +这个专题,尽量使用最精简的文字,借助典型案例盘点Python常用的数据结构。 + +如果你还处于Python入门阶段,通常只需掌握`list`、`tuple`、`set`、`dict`这类数据结构,做到灵活使用即可。 + +然而,随着学习的深入,平时遇到实际场景变复杂,很有必要去了解Python内置的更加强大的数据结构`deque`、`heapq`、`Counter`、`OrderedDict`、`defaultDict`、`ChainMap`,掌握它们,往往能让你少写一些代码且能更加高效的实现功能。 + +学习数据结构第一阶段:掌握它们的基本用法,使用它们解决一些基本问题; + +学习第二阶段:知道何种场景选用哪种最恰当的数据结构,去解决题问题; + +学习第三阶段:了解内置数据结构的背后源码实现,与《算法和数据结构》这门学问里的知识联系起来,打通任督二脉。 + +------ + +### 10 Python包和模块使用注意事项专题 -适合小白的 Python 系统入门课程 - -- [0 Python引言](http://www.zglg.work/Python-20-topics/intro-python/) -- [1 数字专题](http://www.zglg.work/Python-20-topics/python-number/) -- [2 字符串专题](http://www.zglg.work/?page_id=540) -- 3 列表专题 - - [3.1 列表基础](http://www.zglg.work/?page_id=563) - - [3.2 列表进阶](http://www.zglg.work/?page_id=575) -- 4 流程控制专题 - - [4.1 流程控制基础](http://www.zglg.work/?page_id=618) - - [4.2 流程控制进阶](http://www.zglg.work/?page_id=621) -- 5 编程风格 - - [5.1 基本编程习惯](http://www.zglg.work/?page_id=654) - - [5.2 EAFP 防御编程风格](http://www.zglg.work/?page_id=657) - - [5.3 LBYL 防御编程风格](http://www.zglg.work/?page_id=659) -- 6 Python 函数 - - [6.1 函数组成](http://www.zglg.work/?page_id=883) - - [6.2 引用传参](http://www.zglg.work/?page_id=885) - - [6.3 默认参数与关键字参数](http://www.zglg.work/?page_id=887) - - [6.4 可变参数](http://www.zglg.work/?page_id=889) - - [6.6 偏函数](http://www.zglg.work/?page_id=892) - - [6.7 递归函数](http://www.zglg.work/?page_id=894) - - [6.8 匿名函数](http://www.zglg.work/?page_id=896) - - [6.9 高阶函数](http://www.zglg.work/?page_id=898) - - [6.10 嵌套函数](http://www.zglg.work/?page_id=900) -- 7 面向对象编程基础 - - [7.1 类定义](http://www.zglg.work/?page_id=904) - - [7.2 对象或实例](http://www.zglg.work/?page_id=906) - - [7.3 打印对象](http://www.zglg.work/?page_id=908) - - [7.4 属性](http://www.zglg.work/?page_id=910) - - [7.5 private,protected,public](http://www.zglg.work/?page_id=913) - - [7.6 继承](http://www.zglg.work/?page_id=916) - - [7.7 多态](http://www.zglg.work/?page_id=918) +[Python包和模块使用注意事项专题](http://zglg.work/Python-20-topics/python-package-module-apply-items/) + +今天这个专题讨论Python代码工程化、结构化的方法。我们都会遇到这种情景:所有代码都堆积到一个模块里,导致代码越来越长,最后变得难以维护,很明显代码只写到一个py模块文件是不可取的。如何按照逻辑功能,将代码划分到不同模块,组织为一个更易读、更易维护的代码结构呢? 欢迎学习这个专题。 + +------ + +### 11 Python正则使用专题 + +[Python正则使用专题](http://zglg.work/Python-20-topics/python-re-apply/) + +今天这个专题讨论Python代码工程化、结构化的方法。我们都会遇到这种情景:所有代码都堆积到一个模块里,导致代码越来越长,最后变得难以维护,很明显代码只写到一个py模块文件是不可取的。如何按照逻辑功能,将代码划分到不同模块,组织为一个更易读、更易维护的代码结构呢? 欢迎学习这个专题。 + +------ + +### 12 Python时间专题 + +[Python时间专题](http://zglg.work/Python-20-topics/python-time/) + +`datetime`模块提供日期和时间各自分类的对象,日期处理相关的对象`date`,时间处理相关的`time`,日期和时间的完整结合对象`datetime`. + +日期和时间的加减操作得到`timedelta`对象. + +此时此刻 2020-8-28 21:45,这个时间是本地时间,很明显纽约时间肯定不是此值,柏林时间也肯定不是这个值。Python为支持不同地区的时间表达,特意抽象出`tzinfo`对象,并有一个默认实现对象. + +以上就是datetime模块的几个核心对象以及对应的现实意义。 + +------ + +### 13 Python装饰器专题 + +[Python装饰器专题](http://zglg.work/Python-20-topics/python-decorator-apply/) + +装饰器,几乎各大Python框架中都能看到它的身影,足以表明它的价值!它有动态改变函数或类功能的魔力! + +------ + +### 14 Python迭代器使用专题 + +[Python迭代器使用专题](http://zglg.work/Python-20-topics/python-iterator-apply/) + +迭代器,英文 Iterator,它首先是个对象,其次它是访问可迭代序列(Iterable)的一种方式。通常其从序列的第一个元素开始访问,直到所有的元素都被访问才结束。 + +迭代器又是一个特殊的对象,特殊在于它必须实现两个方法:`__iter__`和`__next__`. + +------ + +### 15 Python生成器使用专题 + +[Python生成器使用专题](http://zglg.work/Python-20-topics/python-generator-apply/) + +可迭代对象,英文`Iterable`,是一个形容词,这类对象和`Java`语言类似,都可看作是一类接口,抽象地描述事物具备怎样的能力。所以,`Iterable`自然具备可迭代能力。 + +------ + +### 16 Python 绘图入门专题 + +[Python 绘图入门专题](http://zglg.work/Python-20-topics/python-graph-intro/) + +作为绘图模块的第一篇,与大家一起过过最基本的Python绘图原理。 + +掌握基本的绘图原理很有必要,各个常用绘图库的原理基本都是相通的。所以了解它们后,使用库里的API函数将会更加得心应手,并且熟练其中一个库后,便能迅速上手其他的绘图库。 + +------ + +### 17 Matplotlib绘图基础专题 + +[Matplotlib绘图基础专题](http://zglg.work/Python-20-topics/python-matplotlib-1/) + +本文使用的 matplotlib 版本: 3.1.3 + +使用的 NumPy 版本: 1.18.1 + +顺便说一句,matplotlib 的近亲是 NumPy,对其的亲缘性最好,无缝支持。官档中说对Pandas数据结构某些情况支持可能有问题,这点需要注意,可能出现非预期的结果。 + +------ + +### 18 Matplotlib绘图进阶专题 + +[Matplotlib绘图进阶专题](http://zglg.work/Python-20-topics/python-matplotlib-2/) + +我们拿到一堆数据,首先面临的问题是该选用哪类图,去可视化它们,然后才是如何绘制它们。今天这篇文章,解决该选用哪类图去可视化的问题。 + +根据使用场景不同,参考前人总结,一般划分为6类图。 + +------ + +### 19 Matplotlib绘图案例 + +[Matplotlib绘图案例](http://zglg.work/Python-20-topics/python-matplotlib-examples/) + +------ + +### 20 NumPy图解入门 + +[NumPy图解入门](http://zglg.work/Python-20-topics/numpy-graph-intro/) + +结合图形可视化,加速理解NumPy中的这些基本运算,如两个一维数组相加的可视化: + +![img](http://zglg.work/assets/ch20-1.png) 后续章节正在整理推送中。 @@ -1762,3 +1935,41 @@ img.show() ![](https://imgkr2.cn-bj.ufileos.com/cbd26fd8-27cf-4630-935f-6896822ce483.png?UCloudPublicKey=TOKEN_8d8b72be-579a-4e83-bfd0-5f6ce1546f13&Signature=uy1r24x%252Fp5QpI5Wy10Ebdaz%252BpLM%253D&Expires=1603544681) 更多样式,大家可以自己去玩耍。 + +## Python小项目:句子KWIC显示 + +上下文关键字(KWIC, Key Word In Context)是最常见的多行协调显示格式。 + +此小项目描述:输入一系列句子,给定一个给定单词,每个句子中至少会出现一次给定单词。目标输出,给定单词按照KWIC显示,KWIC显示的基本要求:待查询单词居中,前面`pre`序列右对齐,后面`post`序列左对齐,待查询单词前和后长度相等,若输入句子无法满足要求,用空格填充。 + +输入参数:输入句子sentences, 待查询单词selword, 滑动窗口长度`window_len` + +举例,输入如下六个句子,给定单词`secure`,输出如下字符串: + +```python + pre keyword post + + welfare , and secure the blessings of + nations , and secured immortal glory with + , and shall secure to you the + cherished . To secure us against these + defense as to secure our cities and + I can to secure economy and fidelity +``` + +请补充实现下面函数: + +```python +def kwic(sentences: List[str], selword: str, window_len: int) -> str: + """ + :type: sentences: input sentences + :type: selword: selected word + :type: window_len: window length + """ +``` + +更多KWIC显示参考如下: + +http://dep.chs.nihon-u.ac.jp/english_lang/tukamoto/kwic_e.html + +完整代码已经公布在:http://zglg.work/Python-20-topics/python-project1-kwic/ \ No newline at end of file diff --git a/venv/bin/Activate.ps1 b/venv/bin/Activate.ps1 new file mode 100644 index 00000000..2fb3852c --- /dev/null +++ b/venv/bin/Activate.ps1 @@ -0,0 +1,241 @@ +<# +.Synopsis +Activate a Python virtual environment for the current PowerShell session. + +.Description +Pushes the python executable for a virtual environment to the front of the +$Env:PATH environment variable and sets the prompt to signify that you are +in a Python virtual environment. Makes use of the command line switches as +well as the `pyvenv.cfg` file values present in the virtual environment. + +.Parameter VenvDir +Path to the directory that contains the virtual environment to activate. The +default value for this is the parent of the directory that the Activate.ps1 +script is located within. + +.Parameter Prompt +The prompt prefix to display when this virtual environment is activated. By +default, this prompt is the name of the virtual environment folder (VenvDir) +surrounded by parentheses and followed by a single space (ie. '(.venv) '). + +.Example +Activate.ps1 +Activates the Python virtual environment that contains the Activate.ps1 script. + +.Example +Activate.ps1 -Verbose +Activates the Python virtual environment that contains the Activate.ps1 script, +and shows extra information about the activation as it executes. + +.Example +Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv +Activates the Python virtual environment located in the specified location. + +.Example +Activate.ps1 -Prompt "MyPython" +Activates the Python virtual environment that contains the Activate.ps1 script, +and prefixes the current prompt with the specified string (surrounded in +parentheses) while the virtual environment is active. + +.Notes +On Windows, it may be required to enable this Activate.ps1 script by setting the +execution policy for the user. You can do this by issuing the following PowerShell +command: + +PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser + +For more information on Execution Policies: +https://go.microsoft.com/fwlink/?LinkID=135170 + +#> +Param( + [Parameter(Mandatory = $false)] + [String] + $VenvDir, + [Parameter(Mandatory = $false)] + [String] + $Prompt +) + +<# Function declarations --------------------------------------------------- #> + +<# +.Synopsis +Remove all shell session elements added by the Activate script, including the +addition of the virtual environment's Python executable from the beginning of +the PATH variable. + +.Parameter NonDestructive +If present, do not remove this function from the global namespace for the +session. + +#> +function global:deactivate ([switch]$NonDestructive) { + # Revert to original values + + # The prior prompt: + if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) { + Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt + Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT + } + + # The prior PYTHONHOME: + if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) { + Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME + Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME + } + + # The prior PATH: + if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) { + Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH + Remove-Item -Path Env:_OLD_VIRTUAL_PATH + } + + # Just remove the VIRTUAL_ENV altogether: + if (Test-Path -Path Env:VIRTUAL_ENV) { + Remove-Item -Path env:VIRTUAL_ENV + } + + # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether: + if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) { + Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force + } + + # Leave deactivate function in the global namespace if requested: + if (-not $NonDestructive) { + Remove-Item -Path function:deactivate + } +} + +<# +.Description +Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the +given folder, and returns them in a map. + +For each line in the pyvenv.cfg file, if that line can be parsed into exactly +two strings separated by `=` (with any amount of whitespace surrounding the =) +then it is considered a `key = value` line. The left hand string is the key, +the right hand is the value. + +If the value starts with a `'` or a `"` then the first and last character is +stripped from the value before being captured. + +.Parameter ConfigDir +Path to the directory that contains the `pyvenv.cfg` file. +#> +function Get-PyVenvConfig( + [String] + $ConfigDir +) { + Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg" + + # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue). + $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue + + # An empty map will be returned if no config file is found. + $pyvenvConfig = @{ } + + if ($pyvenvConfigPath) { + + Write-Verbose "File exists, parse `key = value` lines" + $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath + + $pyvenvConfigContent | ForEach-Object { + $keyval = $PSItem -split "\s*=\s*", 2 + if ($keyval[0] -and $keyval[1]) { + $val = $keyval[1] + + # Remove extraneous quotations around a string value. + if ("'""".Contains($val.Substring(0, 1))) { + $val = $val.Substring(1, $val.Length - 2) + } + + $pyvenvConfig[$keyval[0]] = $val + Write-Verbose "Adding Key: '$($keyval[0])'='$val'" + } + } + } + return $pyvenvConfig +} + + +<# Begin Activate script --------------------------------------------------- #> + +# Determine the containing directory of this script +$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition +$VenvExecDir = Get-Item -Path $VenvExecPath + +Write-Verbose "Activation script is located in path: '$VenvExecPath'" +Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)" +Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)" + +# Set values required in priority: CmdLine, ConfigFile, Default +# First, get the location of the virtual environment, it might not be +# VenvExecDir if specified on the command line. +if ($VenvDir) { + Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values" +} +else { + Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir." + $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/") + Write-Verbose "VenvDir=$VenvDir" +} + +# Next, read the `pyvenv.cfg` file to determine any required value such +# as `prompt`. +$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir + +# Next, set the prompt from the command line, or the config file, or +# just use the name of the virtual environment folder. +if ($Prompt) { + Write-Verbose "Prompt specified as argument, using '$Prompt'" +} +else { + Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value" + if ($pyvenvCfg -and $pyvenvCfg['prompt']) { + Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'" + $Prompt = $pyvenvCfg['prompt']; + } + else { + Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virutal environment)" + Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'" + $Prompt = Split-Path -Path $venvDir -Leaf + } +} + +Write-Verbose "Prompt = '$Prompt'" +Write-Verbose "VenvDir='$VenvDir'" + +# Deactivate any currently active virtual environment, but leave the +# deactivate function in place. +deactivate -nondestructive + +# Now set the environment variable VIRTUAL_ENV, used by many tools to determine +# that there is an activated venv. +$env:VIRTUAL_ENV = $VenvDir + +if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) { + + Write-Verbose "Setting prompt to '$Prompt'" + + # Set the prompt to include the env name + # Make sure _OLD_VIRTUAL_PROMPT is global + function global:_OLD_VIRTUAL_PROMPT { "" } + Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT + New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt + + function global:prompt { + Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) " + _OLD_VIRTUAL_PROMPT + } +} + +# Clear PYTHONHOME +if (Test-Path -Path Env:PYTHONHOME) { + Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME + Remove-Item -Path Env:PYTHONHOME +} + +# Add the venv to the PATH +Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH +$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH" diff --git a/venv/bin/activate b/venv/bin/activate new file mode 100644 index 00000000..7a71a6fd --- /dev/null +++ b/venv/bin/activate @@ -0,0 +1,76 @@ +# This file must be used with "source bin/activate" *from bash* +# you cannot run it directly + +deactivate () { + # reset old environment variables + if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then + PATH="${_OLD_VIRTUAL_PATH:-}" + export PATH + unset _OLD_VIRTUAL_PATH + fi + if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then + PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}" + export PYTHONHOME + unset _OLD_VIRTUAL_PYTHONHOME + fi + + # This should detect bash and zsh, which have a hash command that must + # be called to get it to forget past commands. Without forgetting + # past commands the $PATH changes we made may not be respected + if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then + hash -r + fi + + if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then + PS1="${_OLD_VIRTUAL_PS1:-}" + export PS1 + unset _OLD_VIRTUAL_PS1 + fi + + unset VIRTUAL_ENV + if [ ! "${1:-}" = "nondestructive" ] ; then + # Self destruct! + unset -f deactivate + fi +} + +# unset irrelevant variables +deactivate nondestructive + +VIRTUAL_ENV="/home/zglg/mine/python-small-examples/venv" +export VIRTUAL_ENV + +_OLD_VIRTUAL_PATH="$PATH" +PATH="$VIRTUAL_ENV/bin:$PATH" +export PATH + +# unset PYTHONHOME if set +# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) +# could use `if (set -u; : $PYTHONHOME) ;` in bash +if [ -n "${PYTHONHOME:-}" ] ; then + _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}" + unset PYTHONHOME +fi + +if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then + _OLD_VIRTUAL_PS1="${PS1:-}" + if [ "x(venv) " != x ] ; then + PS1="(venv) ${PS1:-}" + else + if [ "`basename \"$VIRTUAL_ENV\"`" = "__" ] ; then + # special case for Aspen magic directories + # see http://www.zetadev.com/software/aspen/ + PS1="[`basename \`dirname \"$VIRTUAL_ENV\"\``] $PS1" + else + PS1="(`basename \"$VIRTUAL_ENV\"`)$PS1" + fi + fi + export PS1 +fi + +# This should detect bash and zsh, which have a hash command that must +# be called to get it to forget past commands. Without forgetting +# past commands the $PATH changes we made may not be respected +if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then + hash -r +fi diff --git a/venv/bin/activate.csh b/venv/bin/activate.csh new file mode 100644 index 00000000..b215291a --- /dev/null +++ b/venv/bin/activate.csh @@ -0,0 +1,37 @@ +# This file must be used with "source bin/activate.csh" *from csh*. +# You cannot run it directly. +# Created by Davide Di Blasi . +# Ported to Python 3.3 venv by Andrew Svetlov + +alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate' + +# Unset irrelevant variables. +deactivate nondestructive + +setenv VIRTUAL_ENV "/home/zglg/mine/python-small-examples/venv" + +set _OLD_VIRTUAL_PATH="$PATH" +setenv PATH "$VIRTUAL_ENV/bin:$PATH" + + +set _OLD_VIRTUAL_PROMPT="$prompt" + +if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then + if ("venv" != "") then + set env_name = "venv" + else + if (`basename "VIRTUAL_ENV"` == "__") then + # special case for Aspen magic directories + # see http://www.zetadev.com/software/aspen/ + set env_name = `basename \`dirname "$VIRTUAL_ENV"\`` + else + set env_name = `basename "$VIRTUAL_ENV"` + endif + endif + set prompt = "[$env_name] $prompt" + unset env_name +endif + +alias pydoc python -m pydoc + +rehash diff --git a/venv/bin/activate.fish b/venv/bin/activate.fish new file mode 100644 index 00000000..e05924d0 --- /dev/null +++ b/venv/bin/activate.fish @@ -0,0 +1,75 @@ +# This file must be used with ". bin/activate.fish" *from fish* (http://fishshell.org) +# you cannot run it directly + +function deactivate -d "Exit virtualenv and return to normal shell environment" + # reset old environment variables + if test -n "$_OLD_VIRTUAL_PATH" + set -gx PATH $_OLD_VIRTUAL_PATH + set -e _OLD_VIRTUAL_PATH + end + if test -n "$_OLD_VIRTUAL_PYTHONHOME" + set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME + set -e _OLD_VIRTUAL_PYTHONHOME + end + + if test -n "$_OLD_FISH_PROMPT_OVERRIDE" + functions -e fish_prompt + set -e _OLD_FISH_PROMPT_OVERRIDE + functions -c _old_fish_prompt fish_prompt + functions -e _old_fish_prompt + end + + set -e VIRTUAL_ENV + if test "$argv[1]" != "nondestructive" + # Self destruct! + functions -e deactivate + end +end + +# unset irrelevant variables +deactivate nondestructive + +set -gx VIRTUAL_ENV "/home/zglg/mine/python-small-examples/venv" + +set -gx _OLD_VIRTUAL_PATH $PATH +set -gx PATH "$VIRTUAL_ENV/bin" $PATH + +# unset PYTHONHOME if set +if set -q PYTHONHOME + set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME + set -e PYTHONHOME +end + +if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" + # fish uses a function instead of an env var to generate the prompt. + + # save the current fish_prompt function as the function _old_fish_prompt + functions -c fish_prompt _old_fish_prompt + + # with the original prompt function renamed, we can override with our own. + function fish_prompt + # Save the return status of the last command + set -l old_status $status + + # Prompt override? + if test -n "(venv) " + printf "%s%s" "(venv) " (set_color normal) + else + # ...Otherwise, prepend env + set -l _checkbase (basename "$VIRTUAL_ENV") + if test $_checkbase = "__" + # special case for Aspen magic directories + # see http://www.zetadev.com/software/aspen/ + printf "%s[%s]%s " (set_color -b blue white) (basename (dirname "$VIRTUAL_ENV")) (set_color normal) + else + printf "%s(%s)%s" (set_color -b blue white) (basename "$VIRTUAL_ENV") (set_color normal) + end + end + + # Restore the return status of the previous command. + echo "exit $old_status" | . + _old_fish_prompt + end + + set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" +end diff --git a/venv/bin/pip b/venv/bin/pip new file mode 100755 index 00000000..e36fa62b --- /dev/null +++ b/venv/bin/pip @@ -0,0 +1,8 @@ +#!/home/zglg/mine/python-small-examples/venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/venv/bin/pip3 b/venv/bin/pip3 new file mode 100755 index 00000000..e36fa62b --- /dev/null +++ b/venv/bin/pip3 @@ -0,0 +1,8 @@ +#!/home/zglg/mine/python-small-examples/venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/venv/bin/pip3.8 b/venv/bin/pip3.8 new file mode 100755 index 00000000..e36fa62b --- /dev/null +++ b/venv/bin/pip3.8 @@ -0,0 +1,8 @@ +#!/home/zglg/mine/python-small-examples/venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/venv/bin/python b/venv/bin/python new file mode 120000 index 00000000..4e58b606 --- /dev/null +++ b/venv/bin/python @@ -0,0 +1 @@ +python3.8 \ No newline at end of file diff --git a/venv/bin/python3 b/venv/bin/python3 new file mode 120000 index 00000000..4e58b606 --- /dev/null +++ b/venv/bin/python3 @@ -0,0 +1 @@ +python3.8 \ No newline at end of file diff --git a/venv/bin/python3.8 b/venv/bin/python3.8 new file mode 120000 index 00000000..02a13896 --- /dev/null +++ b/venv/bin/python3.8 @@ -0,0 +1 @@ +/usr/bin/python3.8 \ No newline at end of file diff --git a/venv/lib/python3.8/site-packages/_distutils_hack/__init__.py b/venv/lib/python3.8/site-packages/_distutils_hack/__init__.py new file mode 100644 index 00000000..47ce2494 --- /dev/null +++ b/venv/lib/python3.8/site-packages/_distutils_hack/__init__.py @@ -0,0 +1,128 @@ +import sys +import os +import re +import importlib +import warnings + + +is_pypy = '__pypy__' in sys.builtin_module_names + + +warnings.filterwarnings('ignore', + '.+ distutils .+ deprecated', + DeprecationWarning) + + +def warn_distutils_present(): + if 'distutils' not in sys.modules: + return + if is_pypy and sys.version_info < (3, 7): + # PyPy for 3.6 unconditionally imports distutils, so bypass the warning + # https://foss.heptapod.net/pypy/pypy/-/blob/be829135bc0d758997b3566062999ee8b23872b4/lib-python/3/site.py#L250 + return + warnings.warn( + "Distutils was imported before Setuptools, but importing Setuptools " + "also replaces the `distutils` module in `sys.modules`. This may lead " + "to undesirable behaviors or errors. To avoid these issues, avoid " + "using distutils directly, ensure that setuptools is installed in the " + "traditional way (e.g. not an editable install), and/or make sure " + "that setuptools is always imported before distutils.") + + +def clear_distutils(): + if 'distutils' not in sys.modules: + return + warnings.warn("Setuptools is replacing distutils.") + mods = [name for name in sys.modules if re.match(r'distutils\b', name)] + for name in mods: + del sys.modules[name] + + +def enabled(): + """ + Allow selection of distutils by environment variable. + """ + which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'stdlib') + return which == 'local' + + +def ensure_local_distutils(): + clear_distutils() + distutils = importlib.import_module('setuptools._distutils') + distutils.__name__ = 'distutils' + sys.modules['distutils'] = distutils + + # sanity check that submodules load as expected + core = importlib.import_module('distutils.core') + assert '_distutils' in core.__file__, core.__file__ + + +def do_override(): + """ + Ensure that the local copy of distutils is preferred over stdlib. + + See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401 + for more motivation. + """ + if enabled(): + warn_distutils_present() + ensure_local_distutils() + + +class DistutilsMetaFinder: + def find_spec(self, fullname, path, target=None): + if path is not None: + return + + method_name = 'spec_for_{fullname}'.format(**locals()) + method = getattr(self, method_name, lambda: None) + return method() + + def spec_for_distutils(self): + import importlib.abc + import importlib.util + + class DistutilsLoader(importlib.abc.Loader): + + def create_module(self, spec): + return importlib.import_module('setuptools._distutils') + + def exec_module(self, module): + pass + + return importlib.util.spec_from_loader('distutils', DistutilsLoader()) + + def spec_for_pip(self): + """ + Ensure stdlib distutils when running under pip. + See pypa/pip#8761 for rationale. + """ + if self.pip_imported_during_build(): + return + clear_distutils() + self.spec_for_distutils = lambda: None + + @staticmethod + def pip_imported_during_build(): + """ + Detect if pip is being imported in a build script. Ref #2355. + """ + import traceback + return any( + frame.f_globals['__file__'].endswith('setup.py') + for frame, line in traceback.walk_stack(None) + ) + + +DISTUTILS_FINDER = DistutilsMetaFinder() + + +def add_shim(): + sys.meta_path.insert(0, DISTUTILS_FINDER) + + +def remove_shim(): + try: + sys.meta_path.remove(DISTUTILS_FINDER) + except ValueError: + pass diff --git a/venv/lib/python3.8/site-packages/_distutils_hack/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/_distutils_hack/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dbd9441c1295efbfb943d4de1f6c9f93571f61b5 GIT binary patch literal 5090 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 HK+FID3ez^W literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/_distutils_hack/override.py b/venv/lib/python3.8/site-packages/_distutils_hack/override.py new file mode 100644 index 00000000..2cc433a4 --- /dev/null +++ b/venv/lib/python3.8/site-packages/_distutils_hack/override.py @@ -0,0 +1 @@ +__import__('_distutils_hack').do_override() diff --git a/venv/lib/python3.8/site-packages/distutils-precedence.pth b/venv/lib/python3.8/site-packages/distutils-precedence.pth new file mode 100644 index 00000000..6de4198f --- /dev/null +++ b/venv/lib/python3.8/site-packages/distutils-precedence.pth @@ -0,0 +1 @@ +import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'stdlib') == 'local'; enabled and __import__('_distutils_hack').add_shim(); diff --git a/venv/lib/python3.8/site-packages/pip-21.1.dist-info/INSTALLER b/venv/lib/python3.8/site-packages/pip-21.1.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip-21.1.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/venv/lib/python3.8/site-packages/pip-21.1.dist-info/LICENSE.txt b/venv/lib/python3.8/site-packages/pip-21.1.dist-info/LICENSE.txt new file mode 100644 index 00000000..00addc27 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip-21.1.dist-info/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2008-2021 The pip developers (see AUTHORS.txt file) + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/venv/lib/python3.8/site-packages/pip-21.1.dist-info/METADATA b/venv/lib/python3.8/site-packages/pip-21.1.dist-info/METADATA new file mode 100644 index 00000000..70fb5b7f --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip-21.1.dist-info/METADATA @@ -0,0 +1,91 @@ +Metadata-Version: 2.1 +Name: pip +Version: 21.1 +Summary: The PyPA recommended tool for installing Python packages. +Home-page: https://pip.pypa.io/ +Author: The pip developers +Author-email: distutils-sig@python.org +License: MIT +Project-URL: Documentation, https://pip.pypa.io +Project-URL: Source, https://github.com/pypa/pip +Project-URL: Changelog, https://pip.pypa.io/en/stable/news/ +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Topic :: Software Development :: Build Tools +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Requires-Python: >=3.6 + +pip - The Python Package Installer +================================== + +.. image:: https://img.shields.io/pypi/v/pip.svg + :target: https://pypi.org/project/pip/ + +.. image:: https://readthedocs.org/projects/pip/badge/?version=latest + :target: https://pip.pypa.io/en/latest + +pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes. + +Please take a look at our documentation for how to install and use pip: + +* `Installation`_ +* `Usage`_ + +We release updates regularly, with a new version every 3 months. Find more details in our documentation: + +* `Release notes`_ +* `Release process`_ + +In pip 20.3, we've `made a big improvement to the heart of pip`_; `learn more`_. We want your input, so `sign up for our user experience research studies`_ to help us do it right. + +**Note**: pip 21.0, in January 2021, removed Python 2 support, per pip's `Python 2 support policy`_. Please migrate to Python 3. + +If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms: + +* `Issue tracking`_ +* `Discourse channel`_ +* `User IRC`_ + +If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms: + +* `GitHub page`_ +* `Development documentation`_ +* `Development mailing list`_ +* `Development IRC`_ + +Code of Conduct +--------------- + +Everyone interacting in the pip project's codebases, issue trackers, chat +rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_. + +.. _package installer: https://packaging.python.org/guides/tool-recommendations/ +.. _Python Package Index: https://pypi.org +.. _Installation: https://pip.pypa.io/en/stable/installing.html +.. _Usage: https://pip.pypa.io/en/stable/ +.. _Release notes: https://pip.pypa.io/en/stable/news.html +.. _Release process: https://pip.pypa.io/en/latest/development/release-process/ +.. _GitHub page: https://github.com/pypa/pip +.. _Development documentation: https://pip.pypa.io/en/latest/development +.. _made a big improvement to the heart of pip: https://pyfound.blogspot.com/2020/11/pip-20-3-new-resolver.html +.. _learn more: https://pip.pypa.io/en/latest/user_guide/#changes-to-the-pip-dependency-resolver-in-20-3-2020 +.. _sign up for our user experience research studies: https://pyfound.blogspot.com/2020/03/new-pip-resolver-to-roll-out-this-year.html +.. _Python 2 support policy: https://pip.pypa.io/en/latest/development/release-process/#python-2-support +.. _Issue tracking: https://github.com/pypa/pip/issues +.. _Discourse channel: https://discuss.python.org/c/packaging +.. _Development mailing list: https://mail.python.org/mailman3/lists/distutils-sig.python.org/ +.. _User IRC: https://webchat.freenode.net/?channels=%23pypa +.. _Development IRC: https://webchat.freenode.net/?channels=%23pypa-dev +.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md + + diff --git a/venv/lib/python3.8/site-packages/pip-21.1.dist-info/RECORD b/venv/lib/python3.8/site-packages/pip-21.1.dist-info/RECORD new file mode 100644 index 00000000..2752fbff --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip-21.1.dist-info/RECORD @@ -0,0 +1,796 @@ +../../../bin/pip,sha256=OASsObaEuGGPYUbn3ZkQbyLbwbic-jHvn9YTD78YekA,258 +../../../bin/pip3,sha256=OASsObaEuGGPYUbn3ZkQbyLbwbic-jHvn9YTD78YekA,258 +../../../bin/pip3.8,sha256=OASsObaEuGGPYUbn3ZkQbyLbwbic-jHvn9YTD78YekA,258 +pip-21.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-21.1.dist-info/LICENSE.txt,sha256=I6c2HCsVgQKLxiO52ivSSZeryqR4Gs5q1ESjeUT42uE,1090 +pip-21.1.dist-info/METADATA,sha256=WZ7jlhK_ruzx_i4EGlDe19NT_hsGm4SDUSMQZBubdbE,4101 +pip-21.1.dist-info/RECORD,, +pip-21.1.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92 +pip-21.1.dist-info/entry_points.txt,sha256=HtfDOwpUlr9s73jqLQ6wF9V0_0qvUXJwCBz7Vwx0Ue0,125 +pip-21.1.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=0pao7_OfX8SbOiXCN7Mpr17V0ZQmb6TYUIhGYFPO8zg,366 +pip/__main__.py,sha256=mXwWDftNLMKfwVqKFWGE_uuBZvGSIiUELhLkeysIuZc,1198 +pip/__pycache__/__init__.cpython-38.pyc,, +pip/__pycache__/__main__.cpython-38.pyc,, +pip/_internal/__init__.py,sha256=XvJ1JIumQnfLNFxVRdf_xrbhkTg1WMUrf2GzrH27F3A,410 +pip/_internal/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/__pycache__/build_env.cpython-38.pyc,, +pip/_internal/__pycache__/cache.cpython-38.pyc,, +pip/_internal/__pycache__/configuration.cpython-38.pyc,, +pip/_internal/__pycache__/exceptions.cpython-38.pyc,, +pip/_internal/__pycache__/main.cpython-38.pyc,, +pip/_internal/__pycache__/pyproject.cpython-38.pyc,, +pip/_internal/__pycache__/self_outdated_check.cpython-38.pyc,, +pip/_internal/__pycache__/wheel_builder.cpython-38.pyc,, +pip/_internal/build_env.py,sha256=d231j7Cn77kxUNDAJ7L6j1UNBuPtIGlQ9JM7LuKL5Ew,9172 +pip/_internal/cache.py,sha256=6VONtoReGZbBd7sqY1n6hwkdWC4iz3tmXwXwZjpjZKw,9958 +pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132 +pip/_internal/cli/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/cli/__pycache__/autocompletion.cpython-38.pyc,, +pip/_internal/cli/__pycache__/base_command.cpython-38.pyc,, +pip/_internal/cli/__pycache__/cmdoptions.cpython-38.pyc,, +pip/_internal/cli/__pycache__/command_context.cpython-38.pyc,, +pip/_internal/cli/__pycache__/main.cpython-38.pyc,, +pip/_internal/cli/__pycache__/main_parser.cpython-38.pyc,, +pip/_internal/cli/__pycache__/parser.cpython-38.pyc,, +pip/_internal/cli/__pycache__/progress_bars.cpython-38.pyc,, +pip/_internal/cli/__pycache__/req_command.cpython-38.pyc,, +pip/_internal/cli/__pycache__/spinners.cpython-38.pyc,, +pip/_internal/cli/__pycache__/status_codes.cpython-38.pyc,, +pip/_internal/cli/autocompletion.py,sha256=r2GQSaHHim1LwPhMaO9MPeKdsSv5H8S9ElVsmByQNew,6350 +pip/_internal/cli/base_command.py,sha256=26MHnlzZSC-Wk2j2OGsBDs5cl2ladrovJyVy1_2g0Zk,7741 +pip/_internal/cli/cmdoptions.py,sha256=52JIyP5C6yT8DpT1O2ZseAY-vMvLTb8FqO0g85OFYMs,28999 +pip/_internal/cli/command_context.py,sha256=k2JF5WPsP1MNKaXWK8jZFbJhYffzkdvGaPsL53tZbDU,815 +pip/_internal/cli/main.py,sha256=G_OsY66FZRtmLrMJ4k3m77tmtsRRRQd3_-qle1lvmng,2483 +pip/_internal/cli/main_parser.py,sha256=G70Z1fXLYzeJuuotgwKwq-daCJ0jCmmHxx6aFHz6WAQ,2642 +pip/_internal/cli/parser.py,sha256=rx4w6IgD0Obi7t1k9mV0zlYhy_DuCoaDCqhkUKMOFNU,11097 +pip/_internal/cli/progress_bars.py,sha256=ck_ILji6aRTG0zxXajnPWIpQTGxTzm3nscZOxwNmTWo,8576 +pip/_internal/cli/req_command.py,sha256=refPyZdKuluridcLaCdSJtgyYFchxd9y8pMMp_7PO-s,16884 +pip/_internal/cli/spinners.py,sha256=VLdSWCvyk3KokujLyBf_QKYcGbrePQoPB4v7jqG7xyA,5347 +pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116 +pip/_internal/commands/__init__.py,sha256=v-xml8oMwrQhCpmApkpcMOE97Mp8QaBxoRObnGS43_8,3659 +pip/_internal/commands/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/commands/__pycache__/cache.cpython-38.pyc,, +pip/_internal/commands/__pycache__/check.cpython-38.pyc,, +pip/_internal/commands/__pycache__/completion.cpython-38.pyc,, +pip/_internal/commands/__pycache__/configuration.cpython-38.pyc,, +pip/_internal/commands/__pycache__/debug.cpython-38.pyc,, +pip/_internal/commands/__pycache__/download.cpython-38.pyc,, +pip/_internal/commands/__pycache__/freeze.cpython-38.pyc,, +pip/_internal/commands/__pycache__/hash.cpython-38.pyc,, +pip/_internal/commands/__pycache__/help.cpython-38.pyc,, +pip/_internal/commands/__pycache__/install.cpython-38.pyc,, +pip/_internal/commands/__pycache__/list.cpython-38.pyc,, +pip/_internal/commands/__pycache__/search.cpython-38.pyc,, +pip/_internal/commands/__pycache__/show.cpython-38.pyc,, +pip/_internal/commands/__pycache__/uninstall.cpython-38.pyc,, +pip/_internal/commands/__pycache__/wheel.cpython-38.pyc,, +pip/_internal/commands/cache.py,sha256=AELf98RWR_giU9wl0RSXf-MsTyO5G_iwO0iHoF4Fbmc,7414 +pip/_internal/commands/check.py,sha256=Dt0w7NqFp8o_45J7w32GQrKezsz2vwo_U8UmsHD9YNI,1587 +pip/_internal/commands/completion.py,sha256=UxS09s8rEnU08AAiN3gHdQIjU4XGSlv5SJ3rIJdTyhA,2951 +pip/_internal/commands/configuration.py,sha256=X1fdVdEg8MHFtArU-3bM6WBNax1E7Z7qszPEdlK1zqo,9206 +pip/_internal/commands/debug.py,sha256=yntOplw93VZoQAVBB3BXPKuqbam4mT6TErastFwFy3s,6806 +pip/_internal/commands/download.py,sha256=zv8S_DN2-k6K0VSR3yCPLSrLehoYkj3IvyO1Ho8t8V4,4993 +pip/_internal/commands/freeze.py,sha256=vPVguwBb15ubv8Es9oPSyWePBe2cq39QxjU4KizeTwk,3431 +pip/_internal/commands/hash.py,sha256=ip64AsJ6EFUEaWKDvsZmdQHks1JTEgrDjH5byl-IYyc,1713 +pip/_internal/commands/help.py,sha256=6Mnzrak_j-yE3psDCqi2GxISJqIZJ04DObKU9QhnxME,1149 +pip/_internal/commands/install.py,sha256=aFvZQfPrMrHDb6jjbmrVlyvDxMIeX3ZcZKSQvY6c0KI,27135 +pip/_internal/commands/list.py,sha256=jfqDS4xvm6WV8rHVSmvpaI811ukvD4OiPZwGGKMwwkI,11331 +pip/_internal/commands/search.py,sha256=EwcGPkDDTwFMpi2PBKhPuWX2YBMPcy7Ox1WFcWnouaw,5598 +pip/_internal/commands/show.py,sha256=sz2vbxh4l7Bj4jKlkDGTHYD6I8_duSpSUFVxUiH44xQ,6866 +pip/_internal/commands/uninstall.py,sha256=EDcx3a03l3U8tpZ2p4ffIdn45hY2YFEmq9yoeccF2ow,3216 +pip/_internal/commands/wheel.py,sha256=wKGSksuYjjhgOYa_jD6ulaKpPXaUzPiyzfRNNT4DOio,6233 +pip/_internal/configuration.py,sha256=QBLfhv-sbP-oR08NFxSYnv_mLB-SgtNOsWXAF9tDEcM,13725 +pip/_internal/distributions/__init__.py,sha256=ow1iPW_Qp-TOyOU-WghOKC8vAv1_Syk1zETZVO_vKEE,864 +pip/_internal/distributions/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/distributions/__pycache__/base.cpython-38.pyc,, +pip/_internal/distributions/__pycache__/installed.cpython-38.pyc,, +pip/_internal/distributions/__pycache__/sdist.cpython-38.pyc,, +pip/_internal/distributions/__pycache__/wheel.cpython-38.pyc,, +pip/_internal/distributions/base.py,sha256=UVndaok0jOHrLH0JqN0YzlxVEnvFQumYy37diY3ZCuE,1245 +pip/_internal/distributions/installed.py,sha256=uaTMPvY3hr_M1BCy107vJHWspKMJgrPxv30W3_zZZ0Q,667 +pip/_internal/distributions/sdist.py,sha256=co8fNR8qIhHRLBncwV92oJ7e8IOCGPgEsbEFdNPk1Yk,3900 +pip/_internal/distributions/wheel.py,sha256=n9MqNoWyMqNscfbNeeqh1bztoZUiB5x1H9h4tFfiJUw,1205 +pip/_internal/exceptions.py,sha256=2JQJSS68oggR_ZIOA-h1U2DRADURbkQn9Nf4EZWZ834,13170 +pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30 +pip/_internal/index/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/index/__pycache__/collector.cpython-38.pyc,, +pip/_internal/index/__pycache__/package_finder.cpython-38.pyc,, +pip/_internal/index/__pycache__/sources.cpython-38.pyc,, +pip/_internal/index/collector.py,sha256=aEXtHK0La4nGP7mu5N5CQ3tmfjaczLwbGi8Ar4oGz5o,18192 +pip/_internal/index/package_finder.py,sha256=3J9Rzq1NAO2p_zDb4fv33GeBBBOYusV9kXtAn2j6eCU,37294 +pip/_internal/index/sources.py,sha256=SVyPitv08-Qalh2_Bk5diAJ9GAA_d-a93koouQodAG0,6557 +pip/_internal/locations/__init__.py,sha256=BEJNz6pWSjtbAU_Pvh5B7r5Zctt0tp3MC75kikGh8Io,4830 +pip/_internal/locations/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/locations/__pycache__/_distutils.cpython-38.pyc,, +pip/_internal/locations/__pycache__/_sysconfig.cpython-38.pyc,, +pip/_internal/locations/__pycache__/base.cpython-38.pyc,, +pip/_internal/locations/_distutils.py,sha256=L5flRSr9BH0lBwPUl61cyBc1OnVD06FOENkDMRjyg38,5212 +pip/_internal/locations/_sysconfig.py,sha256=uooFYw2PLN8CNbtgf_kzvdTKf3S4Jj8RuaeQbYPyqKg,5593 +pip/_internal/locations/base.py,sha256=QbkpgmzIbWBnUL2_3qu29sqCNewoqYbkVw8KmigRe2c,1478 +pip/_internal/main.py,sha256=BZ0vkdqgpoteTo1A1Q8ovFe8EzgKFJWOUjPmIUQfGCY,351 +pip/_internal/metadata/__init__.py,sha256=KINR8ZYO_ilc2pkV3t5KcQLzWLNc3GjZDklGWTVJ-zU,1471 +pip/_internal/metadata/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/metadata/__pycache__/base.cpython-38.pyc,, +pip/_internal/metadata/__pycache__/pkg_resources.cpython-38.pyc,, +pip/_internal/metadata/base.py,sha256=6BiB_b3lvNHYIVKbzrDhi0bJmSls5Q1K-iBeHWlKnIw,4750 +pip/_internal/metadata/pkg_resources.py,sha256=4FVPxYFABQ_1tbh_CRBzK4x0_SIgH1uCKx2ZLyhkouQ,4248 +pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63 +pip/_internal/models/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/models/__pycache__/candidate.cpython-38.pyc,, +pip/_internal/models/__pycache__/direct_url.cpython-38.pyc,, +pip/_internal/models/__pycache__/format_control.cpython-38.pyc,, +pip/_internal/models/__pycache__/index.cpython-38.pyc,, +pip/_internal/models/__pycache__/link.cpython-38.pyc,, +pip/_internal/models/__pycache__/scheme.cpython-38.pyc,, +pip/_internal/models/__pycache__/search_scope.cpython-38.pyc,, +pip/_internal/models/__pycache__/selection_prefs.cpython-38.pyc,, +pip/_internal/models/__pycache__/target_python.cpython-38.pyc,, +pip/_internal/models/__pycache__/wheel.cpython-38.pyc,, +pip/_internal/models/candidate.py,sha256=LlyGF2SMGjeet9bLbEAzAWDP82Wcp3342Ysa7tCW_9M,1001 +pip/_internal/models/direct_url.py,sha256=VrnJNOqcPznfNarjQJavsx2tgG7GfcLa6PyZCuf_L7A,6555 +pip/_internal/models/format_control.py,sha256=l2jp47mWsJp7-LxMs05l9T-qFg9Z5PwdyP9R7Xc_VZQ,2629 +pip/_internal/models/index.py,sha256=asMraZVPI0snye404GztEpXgKerj1yAFmZl2p3eN4Bg,1092 +pip/_internal/models/link.py,sha256=5wdHbGDLbafSdYpo2Ky7F9RRo226zRy6ik3cLH_8Kwc,7472 +pip/_internal/models/scheme.py,sha256=iqceC7gKiTn2ZLgCOgGQbcmo49TRg9EnQUSsQH3U-7A,770 +pip/_internal/models/search_scope.py,sha256=4uGNEqYrz4ku6_WzowqivuMvN0fj5XQ03WB14YjcN5U,4613 +pip/_internal/models/selection_prefs.py,sha256=aNRDL97Gz3yWJW3og0yuvOkU02UL8OeNQDuDatZ8SDo,1947 +pip/_internal/models/target_python.py,sha256=SLGG3z9Pj_CiA5jmMnNDv2MN3ST3keVuanVDzTvO5pM,3962 +pip/_internal/models/wheel.py,sha256=MWjxQkBNXI6XOWiTuzMG7uONhFu8xA94OqD_9BuIsVc,3614 +pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50 +pip/_internal/network/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/network/__pycache__/auth.cpython-38.pyc,, +pip/_internal/network/__pycache__/cache.cpython-38.pyc,, +pip/_internal/network/__pycache__/download.cpython-38.pyc,, +pip/_internal/network/__pycache__/lazy_wheel.cpython-38.pyc,, +pip/_internal/network/__pycache__/session.cpython-38.pyc,, +pip/_internal/network/__pycache__/utils.cpython-38.pyc,, +pip/_internal/network/__pycache__/xmlrpc.cpython-38.pyc,, +pip/_internal/network/auth.py,sha256=d8Df0fy01P1jJlF3XDMM8ACyktR1cN9zURG-ye1ncc0,11833 +pip/_internal/network/cache.py,sha256=J_xpsLWbRrlCSUcQhA5-TuT5LWIlpVtTH4fZ1XSjyb4,2213 +pip/_internal/network/download.py,sha256=8frb2bINOf-jbmFPapKbyEO9sjXJWJG6OJaW4hQ9r3s,6243 +pip/_internal/network/lazy_wheel.py,sha256=XMfrDK1IBy44L3Gx3UZ2B8s90VRXDa96520IOPmzmOU,7924 +pip/_internal/network/session.py,sha256=VHeiorPflYPNWK2pM_q22c-H5gmRBDh9UKCJW3VAUFI,16247 +pip/_internal/network/utils.py,sha256=uqT6QkO9NHUwqTw3gHBWMQFdaYqYabB423QUZuiQD3c,4072 +pip/_internal/network/xmlrpc.py,sha256=CL1WBOTgxPwbcZ6QubZ4pXQXjb7qTTFpTUFe-ZaWkcA,1703 +pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/operations/__pycache__/check.cpython-38.pyc,, +pip/_internal/operations/__pycache__/freeze.cpython-38.pyc,, +pip/_internal/operations/__pycache__/prepare.cpython-38.pyc,, +pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/build/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/operations/build/__pycache__/metadata.cpython-38.pyc,, +pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-38.pyc,, +pip/_internal/operations/build/__pycache__/wheel.cpython-38.pyc,, +pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-38.pyc,, +pip/_internal/operations/build/metadata.py,sha256=jJp05Rrp0AMsQb7izDXbNGC1LtPNwOhHQj7cRM5324c,1165 +pip/_internal/operations/build/metadata_legacy.py,sha256=ECMBhLEPEQv6PUUCpPCXW-wN9QRXdY45PNXJv7BZKTU,1917 +pip/_internal/operations/build/wheel.py,sha256=WYLMxuxqN3ahJTQk2MI9hdmZKBpFyxHeNpUdO0PybxU,1106 +pip/_internal/operations/build/wheel_legacy.py,sha256=NOJhTYMYljdbizFo_WjkaKGWG1SEZ6aByrBdCrrsZB8,3227 +pip/_internal/operations/check.py,sha256=OtMZ2ff0zk8Ghpl7eIXySZ4D8pCUfzPAYNpGTxw1qWU,5245 +pip/_internal/operations/freeze.py,sha256=D-ex0Bwy6E0EVS_gHlixlEpKDpRxFZnUmTy7nf8s7ts,9999 +pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51 +pip/_internal/operations/install/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/operations/install/__pycache__/editable_legacy.cpython-38.pyc,, +pip/_internal/operations/install/__pycache__/legacy.cpython-38.pyc,, +pip/_internal/operations/install/__pycache__/wheel.cpython-38.pyc,, +pip/_internal/operations/install/editable_legacy.py,sha256=bjBObfE6sz3UmGI7y4-GCgKa2WmTgnWlFFU7b-i0sQs,1396 +pip/_internal/operations/install/legacy.py,sha256=f59fQbNLO2rvl8bNQm_CuW6dgPvXXQ7y5apulWZi01E,4177 +pip/_internal/operations/install/wheel.py,sha256=1gV2G-owlA2iwcbxYAc4BOTiPRRGB8TzpuU0wuhM2VQ,29960 +pip/_internal/operations/prepare.py,sha256=AXHNg1iGceg1lyqDqbcabmAFIfQ1k1cIfgmVY5JCWoo,24850 +pip/_internal/pyproject.py,sha256=bN_dliFVxorLITxCEzT0UmPYFoSqk_vGBtM1QwiQays,7061 +pip/_internal/req/__init__.py,sha256=lRNHBv0ZAZNbSwmXU-XUdm66gsiNmuiBDi1DFYJ4hIQ,2983 +pip/_internal/req/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/req/__pycache__/constructors.cpython-38.pyc,, +pip/_internal/req/__pycache__/req_file.cpython-38.pyc,, +pip/_internal/req/__pycache__/req_install.cpython-38.pyc,, +pip/_internal/req/__pycache__/req_set.cpython-38.pyc,, +pip/_internal/req/__pycache__/req_tracker.cpython-38.pyc,, +pip/_internal/req/__pycache__/req_uninstall.cpython-38.pyc,, +pip/_internal/req/constructors.py,sha256=4sinGd7srKhI94DV6XO-qRX2M6Kr907OFmsfklKrt64,16267 +pip/_internal/req/req_file.py,sha256=dBebP2G-rdoTZM-Hl2lhP3I6cvvotgRgJZwJg7CMXlU,17874 +pip/_internal/req/req_install.py,sha256=gTuwMYDgiQjwQp02VH1Z1EvrJ9RlzIs-AxYqd0hVznw,32332 +pip/_internal/req/req_set.py,sha256=AutsaiV2s-2ILwtWtTA4OJW_ZLRg4GXg6wM0Y_hZb1k,7778 +pip/_internal/req/req_tracker.py,sha256=XuPweX1lbJXT2gSkCXICS5hna6byme5PeQp4Ok8-R2o,4391 +pip/_internal/req/req_uninstall.py,sha256=gACinTIcScZGw81qLaFdTj9KGXlVuCpru7XvHGjIE-E,23468 +pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/resolution/__pycache__/base.cpython-38.pyc,, +pip/_internal/resolution/base.py,sha256=T4QnfShJErpPWe4iOiO7VmXuz1bxe20LLNs33AUslYM,563 +pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/legacy/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/resolution/legacy/__pycache__/resolver.cpython-38.pyc,, +pip/_internal/resolution/legacy/resolver.py,sha256=OF_6Yh4hrFfJ4u0HLF4ZRBlA8lBHUfAaFnhuVKIQhPM,17934 +pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/base.cpython-38.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-38.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-38.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-38.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-38.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-38.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-38.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-38.pyc,, +pip/_internal/resolution/resolvelib/base.py,sha256=MbakyqSotBGVJpI3kApqqP2fPPZih9DgsfkpuFd-ADM,5677 +pip/_internal/resolution/resolvelib/candidates.py,sha256=dEKSuK9B5M52c1SugB43zXnnxgNWNTa7hCCwItSX61c,19976 +pip/_internal/resolution/resolvelib/factory.py,sha256=0q14dmRrLZXt9OYp2yT5L2KqKGLJ5okGoAru2hNadFg,24988 +pip/_internal/resolution/resolvelib/found_candidates.py,sha256=FzxKczhel3GhViOIEfGHUfUQ6rN3U0blMMUuu-blHfU,5410 +pip/_internal/resolution/resolvelib/provider.py,sha256=HYITnjs7hcxDGANCDdL4qg2MJ1aw1jA9cMyxNP2mLrk,7673 +pip/_internal/resolution/resolvelib/reporter.py,sha256=xgaCtXLj791A_qRfV9Y1nXGeaWVq3JE0ygIA3YNRWq0,2765 +pip/_internal/resolution/resolvelib/requirements.py,sha256=fF2RH6VCanTuF-iwu8tZY8Bh0FakDBTw7tkDJyTsy9E,6047 +pip/_internal/resolution/resolvelib/resolver.py,sha256=3hlnrZklszFUwGQFF33nLkEO8kxz4vZ3_uKp_L8YvmE,12085 +pip/_internal/self_outdated_check.py,sha256=ivoUYaGuq-Ra_DvlZvPtHhgbY97NKHYuPGzrgN2G1A8,6484 +pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/utils/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/utils/__pycache__/appdirs.cpython-38.pyc,, +pip/_internal/utils/__pycache__/compat.cpython-38.pyc,, +pip/_internal/utils/__pycache__/compatibility_tags.cpython-38.pyc,, +pip/_internal/utils/__pycache__/datetime.cpython-38.pyc,, +pip/_internal/utils/__pycache__/deprecation.cpython-38.pyc,, +pip/_internal/utils/__pycache__/direct_url_helpers.cpython-38.pyc,, +pip/_internal/utils/__pycache__/distutils_args.cpython-38.pyc,, +pip/_internal/utils/__pycache__/encoding.cpython-38.pyc,, +pip/_internal/utils/__pycache__/entrypoints.cpython-38.pyc,, +pip/_internal/utils/__pycache__/filesystem.cpython-38.pyc,, +pip/_internal/utils/__pycache__/filetypes.cpython-38.pyc,, +pip/_internal/utils/__pycache__/glibc.cpython-38.pyc,, +pip/_internal/utils/__pycache__/hashes.cpython-38.pyc,, +pip/_internal/utils/__pycache__/inject_securetransport.cpython-38.pyc,, +pip/_internal/utils/__pycache__/logging.cpython-38.pyc,, +pip/_internal/utils/__pycache__/misc.cpython-38.pyc,, +pip/_internal/utils/__pycache__/models.cpython-38.pyc,, +pip/_internal/utils/__pycache__/packaging.cpython-38.pyc,, +pip/_internal/utils/__pycache__/parallel.cpython-38.pyc,, +pip/_internal/utils/__pycache__/pkg_resources.cpython-38.pyc,, +pip/_internal/utils/__pycache__/setuptools_build.cpython-38.pyc,, +pip/_internal/utils/__pycache__/subprocess.cpython-38.pyc,, +pip/_internal/utils/__pycache__/temp_dir.cpython-38.pyc,, +pip/_internal/utils/__pycache__/unpacking.cpython-38.pyc,, +pip/_internal/utils/__pycache__/urls.cpython-38.pyc,, +pip/_internal/utils/__pycache__/virtualenv.cpython-38.pyc,, +pip/_internal/utils/__pycache__/wheel.cpython-38.pyc,, +pip/_internal/utils/appdirs.py,sha256=HCCFaOrZOnMLzRDpKXcMiFh_2kWZ-PzFdN8peLiwkNY,1222 +pip/_internal/utils/compat.py,sha256=I58tTZ3qqGZqeGVP_mERM8N7QPu71niLpxfO3Ij2jfQ,1912 +pip/_internal/utils/compatibility_tags.py,sha256=IcQEHCZJvdfKciACmXGCKt39Yog2_Q2XQKMHojA_2pg,5589 +pip/_internal/utils/datetime.py,sha256=biZdEJEQBGq8A-N7ooposipeGzmSHdI0WX60kll_AEs,255 +pip/_internal/utils/deprecation.py,sha256=CD9gU1zmDtC3Nk2TM14FVpAa_bxCMd03Kx5t3LoFwkg,3277 +pip/_internal/utils/direct_url_helpers.py,sha256=-chZUxdJkFRG-pA2MY7_Wii5U5o18o5K4AqBsWd92-c,3935 +pip/_internal/utils/distutils_args.py,sha256=KxWTaz07A_1ukCyw_pNah-i6sBvrVtdMsnF8jguDNYQ,1262 +pip/_internal/utils/encoding.py,sha256=T0cQTkGB7-s3wivLlHcKbKqvJoM0yLdo8ot89LlGdz0,1190 +pip/_internal/utils/entrypoints.py,sha256=m4UXkLZTnPsdSisQzNFiHM1CZcMK8N1CA98g4ORex2c,1066 +pip/_internal/utils/filesystem.py,sha256=a3rnoUB_HTdEbDaAUHSNMPIHqHds4UA-mLQ5bvgOjSQ,6045 +pip/_internal/utils/filetypes.py,sha256=weviVbapHWVQ_8-K-PTQ_TnYL66kZi4SrVBTmRYZXLc,761 +pip/_internal/utils/glibc.py,sha256=GM1Y2hWkOf_tumySGFg-iNbc7oilBQQrjczb_705CF8,3170 +pip/_internal/utils/hashes.py,sha256=EJ2dVJTJ9RozttbSN_prggWBEAvmkNme2xBgN8m2lys,5000 +pip/_internal/utils/inject_securetransport.py,sha256=tGl9Bgyt2IHKtB3b0B-6r3W2yYF3Og-PBe0647S3lZs,810 +pip/_internal/utils/logging.py,sha256=Bkp3QSjur3ekkunAInsGJ6ls7KF8ANTtBgGhjY0vltg,12133 +pip/_internal/utils/misc.py,sha256=ABM-TXaq8VmUOL-6bAWaha_JVhEuwjCEp9cakOrC5nU,23405 +pip/_internal/utils/models.py,sha256=qCgYyUw2mIH1pombsJ3YQsMtONZgyJ4BGwO5MJnSC4c,1329 +pip/_internal/utils/packaging.py,sha256=I1938AB7FprcVJJd6C0vSiMuCVajmrxZF55vX5j0bMo,2900 +pip/_internal/utils/parallel.py,sha256=RZF4JddPEWVbkkPCknfvpqaLfm3Pmqd_ABoCHmV4lXs,3224 +pip/_internal/utils/pkg_resources.py,sha256=jwH5JViPe-JlXLvLC0-ASfTTCRYvm0u9CwQGcWjxStI,1106 +pip/_internal/utils/setuptools_build.py,sha256=xk9sRBjUyNTHs_TvEWebVWs1GfLPN208MzpSXr9Ok_A,5047 +pip/_internal/utils/subprocess.py,sha256=uxaP3IzPiBYhG0MbdfPK_uchZAh27uZ3wO3q5hRfEyo,10036 +pip/_internal/utils/temp_dir.py,sha256=9gs3N9GQeVXRVWjJIalSpH1uj8yQXPTzarb5n1_HMVo,7950 +pip/_internal/utils/unpacking.py,sha256=PioYYwfTCn_VeYer80onhrO9Y1ggetqOPSOroG38bRQ,9032 +pip/_internal/utils/urls.py,sha256=XzjQsHGd2YDmJhoCogspPTqh6Kl5tGENRHPcwjS0JC4,1256 +pip/_internal/utils/virtualenv.py,sha256=iRTK-sD6bWpHqXcZ0ECfdpFLWatMOHFUVCIRa0L6Gu0,3564 +pip/_internal/utils/wheel.py,sha256=DOIVZaXN7bMOAeMEqzIOZHGl4OFO-KGrEqBUB848DPo,6290 +pip/_internal/vcs/__init__.py,sha256=CjyxHCgdt19l21j0tJGiQ_6Yk8m-KWmQThmYvljd1eo,571 +pip/_internal/vcs/__pycache__/__init__.cpython-38.pyc,, +pip/_internal/vcs/__pycache__/bazaar.cpython-38.pyc,, +pip/_internal/vcs/__pycache__/git.cpython-38.pyc,, +pip/_internal/vcs/__pycache__/mercurial.cpython-38.pyc,, +pip/_internal/vcs/__pycache__/subversion.cpython-38.pyc,, +pip/_internal/vcs/__pycache__/versioncontrol.cpython-38.pyc,, +pip/_internal/vcs/bazaar.py,sha256=Ay_vN-87vYSEzBqXT3RVwl40vlk56j3jy_AfQbMj4uo,2962 +pip/_internal/vcs/git.py,sha256=URUz1kSqhDhqJsr9ulaFTewP8Zjwf7oVPP7skdj9SMQ,15431 +pip/_internal/vcs/mercurial.py,sha256=2X3eIyeAWQWI2TxoPT-xuVsD6fxr7YSyHw4MR9EWz4M,5043 +pip/_internal/vcs/subversion.py,sha256=lPfCu841JAMRG_jTX_TbRZrBpKdId5eQ8t7_xI7w3L0,11876 +pip/_internal/vcs/versioncontrol.py,sha256=N60TSMbTr79ADzR61BCrk8YogUQcBBnNaLgJPTfXsfc,23086 +pip/_internal/wheel_builder.py,sha256=hW63ZmABr65rOiSRBHXu1jBUdEZw5LZiw0LaQBbz0lI,11740 +pip/_vendor/__init__.py,sha256=gCrQwPBY2OZBeedvKOLdRZ3W1LIRM60fG6d4mgW_-9Y,4760 +pip/_vendor/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/__pycache__/appdirs.cpython-38.pyc,, +pip/_vendor/__pycache__/distro.cpython-38.pyc,, +pip/_vendor/__pycache__/pyparsing.cpython-38.pyc,, +pip/_vendor/__pycache__/six.cpython-38.pyc,, +pip/_vendor/appdirs.py,sha256=M6IYRJtdZgmSPCXCSMBRB0VT3P8MdFbWCDbSLrB2Ebg,25907 +pip/_vendor/cachecontrol/__init__.py,sha256=pJtAaUxOsMPnytI1A3juAJkXYDr8krdSnsg4Yg3OBEg,302 +pip/_vendor/cachecontrol/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-38.pyc,, +pip/_vendor/cachecontrol/__pycache__/adapter.cpython-38.pyc,, +pip/_vendor/cachecontrol/__pycache__/cache.cpython-38.pyc,, +pip/_vendor/cachecontrol/__pycache__/compat.cpython-38.pyc,, +pip/_vendor/cachecontrol/__pycache__/controller.cpython-38.pyc,, +pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-38.pyc,, +pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-38.pyc,, +pip/_vendor/cachecontrol/__pycache__/serialize.cpython-38.pyc,, +pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-38.pyc,, +pip/_vendor/cachecontrol/_cmd.py,sha256=URGE0KrA87QekCG3SGPatlSPT571dZTDjNa-ZXX3pDc,1295 +pip/_vendor/cachecontrol/adapter.py,sha256=sSwaSYd93IIfCFU4tOMgSo6b2LCt_gBSaQUj8ktJFOA,4882 +pip/_vendor/cachecontrol/cache.py,sha256=1fc4wJP8HYt1ycnJXeEw5pCpeBL2Cqxx6g9Fb0AYDWQ,805 +pip/_vendor/cachecontrol/caches/__init__.py,sha256=-gHNKYvaeD0kOk5M74eOrsSgIKUtC6i6GfbmugGweEo,86 +pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-38.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-38.pyc,, +pip/_vendor/cachecontrol/caches/file_cache.py,sha256=nYVKsJtXh6gJXvdn1iWyrhxvkwpQrK-eKoMRzuiwkKk,4153 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=HxelMpNCo-dYr2fiJDwM3hhhRmxUYtB5tXm1GpAAT4Y,856 +pip/_vendor/cachecontrol/compat.py,sha256=kHNvMRdt6s_Xwqq_9qJmr9ou3wYMOMUMxPPcwNxT8Mc,695 +pip/_vendor/cachecontrol/controller.py,sha256=CWEX3pedIM9s60suf4zZPtm_JvVgnvogMGK_OiBG5F8,14149 +pip/_vendor/cachecontrol/filewrapper.py,sha256=vACKO8Llzu_ZWyjV1Fxn1MA4TGU60N5N3GSrAFdAY2Q,2533 +pip/_vendor/cachecontrol/heuristics.py,sha256=BFGHJ3yQcxvZizfo90LLZ04T_Z5XSCXvFotrp7Us0sc,4070 +pip/_vendor/cachecontrol/serialize.py,sha256=vIa4jvq4x_KSOLdEIedoknX2aXYHQujLDFV4-F21Dno,7091 +pip/_vendor/cachecontrol/wrapper.py,sha256=5LX0uJwkNQUtYSEw3aGmGu9WY8wGipd81mJ8lG0d0M4,690 +pip/_vendor/certifi/__init__.py,sha256=SsmdmFHjHCY4VLtqwpp9P_jsOcAuHj-5c5WqoEz-oFg,62 +pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255 +pip/_vendor/certifi/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/certifi/__pycache__/__main__.cpython-38.pyc,, +pip/_vendor/certifi/__pycache__/core.cpython-38.pyc,, +pip/_vendor/certifi/cacert.pem,sha256=u3fxPT--yemLvyislQRrRBlsfY9Vq3cgBh6ZmRqCkZc,263774 +pip/_vendor/certifi/core.py,sha256=gOFd0zHYlx4krrLEn982esOtmz3djiG0BFSDhgjlvcI,2840 +pip/_vendor/chardet/__init__.py,sha256=mWZaWmvZkhwfBEAT9O1Y6nRTfKzhT7FHhQTTAujbqUA,3271 +pip/_vendor/chardet/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/big5freq.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/big5prober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/chardistribution.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/charsetprober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/compat.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/cp949prober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/enums.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/escprober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/escsm.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/eucjpprober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/euckrfreq.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/euckrprober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/euctwfreq.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/euctwprober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/gb2312freq.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/gb2312prober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/hebrewprober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/jisfreq.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/jpcntx.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/langthaimodel.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/latin1prober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/mbcssm.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/sjisprober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/universaldetector.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/utf8prober.cpython-38.pyc,, +pip/_vendor/chardet/__pycache__/version.cpython-38.pyc,, +pip/_vendor/chardet/big5freq.py,sha256=D_zK5GyzoVsRes0HkLJziltFQX0bKCLOrFe9_xDvO_8,31254 +pip/_vendor/chardet/big5prober.py,sha256=kBxHbdetBpPe7xrlb-e990iot64g_eGSLd32lB7_h3M,1757 +pip/_vendor/chardet/chardistribution.py,sha256=3woWS62KrGooKyqz4zQSnjFbJpa6V7g02daAibTwcl8,9411 +pip/_vendor/chardet/charsetgroupprober.py,sha256=GZLReHP6FRRn43hvSOoGCxYamErKzyp6RgOQxVeC3kg,3839 +pip/_vendor/chardet/charsetprober.py,sha256=KSmwJErjypyj0bRZmC5F5eM7c8YQgLYIjZXintZNstg,5110 +pip/_vendor/chardet/cli/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1 +pip/_vendor/chardet/cli/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-38.pyc,, +pip/_vendor/chardet/cli/chardetect.py,sha256=XK5zqjUG2a4-y6eLHZ8ThYcp6WWUrdlmELxNypcc2SE,2747 +pip/_vendor/chardet/codingstatemachine.py,sha256=VYp_6cyyki5sHgXDSZnXW4q1oelHc3cu9AyQTX7uug8,3590 +pip/_vendor/chardet/compat.py,sha256=40zr6wICZwknxyuLGGcIOPyve8DTebBCbbvttvnmp5Q,1200 +pip/_vendor/chardet/cp949prober.py,sha256=TZ434QX8zzBsnUvL_8wm4AQVTZ2ZkqEEQL_lNw9f9ow,1855 +pip/_vendor/chardet/enums.py,sha256=Aimwdb9as1dJKZaFNUH2OhWIVBVd6ZkJJ_WK5sNY8cU,1661 +pip/_vendor/chardet/escprober.py,sha256=kkyqVg1Yw3DIOAMJ2bdlyQgUFQhuHAW8dUGskToNWSc,3950 +pip/_vendor/chardet/escsm.py,sha256=RuXlgNvTIDarndvllNCk5WZBIpdCxQ0kcd9EAuxUh84,10510 +pip/_vendor/chardet/eucjpprober.py,sha256=iD8Jdp0ISRjgjiVN7f0e8xGeQJ5GM2oeZ1dA8nbSeUw,3749 +pip/_vendor/chardet/euckrfreq.py,sha256=-7GdmvgWez4-eO4SuXpa7tBiDi5vRXQ8WvdFAzVaSfo,13546 +pip/_vendor/chardet/euckrprober.py,sha256=MqFMTQXxW4HbzIpZ9lKDHB3GN8SP4yiHenTmf8g_PxY,1748 +pip/_vendor/chardet/euctwfreq.py,sha256=No1WyduFOgB5VITUA7PLyC5oJRNzRyMbBxaKI1l16MA,31621 +pip/_vendor/chardet/euctwprober.py,sha256=13p6EP4yRaxqnP4iHtxHOJ6R2zxHq1_m8hTRjzVZ95c,1747 +pip/_vendor/chardet/gb2312freq.py,sha256=JX8lsweKLmnCwmk8UHEQsLgkr_rP_kEbvivC4qPOrlc,20715 +pip/_vendor/chardet/gb2312prober.py,sha256=gGvIWi9WhDjE-xQXHvNIyrnLvEbMAYgyUSZ65HUfylw,1754 +pip/_vendor/chardet/hebrewprober.py,sha256=c3SZ-K7hvyzGY6JRAZxJgwJ_sUS9k0WYkvMY00YBYFo,13838 +pip/_vendor/chardet/jisfreq.py,sha256=vpmJv2Bu0J8gnMVRPHMFefTRvo_ha1mryLig8CBwgOg,25777 +pip/_vendor/chardet/jpcntx.py,sha256=PYlNqRUQT8LM3cT5FmHGP0iiscFlTWED92MALvBungo,19643 +pip/_vendor/chardet/langbulgarianmodel.py,sha256=rk9CJpuxO0bObboJcv6gNgWuosYZmd8qEEds5y7DS_Y,105697 +pip/_vendor/chardet/langgreekmodel.py,sha256=S-uNQ1ihC75yhBvSux24gLFZv3QyctMwC6OxLJdX-bw,99571 +pip/_vendor/chardet/langhebrewmodel.py,sha256=DzPP6TPGG_-PV7tqspu_d8duueqm7uN-5eQ0aHUw1Gg,98776 +pip/_vendor/chardet/langhungarianmodel.py,sha256=RtJH7DZdsmaHqyK46Kkmnk5wQHiJwJPPJSqqIlpeZRc,102498 +pip/_vendor/chardet/langrussianmodel.py,sha256=THqJOhSxiTQcHboDNSc5yofc2koXXQFHFyjtyuntUfM,131180 +pip/_vendor/chardet/langthaimodel.py,sha256=R1wXHnUMtejpw0JnH_JO8XdYasME6wjVqp1zP7TKLgg,103312 +pip/_vendor/chardet/langturkishmodel.py,sha256=rfwanTptTwSycE4-P-QasPmzd-XVYgevytzjlEzBBu8,95946 +pip/_vendor/chardet/latin1prober.py,sha256=S2IoORhFk39FEFOlSFWtgVybRiP6h7BlLldHVclNkU8,5370 +pip/_vendor/chardet/mbcharsetprober.py,sha256=AR95eFH9vuqSfvLQZN-L5ijea25NOBCoXqw8s5O9xLQ,3413 +pip/_vendor/chardet/mbcsgroupprober.py,sha256=h6TRnnYq2OxG1WdD5JOyxcdVpn7dG0q-vB8nWr5mbh4,2012 +pip/_vendor/chardet/mbcssm.py,sha256=SY32wVIF3HzcjY3BaEspy9metbNSKxIIB0RKPn7tjpI,25481 +pip/_vendor/chardet/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/chardet/metadata/__pycache__/languages.cpython-38.pyc,, +pip/_vendor/chardet/metadata/languages.py,sha256=41tLq3eLSrBEbEVVQpVGFq9K7o1ln9b1HpY1l0hCUQo,19474 +pip/_vendor/chardet/sbcharsetprober.py,sha256=nmyMyuxzG87DN6K3Rk2MUzJLMLR69MrWpdnHzOwVUwQ,6136 +pip/_vendor/chardet/sbcsgroupprober.py,sha256=hqefQuXmiFyDBArOjujH6hd6WFXlOD1kWCsxDhjx5Vc,4309 +pip/_vendor/chardet/sjisprober.py,sha256=IIt-lZj0WJqK4rmUZzKZP4GJlE8KUEtFYVuY96ek5MQ,3774 +pip/_vendor/chardet/universaldetector.py,sha256=DpZTXCX0nUHXxkQ9sr4GZxGB_hveZ6hWt3uM94cgWKs,12503 +pip/_vendor/chardet/utf8prober.py,sha256=IdD8v3zWOsB8OLiyPi-y_fqwipRFxV9Nc1eKBLSuIEw,2766 +pip/_vendor/chardet/version.py,sha256=A4CILFAd8MRVG1HoXPp45iK9RLlWyV73a1EtwE8Tvn8,242 +pip/_vendor/colorama/__init__.py,sha256=pCdErryzLSzDW5P-rRPBlPLqbBtIRNJB6cMgoeJns5k,239 +pip/_vendor/colorama/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/colorama/__pycache__/ansi.cpython-38.pyc,, +pip/_vendor/colorama/__pycache__/ansitowin32.cpython-38.pyc,, +pip/_vendor/colorama/__pycache__/initialise.cpython-38.pyc,, +pip/_vendor/colorama/__pycache__/win32.cpython-38.pyc,, +pip/_vendor/colorama/__pycache__/winterm.cpython-38.pyc,, +pip/_vendor/colorama/ansi.py,sha256=Top4EeEuaQdBWdteKMEcGOTeKeF19Q-Wo_6_Cj5kOzQ,2522 +pip/_vendor/colorama/ansitowin32.py,sha256=yV7CEmCb19MjnJKODZEEvMH_fnbJhwnpzo4sxZuGXmA,10517 +pip/_vendor/colorama/initialise.py,sha256=PprovDNxMTrvoNHFcL2NZjpH2XzDc8BLxLxiErfUl4k,1915 +pip/_vendor/colorama/win32.py,sha256=bJ8Il9jwaBN5BJ8bmN6FoYZ1QYuMKv2j8fGrXh7TJjw,5404 +pip/_vendor/colorama/winterm.py,sha256=2y_2b7Zsv34feAsP67mLOVc-Bgq51mdYGo571VprlrM,6438 +pip/_vendor/distlib/__init__.py,sha256=3veAk2rPznOB2gsK6tjbbh0TQMmGE5P82eE9wXq6NIk,581 +pip/_vendor/distlib/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/distlib/__pycache__/compat.cpython-38.pyc,, +pip/_vendor/distlib/__pycache__/database.cpython-38.pyc,, +pip/_vendor/distlib/__pycache__/index.cpython-38.pyc,, +pip/_vendor/distlib/__pycache__/locators.cpython-38.pyc,, +pip/_vendor/distlib/__pycache__/manifest.cpython-38.pyc,, +pip/_vendor/distlib/__pycache__/markers.cpython-38.pyc,, +pip/_vendor/distlib/__pycache__/metadata.cpython-38.pyc,, +pip/_vendor/distlib/__pycache__/resources.cpython-38.pyc,, +pip/_vendor/distlib/__pycache__/scripts.cpython-38.pyc,, +pip/_vendor/distlib/__pycache__/util.cpython-38.pyc,, +pip/_vendor/distlib/__pycache__/version.cpython-38.pyc,, +pip/_vendor/distlib/__pycache__/wheel.cpython-38.pyc,, +pip/_vendor/distlib/_backport/__init__.py,sha256=bqS_dTOH6uW9iGgd0uzfpPjo6vZ4xpPZ7kyfZJ2vNaw,274 +pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/distlib/_backport/__pycache__/misc.cpython-38.pyc,, +pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-38.pyc,, +pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-38.pyc,, +pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-38.pyc,, +pip/_vendor/distlib/_backport/misc.py,sha256=KWecINdbFNOxSOP1fGF680CJnaC6S4fBRgEtaYTw0ig,971 +pip/_vendor/distlib/_backport/shutil.py,sha256=IX_G2NPqwecJibkIDje04bqu0xpHkfSQ2GaGdEVqM5Y,25707 +pip/_vendor/distlib/_backport/sysconfig.cfg,sha256=swZKxq9RY5e9r3PXCrlvQPMsvOdiWZBTHLEbqS8LJLU,2617 +pip/_vendor/distlib/_backport/sysconfig.py,sha256=BQHFlb6pubCl_dvT1NjtzIthylofjKisox239stDg0U,26854 +pip/_vendor/distlib/_backport/tarfile.py,sha256=Ihp7rXRcjbIKw8COm9wSePV9ARGXbSF9gGXAMn2Q-KU,92628 +pip/_vendor/distlib/compat.py,sha256=ADA56xiAxar3mU6qemlBhNbsrFPosXRhO44RzsbJPqk,41408 +pip/_vendor/distlib/database.py,sha256=Kl0YvPQKc4OcpVi7k5cFziydM1xOK8iqdxLGXgbZHV4,51059 +pip/_vendor/distlib/index.py,sha256=SXKzpQCERctxYDMp_OLee2f0J0e19ZhGdCIoMlUfUQM,21066 +pip/_vendor/distlib/locators.py,sha256=c9E4cDEacJ_uKbuE5BqAVocoWp6rsuBGTkiNDQq3zV4,52100 +pip/_vendor/distlib/manifest.py,sha256=nQEhYmgoreaBZzyFzwYsXxJARu3fo4EkunU163U16iE,14811 +pip/_vendor/distlib/markers.py,sha256=6Ac3cCfFBERexiESWIOXmg-apIP8l2esafNSX3KMy-8,4387 +pip/_vendor/distlib/metadata.py,sha256=z2KPy3h3tcDnb9Xs7nAqQ5Oz0bqjWAUFmKWcFKRoodg,38962 +pip/_vendor/distlib/resources.py,sha256=2FGv0ZHF14KXjLIlL0R991lyQQGcewOS4mJ-5n-JVnc,10766 +pip/_vendor/distlib/scripts.py,sha256=_MAj3sMuv56kuM8FsiIWXqbT0gmumPGaOR_atOzn4a4,17180 +pip/_vendor/distlib/t32.exe,sha256=NS3xBCVAld35JVFNmb-1QRyVtThukMrwZVeXn4LhaEQ,96768 +pip/_vendor/distlib/t64.exe,sha256=oAqHes78rUWVM0OtVqIhUvequl_PKhAhXYQWnUf7zR0,105984 +pip/_vendor/distlib/util.py,sha256=f2jZCPrcLCt6LcnC0gUy-Fur60tXD8reA7k4rDpHMDw,59845 +pip/_vendor/distlib/version.py,sha256=_n7F6juvQGAcn769E_SHa7fOcf5ERlEVymJ_EjPRwGw,23391 +pip/_vendor/distlib/w32.exe,sha256=lJtnZdeUxTZWya_EW5DZos_K5rswRECGspIl8ZJCIXs,90112 +pip/_vendor/distlib/w64.exe,sha256=0aRzoN2BO9NWW4ENy4_4vHkHR4qZTFZNVSAJJYlODTI,99840 +pip/_vendor/distlib/wheel.py,sha256=v6DnwTqhNHwrEVFr8_YeiTW6G4ftP_evsywNgrmdb2o,41144 +pip/_vendor/distro.py,sha256=xxMIh2a3KmippeWEHzynTdHT3_jZM0o-pos0dAWJROM,43628 +pip/_vendor/html5lib/__init__.py,sha256=BYzcKCqeEii52xDrqBFruhnmtmkiuHXFyFh-cglQ8mk,1160 +pip/_vendor/html5lib/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-38.pyc,, +pip/_vendor/html5lib/__pycache__/_inputstream.cpython-38.pyc,, +pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-38.pyc,, +pip/_vendor/html5lib/__pycache__/_utils.cpython-38.pyc,, +pip/_vendor/html5lib/__pycache__/constants.cpython-38.pyc,, +pip/_vendor/html5lib/__pycache__/html5parser.cpython-38.pyc,, +pip/_vendor/html5lib/__pycache__/serializer.cpython-38.pyc,, +pip/_vendor/html5lib/_ihatexml.py,sha256=ifOwF7pXqmyThIXc3boWc96s4MDezqRrRVp7FwDYUFs,16728 +pip/_vendor/html5lib/_inputstream.py,sha256=jErNASMlkgs7MpOM9Ve_VdLDJyFFweAjLuhVutZz33U,32353 +pip/_vendor/html5lib/_tokenizer.py,sha256=04mgA2sNTniutl2fxFv-ei5bns4iRaPxVXXHh_HrV_4,77040 +pip/_vendor/html5lib/_trie/__init__.py,sha256=nqfgO910329BEVJ5T4psVwQtjd2iJyEXQ2-X8c1YxwU,109 +pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-38.pyc,, +pip/_vendor/html5lib/_trie/__pycache__/py.cpython-38.pyc,, +pip/_vendor/html5lib/_trie/_base.py,sha256=CaybYyMro8uERQYjby2tTeSUatnWDfWroUN9N7ety5w,1013 +pip/_vendor/html5lib/_trie/py.py,sha256=wXmQLrZRf4MyWNyg0m3h81m9InhLR7GJ002mIIZh-8o,1775 +pip/_vendor/html5lib/_utils.py,sha256=Dx9AKntksRjFT1veBj7I362pf5OgIaT0zglwq43RnfU,4931 +pip/_vendor/html5lib/constants.py,sha256=Ll-yzLU_jcjyAI_h57zkqZ7aQWE5t5xA4y_jQgoUUhw,83464 +pip/_vendor/html5lib/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-38.pyc,, +pip/_vendor/html5lib/filters/__pycache__/base.cpython-38.pyc,, +pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-38.pyc,, +pip/_vendor/html5lib/filters/__pycache__/lint.cpython-38.pyc,, +pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-38.pyc,, +pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-38.pyc,, +pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-38.pyc,, +pip/_vendor/html5lib/filters/alphabeticalattributes.py,sha256=lViZc2JMCclXi_5gduvmdzrRxtO5Xo9ONnbHBVCsykU,919 +pip/_vendor/html5lib/filters/base.py,sha256=z-IU9ZAYjpsVsqmVt7kuWC63jR11hDMr6CVrvuao8W0,286 +pip/_vendor/html5lib/filters/inject_meta_charset.py,sha256=egDXUEHXmAG9504xz0K6ALDgYkvUrC2q15YUVeNlVQg,2945 +pip/_vendor/html5lib/filters/lint.py,sha256=jk6q56xY0ojiYfvpdP-OZSm9eTqcAdRqhCoPItemPYA,3643 +pip/_vendor/html5lib/filters/optionaltags.py,sha256=8lWT75J0aBOHmPgfmqTHSfPpPMp01T84NKu0CRedxcE,10588 +pip/_vendor/html5lib/filters/sanitizer.py,sha256=m6oGmkBhkGAnn2nV6D4hE78SCZ6WEnK9rKdZB3uXBIc,26897 +pip/_vendor/html5lib/filters/whitespace.py,sha256=8eWqZxd4UC4zlFGW6iyY6f-2uuT8pOCSALc3IZt7_t4,1214 +pip/_vendor/html5lib/html5parser.py,sha256=anr-aXre_ImfrkQ35c_rftKXxC80vJCREKe06Tq15HA,117186 +pip/_vendor/html5lib/serializer.py,sha256=_PpvcZF07cwE7xr9uKkZqh5f4UEaI8ltCU2xPJzaTpk,15759 +pip/_vendor/html5lib/treeadapters/__init__.py,sha256=A0rY5gXIe4bJOiSGRO_j_tFhngRBO8QZPzPtPw5dFzo,679 +pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-38.pyc,, +pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-38.pyc,, +pip/_vendor/html5lib/treeadapters/genshi.py,sha256=CH27pAsDKmu4ZGkAUrwty7u0KauGLCZRLPMzaO3M5vo,1715 +pip/_vendor/html5lib/treeadapters/sax.py,sha256=BKS8woQTnKiqeffHsxChUqL4q2ZR_wb5fc9MJ3zQC8s,1776 +pip/_vendor/html5lib/treebuilders/__init__.py,sha256=AysSJyvPfikCMMsTVvaxwkgDieELD5dfR8FJIAuq7hY,3592 +pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-38.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-38.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-38.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-38.pyc,, +pip/_vendor/html5lib/treebuilders/base.py,sha256=z-o51vt9r_l2IDG5IioTOKGzZne4Fy3_Fc-7ztrOh4I,14565 +pip/_vendor/html5lib/treebuilders/dom.py,sha256=22whb0C71zXIsai5mamg6qzBEiigcBIvaDy4Asw3at0,8925 +pip/_vendor/html5lib/treebuilders/etree.py,sha256=w5ZFpKk6bAxnrwD2_BrF5EVC7vzz0L3LMi9Sxrbc_8w,12836 +pip/_vendor/html5lib/treebuilders/etree_lxml.py,sha256=9gqDjs-IxsPhBYa5cpvv2FZ1KZlG83Giusy2lFmvIkE,14766 +pip/_vendor/html5lib/treewalkers/__init__.py,sha256=OBPtc1TU5mGyy18QDMxKEyYEz0wxFUUNj5v0-XgmYhY,5719 +pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-38.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-38.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-38.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-38.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-38.pyc,, +pip/_vendor/html5lib/treewalkers/base.py,sha256=ouiOsuSzvI0KgzdWP8PlxIaSNs9falhbiinAEc_UIJY,7476 +pip/_vendor/html5lib/treewalkers/dom.py,sha256=EHyFR8D8lYNnyDU9lx_IKigVJRyecUGua0mOi7HBukc,1413 +pip/_vendor/html5lib/treewalkers/etree.py,sha256=xo1L5m9VtkfpFJK0pFmkLVajhqYYVisVZn3k9kYpPkI,4551 +pip/_vendor/html5lib/treewalkers/etree_lxml.py,sha256=_b0LAVWLcVu9WaU_-w3D8f0IRSpCbjf667V-3NRdhTw,6357 +pip/_vendor/html5lib/treewalkers/genshi.py,sha256=4D2PECZ5n3ZN3qu3jMl9yY7B81jnQApBQSVlfaIuYbA,2309 +pip/_vendor/idna/__init__.py,sha256=9Nt7xpyet3DmOrPUGooDdAwmHZZu1qUAy2EaJ93kGiQ,58 +pip/_vendor/idna/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/idna/__pycache__/codec.cpython-38.pyc,, +pip/_vendor/idna/__pycache__/compat.cpython-38.pyc,, +pip/_vendor/idna/__pycache__/core.cpython-38.pyc,, +pip/_vendor/idna/__pycache__/idnadata.cpython-38.pyc,, +pip/_vendor/idna/__pycache__/intranges.cpython-38.pyc,, +pip/_vendor/idna/__pycache__/package_data.cpython-38.pyc,, +pip/_vendor/idna/__pycache__/uts46data.cpython-38.pyc,, +pip/_vendor/idna/codec.py,sha256=4RVMhqFquJgyGBKyl40ARqcgDzkDDXZUvyl1EOCRLFE,3027 +pip/_vendor/idna/compat.py,sha256=g-7Ph45nzILe_7xvxdbTebrHZq4mQWxIOH1rjMc6xrs,232 +pip/_vendor/idna/core.py,sha256=VdFGQyiit1eMKUQ2x0mNXoGThrXlRyp070mPDyLX9Yg,11849 +pip/_vendor/idna/idnadata.py,sha256=cl4x9RLdw1ZMtEEbvKwAsX-Id3AdIjO5U3HaoKM6VGs,42350 +pip/_vendor/idna/intranges.py,sha256=TY1lpxZIQWEP6tNqjZkFA5hgoMWOj1OBmnUG8ihT87E,1749 +pip/_vendor/idna/package_data.py,sha256=kxptFveZ37zbPSmKU7KMEA8Pi7h3-sM1-p2agm2PpCI,21 +pip/_vendor/idna/uts46data.py,sha256=4CZEB6ZQgmSNIATBn2V_xdW9PEgVOXAOYRzCeQGsK_E,196224 +pip/_vendor/msgpack/__init__.py,sha256=2gJwcsTIaAtCM0GMi2rU-_Y6kILeeQuqRkrQ22jSANc,1118 +pip/_vendor/msgpack/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/msgpack/__pycache__/_version.cpython-38.pyc,, +pip/_vendor/msgpack/__pycache__/exceptions.cpython-38.pyc,, +pip/_vendor/msgpack/__pycache__/ext.cpython-38.pyc,, +pip/_vendor/msgpack/__pycache__/fallback.cpython-38.pyc,, +pip/_vendor/msgpack/_version.py,sha256=dFR03oACnj4lsKd1RnwD7BPMiVI_FMygdOL1TOBEw_U,20 +pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081 +pip/_vendor/msgpack/ext.py,sha256=4l356Y4sVEcvCla2dh_cL57vh4GMhZfa3kuWHFHYz6A,6088 +pip/_vendor/msgpack/fallback.py,sha256=Rpv1Ldey8f8ueRnQznD4ARKBn9dxM2PywVNkXI8IEeE,38026 +pip/_vendor/packaging/__about__.py,sha256=j4B7IMMSqpUnYzcYd5H5WZlILXevD7Zm_n9lj_TROTw,726 +pip/_vendor/packaging/__init__.py,sha256=6enbp5XgRfjBjsI9-bn00HjHf5TH21PDMOKkJW8xw-w,562 +pip/_vendor/packaging/__pycache__/__about__.cpython-38.pyc,, +pip/_vendor/packaging/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/packaging/__pycache__/_compat.cpython-38.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-38.pyc,, +pip/_vendor/packaging/__pycache__/_typing.cpython-38.pyc,, +pip/_vendor/packaging/__pycache__/markers.cpython-38.pyc,, +pip/_vendor/packaging/__pycache__/requirements.cpython-38.pyc,, +pip/_vendor/packaging/__pycache__/specifiers.cpython-38.pyc,, +pip/_vendor/packaging/__pycache__/tags.cpython-38.pyc,, +pip/_vendor/packaging/__pycache__/utils.cpython-38.pyc,, +pip/_vendor/packaging/__pycache__/version.cpython-38.pyc,, +pip/_vendor/packaging/_compat.py,sha256=MXdsGpSE_W-ZrHoC87andI4LV2FAwU7HLL-eHe_CjhU,1128 +pip/_vendor/packaging/_structures.py,sha256=ozkCX8Q8f2qE1Eic3YiQ4buDVfgz2iYevY9e7R2y3iY,2022 +pip/_vendor/packaging/_typing.py,sha256=VgA0AAvsc97KB5nF89zoudOyCMEsV7FlaXzZbYqEkzA,1824 +pip/_vendor/packaging/markers.py,sha256=8DOn1c7oZ_DySBlLom_9o49GzobVGYN8-kpK_nsj8oQ,9472 +pip/_vendor/packaging/requirements.py,sha256=MHqf_FKihHC0VkOB62ZUdUyG8okEL97D4Xy_jK1yFS0,5110 +pip/_vendor/packaging/specifiers.py,sha256=RaxQ-JKyCqI5QBm6gDvboZ2K6jjLVd-pxq0kvYf28kc,32208 +pip/_vendor/packaging/tags.py,sha256=BMEL_3W3E8nXK_AXAWqmlYccsvoznFKkTBkTPR48DB8,29561 +pip/_vendor/packaging/utils.py,sha256=5vUxwCVYSmaNJFgd7KaCBpxHXQN89KIvRLvCsDzao0k,4385 +pip/_vendor/packaging/version.py,sha256=t7FpsZKmDncMn6EG28dEu_5NBZUa9_HVoiG-fsDo3oc,15974 +pip/_vendor/pep517/__init__.py,sha256=mju9elFHLEUJ23rU5Zpdj8nROdY0Vj3bp4ZgvBTs6bg,130 +pip/_vendor/pep517/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/pep517/__pycache__/build.cpython-38.pyc,, +pip/_vendor/pep517/__pycache__/check.cpython-38.pyc,, +pip/_vendor/pep517/__pycache__/colorlog.cpython-38.pyc,, +pip/_vendor/pep517/__pycache__/compat.cpython-38.pyc,, +pip/_vendor/pep517/__pycache__/dirtools.cpython-38.pyc,, +pip/_vendor/pep517/__pycache__/envbuild.cpython-38.pyc,, +pip/_vendor/pep517/__pycache__/meta.cpython-38.pyc,, +pip/_vendor/pep517/__pycache__/wrappers.cpython-38.pyc,, +pip/_vendor/pep517/build.py,sha256=Z49CmRFafX7NjoBModiibwQYa_EYz3E0F31b7D5WVvs,3456 +pip/_vendor/pep517/check.py,sha256=8LJLtfZ99zAcV4vKJ1a-odMxg2sEImD7RMNg_Ere-1Y,6082 +pip/_vendor/pep517/colorlog.py,sha256=Tk9AuYm_cLF3BKTBoSTJt9bRryn0aFojIQOwbfVUTxQ,4098 +pip/_vendor/pep517/compat.py,sha256=M-5s4VNp8rjyT76ZZ_ibnPD44DYVzSQlyCEHayjtDPw,780 +pip/_vendor/pep517/dirtools.py,sha256=2mkAkAL0mRz_elYFjRKuekTJVipH1zTn4tbf1EDev84,1129 +pip/_vendor/pep517/envbuild.py,sha256=szKUFlO50X1ahQfXwz4hD9V2VE_bz9MLVPIeidsFo4w,6041 +pip/_vendor/pep517/in_process/__init__.py,sha256=MyWoAi8JHdcBv7yXuWpUSVADbx6LSB9rZh7kTIgdA8Y,563 +pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-38.pyc,, +pip/_vendor/pep517/in_process/_in_process.py,sha256=XrKOTURJdia5R7i3i_OQmS89LASFXE3HQXfX63qZBIE,8438 +pip/_vendor/pep517/meta.py,sha256=8mnM5lDnT4zXQpBTliJbRGfesH7iioHwozbDxALPS9Y,2463 +pip/_vendor/pep517/wrappers.py,sha256=QYZfN1nWoq4Z2krY-UX14JLAxkdNwujYjRGf7qFc914,11044 +pip/_vendor/pkg_resources/__init__.py,sha256=XpGBfvS9fafA6bm5rx7vnxdxs7yqyoc_NnpzKApkJ64,108277 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-38.pyc,, +pip/_vendor/pkg_resources/py31compat.py,sha256=CRk8fkiPRDLsbi5pZcKsHI__Pbmh_94L8mr9Qy9Ab2U,562 +pip/_vendor/progress/__init__.py,sha256=fcbQQXo5np2CoQyhSH5XprkicwLZNLePR3uIahznSO0,4857 +pip/_vendor/progress/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/progress/__pycache__/bar.cpython-38.pyc,, +pip/_vendor/progress/__pycache__/counter.cpython-38.pyc,, +pip/_vendor/progress/__pycache__/spinner.cpython-38.pyc,, +pip/_vendor/progress/bar.py,sha256=QuDuVNcmXgpxtNtxO0Fq72xKigxABaVmxYGBw4J3Z_E,2854 +pip/_vendor/progress/counter.py,sha256=MznyBrvPWrOlGe4MZAlGUb9q3aODe6_aNYeAE_VNoYA,1372 +pip/_vendor/progress/spinner.py,sha256=k8JbDW94T0-WXuXfxZIFhdoNPYp3jfnpXqBnfRv5fGs,1380 +pip/_vendor/pyparsing.py,sha256=J1b4z3S_KwyJW7hKGnoN-hXW9pgMIzIP6QThyY5yJq4,273394 +pip/_vendor/requests/__init__.py,sha256=ib7nRjDadbCMOeX2sMQLcbXzy982HoKRY2LD_gWqwPM,4458 +pip/_vendor/requests/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/__version__.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/_internal_utils.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/adapters.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/api.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/auth.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/certs.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/compat.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/cookies.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/exceptions.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/help.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/hooks.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/models.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/packages.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/sessions.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/status_codes.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/structures.cpython-38.pyc,, +pip/_vendor/requests/__pycache__/utils.cpython-38.pyc,, +pip/_vendor/requests/__version__.py,sha256=k4J8c1yFRFzwGWwlN7miaDOclFtbcIs1GlnmT17YbXQ,441 +pip/_vendor/requests/_internal_utils.py,sha256=Zx3PnEUccyfsB-ie11nZVAW8qClJy0gx1qNME7rgT18,1096 +pip/_vendor/requests/adapters.py,sha256=e-bmKEApNVqFdylxuMJJfiaHdlmS_zhWhIMEzlHvGuc,21548 +pip/_vendor/requests/api.py,sha256=PlHM-HT3PQ5lyufoeGmV-nJxRi7UnUyGVh7OV7B9XV4,6496 +pip/_vendor/requests/auth.py,sha256=OMoJIVKyRLy9THr91y8rxysZuclwPB-K1Xg1zBomUhQ,10207 +pip/_vendor/requests/certs.py,sha256=nXRVq9DtGmv_1AYbwjTu9UrgAcdJv05ZvkNeaoLOZxY,465 +pip/_vendor/requests/compat.py,sha256=LQWuCR4qXk6w7-qQopXyz0WNHUdAD40k0mKnaAEf1-g,2045 +pip/_vendor/requests/cookies.py,sha256=Y-bKX6TvW3FnYlE6Au0SXtVVWcaNdFvuAwQxw-G0iTI,18430 +pip/_vendor/requests/exceptions.py,sha256=d9fJJw8YFBB9VzG9qhvxLuOx6be3c_Dwbck-dVUEAcs,3173 +pip/_vendor/requests/help.py,sha256=SJPVcoXeo7KfK4AxJN5eFVQCjr0im87tU2n7ubLsksU,3578 +pip/_vendor/requests/hooks.py,sha256=QReGyy0bRcr5rkwCuObNakbYsc7EkiKeBwG4qHekr2Q,757 +pip/_vendor/requests/models.py,sha256=UkkaVuU1tc-BKYB41dds35saisoTpaYJ2YBCFZEEfhM,34373 +pip/_vendor/requests/packages.py,sha256=njJmVifY4aSctuW3PP5EFRCxjEwMRDO6J_feG2dKWsI,695 +pip/_vendor/requests/sessions.py,sha256=BsnR-zYILgoFzJ6yq4T8ht_i0PwwPGVAxWxWaV5dcHg,30137 +pip/_vendor/requests/status_codes.py,sha256=gT79Pbs_cQjBgp-fvrUgg1dn2DQO32bDj4TInjnMPSc,4188 +pip/_vendor/requests/structures.py,sha256=msAtr9mq1JxHd-JRyiILfdFlpbJwvvFuP3rfUQT_QxE,3005 +pip/_vendor/requests/utils.py,sha256=_K9AgkN6efPe-a-zgZurXzds5PBC0CzDkyjAE2oCQFQ,30529 +pip/_vendor/resolvelib/__init__.py,sha256=QWAqNErjxqEMKl-AUccXz10aCKVmO-WmWvxUl3QOlFY,537 +pip/_vendor/resolvelib/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/resolvelib/__pycache__/providers.cpython-38.pyc,, +pip/_vendor/resolvelib/__pycache__/reporters.cpython-38.pyc,, +pip/_vendor/resolvelib/__pycache__/resolvers.cpython-38.pyc,, +pip/_vendor/resolvelib/__pycache__/structs.cpython-38.pyc,, +pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-38.pyc,, +pip/_vendor/resolvelib/compat/collections_abc.py,sha256=uy8xUZ-NDEw916tugUXm8HgwCGiMO0f-RcdnpkfXfOs,156 +pip/_vendor/resolvelib/providers.py,sha256=bfzFDZd7UqkkAS7lUM_HeYbA-HzjKfDlle_pn_79vio,5638 +pip/_vendor/resolvelib/reporters.py,sha256=hQvvXuuEBOyEWO8KDfLsWKVjX55UFMAUwO0YZMNpzAw,1364 +pip/_vendor/resolvelib/resolvers.py,sha256=P6aq-7pY5E7zROb0zUUWqFIHEA9Lm0MWsx_bYXzUg3A,17292 +pip/_vendor/resolvelib/structs.py,sha256=Z6m4CkKJlWH4ZIKelEsKNeZqKTvyux4hqBNzY4kZzLo,4495 +pip/_vendor/six.py,sha256=U4Z_yv534W5CNyjY9i8V1OXY2SjAny8y2L5vDLhhThM,34159 +pip/_vendor/tenacity/__init__.py,sha256=6qSjN2BJDt864b6nxFoalpbCLQHiD2iYAlnUS9dWSSw,16528 +pip/_vendor/tenacity/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/tenacity/__pycache__/_asyncio.cpython-38.pyc,, +pip/_vendor/tenacity/__pycache__/_utils.cpython-38.pyc,, +pip/_vendor/tenacity/__pycache__/after.cpython-38.pyc,, +pip/_vendor/tenacity/__pycache__/before.cpython-38.pyc,, +pip/_vendor/tenacity/__pycache__/before_sleep.cpython-38.pyc,, +pip/_vendor/tenacity/__pycache__/compat.cpython-38.pyc,, +pip/_vendor/tenacity/__pycache__/nap.cpython-38.pyc,, +pip/_vendor/tenacity/__pycache__/retry.cpython-38.pyc,, +pip/_vendor/tenacity/__pycache__/stop.cpython-38.pyc,, +pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-38.pyc,, +pip/_vendor/tenacity/__pycache__/wait.cpython-38.pyc,, +pip/_vendor/tenacity/_asyncio.py,sha256=6C4Sfv9IOUYf1-0vuIoE6OGbmJrJywH0-YslrxmbxKw,2833 +pip/_vendor/tenacity/_utils.py,sha256=W1nujHum1f9i4RQpOSjqsQo9_mQtaUtNznXAmQHsL28,4555 +pip/_vendor/tenacity/after.py,sha256=KNIi2WT83r4eqA3QaXMK1zXQzkbLgVHj5uRanY6HabM,1307 +pip/_vendor/tenacity/before.py,sha256=B9pAXn6_J1UKzwTL9nFtRpOhNg8s5vGSi4bqnx4-laA,1154 +pip/_vendor/tenacity/before_sleep.py,sha256=lZEMHNaFRmdCcws3Moh4EOZ9zeo4MRxskdiUudvNuvY,1784 +pip/_vendor/tenacity/compat.py,sha256=dHonJkJlHwD2cmqLrYHYU0Tdzm2bn1-76QZSt6OCemw,739 +pip/_vendor/tenacity/nap.py,sha256=7VVudOTmuv_-C_XJlvjGcgHbV6_A2HlzymaXu8vj1d8,1280 +pip/_vendor/tenacity/retry.py,sha256=xskLGa15EsNhPPOmIUcKS7CqjaRAtWxGFNPNRjjz9UU,5463 +pip/_vendor/tenacity/stop.py,sha256=4cjSe_YPSawz6iI-QBDN0xFfE_zlKvjhFwx21ZlyD2E,2435 +pip/_vendor/tenacity/tornadoweb.py,sha256=q3XZW2A9Rky1BhUQbNHF61hM1EXQ57dA7wxPnlSOx3s,1729 +pip/_vendor/tenacity/wait.py,sha256=FAoIfIUSNf5OWJYT7nhjFC0uOVijHMBd56AJRyLN230,6017 +pip/_vendor/toml/__init__.py,sha256=kYgYzehhUx1cctsuprmjEKwnSdmQeC53cTxi7nxQrko,747 +pip/_vendor/toml/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/toml/__pycache__/decoder.cpython-38.pyc,, +pip/_vendor/toml/__pycache__/encoder.cpython-38.pyc,, +pip/_vendor/toml/__pycache__/ordered.cpython-38.pyc,, +pip/_vendor/toml/__pycache__/tz.cpython-38.pyc,, +pip/_vendor/toml/decoder.py,sha256=deDPQqpj92SG6pAtwLbgKHrIsly7hAZG-U6g2y7hyGc,38954 +pip/_vendor/toml/encoder.py,sha256=tBe93_GB21K52TlSbMiYuGeIGXH70F2WzAg-lIfVoko,9964 +pip/_vendor/toml/ordered.py,sha256=UWt5Eka90IWVBYdvLgY5PXnkBcVYpHjnw9T67rM85T8,378 +pip/_vendor/toml/tz.py,sha256=-5vg8wkg_atnVi2TnEveexIVE7T_FxBVr_-2WVfO1oA,701 +pip/_vendor/urllib3/__init__.py,sha256=j3yzHIbmW7CS-IKQJ9-PPQf_YKO8EOAey_rMW0UR7us,2763 +pip/_vendor/urllib3/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/urllib3/__pycache__/_collections.cpython-38.pyc,, +pip/_vendor/urllib3/__pycache__/_version.cpython-38.pyc,, +pip/_vendor/urllib3/__pycache__/connection.cpython-38.pyc,, +pip/_vendor/urllib3/__pycache__/connectionpool.cpython-38.pyc,, +pip/_vendor/urllib3/__pycache__/exceptions.cpython-38.pyc,, +pip/_vendor/urllib3/__pycache__/fields.cpython-38.pyc,, +pip/_vendor/urllib3/__pycache__/filepost.cpython-38.pyc,, +pip/_vendor/urllib3/__pycache__/poolmanager.cpython-38.pyc,, +pip/_vendor/urllib3/__pycache__/request.cpython-38.pyc,, +pip/_vendor/urllib3/__pycache__/response.cpython-38.pyc,, +pip/_vendor/urllib3/_collections.py,sha256=Rp1mVyBgc_UlAcp6M3at1skJBXR5J43NawRTvW2g_XY,10811 +pip/_vendor/urllib3/_version.py,sha256=2Bjk_cB49921PTvereWp8ZR3NhLNoCMAyHSGP-OesLk,63 +pip/_vendor/urllib3/connection.py,sha256=q-vf_TM3MyRbZcFn3-VCKZBSf0oEhGjv7BFeZm_7kw4,18748 +pip/_vendor/urllib3/connectionpool.py,sha256=IKoeuJZY9YAYm0GK4q-MXAhyXW0M_FnvabYaNsDIR-E,37133 +pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-38.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-38.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-38.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-38.pyc,, +pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957 +pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-38.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-38.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=eRy1Mj-wpg7sR6-OSvnSV4jUbjMT464dLN_CWxbIRVw,17649 +pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=lgIdsSycqfB0Xm5BiJzXGeIKT7ybCQMFPJAgkcwPa1s,13908 +pip/_vendor/urllib3/contrib/appengine.py,sha256=lm86XjaOI7ajbonsN0JLA0ckkgSFWhgxWKLW_Ymt4sI,11034 +pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=6I95h1_71fzxmoMSNtY0gB8lnyCoVtP_DpqFGj14fdU,4160 +pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=kqm9SX4h_6h76QwGDBiNQ7i-ktKZunZuxzTVjjtHDto,16795 +pip/_vendor/urllib3/contrib/securetransport.py,sha256=MEEHa3YqG8ifDPYG0gO12C1tZu2I-HqGF4lC53cHFPg,34303 +pip/_vendor/urllib3/contrib/socks.py,sha256=DcRjM2l0rQMIyhYrN6r-tnVkY6ZTDxHJlM8_usAkGCA,7097 +pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217 +pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579 +pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440 +pip/_vendor/urllib3/packages/__init__.py,sha256=h4BLhD4tLaBx1adaDtKXfupsgqY0wWLXb_f1_yVlV6A,108 +pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/urllib3/packages/__pycache__/six.cpython-38.pyc,, +pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-38.pyc,, +pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417 +pip/_vendor/urllib3/packages/six.py,sha256=adx4z-eM_D0Vvu0IIqVzFACQ_ux9l64y7DkSEfbxCDs,32536 +pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py,sha256=zppezdEQdpGsYerI6mV6MfUYy495JV4mcOWC_GgbljU,757 +pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-38.pyc,, +pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py,sha256=6dZ-q074g7XhsJ27MFCgkct8iVNZB3sMZvKhf-KUVy0,5679 +pip/_vendor/urllib3/poolmanager.py,sha256=whzlX6UTEgODMOCy0ZDMUONRBCz5wyIM8Z9opXAY-Lk,19763 +pip/_vendor/urllib3/request.py,sha256=ZFSIqX0C6WizixecChZ3_okyu7BEv0lZu1VT0s6h4SM,5985 +pip/_vendor/urllib3/response.py,sha256=hGhGBh7TkEkh_IQg5C1W_xuPNrgIKv5BUXPyE-q0LuE,28203 +pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155 +pip/_vendor/urllib3/util/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/urllib3/util/__pycache__/connection.cpython-38.pyc,, +pip/_vendor/urllib3/util/__pycache__/proxy.cpython-38.pyc,, +pip/_vendor/urllib3/util/__pycache__/queue.cpython-38.pyc,, +pip/_vendor/urllib3/util/__pycache__/request.cpython-38.pyc,, +pip/_vendor/urllib3/util/__pycache__/response.cpython-38.pyc,, +pip/_vendor/urllib3/util/__pycache__/retry.cpython-38.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-38.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-38.pyc,, +pip/_vendor/urllib3/util/__pycache__/timeout.cpython-38.pyc,, +pip/_vendor/urllib3/util/__pycache__/url.cpython-38.pyc,, +pip/_vendor/urllib3/util/__pycache__/wait.cpython-38.pyc,, +pip/_vendor/urllib3/util/connection.py,sha256=_I-ZoF58xXLLjo-Q5IGaJrMxy2IW_exI8K9O9pq7op0,4922 +pip/_vendor/urllib3/util/proxy.py,sha256=FGipAEnvZteyldXNjce4DEB7YzwU-a5lep8y5S0qHQg,1604 +pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498 +pip/_vendor/urllib3/util/request.py,sha256=NnzaEKQ1Pauw5MFMV6HmgEMHITf0Aua9fQuzi2uZzGc,4123 +pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510 +pip/_vendor/urllib3/util/retry.py,sha256=s3ZNKXO6_t23ZQMg8zlu20PMSqraT495-S_mEY_19ak,21396 +pip/_vendor/urllib3/util/ssl_.py,sha256=dKcH-sqiR_ESWqKP1PJ6SUAUSvqC-fkMQGrTokV4NMY,16281 +pip/_vendor/urllib3/util/ssltransport.py,sha256=vOOCPRn-dODUZ2qtMCfStb0JmjgrgJaKLqJ9qvKucFs,6932 +pip/_vendor/urllib3/util/timeout.py,sha256=QSbBUNOB9yh6AnDn61SrLQ0hg5oz0I9-uXEG91AJuIg,10003 +pip/_vendor/urllib3/util/url.py,sha256=KP_yaHA0TFFAsQSImc_FOHO-Wq3PNHf_bKObKcrgdU4,13981 +pip/_vendor/urllib3/util/wait.py,sha256=3MUKRSAUJDB2tgco7qRUskW0zXGAWYvRRE4Q1_6xlLs,5404 +pip/_vendor/vendor.txt,sha256=yaN2qLLkKuoRmFLCxGJ1LZtZiuV7T7NoisZqwWNRhIU,364 +pip/_vendor/webencodings/__init__.py,sha256=qOBJIuPy_4ByYH6W_bNgJF-qYQ2DoU-dKsDu5yRWCXg,10579 +pip/_vendor/webencodings/__pycache__/__init__.cpython-38.pyc,, +pip/_vendor/webencodings/__pycache__/labels.cpython-38.pyc,, +pip/_vendor/webencodings/__pycache__/mklabels.cpython-38.pyc,, +pip/_vendor/webencodings/__pycache__/tests.cpython-38.pyc,, +pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-38.pyc,, +pip/_vendor/webencodings/labels.py,sha256=4AO_KxTddqGtrL9ns7kAPjb0CcN6xsCIxbK37HY9r3E,8979 +pip/_vendor/webencodings/mklabels.py,sha256=GYIeywnpaLnP0GSic8LFWgd0UVvO_l1Nc6YoF-87R_4,1305 +pip/_vendor/webencodings/tests.py,sha256=OtGLyjhNY1fvkW1GvLJ_FV9ZoqC9Anyjr7q3kxTbzNs,6563 +pip/_vendor/webencodings/x_user_defined.py,sha256=yOqWSdmpytGfUgh_Z6JYgDNhoc-BAHyyeeT15Fr42tM,4307 +pip/py.typed,sha256=l9g-Fc1zgtIZ70tLJDcx6qKeqDutTVVSceIqUod-awg,286 diff --git a/venv/lib/python3.8/site-packages/pip-21.1.dist-info/WHEEL b/venv/lib/python3.8/site-packages/pip-21.1.dist-info/WHEEL new file mode 100644 index 00000000..385faab0 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip-21.1.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.36.2) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/venv/lib/python3.8/site-packages/pip-21.1.dist-info/entry_points.txt b/venv/lib/python3.8/site-packages/pip-21.1.dist-info/entry_points.txt new file mode 100644 index 00000000..d48bd8a8 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip-21.1.dist-info/entry_points.txt @@ -0,0 +1,5 @@ +[console_scripts] +pip = pip._internal.cli.main:main +pip3 = pip._internal.cli.main:main +pip3.8 = pip._internal.cli.main:main + diff --git a/venv/lib/python3.8/site-packages/pip-21.1.dist-info/top_level.txt b/venv/lib/python3.8/site-packages/pip-21.1.dist-info/top_level.txt new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip-21.1.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/venv/lib/python3.8/site-packages/pip/__init__.py b/venv/lib/python3.8/site-packages/pip/__init__.py new file mode 100644 index 00000000..9a8c5927 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/__init__.py @@ -0,0 +1,14 @@ +from typing import List, Optional + +__version__ = "21.1" + + +def main(args=None): + # type: (Optional[List[str]]) -> int + """This is an internal API only meant for use by pip's own console scripts. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/venv/lib/python3.8/site-packages/pip/__main__.py b/venv/lib/python3.8/site-packages/pip/__main__.py new file mode 100644 index 00000000..fe34a7b7 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/__main__.py @@ -0,0 +1,31 @@ +import os +import sys +import warnings + +# Remove '' and current working directory from the first entry +# of sys.path, if present to avoid using current directory +# in pip commands check, freeze, install, list and show, +# when invoked as python -m pip +if sys.path[0] in ("", os.getcwd()): + sys.path.pop(0) + +# If we are running from a wheel, add the wheel to sys.path +# This allows the usage python pip-*.whl/pip install pip-*.whl +if __package__ == "": + # __file__ is pip-*.whl/pip/__main__.py + # first dirname call strips of '/__main__.py', second strips off '/pip' + # Resulting path is the name of the wheel itself + # Add that to sys.path so we can import pip + path = os.path.dirname(os.path.dirname(__file__)) + sys.path.insert(0, path) + +if __name__ == "__main__": + # Work around the error reported in #9540, pending a proper fix. + # Note: It is essential the warning filter is set *before* importing + # pip, as the deprecation happens at import time, not runtime. + warnings.filterwarnings( + "ignore", category=DeprecationWarning, module=".*packaging\\.version" + ) + from pip._internal.cli.main import main as _main + + sys.exit(_main()) diff --git a/venv/lib/python3.8/site-packages/pip/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a08cb46f3075c7da519383142eeadf845eabc29a GIT binary patch literal 552 zcmYk3L5tNe5XY0Y`}X;C!Gm`PFH-Qet_bdmh$0Artb%%ZmzZs`??u}rn@N3iSx+i{ z1V4jcsaH>a1y4@8C_8i}o$$|ZW|DV%dkaPe-@m=LoUvaixokNlPss5W1;rF^S;tqr z%T^g@DqH1hrV6$5m9GkwzhUL>Z_=?c8;h3)<2Zliqj6TYXT`n!YX7LA8viY$zvR!z z@dgFORhIalIcMkmoPFU$%+G$j-53P=qy=N64#b0}uU~+(?EsyYHo}Pu(4&Uq0le|I z5!}{7<1D&X12)0^{mMM0wxxW AmH+?% literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/__pycache__/__main__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/__pycache__/__main__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aa07a57b395a654a142ec6bbea36ff30a708a3a6 GIT binary patch literal 555 zcmYjNF|X4w5I#FjYTj%6;OXfJ7Q|Ylri_3PVqks?LP!x(i0W&e+r%+W9;K`ZF|jc) zHX{o^$SV_nfd$SfAbj#!_uY4Q-}(7uas+hleEjh0n*jJ8g8xrU!4tae7jg;|s~|hP zEMr5=GmdN>DYylSBkV;FE51qG!+`E%1wCVciQ*gX6arzRKVJ5%XIV7xt|`E%=fpfx z5ivg_Umq)hV->69Q^dl|Q8lTj*$Hvj{yLt#A37`c3}*5Nse=m-UgmjSXp`qY(WPk| zzB^0r+G4pWN^Q!Q=^J#dZp@5(xhy&?8@KaG-KeVyXUvOGJGaZbTdUc-YPhe5<>!;BFE&xS#hHU2PXsI=?bO6sr05 z60w@UF4x@ydw&&ji@%?f+MSn=4r@PV)TF&lPBOCOoQ;Ky&)AepAs7d;Ur99PzX4fO Bph5ru literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/__init__.py new file mode 100644 index 00000000..41071cd8 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/__init__.py @@ -0,0 +1,15 @@ +from typing import List, Optional + +import pip._internal.utils.inject_securetransport # noqa + + +def main(args=None): + # type: (Optional[List[str]]) -> int + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ddee101a6a059576037ddeff161c413a58b9ce1 GIT binary patch literal 603 zcmZvZKX27A5Wwx^^))QSX-&vR6{mJ`-gOy-W-@kqMA%*xIgWHmF@Pd^dvN6I)CtA6Y zZL&#Zj1!k`7G}?+X7N>S_Du3t_vUaO840q z$uy>4N+~Yng}9Q;O27Pk*H}_~JOTlJ2BWq;s@@q@_Z{^P6xC>bAQc)NRI5it!8)f- zK_P4bp{s4TTPYSBiq-7AVuUuvUU#Mp1Z^EXRs^7$5Ih~1<<5p?I4$bFE&b?q>8&p< z(EwCFeR6bI%pi<2<#NiZbJX4g^4t$Nv#4wr0D0_U;BKgZF5u{UekEMQZ+Jf%ch|u$ zf&2XS_qYtLkA>Dl=XL!N%=)|maO+RIvvA}Ow{sIW=(1whhN>$3I4xRjyCqX7;>G^m z1n=;j%aeRLEyL(}2^cqy@uyCY{@0}K&Y%tzK|LS@)E)UA!<2IF44b>WWwJ=hp0&Lh O96XP!n2X;_vh*KI9-))~ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/__pycache__/build_env.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/__pycache__/build_env.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5cf0468926e447eb38fe3626cb7b9584968d6a0 GIT binary patch literal 8644 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 YY}Mi1>2D47n(bFs+G~Hdwz5+DUyE?U-T(jq literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/__pycache__/configuration.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/__pycache__/configuration.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cfe96530049e48b383c157edfabbb8f3b1c01198 GIT binary patch literal 10693 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 MioX-MKbk1~A7E(NqW}N^ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/__pycache__/main.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/__pycache__/main.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c473efaa1c46ea1eaf3e60b5b57cc3b2dcca29af GIT binary patch literal 540 zcmYjOKX27A5Vw=iKAxz=z}$L`#7h!jitvk*Uc`{~SEroIR%?I1H+8tJm{74CFkv}ujD;7qYB%=P2Qe4Oj z@mDfddj9XYwxsxY1Ohw-qt+d&&KXs8Ep-kQRcL)66>1$+qX$L7I;T!RA*=zRt!%rQ zD<&I?`J{Yd2yKjg=u8<1+B$lz2td^#czR!!8yo8Wq^P>4^n=%>x4yJQJy7}X&B1;# z0b!gem*Z@8hT3~To_mioifVV;d!Veq^F fjN8WekyC7X@QIjlV4QtuI@3G&7^k9G@G|`mVQGoq literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/__pycache__/pyproject.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/__pycache__/pyproject.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b6278190606cdaddb2c06349e374eef6ec0bea6b GIT binary patch literal 3432 zcmb7H&2JmW6`$E%E|<#>$+A<#Xzx??RfBQZm|HZ}X2;TZupPllHJ})^6NMy2CEao80@9412uAeR!`4i??})cX^MmO`Jn( zxX#!41^9A-(}$$L@fGMmw)?d7(;yLC&+=IG?b3cHJt&=fk+kratYb=h870O^IhsnS6l2gv-cl$i`Ep0#{%Zo}_a@KdkCph-bA zJ+!h{w8bg6K85uia!3zRO?&$svjy}HGUD%L7z*-eeL+D4MG?OvlsvXL0Yp0>1wFRh{Hl^C;h%rFjtU3BI*I6(ZhxJlWMh%dd~| z+tpE&Y9RrOtNB4Lvt1GDL4HuSZcaohKF;N>HPi@IbBIOeuZCJ&z1 z@M03|iBT1=!yaI*4Lbda?>5RW^4J`jnTAa4N#R zva?(pSs_|;`XD9;44Z5I?{>ND%F>kC&qM~%XTZ_N+M zHS#`rKt3Wx^T_2k?0KoforMQndC^cgpylkf4AD(}cEJl?!ajv;!N^c_Rv$uA0L0pW^L)t9>U2?d^iapxfc4rkAk|Hj0f zn56x?1$y9aOZ^8ad3Vv`Jvg!Xj7m#4i`K4J*nEwze`eu1K-;@a7QXfi|BybT>c=(B zg__2{Lmu5;wC5e&F4~8bk`GBbaER{g`5<*lA$2IJ`8L3k_Ax!>{yj;pkH|Cn_$P%2 zcr^j9j+tGYkYj7nosdPZ=%5`S>mR(m=v3A$db(TqMW^T$-9xaoe<`>P$$u{kIMY+X z>X;c|7_xB`i-GSmc0N!^J+0lK*@!q0aIQqzz{*9G04=cVC@KtHn4sGAe!m&>}5h> zU1s}YQv$>_5bVl0leLf<1I7dvX}~bgqz1tHl?NVxf-+r!A7NzC800cF&1Nx2hZu`v zF$uy07G@mIgXDjmW#C=8AHny4nX9Ef_ewoO4OaA3Y%H_nIm})^M}2DPsgsvQ;ylqg zk!QM^y21iL#9Rq+48anNA;1`bjAoxZ33Z$0#<(4^Z`^C>p~dmNFJ4 z2xP@uRkg~pD@%2^5TgEhr7JA(&U^xpW~*_;WR~f(@avo7=Z%>jZ(WBn?THj{2mR+A zqv@71C3bs$_fDjOofy7+M^dmz0S@LWzkwlw7aHT4P%Ou_;5%*{Nn6f>U&M%V}{ zMQ~#@s^V}o>RS@}FCrNX^Y@jXY4I)HbuVt<$=IVAsnq^C>luHRr! zr3h4(E{y2;qX=O_aht2KZ!!&-3$RfeB+q>uEJIUmvi)fkPSFWTkn#X8RfGUbqTz=| zrMc9)bgOgcZ@x$tNI|Cs3_A(L6B-Wix*E*iei2KUrEmj7=?l`+Fj!4RF!o1s0RdHo zZxygT`4VFKJs3(iQdp}?C(A`Du^E9r28w!VPlT2&LjuJn33S^ju%I@Gh|HPE5IVSH4!!wl+Mh@dNpO<3vbgB)T)+OUw=PRRyt zx1qNkjGjQ_l}Y2q;cF{9gDM1p?=*6;{He-u=)&@4Lw(vC55&izF#j_s69bj6vHLS_ tHY%=wYTz|3u6HxZ_$(H;uyr;66d-(;EHK*Y*q-M#z-Z{J;qSz4{10W2&_@6O literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..381fd993c74613823eeaf93d50201e50639a0dcc GIT binary patch literal 4277 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7df3d64ade29aab2b83faf198ef1e1ef14521c62 GIT binary patch literal 8273 zcmbtZTaVmEcIK_wY)(&WW;D9mk}1o&w54fXZ22O~TI;%2;+4FTY}s7PG^bh9(=%kV zRb)$^PPZR+ya^D*uy>yV1OaBUFY!MJ_F*6L5acC)fXG__14)4V03)&UokMod^hiJq zq#G<2t4>uNR-Mat4nLTlwiW!Gzxd5(|GJVl;+UxF(_PP7`*$VeZ2iyZ(uY?Dq=iKMGZimlDhulM4p9&90 zFSsvoy&5{v5%&n!r^6ScqwZ0z*TR>gW9~7o?+TAcC)^X!N%v$_ckA3X6TTdsa!+x6 zHas0IxC>mL3mefH_YBu}hi9X6?m4c{hv%bL+*edZs2i_}3!AF@nlLtA5B3OS<&90v zeN$NCXiF6rm$Udy5l1e{~rL%-qAa?NF`@L=`>RLA2^gD5<-SoqD zUw9oq650Gj(_vm(Aihz4CZf{GZ9>1O!fI-<_>=A?L0mGeD+)E?UIo^(fxGTCB&b^NAiPliG{N@_9 zKD|q5wcDKl`{jjktFC9Z06S7(U71yu{bbo&0;kzrJ1N#^=Q}L|3_Te6tHMh}+Uurq z941~f6n@9^Wh+7NF6>_DCB4P2jGH2%rs?}4>R!hQHF286(p1+^m%TLhdNRbL{pOa0vei7?eUN5r1aNtB{dYOlByfpK-pB+RS1yUU%4)D z+EKeBNMO=sAsrMB?J8s_jN{eB3EQi}@jH%awY+v`DQ?)dgWtujFa5|#E;{$OMx?QW z=0r4{8;w>25*aU?Z=7R#Y@e}+eaNcbXeLjJ%uIw2A;#;e$+wDp5nO)%vomSbJ=1M> z7kZtp-&_^J0-yK7qt;6LX7`OH>N^8wz&ix}?nX(#9jhq^;4{9p}(#%7{%zkh8^%A1+n5wt(tKZ`JLcX zT9KiHq2VR)|53hzwkE3!D)giJGuRt!v3FCR0}WW9R|9*@39-6!D+{sBcaqsDjvQLc z47D&QXQ(u0=vA~$>=)_lSZDtd56~hdsiIVqnL-OSxrk?NMd!OBPo~DNRi-#kwY0Qh za({VK9jXI0d6)au4U1bVM7gQSPs!VkW=z6j4sFBUR6fy$+E7oY2HLtR|9nJO*Zcp% zHgBgA7i#(pO@{jyh%PjyHWbTWly$N4t~>IT_z4br4{ zs(51QqNf3Au-Xp_fgm5db+`_2TME}7OJA-z%(DZ8k;4Eo<`RY*Bgpb>mjpVj;;eGH z$q%bumh`q+g=ZqHA}`=szD~tE)H6#6im?UR0zS-r)Fiq%qsfl(&a;SlJSAZloR&8h zGkJxk-f;*ukER^+@H>zsRTPRv`(IUST2+-d@jRi`1X<|fJ*NX8y{l`t@ALG861*J? z$@8H4J+6e!mB!B#=U73fg^TC>4^(iD(CjY!JDp{!rTU72lT!&6L7SCNiTJmwAtq#qB87Qlk z{Ht_2&}p`QHLVRy%u#-zbdDQJx@*;ze^jvvz!=8B{2S$OwV{T}!^hoF;fJ(R=(_4HWEL`F5uCUw=SI+aaCrb;RdgNEUf*Kv#!c z=S64S_Gd@r@U+u{7p7W&|1a7JyYyd()DQgBUnt;v|6l>vot-@woxXmqalZfBsKddN zLvF@TfgIky@xJrwt7n}eLO2bf&etlue|=WcQOP98s9&~_&tX#}0>BO^{s9@R~H4_AuQ&f<*1GdMz0c!w@)GN7xv2!u!LKeD;T!r%66~^edx6Z_0xIM^qqeFk$Pe zszBJ@fUv0$w(F`gEU8NWAcIkIj|N0YCz_9yzcbjWX~WVNrH}B;;-{>XzD7u&!n{Eh z^ntN%49y411?88@T?OK4%0Iv?{-Iw>%b+mV0hh7fC9G$ql_d>p{=>wY`cGKXgfJU@ z|0>0|4z{iUxkW4@87=3b2+1``i4!kvna!O1G@07lG`hXj2Tg#x1l(j-_r1eQjInWn zSqqwrK+?DSM~EcNryTXe?Y8q!muTv?+>8Cr%6IPNPVodkJ@I7+GqZGO6|(1nCpwR_ zJp~p5XNYQ&b|9#k50qtHlH|g!6Qs&)ILU4=%Dmy+{b)8+LPhAbetfYDVINYjVh z!sDq0Mi_m#ICz2ytOTX6jA5zsd}}KkYsaH8A0c&g}qI~^l#MUX1W*p zqv!fFnvu+Uu4ioE?b}(2jTU^Pv5IU(|Mgp~PR#N9!a^gZl*8r?-y<2q*mW7hXe4f8V_^ejYDP>L?#z%KAR} z98J%zg~8BidK4(KS{@>fu%#q*l^;_vN5!8|v6~7CO|k={w1l@6Y3686-XfwuB_d-b zZg=E9s+!3%QdD7PL^1UBBsEo*#pgl0h1^|Mx$${Zu;OO3MUIHjfyNjTg|ZKy=c%xE-Y0DJnWBvXY=ksjlZ|%O`4YWe0a2PmCeQVM!BmDN63|e=tjg7HT-C z8vc@KCVW5neS$%}ng4~#0Pwq|w3H%+Yct$v$F8isI^qNhCSVfSV+W^hrneXAAQ6(9U`Mt@a3NnoIcS=#y(y?BLA4 zMEi8K=OjrUB}FsRq=I6Z>^bE98;GAeL5w^rw1%W4MYeykM~qx_vW3Upy^}N})RPCK2X=JE0Y1kyDA&SbksW+y zKih*m?tN*JAV$8(rzBg_;NxoKq@-Wjsh>hx01AdNZoWg~7l)uVa8c|*9||Sem148U zG`z`;;uu-dcWzQn5w(*h2S1E`IO(44c$b`T+m|tZBle!z;mLO?NXMVaBze;8`DYQ0 zArYaxXY+>4V!{fU%}&mMykefWtRQLiUjA{x@;L7IJl688O!f%cli9a^e*4bd8`rKN zw0i+dakkCfdzC(ptX;{!9=wk%F20YZ!kxNG*66NCdSRZ+ zF`rL0LS^jNS(&yeEnCZ@=*_H4Q5^I_aT&U+B=4ax5T50KN1IV+kYk%+G)9Ol|Id$W eRn69FP~>^ts#s@n+13$j)+$+!b<}#xn)zR@t&TSU literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/build_env.py b/venv/lib/python3.8/site-packages/pip/_internal/build_env.py new file mode 100644 index 00000000..755dbb1f --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/build_env.py @@ -0,0 +1,275 @@ +"""Build Environment used for isolation during sdist building +""" + +import contextlib +import logging +import os +import pathlib +import sys +import textwrap +import zipfile +from collections import OrderedDict +from sysconfig import get_paths +from types import TracebackType +from typing import TYPE_CHECKING, Iterable, Iterator, List, Optional, Set, Tuple, Type + +from pip._vendor.certifi import where +from pip._vendor.pkg_resources import Requirement, VersionConflict, WorkingSet + +from pip import __file__ as pip_location +from pip._internal.cli.spinners import open_spinner +from pip._internal.locations import get_platlib, get_prefixed_libs, get_purelib +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + +logger = logging.getLogger(__name__) + + +class _Prefix: + + def __init__(self, path): + # type: (str) -> None + self.path = path + self.setup = False + self.bin_dir = get_paths( + 'nt' if os.name == 'nt' else 'posix_prefix', + vars={'base': path, 'platbase': path} + )['scripts'] + self.lib_dirs = get_prefixed_libs(path) + + +@contextlib.contextmanager +def _create_standalone_pip() -> Iterator[str]: + """Create a "standalone pip" zip file. + + The zip file's content is identical to the currently-running pip. + It will be used to install requirements into the build environment. + """ + source = pathlib.Path(pip_location).resolve().parent + + # Return the current instance if it is already a zip file. This can happen + # if a PEP 517 requirement is an sdist itself. + if not source.is_dir() and source.parent.name == "__env_pip__.zip": + yield str(source) + return + + with TempDirectory(kind="standalone-pip") as tmp_dir: + pip_zip = os.path.join(tmp_dir.path, "__env_pip__.zip") + with zipfile.ZipFile(pip_zip, "w") as zf: + for child in source.rglob("*"): + zf.write(child, child.relative_to(source.parent).as_posix()) + yield os.path.join(pip_zip, "pip") + + +class BuildEnvironment: + """Creates and manages an isolated environment to install build deps + """ + + def __init__(self): + # type: () -> None + temp_dir = TempDirectory( + kind=tempdir_kinds.BUILD_ENV, globally_managed=True + ) + + self._prefixes = OrderedDict( + (name, _Prefix(os.path.join(temp_dir.path, name))) + for name in ('normal', 'overlay') + ) + + self._bin_dirs = [] # type: List[str] + self._lib_dirs = [] # type: List[str] + for prefix in reversed(list(self._prefixes.values())): + self._bin_dirs.append(prefix.bin_dir) + self._lib_dirs.extend(prefix.lib_dirs) + + # Customize site to: + # - ensure .pth files are honored + # - prevent access to system site packages + system_sites = { + os.path.normcase(site) for site in (get_purelib(), get_platlib()) + } + self._site_dir = os.path.join(temp_dir.path, 'site') + if not os.path.exists(self._site_dir): + os.mkdir(self._site_dir) + with open(os.path.join(self._site_dir, 'sitecustomize.py'), 'w') as fp: + fp.write(textwrap.dedent( + ''' + import os, site, sys + + # First, drop system-sites related paths. + original_sys_path = sys.path[:] + known_paths = set() + for path in {system_sites!r}: + site.addsitedir(path, known_paths=known_paths) + system_paths = set( + os.path.normcase(path) + for path in sys.path[len(original_sys_path):] + ) + original_sys_path = [ + path for path in original_sys_path + if os.path.normcase(path) not in system_paths + ] + sys.path = original_sys_path + + # Second, add lib directories. + # ensuring .pth file are processed. + for path in {lib_dirs!r}: + assert not path in sys.path + site.addsitedir(path) + ''' + ).format(system_sites=system_sites, lib_dirs=self._lib_dirs)) + + def __enter__(self): + # type: () -> None + self._save_env = { + name: os.environ.get(name, None) + for name in ('PATH', 'PYTHONNOUSERSITE', 'PYTHONPATH') + } + + path = self._bin_dirs[:] + old_path = self._save_env['PATH'] + if old_path: + path.extend(old_path.split(os.pathsep)) + + pythonpath = [self._site_dir] + + os.environ.update({ + 'PATH': os.pathsep.join(path), + 'PYTHONNOUSERSITE': '1', + 'PYTHONPATH': os.pathsep.join(pythonpath), + }) + + def __exit__( + self, + exc_type, # type: Optional[Type[BaseException]] + exc_val, # type: Optional[BaseException] + exc_tb # type: Optional[TracebackType] + ): + # type: (...) -> None + for varname, old_value in self._save_env.items(): + if old_value is None: + os.environ.pop(varname, None) + else: + os.environ[varname] = old_value + + def check_requirements(self, reqs): + # type: (Iterable[str]) -> Tuple[Set[Tuple[str, str]], Set[str]] + """Return 2 sets: + - conflicting requirements: set of (installed, wanted) reqs tuples + - missing requirements: set of reqs + """ + missing = set() + conflicting = set() + if reqs: + ws = WorkingSet(self._lib_dirs) + for req in reqs: + try: + if ws.find(Requirement.parse(req)) is None: + missing.add(req) + except VersionConflict as e: + conflicting.add((str(e.args[0].as_requirement()), + str(e.args[1]))) + return conflicting, missing + + def install_requirements( + self, + finder, # type: PackageFinder + requirements, # type: Iterable[str] + prefix_as_string, # type: str + message # type: str + ): + # type: (...) -> None + prefix = self._prefixes[prefix_as_string] + assert not prefix.setup + prefix.setup = True + if not requirements: + return + with _create_standalone_pip() as standalone_pip: + self._install_requirements( + standalone_pip, + finder, + requirements, + prefix, + message, + ) + + @staticmethod + def _install_requirements( + standalone_pip: str, + finder: "PackageFinder", + requirements: Iterable[str], + prefix: _Prefix, + message: str, + ) -> None: + args = [ + sys.executable, standalone_pip, 'install', + '--ignore-installed', '--no-user', '--prefix', prefix.path, + '--no-warn-script-location', + ] # type: List[str] + if logger.getEffectiveLevel() <= logging.DEBUG: + args.append('-v') + for format_control in ('no_binary', 'only_binary'): + formats = getattr(finder.format_control, format_control) + args.extend(('--' + format_control.replace('_', '-'), + ','.join(sorted(formats or {':none:'})))) + + index_urls = finder.index_urls + if index_urls: + args.extend(['-i', index_urls[0]]) + for extra_index in index_urls[1:]: + args.extend(['--extra-index-url', extra_index]) + else: + args.append('--no-index') + for link in finder.find_links: + args.extend(['--find-links', link]) + + for host in finder.trusted_hosts: + args.extend(['--trusted-host', host]) + if finder.allow_all_prereleases: + args.append('--pre') + if finder.prefer_binary: + args.append('--prefer-binary') + args.append('--') + args.extend(requirements) + extra_environ = {"_PIP_STANDALONE_CERT": where()} + with open_spinner(message) as spinner: + call_subprocess(args, spinner=spinner, extra_environ=extra_environ) + + +class NoOpBuildEnvironment(BuildEnvironment): + """A no-op drop-in replacement for BuildEnvironment + """ + + def __init__(self): + # type: () -> None + pass + + def __enter__(self): + # type: () -> None + pass + + def __exit__( + self, + exc_type, # type: Optional[Type[BaseException]] + exc_val, # type: Optional[BaseException] + exc_tb # type: Optional[TracebackType] + ): + # type: (...) -> None + pass + + def cleanup(self): + # type: () -> None + pass + + def install_requirements( + self, + finder, # type: PackageFinder + requirements, # type: Iterable[str] + prefix_as_string, # type: str + message # type: str + ): + # type: (...) -> None + raise NotImplementedError() diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cache.py b/venv/lib/python3.8/site-packages/pip/_internal/cache.py new file mode 100644 index 00000000..7ef51b92 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/cache.py @@ -0,0 +1,287 @@ +"""Cache Management +""" + +import hashlib +import json +import logging +import os +from typing import Any, Dict, List, Optional, Set + +from pip._vendor.packaging.tags import Tag, interpreter_name, interpreter_version +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InvalidWheelFilename +from pip._internal.models.format_control import FormatControl +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + + +def _hash_dict(d): + # type: (Dict[str, str]) -> str + """Return a stable sha224 of a dictionary.""" + s = json.dumps(d, sort_keys=True, separators=(",", ":"), ensure_ascii=True) + return hashlib.sha224(s.encode("ascii")).hexdigest() + + +class Cache: + """An abstract class - provides cache directories for data from links + + + :param cache_dir: The root of the cache. + :param format_control: An object of FormatControl class to limit + binaries being read from the cache. + :param allowed_formats: which formats of files the cache should store. + ('binary' and 'source' are the only allowed values) + """ + + def __init__(self, cache_dir, format_control, allowed_formats): + # type: (str, FormatControl, Set[str]) -> None + super().__init__() + assert not cache_dir or os.path.isabs(cache_dir) + self.cache_dir = cache_dir or None + self.format_control = format_control + self.allowed_formats = allowed_formats + + _valid_formats = {"source", "binary"} + assert self.allowed_formats.union(_valid_formats) == _valid_formats + + def _get_cache_path_parts(self, link): + # type: (Link) -> List[str] + """Get parts of part that must be os.path.joined with cache_dir + """ + + # We want to generate an url to use as our cache key, we don't want to + # just re-use the URL because it might have other items in the fragment + # and we don't care about those. + key_parts = {"url": link.url_without_fragment} + if link.hash_name is not None and link.hash is not None: + key_parts[link.hash_name] = link.hash + if link.subdirectory_fragment: + key_parts["subdirectory"] = link.subdirectory_fragment + + # Include interpreter name, major and minor version in cache key + # to cope with ill-behaved sdists that build a different wheel + # depending on the python version their setup.py is being run on, + # and don't encode the difference in compatibility tags. + # https://github.com/pypa/pip/issues/7296 + key_parts["interpreter_name"] = interpreter_name() + key_parts["interpreter_version"] = interpreter_version() + + # Encode our key url with sha224, we'll use this because it has similar + # security properties to sha256, but with a shorter total output (and + # thus less secure). However the differences don't make a lot of + # difference for our use case here. + hashed = _hash_dict(key_parts) + + # We want to nest the directories some to prevent having a ton of top + # level directories where we might run out of sub directories on some + # FS. + parts = [hashed[:2], hashed[2:4], hashed[4:6], hashed[6:]] + + return parts + + def _get_candidates(self, link, canonical_package_name): + # type: (Link, str) -> List[Any] + can_not_cache = ( + not self.cache_dir or + not canonical_package_name or + not link + ) + if can_not_cache: + return [] + + formats = self.format_control.get_allowed_formats( + canonical_package_name + ) + if not self.allowed_formats.intersection(formats): + return [] + + candidates = [] + path = self.get_path_for_link(link) + if os.path.isdir(path): + for candidate in os.listdir(path): + candidates.append((candidate, path)) + return candidates + + def get_path_for_link(self, link): + # type: (Link) -> str + """Return a directory to store cached items in for link. + """ + raise NotImplementedError() + + def get( + self, + link, # type: Link + package_name, # type: Optional[str] + supported_tags, # type: List[Tag] + ): + # type: (...) -> Link + """Returns a link to a cached item if it exists, otherwise returns the + passed link. + """ + raise NotImplementedError() + + +class SimpleWheelCache(Cache): + """A cache of wheels for future installs. + """ + + def __init__(self, cache_dir, format_control): + # type: (str, FormatControl) -> None + super().__init__(cache_dir, format_control, {"binary"}) + + def get_path_for_link(self, link): + # type: (Link) -> str + """Return a directory to store cached wheels for link + + Because there are M wheels for any one sdist, we provide a directory + to cache them in, and then consult that directory when looking up + cache hits. + + We only insert things into the cache if they have plausible version + numbers, so that we don't contaminate the cache with things that were + not unique. E.g. ./package might have dozens of installs done for it + and build a version of 0.0...and if we built and cached a wheel, we'd + end up using the same wheel even if the source has been edited. + + :param link: The link of the sdist for which this will cache wheels. + """ + parts = self._get_cache_path_parts(link) + assert self.cache_dir + # Store wheels within the root cache_dir + return os.path.join(self.cache_dir, "wheels", *parts) + + def get( + self, + link, # type: Link + package_name, # type: Optional[str] + supported_tags, # type: List[Tag] + ): + # type: (...) -> Link + candidates = [] + + if not package_name: + return link + + canonical_package_name = canonicalize_name(package_name) + for wheel_name, wheel_dir in self._get_candidates( + link, canonical_package_name + ): + try: + wheel = Wheel(wheel_name) + except InvalidWheelFilename: + continue + if canonicalize_name(wheel.name) != canonical_package_name: + logger.debug( + "Ignoring cached wheel %s for %s as it " + "does not match the expected distribution name %s.", + wheel_name, link, package_name, + ) + continue + if not wheel.supported(supported_tags): + # Built for a different python/arch/etc + continue + candidates.append( + ( + wheel.support_index_min(supported_tags), + wheel_name, + wheel_dir, + ) + ) + + if not candidates: + return link + + _, wheel_name, wheel_dir = min(candidates) + return Link(path_to_url(os.path.join(wheel_dir, wheel_name))) + + +class EphemWheelCache(SimpleWheelCache): + """A SimpleWheelCache that creates it's own temporary cache directory + """ + + def __init__(self, format_control): + # type: (FormatControl) -> None + self._temp_dir = TempDirectory( + kind=tempdir_kinds.EPHEM_WHEEL_CACHE, + globally_managed=True, + ) + + super().__init__(self._temp_dir.path, format_control) + + +class CacheEntry: + def __init__( + self, + link, # type: Link + persistent, # type: bool + ): + self.link = link + self.persistent = persistent + + +class WheelCache(Cache): + """Wraps EphemWheelCache and SimpleWheelCache into a single Cache + + This Cache allows for gracefully degradation, using the ephem wheel cache + when a certain link is not found in the simple wheel cache first. + """ + + def __init__(self, cache_dir, format_control): + # type: (str, FormatControl) -> None + super().__init__(cache_dir, format_control, {'binary'}) + self._wheel_cache = SimpleWheelCache(cache_dir, format_control) + self._ephem_cache = EphemWheelCache(format_control) + + def get_path_for_link(self, link): + # type: (Link) -> str + return self._wheel_cache.get_path_for_link(link) + + def get_ephem_path_for_link(self, link): + # type: (Link) -> str + return self._ephem_cache.get_path_for_link(link) + + def get( + self, + link, # type: Link + package_name, # type: Optional[str] + supported_tags, # type: List[Tag] + ): + # type: (...) -> Link + cache_entry = self.get_cache_entry(link, package_name, supported_tags) + if cache_entry is None: + return link + return cache_entry.link + + def get_cache_entry( + self, + link, # type: Link + package_name, # type: Optional[str] + supported_tags, # type: List[Tag] + ): + # type: (...) -> Optional[CacheEntry] + """Returns a CacheEntry with a link to a cached item if it exists or + None. The cache entry indicates if the item was found in the persistent + or ephemeral cache. + """ + retval = self._wheel_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=True) + + retval = self._ephem_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=False) + + return None diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 00000000..e589bb91 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/cli/__init__.py @@ -0,0 +1,4 @@ +"""Subpackage containing all of pip's command line interface related code +""" + +# This file intentionally does not import submodules diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d9fb818c6fb862e8a4b38683c33934f1203c4fc9 GIT binary patch literal 236 zcmYjMu?oU46ii(dq5qIgI@GKRQrz5Jii=B($!m?KX{;%tv*Ne-ORj!`o0Bh{d~o-; zcW}pB#qp5f(8qmq!~G88eXvwjP>7NT3ZE;X$FTV7N@8SD$lLOU|F9>0wJp-;DXnF$_vu8;U@s q=N*7akLBJ^-J}Q}<6W#3hDoCtN2xvMV|RHCW>u|P16lasgCIXJi$g#F literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0c932cc29b2d075b48be70d58f1903fc149900bb GIT binary patch literal 4974 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 N>yfUZ7?{ueIKE-C;3 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8a2957067c9571e7c2a6bad8b49b5857cfafc480 GIT binary patch literal 21007 zcmch9349#adEf5rfyK!~6m?r8P%;RayQDGg>)JxY@Hr)j;3{LyH469O&d4O(N6CqJ(RX-o2J!aTk8M+ zy_vm8O0s@w3GJIV?|$F=?)Qxz8yy`=;Gg~CN1oe%B9Zt*zI6Y)1}}T?^EPG^36&@& zR8m>BWHBjEt7yqHRZQWTs-^3hVkXHp=~}ivP#mb|in;n=aj-sA9I6i&hovr4v+5(o z5y@w3qxG@kSbbe_U44CVeSJf5Lw#d$qtp%5uBvY;ZjyYic6EJoakJzHYuD7TEnX}6 zq1tuz>xuc|=PZTGR-=H?WkSK0dSE)^SPJTS8#?;kn^9#x1?Z~fF*Q)D~f1kQu-GKUS z>PB@Fp85R=^&WNe3kh|zlRKL#7MzTeQ?|NAjpJ{Ny7gSPxLwL_Q}0z1>Ke6GO`>dv zl-;i0r?#=w89?bk@eV1?tAg6Db^xMxNa>wYdZ*ec{qK_gJEiPy^?r2^O7E3r^Y>gxoK31dYFa&b{$BHbA$d(g&EU5eYq$^X3u>Qw zNbOe#)It1xP(6GuSDcb@4yi|E6|=I6`=#u#np2OeBWhk9#m;s~*<OIvxmzu$3ZVD_)EAUej?A~HmN3p9DO*-mlv(&4S1VZEw2V|! zb=6R=YC5+Ze^8xJ8e`2UPx%;Yue4~Xld{fJvd(?#v|2^oLn=_uMWiQ%iJ%hkEoBT7uEM;_LrQS&L-5yoQKs9s2@BxQaq&2sUJei zN7P?ZAIEc6eL{T_&%^46)u-^BQ-4`~8qY^%H9w+$RQ;Ix4EFI^^*QX~i2A(x0&3^g zkE`=|9+g%X)EDvhG3O|tX*nb6CvZ-G<=kNLF{%AY^(FjS>Zh>VZ1I?s{j|EM{;G`o z*JRws)tA-JV7w>PUsrzv&nMO2RDTQ4B3c*J&#JFDH>#Jgo1arZk5xRSenI^rYM+*| z{*^co@2hVLTn2DjgT<1x{}uJC zX#Ed>jhW(eQt}Vguc=>GzoGt-oI_dtruxU2aY5?-iTW+Hw$!(zt|Dds6lEWC7O?*T z_1jpZlG1;seh0h!UG;nF_pvrd%Ko|f7by9R3e~?v*`k#FEA_9X-M^7`OH%f4W&Qt7 z{d=rwSxWvuO8!tvs#5Yt>OV-?f0UIRSN}=RwiVj1{e@|Dyh@`fpfKO-lbn z{dei{Kcq(;Wd-#=0gr>2|4-Hb!ipN|&(#0MD6Z7~AN2}qURAHD*VVT%N>fJpj{2^Q z@`j9ZLdxC*w@KiaRG(Sm)50%>UwVmY2EQz@U9&Cn1NiY7w;o(d;%x{&w({^CcD6e^ zoI9L5ox7a7ohj#jXP5JUv)lQAv)|d{Ogm3G&p5}Ooz4kIJKoY}^ceY^RrK*3b!MEs z&OYa%rF2x-uCOQJz6E9EHY(L- z&9Rp;xLx&Z-?f#qSZz4%K5nDpY_k_yzI}Vc^>4SU4bLw({A$^EY=7CQ4=vT)g>tR7 zTCfkJn|8{c+prg$YGVoYWxqYpsj9zhmn&S!0~6(D(`l#)yHal8r}e6hQGI7EJX$` z*hgI~%B}zmRnK=CKAP7$gPp44WzntG+*4RJ0HGYOy3{BPy-dM7JDCgzuq5odHkk=W z=O3G!JF;(nzI0&Up}8=7Sil<&o9BK4I2SJ%rvhW52vLqU3Ob?zXCI$G9fJ-6yFyA3v+KYHZw?Ecb$>G=aP*P!QX-(7Is zS|vq*MgN$GijtVY&)b1yE%{j}B5T%X6Q56=vHZk&kk5H*%{rgDkhqY%kUV3pCC;bU ztP4p9{M3A6G9CQPkd1#w%2m(70Y|4VI6(|^xH-G!F)uiy3sSUovM?kar}dIIB{@54 zFvVfI0T-ck#VJJXTshCKc9*oMdrMQq{%C&RIqjRyLCzFS*{>(8KxJ3 zV`2KZTWy3HuUV`5VMf+EnF_OJ?P1nT9i}kB#f07hkiEWVyI*f^2O;EJjb^#B;;8(o zWyh)IPb?kx?`z(>$hz&Nm=LyCYSrzPx-uhqh30CwQ4@M4Q&N&S$9W<=n#9mpa#K>@ zhFrzsd-N}jCx3Eu+mP{bcxyPk>k?-z9+R@JOYBWNv;Is9$Cq47oy7qr6DKyWfdfsZ zf)~xPIetqwIsg~iu-%2@PQ{l7!i{V@pSMA+tvYxWI1uPmff#Jz7!$5WTL|`&Sx1dOl z!6dh`#fEx$r43DKb_a^R9FoMqSaKvemelV>5;X>ONkc~ ziy#D*dLehlQfZY@*`?H(l%McHDuAqYHmMJ-C5~HX(ramwN;2W6k7v|?%BjI~7WHJn zd?@&>y;YCA#1{PU?CPT3badXsAvA#pV6fq`XQ z!{cc+6w_o!cG*{Q5V@bpaY2;l4>wcEHHND$j=HG%v%X$YEftL9Va$Wf8bqh4n4 z*$QM>`yca!;8pl}BS?I}5O|n43r2AsmZxDaXicr zXkIuFjbR|Voz+4a*IyZgyV1zoj3klECDYbOdI)5aO(LJPEbF`a1E_iE5{eDhI_j2s=jChFogYO8s{xzz_`t=(;e z(MxaB!qgD}W(<2PrtKP&aG8RBP4-68dWPN@3UfKIX21 zHtA}o1eieab)a@Tp5DlsA#;``Rn-x}g(HTJOhvc}gzA^tC+Rjy7&RO=@F@|R;q{)h z=^nfkA!NVw+HA(|AM*(;#d|N3#DHa`L6!LXj`e1GaLii&rZtdDT1mX+(#avo>4(ws z5?znNO~}=-=i^E0b{8O=G&Kn5IhG4>HOu~TIOLpe0uOOe`eI5`%!Vm&yD)Q-nsWc5 zHvUVk$9GFaHM-N`Y{wq`RwFim@A1TP%4E(rBdBht(t@UNU3z9Rj!dq zmr9z#5@rO=0ch}el%V?0JiPBnn69|ZRn1)p=(?aF@E|DkQ6xWrpXfC?9QzQMwUh={ zemThI^UF>RS}oIHXnq-n6SD=JavH{yA7+iMr=P|k!4Now=Yjz_Djbb-T)0DdMZ)lP z%L(R>v|#(e=BtX*7&o-p5DElIh&1XnPFA(sAltD|LUd8-G1e{diTn(ng>2I1;r1?W5Mpp9}``WQ+^02gNeZ zWGZf};Rk#7S5G=vFC>E7@|!ImX0aS9c{P;Is*ieOs=}@#QzPq!PDMtx)Ap;7uLXh& z{IlZLTpi{bE@U=x!L{>Hoxle?>=5rX?9CKd)Ujw$*g7~#MjpXgS-G&ocfE3ZYsJ-AVbg6W9u)TU`1Fz4gR}d$+53(hIef(IeCEi( zqX%cE57{+$X^HJbTk*ib0sE$Qm$=FNLRo_ZqPG&?vXx~QMnBj{Be;EDc=@XBuQo-Q zid%A0u^?b$l~)0zr(RF41y?^~Z;j4=%DyeiO@iSPH^MXrfm$QOdz#vY!H`Tok2Uf< z@W{i0bAn;!p$)PmOd%1X3}AG?zk#{Sc7zhPadOE1+@->#!NYK%4kZ;>tLyDq%yCy6 zKo>b~$pts=jnsMUtPUIkoT!sXWr4?s^3$tf#ynCG^kE{{6@#S=?+&U-NiXj%&Gd-hrls?RqW@Wn|4DmzfDe07rpxK!GL?LU@E6Nqgg$uy|g} z%;4vZBk`ef(r7aV8;!B0%u+%Psv$M3M$YA+PL9q7>+*S!oacLa!w$ny^ID3y<8h1> zCcQ9O4U?zBk{$Jx3t3DMSSB3GVVkkcOM+H?c!FnCWsX+T2GeK9F=*QJ(7nW1kSGPnQ5DqRL$sDTxc~^ z%_-OiVZdtlWED-II|5BLvalC%z!6Rq?0LtrC+6o5*)v@O9CNf83s^Tn5}-^`ZUr8O zNK+M35;k3JkT#60h-lOhfS`p)uTks(CTqht8yPk)CE3qPydSQ?RCMnJ49})_3RXF} z2dTk_rcGkzHsFCh$sNO?A?%rD-H^c20Vko}GU(H=E3-U7)6N>Le3h)J3gz;2zNKsA zS3UTNa(EfQtZG%bh>ibdZr_}J_l}+RR!-xIlHA>T8V*KU5@pB&FjY8yG?)d) zsg8XD$XO7Dge6h{H|%A<4tGB2Z5y#W zx=s+1Hw$GeU0H@I24rqQNCE6(LfKmju(}FMfgq*$(NJ`1xi%@o;YLDcG`K1gVq#7- zwSBwL6R$ibaEu*9-e#LM5NNW5_RNuJ?m~G83c$5s9};k4mB(i0$pYywHPEH2A@-ty ziNorTQKW+%ZKiNV6wyD36VOBpnxK7Xk+fcu`b*C59g!0>IH>YK0hM2NVFrvwZzaBY z=J;|44$mK*oql9r@XRA+y#n}vsj!~M$fu|yIM6B>18B;O2j>Dba5Q#XOUriE2Sdm4 z5g5y5=-eVLBN*|zzzLq7iQ7=Cq)s2ZXvj{NfWWvvi<`iG!%h*Cj(msRRz@A}R=MsoW`_PD zV!>G^TY3|*06&SckG}RdcKnIYjk!3}x+%~iLVqlMxLdFiZ(9_3VF2J4adWYV zq2(2D+VBRonm+E{JbPTx?dvwBdK^59Ad5w7%tvCjRTl1oxe9NM2w^Us^~+a)ievk6I>*??))nEAnUY7lKQi# z4q)V=BFN$4wsgfIZJJyjygAs|{brOCEC?5;s0>p~a=cktfF=<9=-#&e0`4u2DjMmX zbBhjvE=S)brM6XB(HY==jQtRF7>w_t&p{;H?(LXzytfC4QJaJ_eu2=UqTAztw@{G6PtMOc^ww|(cpP4K$mwKo<9--e_jsc*U{IO2jw2Il_s0i;ka?bGlM%!MX?s;cqd%)o_^FPV@pX zD;xL>M`>dkXoJ=rgm(YVHpDpB8IJoRAQQkmTzk;P`d$5#c>jO1Lwz1Y>n}37z~m>G zY-uM#8CS)t?AqxcU3Q&cLdObz?SE*MXv;ee#{0^%^21pqe9M@}J`7~s(ox~2eg}mc zRtlV32E^hV*Mfi^hA5xJsC(VE4?nsCh?Hz-Uv%*EA|Sp)?3HN7yChx*N;sWPlsSD1*k+HL%LZvkCkFga7#!@$-U>~G z5h;A9f3D$8%7q8+Ca9H&tr=Sja*bx}BbZBd=s0oU3wqZ%R6In%o^>VC2D-NAVoxzF zK%vrdYHQs;@N9c8i zfZLL6^j;?9pMtq?5Ab@U53K~>{)A{`JOg9hRtNL1NsB)pbb=Z|hOM`O z`2QcF`WEmO2=y+Jrw|+Qp5PaSPlUw0^3hd9a)}mcBA&iiEYUxO)4miH$Q<-fUj`A# zeUjkiS4IT35MM>jT&n766ok3>dd(Q!zkHZxCk<;c$>;#DLoujIumj`DcE#;?7wpJk z)~5WpD)x2gRzv(R-YTq=dcl4S!*)|fFHa#6nQOyU+&f14b37!i$0l8;@L??&RuJFJ zGA_;BuNL%6*ir?E*#4J7u5C@x7F)wTi^BaB!k-XXgFvVxVn33IFHNna^*C>cqW8>- zrH`#4dhoggcr4`}Vh+*f7I0??p@AmOq|oY)&Wq z)XI?la1xOu$;6WhH8h`i0yku8V3D$YIQTueN`~zLqk}>|vON$>C-*P4>WX8J?;HpA z?z{&n*xUHd!aaqZoD&BPQ}?-c(R0vj+F>HN@XgPXvEnkEx7lO>%!8Am(<$&%dPrd}!AT(_n7i>w zYj!qF7G5U!p_OdGBbWeVt<&`Mmo;38@lMej!lCP8|7D&ZP3FXG&rt%oO;8V>65z0w zcxDX82auml9s_t!SRLgysZXLAg7K`v4qk+6zmIcVMiIGB;s#Tq z>)?`s@CZk`&#Qmw*IZ$Vw{jylVv=fKNAZ7rOBXTRlf7Ki55UB^!dN$ZvZ5X%0<(o~}&)=fYAU$)@GTPxd)(I~yHxp)! zS}U=2M(^Ci+JVdIk^1M@W3Y|wngjI%cyp|*^`gLogs-^wG9xCSCTYEqPLEmomoP}M zzJKj{4~okl0xC0J$yJ0l z!VS!jFlcPu+_=L?6dd#?!8F@8eZ-VypssZodnd->$d?gCaiF`2Rxy{ShJKanBj63# z%B$w~Xh3w&-s%+KS_9jX-RvyvDC{5uE8G(o+{1znFN3#x+OC(6yE=~$AXm$1-Ah44 zm|Qg)H;gcyh(R)Pk&+jy>CD?b55iLk{MafJgX~J07f-M+xMYS0`v-3)6ysy<3DL24 z^^Ub0Y?pAEXf`Ld*%QZCnO2x5C?=}S3GsP~&(TEB@G=IB*4!(`mS)$P*}W6cBBiET zutm~NG*>4mQ-M)XmV2A#%kVkFnyN%%zChC)(KY%(>=&VI3)S)=pzS-{Hv@ilA?fUJ zwYgfl>yGbzLmbI3BLpno$-7V)FvdI67VP~d&>a$O)onqEgBj9rfb3n0NIydK#%Ga4 z`-z?qZAA3arR)@XWErI!Wh2qcy9)``5gK(2?UlUMm5)Mxr95rQJCZJ=x1zr&bHZ;l z$CPtKh++=$$qcUX`Z?Tn49kt;p&}+{%oXn?GC8VDG@kjVzlwa%>d~STZBBUufzcN* zsFLT>XP{U?Bv`W$ebZbklckOvIYb7;73A%naa1oUc*y!%_1Z zxh?c_==o4^@0_%;-5NM=Y!I|fNnWi2$4(*bvrh`TjQ&^l5q}-EpYPsL`-17)nsqex zD~JMc=t&C)B}>0q@Sb@_{g96!EE)ASVv5U9O6* zV|alQOU2-W!H7{8k_jlhcR}GzLg77-L^x@TNf`E=b}J0Pfh41j)X^g-Ah{V6xD)RMq%f`eiQqKKxq7>7b*R{sJv`p{%nUq|TtER)-q(1T(Wjc*_adq7ji@ujq4y{}ozy z+GySI^}!ok0uh2}GQsykG|&<9O{aPH9rwI@ssa9Dm{Q*`LNw(a$wXp0B3oLB41)py zNVsxxo%y#3sk0Z%ga!Bl>3R@T(gZgX73L1km1Yl@@J&?-K<1+1sJ|pAu{}`49matn zoq5LL#$cqP+}g#P79|NB0x>|^MR*9KLxk6K#)?8Vu!6Ulo*En%JKi;Cdzee-7MjD= zz0pm%|A^D1IyOu=)B*72Im~5Em#e!tOlJTq6$|xYdxtf9v7Oyt&%U**J%P8`9|++^+IVdg>SJ71{P!DWxd3w8qBW#EKABW9CNVOeRoemL!n};k)K9Fp;?5gNrniv4oMd=PP zlwd>{_?dBHcZEBEu6zWb$&M-Djs1v=Jh#>YDzmm%IEd{dfQ49*V~xRjCr|#qw+H7$ zd%+82k0miwC)%@gj4PQ1N8R%+jo!&=DrTDKHmwU7Z*_E(+Sn;rh|y%?qXgM?t%S}> zeu&u)>#aHEMsSM}a}~ZY{8x6~jvB$&0f?lQ2*BQGR48}BlLs4eR|WRuK#pMq966Q# z==PU4=&=D03;e;=I9hI-#KDQPj1e`kN8}c|(>AyP(U#`=Bae`|`16mv81vzEQB?_5 zZH-x~g6GX{@VQyl#kYHaOXLB7Z(;5ru^|4GMqIcc0ET=)<&5W+SSkj7Lp?ePue992 zkT)y$R09E?Fdq*xt_&PoJ_{6jm6)YMkF3h#Fx#Hh7w`gk1S7y(UzJ=b8EnG$igGt~ z!7{!iD2TU0L8M0%3L^j3Qs*Jh&S%!}Nh(brqY$p8{p`wsJ}$Ls)~d|;0Y8g2^1-T^ z>3nW2y_C3Mogai(3VoG?nFTA1u4dq-(Hr5ysMWBS@p5g+ol?~$M9jmHY63rnKbSH? z4)^!KYT?@waffawWrP{f1#v-<?$5&4~WzkjN{P*F~yPzc^T9d(c~IIV_UtRn~m$AwAA zC7wS69c>%FfE^NrG|aLszIdUp(P*qUGxv*3u4Qr)5_}5a_)%b|`2C^ciVE9z=bGl6 z_>x+n*00NMj3rIo!8glz@s^LLAZBjG1c`JG4l)ZLypAPddRf*R)|*2aeuIYV*hKD4 zeBqMO-$Fb2ya7G+Z*o~#QIKqHoiP%_0$F_fot7iOCg-AuA*mPz!6Dty`}g+l098C`431Csqi# ze~-fevKp@SNUtSk!d;Ni*VAd>ZA5D6>v4MxH$J`&M0^Td2Em=UfTk-9EFIz&k;i5; z6NV|_4T^`J5YJiknZN`V@(9Kb)2s?JBCF-gugRqOymAX_4Hgqe!{`Go?za1@r!S>| z#A!50SR0f2ck!e#6-6x+5rzuP3%R9s)F6~xRS>IKY|tt!g|el#^0FAnYNmMBoDRK z=-i|kza>6{!PPE+mR|&7wzN}RA7#9f(;%X%a3CrPM(^Bl=MGQ?v6NOT;dS_HfHNmmg)i_xc^2pshBzmE{I=G{3&K7)C%P<|(g1x8nm1@I%$3OgEw zXoV6xAFGC3aJ*ed6>sR|Oa03a))`H-v+ljo>N=h5%PmrTf>@Tum~kwQR=h-A?Y zl-bCG7=3x<;X;U3n_ydT^;|@=2PMY)u=pSFf2P3q(+^Fa3kngMIqfPV0-#p8Xa)b=O+AHZ2 z^BZGP(uqRTiY*tJEHPPTyEK_onCAb5K?Jw1vdU$0f{A9*VzSC)jmZm4K7s^NUcCMc ztk)l9DWlLezcn;r$)8~ElT1FvRd8zH65ffF6(r~oL z-C(Rh+ALyGn1QL?hbb^W{Tr)FAscguP$JA(J_PYzzq_Vz#^ zP`-n)ZZtQBzxBCn*O;6Kf9S=(Kg({+WphLLyDE2;sfkkV ze|_#fJ?k-jn7(PflD)dCJy+Vjazg7>jGfDkJHOX^c3}GSpHBY? r<1Ed1Vmx5?FezR&P&KzYtj)4)0}PEAI&c5{W9yCFP3<1vvEKNfgc5S?8+j*})OqJ;zMp&Wf^!vzTtLO|7`9*6`DrSfGl-feO5SJzHyqn=1m zPl&(J9{ZQ}%89?gi5VwBDRiZsUC-{$y!U4OuH9||j@9#TAG#L6Px_c2Hhw(ES-eCe zL9!SU=Cg$RoY6Ort;F{2q~_NW$9EVgM_SUBweQ@ozXIvV`WR$=#C=z~JK!~bVI1(d zX>6WEKI1MugRKp#^5{WV1r*rpmnpf zktGO8&agx$+iA$AL202q$4QBb6*MJ`;DTM^fn;YOcxjCQS6c!GKuVH^~N5LfVfvs)&4H;?kQL7JnKO0IqR zq*T0ibZ}Tc&L8d5Sr;>)d}$DO!#L`O6IQcy>-ni(z>F@DaL@p6GKURUZeYJYL;ar& z4SYuhD4w7>gG12Gl6^&`kvS%d>O~ zqnO1PMWJ*VW$C8YnbvJ|>P0fQ|C%Mb*qWD*E)?`0tR{CDXD(aj!_}ME%s&fB_1Tye zbpsv6T{Og~s2CBG3+s$sGDORIo?T(p%Xp~*XxfUzo~i3`eG89FXIfm5>+Cp^O8>(_ zQI|2)9L|~xmAB_LOmj*ojy_fmTO}|~d74M*fhH2VMus{{ dQ<&=IT%xLmRr%bf6X4J2f2vxrgC%QOe*gnw6&Y3!_4?%NK6PZ#)rVLHXDMSCeUfOlyT3he=KRT zo?*rWY-3;Y1R*ec%sH=+r_d?jlV8E7l++uuP9#)Ssw!2LzLLJ{_1XwV^zy}zf3^^M zZ8n#O1Dmg5$yY!qiV?+>a2#XHNlYwvV#jhfc7Z$GEBx3mf;hm&-{oP^id$Cpc)RGt z9V`31TlC_dl>^={_ToJ&hkQ`%$NLyDvKz94a~vPi4sFr)a~yv_$+u|KT}SssUZi3b zrFG5oELC|`Myym~RabebCha#+FFGC(?ap$kba=NmE-4>j-A$LO%BrH~OflH^>QqRU zfTl=G3W|OvSgI~-!h3mrM~F&*wL@7gSd%itCe6k0fg3b$!;*gk*#Kgvp*T`#VempP z$cJc)6xliF2qWb_1G*k4Z-buUAIKJO$$eDLT%`Qdw)h33tpoN6oDOy&B^&2A^gB7n zaMEg2Yte3YyAH)hx{q!^#;xL)G2&RCm#*&N(q2<#mYPUF<=IzaWEa zD;Vtdsk?C-4;#aM>i!!;4L6v28*=JX|5vj0Hs0=F19dzFBJu?_Rd7Em?o9f0nbY&S*>06Bv;yRQtK9! zav}P&+sUojOnbJs#>0fx9%T=gb7A_a-6GA)k#8%KI?M{1lxe{l396LZVNWuRnGP-< z&>u*A3Mb#*oT{Rp)_FZ%mUWt)GCBq%7#}~LFVq+H=RX8z8T| zZv@bo{gTr5FFttRyi_@t%>!u7nVL0?2@?xG-0zC1-=Ji%zC=DVcM88OD!SzCEAu*~ R@pS>iW)4UfUrf@z`VV`1TJ8V< literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e3f29987ba35a9eccc62a3c332298af15fa55d10 GIT binary patch literal 2066 zcmZWq&2QX96!(lj*V)~CPztR8SrIL)L^hNQAccr3r2?rch_)9)Wn9n1bu#|w%xv34 z-V56bE*v;ll{Ob7?))Vj=gO)7LXdzr;|+w=*1VZFA8-8L`~9Bp3Tzj9nI#y|`C~acFdp zEtUPaUk>7d(S0^7m*ZtK4%kY$8n2dX@fzqo66QF5g)EWY6DvMP`Xq$@Rf2C>qru@P zS0hnWIipd-(u_vCHIK5o5|U3c2@6qLk%&HSYP~Cx_i0q7MHMwE7nFxDz!~f22rK7C zA*6C|PZ~x?NQGHR>P8k|2o~3N>T0*hzcdqHnUm_xI}J(o1=r|qI$=_LPFZuk=4C1+ z<#1?_)ny5ni-Z)JROfOk6H$}}OL=m#1UL0}x^16vUh8AadS6pC$wSHo+^+&N!RuVD zWt^sxCfb3db3hGDe_}Ax?wmX}418!i&;$b^P0l2mS;UqYr1O(IwOVU#A6dwf&J4zh zE4{fdy}h8dj_?%0YOh5{2=d^jcx$(u}#qd%Co<>`X0BuL#EV6L-y7F>X-%HuZ zRqjNjIaSLkA<2CRd(v%EJxG2Rf8|tZNtL6m-BwnH!2Od)$Hj$q3z}F5k%QlNFMbQ& zPH~Hf^~@ot#e3E>>$&|ie&B#NfbS1JJVp^D%oh{LD?b?73Xk9CYhXb27vGx{)o%T( z#V^3*@zqUPHk;tw#-wV}Y@d>iNB1dZ8xQh5`Em2nu3p=OBY>AGWt$l*HczE?+#INI zivcXbc(eVk{#plwhrPcKFTV_h@fNGIl!ut(gU&Mson_5rUNCsST;dd|TRk&fIO$9)K9gU^JkC z-)ZweQ>3+d+}Z?Pun6AAd{6dTdj@4skHKbWXk?%4)%&JS>&T^jpZ_NNtusSYm%z+3 zAk%X@M^mqL`7fd-zfU?^6uc{MMhZw2t1>I<3E}OJH!5 zYji6|GvS3E9xYoZgL^bOs3%cL(@I9`hjz3PjaE&FRoGP$ zgM+uUL0cRMQ%?zhy{g93V<(P{u>q#hi9iA3kS3SL!P$sAfpb#g9%WgiQLMXcwc{gheXr`S4 z%K+3X(1bQ@VXrr|Jv4+ju-`xdNB|59@DKpBhKF_^g?Myc`AI_REJ^q#9OCbRP@X(! zpty7W+vB=o#H+y8@xN>x16w{75X@%-S5W)Pn}tw z$byM+Spb_fWjkJj7b#=lg=P%bkvK&q6DQ3l6>OC?nJ~Jop(4(MaBPSPTETs^0xw7) HRS^9HWcWN| literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/parser.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/parser.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..44dfa60d0575dd633c6c3126e9cc6e92e5cd8554 GIT binary patch literal 9316 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 Sk8MRtk(G_cn{!V$PW?CH%87RX literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..991253ce8167368fb77dcebc9578f9d815077169 GIT binary patch literal 7400 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..80ff29b2126e5db94fb8dca418ceadcb1e30d48e GIT binary patch literal 4568 zcmai1UvnEt5ue$ATCF9=cI?>sb3vpCL4n9nKyh~*Ia4|3Vn`_v=SUD&wJ6%Pz4mIQ z%#Px-N_mMx!5gnsT~Q@J=3DT@hnUxUpzbU9iC@o3vMkB4s%gzk&(8F8_piJ6i(=7Z zcuIf$%b&klX6zdpj6W6z8))gjK>`-=nANg>UgLUf)C~P^)=d3x)hzrQvE6iPPBT}_ zaawQ2ZZluYH@%vt$5uSoEYu3RZ^y;vd~Key(CA+Z7fyI>@pBe9LGB$3a>qt(2_rYi zW0VhQr4 zN`f$vbs4pi2JJWg7#M7zr8huAMw)__cwoF^(2^Ng__qQZvN&pCyB#G-D7F&Fu~Tn^ z4UU(F5A~@%KugI~k{z?R*l(M?=hgRIU9Ps|RhXFbj@HvmsDj*{x7Xlde9fz5<1H;VPb!&F!vNcD$U{Nh;d)FH>dL0gKQ$4lr zec4<854OYeuTL9x*3*>wB#(B4FVX4o9`jib;5%@|vgG^58>44n&XiWqIwr0i5Orj( z@Ak|S>gRiG-|TyVA?J?SGQ)_i0-UStgae8eRuss!%69ePDKB;HQl(NU39@6k2+cOb zG_CK3%1n<^<)kubb)>TWohS~~+|#-YA4kmyPNa%HAQk%YV3@}evSApgJn?0#6{pH> z95v`gpPa|f2KJ$#1v#9k9RDy13bf)&=*W^uM zqm=|x?gamUEYkO{S?o>)l=?@YdEi*7vII7 zn*Vj0LZ1ji8u{Y;m=rgO+$Odehl#Rx;!e6JN;F}MFb!qd%v1^!65^Ee5>cVko&W+F zfUNOjyqFSDnBkcozh)GmD35oq&Qg+oV=9D=JoiV~1($+~=tAi6zH!3RwQSTU-(~yu zu~rDp=~z*A^kqjks0T;lr`SkYN%)l%-$Pdvh@7EW1DQblD>NNAnc;8?Vq3hsIzw>s zrgN6107ll;mi-wz<6`%DPm72-qi+UheM{SlU^ujx;@&g3Fj-3reP$i8PIDAjCk3a_ zw279|t%ib=)@SNG!&cd>iZ!ejS3$}-fo#qM1x;~<$PbB-(*95ITg4J`Fl}(xg6A3R z)LU_jt}BSwKs)!4jyBNFhrzkP2uvLYDI8L^%fg{O2!~GKA2E2nGrT1#Ak;14)sbPDmRE5 z14xKF#JNjk!kI{c&(Kmz4`dSx7u}mP<)0lZ$fHKF;s+RH9!0St^CR*dY4vs3-gn?( z<^cCbwd>qYKQ7%)VOZ@+_wc&DfFN`#CvNTTBJNsIveVM{EN7`z{Dc-xT;*fT{Ru5~ zKmcmG$Oji(B#Ww3fF9X`0?s%xCIOvcLq{*%Vj-1L9G65VNup#I$)#+aL0b^Y1PON` zn(JUrqWRiv$!7w3r2a{<`xLJE*C<^7iA)K#!<7aQwyNDL!}L`;jO1P^i<+f7r~J+{ z=vf;?i+vH6BNBV)Hx^&w-5axo9+oj&e27;rK(RiGV%xa4 z&OPLn8)zC;qcUcyRt+4W*bZ_)l`9B7Q^Arp((okF#^E_IepW^p>W2S6vNZ~|xSq-( zCKO z$*38MPqA9u2N~v0GiemMk@zJI7V*Wmxw8}Ma{Y1mI*e70LN0=s zvbL%ZpXl7E0j7$3QGicFztIsXc3%8#c=WPW7lBT5qSKZdwkp5*RU>Ru<%SSKSqGU4 zH3+^0$813ASA|v^+YOj+F_T^cVeT6D43`_cz?besT0t z+`_W#5N*5-43#5~pvzrBPALfWwPk$bR{Ymt60}66En2%Mgwr!&)HThI2A{x{4)Ro5 zX|$T{y41H)*Jmvl_(1l(l82K#)_FL?m{tKr{WIs#uu<~^>6`TgUsFQcOW$lv7bEm3 n_mk`^_CBF4rP~66gWrO&fNH#ex_sVS_-Ntg{31%+HH-fjzg4ZM literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7750a052b9ea0f288455a9d0e44c30f041f35ea6 GIT binary patch literal 315 zcmWIL<>g`k0)_V0gc2bA7{oyaj6jY95Esh;i4=w?h7`sq#uTO~rWEEV<`kAFmK4?~ z))cm222J*tKotxxK^k5%fe2<0!2%-0frOtX+b#CsP-kb?;NV-Vu0cWmLAQ8A{k;AB z!~NnRT#+!(ppZ~UA6LJyct8J;csKu0KbKn)0YR=|p8lc1@lK(hJ}&Vto None + """Entry Point for completion of main and subcommand options.""" + # Don't complete if user hasn't sourced bash_completion file. + if "PIP_AUTO_COMPLETE" not in os.environ: + return + cwords = os.environ["COMP_WORDS"].split()[1:] + cword = int(os.environ["COMP_CWORD"]) + try: + current = cwords[cword - 1] + except IndexError: + current = "" + + parser = create_main_parser() + subcommands = list(commands_dict) + options = [] + + # subcommand + subcommand_name = None # type: Optional[str] + for word in cwords: + if word in subcommands: + subcommand_name = word + break + # subcommand options + if subcommand_name is not None: + # special case: 'help' subcommand has no options + if subcommand_name == "help": + sys.exit(1) + # special case: list locally installed dists for show and uninstall + should_list_installed = not current.startswith("-") and subcommand_name in [ + "show", + "uninstall", + ] + if should_list_installed: + lc = current.lower() + installed = [ + dist.key + for dist in get_installed_distributions(local_only=True) + if dist.key.startswith(lc) and dist.key not in cwords[1:] + ] + # if there are no dists installed, fall back to option completion + if installed: + for dist in installed: + print(dist) + sys.exit(1) + + subcommand = create_command(subcommand_name) + + for opt in subcommand.parser.option_list_all: + if opt.help != optparse.SUPPRESS_HELP: + for opt_str in opt._long_opts + opt._short_opts: + options.append((opt_str, opt.nargs)) + + # filter out previously specified options from available options + prev_opts = [x.split("=")[0] for x in cwords[1 : cword - 1]] + options = [(x, v) for (x, v) in options if x not in prev_opts] + # filter options by current input + options = [(k, v) for k, v in options if k.startswith(current)] + # get completion type given cwords and available subcommand options + completion_type = get_path_completion_type( + cwords, + cword, + subcommand.parser.option_list_all, + ) + # get completion files and directories if ``completion_type`` is + # ````, ```` or ```` + if completion_type: + paths = auto_complete_paths(current, completion_type) + options = [(path, 0) for path in paths] + for option in options: + opt_label = option[0] + # append '=' to options which require args + if option[1] and option[0][:2] == "--": + opt_label += "=" + print(opt_label) + else: + # show main parser options only when necessary + + opts = [i.option_list for i in parser.option_groups] + opts.append(parser.option_list) + flattened_opts = chain.from_iterable(opts) + if current.startswith("-"): + for opt in flattened_opts: + if opt.help != optparse.SUPPRESS_HELP: + subcommands += opt._long_opts + opt._short_opts + else: + # get completion type given cwords and all available options + completion_type = get_path_completion_type(cwords, cword, flattened_opts) + if completion_type: + subcommands = list(auto_complete_paths(current, completion_type)) + + print(" ".join([x for x in subcommands if x.startswith(current)])) + sys.exit(1) + + +def get_path_completion_type(cwords, cword, opts): + # type: (List[str], int, Iterable[Any]) -> Optional[str] + """Get the type of path completion (``file``, ``dir``, ``path`` or None) + + :param cwords: same as the environmental variable ``COMP_WORDS`` + :param cword: same as the environmental variable ``COMP_CWORD`` + :param opts: The available options to check + :return: path completion type (``file``, ``dir``, ``path`` or None) + """ + if cword < 2 or not cwords[cword - 2].startswith("-"): + return None + for opt in opts: + if opt.help == optparse.SUPPRESS_HELP: + continue + for o in str(opt).split("/"): + if cwords[cword - 2].split("=")[0] == o: + if not opt.metavar or any( + x in ("path", "file", "dir") for x in opt.metavar.split("/") + ): + return opt.metavar + return None + + +def auto_complete_paths(current, completion_type): + # type: (str, str) -> Iterable[str] + """If ``completion_type`` is ``file`` or ``path``, list all regular files + and directories starting with ``current``; otherwise only list directories + starting with ``current``. + + :param current: The word to be completed + :param completion_type: path completion type(`file`, `path` or `dir`)i + :return: A generator of regular files and/or directories + """ + directory, filename = os.path.split(current) + current_path = os.path.abspath(directory) + # Don't complete paths if they can't be accessed + if not os.access(current_path, os.R_OK): + return + filename = os.path.normcase(filename) + # list all files that start with ``filename`` + file_list = ( + x for x in os.listdir(current_path) if os.path.normcase(x).startswith(filename) + ) + for f in file_list: + opt = os.path.join(current_path, f) + comp_file = os.path.normcase(os.path.join(directory, f)) + # complete regular files when there is not ```` after option + # complete directories when there is ````, ```` or + # ````after option + if completion_type != "dir" and os.path.isfile(opt): + yield comp_file + elif os.path.isdir(opt): + yield os.path.join(comp_file, "") diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/base_command.py b/venv/lib/python3.8/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 00000000..b59420dd --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/cli/base_command.py @@ -0,0 +1,221 @@ +"""Base Command class, and related routines""" + +import logging +import logging.config +import optparse +import os +import sys +import traceback +from optparse import Values +from typing import Any, List, Optional, Tuple + +from pip._internal.cli import cmdoptions +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.cli.status_codes import ( + ERROR, + PREVIOUS_BUILD_DIR_ERROR, + UNKNOWN_ERROR, + VIRTUALENV_NOT_FOUND, +) +from pip._internal.exceptions import ( + BadCommand, + CommandError, + InstallationError, + NetworkConnectionError, + PreviousBuildDirError, + UninstallationError, +) +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filesystem import check_path_owner +from pip._internal.utils.logging import BrokenStdoutLoggingError, setup_logging +from pip._internal.utils.misc import get_prog, normalize_path +from pip._internal.utils.temp_dir import TempDirectoryTypeRegistry as TempDirRegistry +from pip._internal.utils.temp_dir import global_tempdir_manager, tempdir_registry +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = ["Command"] + +logger = logging.getLogger(__name__) + + +class Command(CommandContextMixIn): + usage = None # type: str + ignore_require_venv = False # type: bool + + def __init__(self, name, summary, isolated=False): + # type: (str, str, bool) -> None + super().__init__() + + self.name = name + self.summary = summary + self.parser = ConfigOptionParser( + usage=self.usage, + prog=f"{get_prog()} {name}", + formatter=UpdatingDefaultsHelpFormatter(), + add_help_option=False, + name=name, + description=self.__doc__, + isolated=isolated, + ) + + self.tempdir_registry = None # type: Optional[TempDirRegistry] + + # Commands should add options to this option group + optgroup_name = f"{self.name.capitalize()} Options" + self.cmd_opts = optparse.OptionGroup(self.parser, optgroup_name) + + # Add the general options + gen_opts = cmdoptions.make_option_group( + cmdoptions.general_group, + self.parser, + ) + self.parser.add_option_group(gen_opts) + + self.add_options() + + def add_options(self): + # type: () -> None + pass + + def handle_pip_version_check(self, options): + # type: (Values) -> None + """ + This is a no-op so that commands by default do not do the pip version + check. + """ + # Make sure we do the pip version check if the index_group options + # are present. + assert not hasattr(options, "no_index") + + def run(self, options, args): + # type: (Values, List[Any]) -> int + raise NotImplementedError + + def parse_args(self, args): + # type: (List[str]) -> Tuple[Any, Any] + # factored out for testability + return self.parser.parse_args(args) + + def main(self, args): + # type: (List[str]) -> int + try: + with self.main_context(): + return self._main(args) + finally: + logging.shutdown() + + def _main(self, args): + # type: (List[str]) -> int + # We must initialize this before the tempdir manager, otherwise the + # configuration would not be accessible by the time we clean up the + # tempdir manager. + self.tempdir_registry = self.enter_context(tempdir_registry()) + # Intentionally set as early as possible so globally-managed temporary + # directories are available to the rest of the code. + self.enter_context(global_tempdir_manager()) + + options, args = self.parse_args(args) + + # Set verbosity so that it can be used elsewhere. + self.verbosity = options.verbose - options.quiet + + level_number = setup_logging( + verbosity=self.verbosity, + no_color=options.no_color, + user_log_file=options.log, + ) + + # TODO: Try to get these passing down from the command? + # without resorting to os.environ to hold these. + # This also affects isolated builds and it should. + + if options.no_input: + os.environ["PIP_NO_INPUT"] = "1" + + if options.exists_action: + os.environ["PIP_EXISTS_ACTION"] = " ".join(options.exists_action) + + if options.require_venv and not self.ignore_require_venv: + # If a venv is required check if it can really be found + if not running_under_virtualenv(): + logger.critical("Could not find an activated virtualenv (required).") + sys.exit(VIRTUALENV_NOT_FOUND) + + if options.cache_dir: + options.cache_dir = normalize_path(options.cache_dir) + if not check_path_owner(options.cache_dir): + logger.warning( + "The directory '%s' or its parent directory is not owned " + "or is not writable by the current user. The cache " + "has been disabled. Check the permissions and owner of " + "that directory. If executing pip with sudo, you should " + "use sudo's -H flag.", + options.cache_dir, + ) + options.cache_dir = None + + if getattr(options, "build_dir", None): + deprecated( + reason=( + "The -b/--build/--build-dir/--build-directory " + "option is deprecated and has no effect anymore." + ), + replacement=( + "use the TMPDIR/TEMP/TMP environment variable, " + "possibly combined with --no-clean" + ), + gone_in="21.3", + issue=8333, + ) + + if "2020-resolver" in options.features_enabled: + logger.warning( + "--use-feature=2020-resolver no longer has any effect, " + "since it is now the default dependency resolver in pip. " + "This will become an error in pip 21.0." + ) + + try: + status = self.run(options, args) + assert isinstance(status, int) + return status + except PreviousBuildDirError as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return PREVIOUS_BUILD_DIR_ERROR + except ( + InstallationError, + UninstallationError, + BadCommand, + NetworkConnectionError, + ) as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except CommandError as exc: + logger.critical("%s", exc) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BrokenStdoutLoggingError: + # Bypass our logger and write any remaining messages to stderr + # because stdout no longer works. + print("ERROR: Pipe to stdout was broken", file=sys.stderr) + if level_number <= logging.DEBUG: + traceback.print_exc(file=sys.stderr) + + return ERROR + except KeyboardInterrupt: + logger.critical("Operation cancelled by user") + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BaseException: + logger.critical("Exception:", exc_info=True) + + return UNKNOWN_ERROR + finally: + self.handle_pip_version_check(options) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/cmdoptions.py b/venv/lib/python3.8/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 00000000..f71c0b02 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/cli/cmdoptions.py @@ -0,0 +1,1024 @@ +""" +shared options and groups + +The principle here is to define options once, but *not* instantiate them +globally. One reason being that options with action='append' can carry state +between parses. pip parses general options twice internally, and shouldn't +pass on state. To be consistent, all options will follow this design. +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import os +import textwrap +import warnings +from functools import partial +from optparse import SUPPRESS_HELP, Option, OptionGroup, OptionParser, Values +from textwrap import dedent +from typing import Any, Callable, Dict, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.parser import ConfigOptionParser +from pip._internal.cli.progress_bars import BAR_TYPES +from pip._internal.exceptions import CommandError +from pip._internal.locations import USER_CACHE_DIR, get_src_prefix +from pip._internal.models.format_control import FormatControl +from pip._internal.models.index import PyPI +from pip._internal.models.target_python import TargetPython +from pip._internal.utils.hashes import STRONG_HASHES +from pip._internal.utils.misc import strtobool + + +def raise_option_error(parser, option, msg): + # type: (OptionParser, Option, str) -> None + """ + Raise an option parsing error using parser.error(). + + Args: + parser: an OptionParser instance. + option: an Option instance. + msg: the error text. + """ + msg = f"{option} error: {msg}" + msg = textwrap.fill(" ".join(msg.split())) + parser.error(msg) + + +def make_option_group(group, parser): + # type: (Dict[str, Any], ConfigOptionParser) -> OptionGroup + """ + Return an OptionGroup object + group -- assumed to be dict with 'name' and 'options' keys + parser -- an optparse Parser + """ + option_group = OptionGroup(parser, group["name"]) + for option in group["options"]: + option_group.add_option(option()) + return option_group + + +def check_install_build_global(options, check_options=None): + # type: (Values, Optional[Values]) -> None + """Disable wheels if per-setup.py call options are set. + + :param options: The OptionParser options to update. + :param check_options: The options to check, if not supplied defaults to + options. + """ + if check_options is None: + check_options = options + + def getname(n): + # type: (str) -> Optional[Any] + return getattr(check_options, n, None) + + names = ["build_options", "global_options", "install_options"] + if any(map(getname, names)): + control = options.format_control + control.disallow_binaries() + warnings.warn( + "Disabling all use of wheels due to the use of --build-option " + "/ --global-option / --install-option.", + stacklevel=2, + ) + + +def check_dist_restriction(options, check_target=False): + # type: (Values, bool) -> None + """Function for determining if custom platform options are allowed. + + :param options: The OptionParser options. + :param check_target: Whether or not to check if --target is being used. + """ + dist_restriction_set = any( + [ + options.python_version, + options.platforms, + options.abis, + options.implementation, + ] + ) + + binary_only = FormatControl(set(), {":all:"}) + sdist_dependencies_allowed = ( + options.format_control != binary_only and not options.ignore_dependencies + ) + + # Installations or downloads using dist restrictions must not combine + # source distributions and dist-specific wheels, as they are not + # guaranteed to be locally compatible. + if dist_restriction_set and sdist_dependencies_allowed: + raise CommandError( + "When restricting platform and interpreter constraints using " + "--python-version, --platform, --abi, or --implementation, " + "either --no-deps must be set, or --only-binary=:all: must be " + "set and --no-binary must not be set (or must be set to " + ":none:)." + ) + + if check_target: + if dist_restriction_set and not options.target_dir: + raise CommandError( + "Can not use any platform or abi specific options unless " + "installing via '--target'" + ) + + +def _path_option_check(option, opt, value): + # type: (Option, str, str) -> str + return os.path.expanduser(value) + + +def _package_name_option_check(option, opt, value): + # type: (Option, str, str) -> str + return canonicalize_name(value) + + +class PipOption(Option): + TYPES = Option.TYPES + ("path", "package_name") + TYPE_CHECKER = Option.TYPE_CHECKER.copy() + TYPE_CHECKER["package_name"] = _package_name_option_check + TYPE_CHECKER["path"] = _path_option_check + + +########### +# options # +########### + +help_ = partial( + Option, + "-h", + "--help", + dest="help", + action="help", + help="Show help.", +) # type: Callable[..., Option] + +isolated_mode = partial( + Option, + "--isolated", + dest="isolated_mode", + action="store_true", + default=False, + help=( + "Run pip in an isolated mode, ignoring environment variables and user " + "configuration." + ), +) # type: Callable[..., Option] + +require_virtualenv = partial( + Option, + # Run only if inside a virtualenv, bail if not. + "--require-virtualenv", + "--require-venv", + dest="require_venv", + action="store_true", + default=False, + help=SUPPRESS_HELP, +) # type: Callable[..., Option] + +verbose = partial( + Option, + "-v", + "--verbose", + dest="verbose", + action="count", + default=0, + help="Give more output. Option is additive, and can be used up to 3 times.", +) # type: Callable[..., Option] + +no_color = partial( + Option, + "--no-color", + dest="no_color", + action="store_true", + default=False, + help="Suppress colored output.", +) # type: Callable[..., Option] + +version = partial( + Option, + "-V", + "--version", + dest="version", + action="store_true", + help="Show version and exit.", +) # type: Callable[..., Option] + +quiet = partial( + Option, + "-q", + "--quiet", + dest="quiet", + action="count", + default=0, + help=( + "Give less output. Option is additive, and can be used up to 3" + " times (corresponding to WARNING, ERROR, and CRITICAL logging" + " levels)." + ), +) # type: Callable[..., Option] + +progress_bar = partial( + Option, + "--progress-bar", + dest="progress_bar", + type="choice", + choices=list(BAR_TYPES.keys()), + default="on", + help=( + "Specify type of progress to be displayed [" + + "|".join(BAR_TYPES.keys()) + + "] (default: %default)" + ), +) # type: Callable[..., Option] + +log = partial( + PipOption, + "--log", + "--log-file", + "--local-log", + dest="log", + metavar="path", + type="path", + help="Path to a verbose appending log.", +) # type: Callable[..., Option] + +no_input = partial( + Option, + # Don't ask for input + "--no-input", + dest="no_input", + action="store_true", + default=False, + help="Disable prompting for input.", +) # type: Callable[..., Option] + +proxy = partial( + Option, + "--proxy", + dest="proxy", + type="str", + default="", + help="Specify a proxy in the form [user:passwd@]proxy.server:port.", +) # type: Callable[..., Option] + +retries = partial( + Option, + "--retries", + dest="retries", + type="int", + default=5, + help="Maximum number of retries each connection should attempt " + "(default %default times).", +) # type: Callable[..., Option] + +timeout = partial( + Option, + "--timeout", + "--default-timeout", + metavar="sec", + dest="timeout", + type="float", + default=15, + help="Set the socket timeout (default %default seconds).", +) # type: Callable[..., Option] + + +def exists_action(): + # type: () -> Option + return Option( + # Option when path already exist + "--exists-action", + dest="exists_action", + type="choice", + choices=["s", "i", "w", "b", "a"], + default=[], + action="append", + metavar="action", + help="Default action when a path already exists: " + "(s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.", + ) + + +cert = partial( + PipOption, + "--cert", + dest="cert", + type="path", + metavar="path", + help=( + "Path to PEM-encoded CA certificate bundle. " + "If provided, overrides the default. " + "See 'SSL Certificate Verification' in pip documentation " + "for more information." + ), +) # type: Callable[..., Option] + +client_cert = partial( + PipOption, + "--client-cert", + dest="client_cert", + type="path", + default=None, + metavar="path", + help="Path to SSL client certificate, a single file containing the " + "private key and the certificate in PEM format.", +) # type: Callable[..., Option] + +index_url = partial( + Option, + "-i", + "--index-url", + "--pypi-url", + dest="index_url", + metavar="URL", + default=PyPI.simple_url, + help="Base URL of the Python Package Index (default %default). " + "This should point to a repository compliant with PEP 503 " + "(the simple repository API) or a local directory laid out " + "in the same format.", +) # type: Callable[..., Option] + + +def extra_index_url(): + # type: () -> Option + return Option( + "--extra-index-url", + dest="extra_index_urls", + metavar="URL", + action="append", + default=[], + help="Extra URLs of package indexes to use in addition to " + "--index-url. Should follow the same rules as " + "--index-url.", + ) + + +no_index = partial( + Option, + "--no-index", + dest="no_index", + action="store_true", + default=False, + help="Ignore package index (only looking at --find-links URLs instead).", +) # type: Callable[..., Option] + + +def find_links(): + # type: () -> Option + return Option( + "-f", + "--find-links", + dest="find_links", + action="append", + default=[], + metavar="url", + help="If a URL or path to an html file, then parse for links to " + "archives such as sdist (.tar.gz) or wheel (.whl) files. " + "If a local path or file:// URL that's a directory, " + "then look for archives in the directory listing. " + "Links to VCS project URLs are not supported.", + ) + + +def trusted_host(): + # type: () -> Option + return Option( + "--trusted-host", + dest="trusted_hosts", + action="append", + metavar="HOSTNAME", + default=[], + help="Mark this host or host:port pair as trusted, even though it " + "does not have valid or any HTTPS.", + ) + + +def constraints(): + # type: () -> Option + return Option( + "-c", + "--constraint", + dest="constraints", + action="append", + default=[], + metavar="file", + help="Constrain versions using the given constraints file. " + "This option can be used multiple times.", + ) + + +def requirements(): + # type: () -> Option + return Option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help="Install from the given requirements file. " + "This option can be used multiple times.", + ) + + +def editable(): + # type: () -> Option + return Option( + "-e", + "--editable", + dest="editables", + action="append", + default=[], + metavar="path/url", + help=( + "Install a project in editable mode (i.e. setuptools " + '"develop mode") from a local project path or a VCS url.' + ), + ) + + +def _handle_src(option, opt_str, value, parser): + # type: (Option, str, str, OptionParser) -> None + value = os.path.abspath(value) + setattr(parser.values, option.dest, value) + + +src = partial( + PipOption, + "--src", + "--source", + "--source-dir", + "--source-directory", + dest="src_dir", + type="path", + metavar="dir", + default=get_src_prefix(), + action="callback", + callback=_handle_src, + help="Directory to check out editable projects into. " + 'The default in a virtualenv is "/src". ' + 'The default for global installs is "/src".', +) # type: Callable[..., Option] + + +def _get_format_control(values, option): + # type: (Values, Option) -> Any + """Get a format_control object.""" + return getattr(values, option.dest) + + +def _handle_no_binary(option, opt_str, value, parser): + # type: (Option, str, str, OptionParser) -> None + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.no_binary, + existing.only_binary, + ) + + +def _handle_only_binary(option, opt_str, value, parser): + # type: (Option, str, str, OptionParser) -> None + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.only_binary, + existing.no_binary, + ) + + +def no_binary(): + # type: () -> Option + format_control = FormatControl(set(), set()) + return Option( + "--no-binary", + dest="format_control", + action="callback", + callback=_handle_no_binary, + type="str", + default=format_control, + help="Do not use binary packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all binary packages, ":none:" to empty the set (notice ' + "the colons), or one or more package names with commas between " + "them (no colons). Note that some packages are tricky to compile " + "and may fail to install when this option is used on them.", + ) + + +def only_binary(): + # type: () -> Option + format_control = FormatControl(set(), set()) + return Option( + "--only-binary", + dest="format_control", + action="callback", + callback=_handle_only_binary, + type="str", + default=format_control, + help="Do not use source packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all source packages, ":none:" to empty the set, or one ' + "or more package names with commas between them. Packages " + "without binary distributions will fail to install when this " + "option is used on them.", + ) + + +platforms = partial( + Option, + "--platform", + dest="platforms", + metavar="platform", + action="append", + default=None, + help=( + "Only use wheels compatible with . Defaults to the " + "platform of the running system. Use this option multiple times to " + "specify multiple platforms supported by the target interpreter." + ), +) # type: Callable[..., Option] + + +# This was made a separate function for unit-testing purposes. +def _convert_python_version(value): + # type: (str) -> Tuple[Tuple[int, ...], Optional[str]] + """ + Convert a version string like "3", "37", or "3.7.3" into a tuple of ints. + + :return: A 2-tuple (version_info, error_msg), where `error_msg` is + non-None if and only if there was a parsing error. + """ + if not value: + # The empty string is the same as not providing a value. + return (None, None) + + parts = value.split(".") + if len(parts) > 3: + return ((), "at most three version parts are allowed") + + if len(parts) == 1: + # Then we are in the case of "3" or "37". + value = parts[0] + if len(value) > 1: + parts = [value[0], value[1:]] + + try: + version_info = tuple(int(part) for part in parts) + except ValueError: + return ((), "each version part must be an integer") + + return (version_info, None) + + +def _handle_python_version(option, opt_str, value, parser): + # type: (Option, str, str, OptionParser) -> None + """ + Handle a provided --python-version value. + """ + version_info, error_msg = _convert_python_version(value) + if error_msg is not None: + msg = "invalid --python-version value: {!r}: {}".format( + value, + error_msg, + ) + raise_option_error(parser, option=option, msg=msg) + + parser.values.python_version = version_info + + +python_version = partial( + Option, + "--python-version", + dest="python_version", + metavar="python_version", + action="callback", + callback=_handle_python_version, + type="str", + default=None, + help=dedent( + """\ + The Python interpreter version to use for wheel and "Requires-Python" + compatibility checks. Defaults to a version derived from the running + interpreter. The version can be specified using up to three dot-separated + integers (e.g. "3" for 3.0.0, "3.7" for 3.7.0, or "3.7.3"). A major-minor + version can also be given as a string without dots (e.g. "37" for 3.7.0). + """ + ), +) # type: Callable[..., Option] + + +implementation = partial( + Option, + "--implementation", + dest="implementation", + metavar="implementation", + default=None, + help=( + "Only use wheels compatible with Python " + "implementation , e.g. 'pp', 'jy', 'cp', " + " or 'ip'. If not specified, then the current " + "interpreter implementation is used. Use 'py' to force " + "implementation-agnostic wheels." + ), +) # type: Callable[..., Option] + + +abis = partial( + Option, + "--abi", + dest="abis", + metavar="abi", + action="append", + default=None, + help=( + "Only use wheels compatible with Python abi , e.g. 'pypy_41'. " + "If not specified, then the current interpreter abi tag is used. " + "Use this option multiple times to specify multiple abis supported " + "by the target interpreter. Generally you will need to specify " + "--implementation, --platform, and --python-version when using this " + "option." + ), +) # type: Callable[..., Option] + + +def add_target_python_options(cmd_opts): + # type: (OptionGroup) -> None + cmd_opts.add_option(platforms()) + cmd_opts.add_option(python_version()) + cmd_opts.add_option(implementation()) + cmd_opts.add_option(abis()) + + +def make_target_python(options): + # type: (Values) -> TargetPython + target_python = TargetPython( + platforms=options.platforms, + py_version_info=options.python_version, + abis=options.abis, + implementation=options.implementation, + ) + + return target_python + + +def prefer_binary(): + # type: () -> Option + return Option( + "--prefer-binary", + dest="prefer_binary", + action="store_true", + default=False, + help="Prefer older binary packages over newer source packages.", + ) + + +cache_dir = partial( + PipOption, + "--cache-dir", + dest="cache_dir", + default=USER_CACHE_DIR, + metavar="dir", + type="path", + help="Store the cache data in .", +) # type: Callable[..., Option] + + +def _handle_no_cache_dir(option, opt, value, parser): + # type: (Option, str, str, OptionParser) -> None + """ + Process a value provided for the --no-cache-dir option. + + This is an optparse.Option callback for the --no-cache-dir option. + """ + # The value argument will be None if --no-cache-dir is passed via the + # command-line, since the option doesn't accept arguments. However, + # the value can be non-None if the option is triggered e.g. by an + # environment variable, like PIP_NO_CACHE_DIR=true. + if value is not None: + # Then parse the string value to get argument error-checking. + try: + strtobool(value) + except ValueError as exc: + raise_option_error(parser, option=option, msg=str(exc)) + + # Originally, setting PIP_NO_CACHE_DIR to a value that strtobool() + # converted to 0 (like "false" or "no") caused cache_dir to be disabled + # rather than enabled (logic would say the latter). Thus, we disable + # the cache directory not just on values that parse to True, but (for + # backwards compatibility reasons) also on values that parse to False. + # In other words, always set it to False if the option is provided in + # some (valid) form. + parser.values.cache_dir = False + + +no_cache = partial( + Option, + "--no-cache-dir", + dest="cache_dir", + action="callback", + callback=_handle_no_cache_dir, + help="Disable the cache.", +) # type: Callable[..., Option] + +no_deps = partial( + Option, + "--no-deps", + "--no-dependencies", + dest="ignore_dependencies", + action="store_true", + default=False, + help="Don't install package dependencies.", +) # type: Callable[..., Option] + +build_dir = partial( + PipOption, + "-b", + "--build", + "--build-dir", + "--build-directory", + dest="build_dir", + type="path", + metavar="dir", + help=SUPPRESS_HELP, +) # type: Callable[..., Option] + +ignore_requires_python = partial( + Option, + "--ignore-requires-python", + dest="ignore_requires_python", + action="store_true", + help="Ignore the Requires-Python information.", +) # type: Callable[..., Option] + +no_build_isolation = partial( + Option, + "--no-build-isolation", + dest="build_isolation", + action="store_false", + default=True, + help="Disable isolation when building a modern source distribution. " + "Build dependencies specified by PEP 518 must be already installed " + "if this option is used.", +) # type: Callable[..., Option] + + +def _handle_no_use_pep517(option, opt, value, parser): + # type: (Option, str, str, OptionParser) -> None + """ + Process a value provided for the --no-use-pep517 option. + + This is an optparse.Option callback for the no_use_pep517 option. + """ + # Since --no-use-pep517 doesn't accept arguments, the value argument + # will be None if --no-use-pep517 is passed via the command-line. + # However, the value can be non-None if the option is triggered e.g. + # by an environment variable, for example "PIP_NO_USE_PEP517=true". + if value is not None: + msg = """A value was passed for --no-use-pep517, + probably using either the PIP_NO_USE_PEP517 environment variable + or the "no-use-pep517" config file option. Use an appropriate value + of the PIP_USE_PEP517 environment variable or the "use-pep517" + config file option instead. + """ + raise_option_error(parser, option=option, msg=msg) + + # Otherwise, --no-use-pep517 was passed via the command-line. + parser.values.use_pep517 = False + + +use_pep517 = partial( + Option, + "--use-pep517", + dest="use_pep517", + action="store_true", + default=None, + help="Use PEP 517 for building source distributions " + "(use --no-use-pep517 to force legacy behaviour).", +) # type: Any + +no_use_pep517 = partial( + Option, + "--no-use-pep517", + dest="use_pep517", + action="callback", + callback=_handle_no_use_pep517, + default=None, + help=SUPPRESS_HELP, +) # type: Any + +install_options = partial( + Option, + "--install-option", + dest="install_options", + action="append", + metavar="options", + help="Extra arguments to be supplied to the setup.py install " + 'command (use like --install-option="--install-scripts=/usr/local/' + 'bin"). Use multiple --install-option options to pass multiple ' + "options to setup.py install. If you are using an option with a " + "directory path, be sure to use absolute path.", +) # type: Callable[..., Option] + +build_options = partial( + Option, + "--build-option", + dest="build_options", + metavar="options", + action="append", + help="Extra arguments to be supplied to 'setup.py bdist_wheel'.", +) # type: Callable[..., Option] + +global_options = partial( + Option, + "--global-option", + dest="global_options", + action="append", + metavar="options", + help="Extra global options to be supplied to the setup.py " + "call before the install or bdist_wheel command.", +) # type: Callable[..., Option] + +no_clean = partial( + Option, + "--no-clean", + action="store_true", + default=False, + help="Don't clean up build directories.", +) # type: Callable[..., Option] + +pre = partial( + Option, + "--pre", + action="store_true", + default=False, + help="Include pre-release and development versions. By default, " + "pip only finds stable versions.", +) # type: Callable[..., Option] + +disable_pip_version_check = partial( + Option, + "--disable-pip-version-check", + dest="disable_pip_version_check", + action="store_true", + default=False, + help="Don't periodically check PyPI to determine whether a new version " + "of pip is available for download. Implied with --no-index.", +) # type: Callable[..., Option] + + +def _handle_merge_hash(option, opt_str, value, parser): + # type: (Option, str, str, OptionParser) -> None + """Given a value spelled "algo:digest", append the digest to a list + pointed to in a dict by the algo name.""" + if not parser.values.hashes: + parser.values.hashes = {} + try: + algo, digest = value.split(":", 1) + except ValueError: + parser.error( + "Arguments to {} must be a hash name " # noqa + "followed by a value, like --hash=sha256:" + "abcde...".format(opt_str) + ) + if algo not in STRONG_HASHES: + parser.error( + "Allowed hash algorithms for {} are {}.".format( # noqa + opt_str, ", ".join(STRONG_HASHES) + ) + ) + parser.values.hashes.setdefault(algo, []).append(digest) + + +hash = partial( + Option, + "--hash", + # Hash values eventually end up in InstallRequirement.hashes due to + # __dict__ copying in process_line(). + dest="hashes", + action="callback", + callback=_handle_merge_hash, + type="string", + help="Verify that the package's archive matches this " + "hash before installing. Example: --hash=sha256:abcdef...", +) # type: Callable[..., Option] + + +require_hashes = partial( + Option, + "--require-hashes", + dest="require_hashes", + action="store_true", + default=False, + help="Require a hash to check each requirement against, for " + "repeatable installs. This option is implied when any package in a " + "requirements file has a --hash option.", +) # type: Callable[..., Option] + + +list_path = partial( + PipOption, + "--path", + dest="path", + type="path", + action="append", + help="Restrict to the specified installation path for listing " + "packages (can be used multiple times).", +) # type: Callable[..., Option] + + +def check_list_path_option(options): + # type: (Values) -> None + if options.path and (options.user or options.local): + raise CommandError("Cannot combine '--path' with '--user' or '--local'") + + +list_exclude = partial( + PipOption, + "--exclude", + dest="excludes", + action="append", + metavar="package", + type="package_name", + help="Exclude specified package from the output", +) # type: Callable[..., Option] + + +no_python_version_warning = partial( + Option, + "--no-python-version-warning", + dest="no_python_version_warning", + action="store_true", + default=False, + help="Silence deprecation warnings for upcoming unsupported Pythons.", +) # type: Callable[..., Option] + + +use_new_feature = partial( + Option, + "--use-feature", + dest="features_enabled", + metavar="feature", + action="append", + default=[], + choices=["2020-resolver", "fast-deps", "in-tree-build"], + help="Enable new functionality, that may be backward incompatible.", +) # type: Callable[..., Option] + +use_deprecated_feature = partial( + Option, + "--use-deprecated", + dest="deprecated_features_enabled", + metavar="feature", + action="append", + default=[], + choices=["legacy-resolver"], + help=("Enable deprecated functionality, that will be removed in the future."), +) # type: Callable[..., Option] + + +########## +# groups # +########## + +general_group = { + "name": "General Options", + "options": [ + help_, + isolated_mode, + require_virtualenv, + verbose, + version, + quiet, + log, + no_input, + proxy, + retries, + timeout, + exists_action, + trusted_host, + cert, + client_cert, + cache_dir, + no_cache, + disable_pip_version_check, + no_color, + no_python_version_warning, + use_new_feature, + use_deprecated_feature, + ], +} # type: Dict[str, Any] + +index_group = { + "name": "Package Index Options", + "options": [ + index_url, + extra_index_url, + no_index, + find_links, + ], +} # type: Dict[str, Any] diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/command_context.py b/venv/lib/python3.8/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 00000000..375a2e36 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/cli/command_context.py @@ -0,0 +1,30 @@ +from contextlib import ExitStack, contextmanager +from typing import ContextManager, Iterator, TypeVar + +_T = TypeVar("_T", covariant=True) + + +class CommandContextMixIn: + def __init__(self): + # type: () -> None + super().__init__() + self._in_main_context = False + self._main_context = ExitStack() + + @contextmanager + def main_context(self): + # type: () -> Iterator[None] + assert not self._in_main_context + + self._in_main_context = True + try: + with self._main_context: + yield + finally: + self._in_main_context = False + + def enter_context(self, context_provider): + # type: (ContextManager[_T]) -> _T + assert self._in_main_context + + return self._main_context.enter_context(context_provider) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/main.py b/venv/lib/python3.8/site-packages/pip/_internal/cli/main.py new file mode 100644 index 00000000..7ae074b5 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/cli/main.py @@ -0,0 +1,71 @@ +"""Primary application entrypoint. +""" +import locale +import logging +import os +import sys +from typing import List, Optional + +from pip._internal.cli.autocompletion import autocomplete +from pip._internal.cli.main_parser import parse_command +from pip._internal.commands import create_command +from pip._internal.exceptions import PipError +from pip._internal.utils import deprecation + +logger = logging.getLogger(__name__) + + +# Do not import and use main() directly! Using it directly is actively +# discouraged by pip's maintainers. The name, location and behavior of +# this function is subject to change, so calling it directly is not +# portable across different pip versions. + +# In addition, running pip in-process is unsupported and unsafe. This is +# elaborated in detail at +# https://pip.pypa.io/en/stable/user_guide/#using-pip-from-your-program. +# That document also provides suggestions that should work for nearly +# all users that are considering importing and using main() directly. + +# However, we know that certain users will still want to invoke pip +# in-process. If you understand and accept the implications of using pip +# in an unsupported manner, the best approach is to use runpy to avoid +# depending on the exact location of this entry point. + +# The following example shows how to use runpy to invoke pip in that +# case: +# +# sys.argv = ["pip", your, args, here] +# runpy.run_module("pip", run_name="__main__") +# +# Note that this will exit the process after running, unlike a direct +# call to main. As it is not safe to do any processing after calling +# main, this should not be an issue in practice. + + +def main(args=None): + # type: (Optional[List[str]]) -> int + if args is None: + args = sys.argv[1:] + + # Configure our deprecation warnings to be sent through loggers + deprecation.install_warning_logger() + + autocomplete() + + try: + cmd_name, cmd_args = parse_command(args) + except PipError as exc: + sys.stderr.write(f"ERROR: {exc}") + sys.stderr.write(os.linesep) + sys.exit(1) + + # Needed for locale.getpreferredencoding(False) to work + # in pip._internal.utils.encoding.auto_decode + try: + locale.setlocale(locale.LC_ALL, "") + except locale.Error as e: + # setlocale can apparently crash if locale are uninitialized + logger.debug("Ignoring error %s when setting locale", e) + command = create_command(cmd_name, isolated=("--isolated" in cmd_args)) + + return command.main(cmd_args) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/main_parser.py b/venv/lib/python3.8/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 00000000..d0f58fe4 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/cli/main_parser.py @@ -0,0 +1,89 @@ +"""A single place for constructing and exposing the main parser +""" + +import os +import sys +from typing import List, Tuple + +from pip._internal.cli import cmdoptions +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.commands import commands_dict, get_similar_commands +from pip._internal.exceptions import CommandError +from pip._internal.utils.misc import get_pip_version, get_prog + +__all__ = ["create_main_parser", "parse_command"] + + +def create_main_parser(): + # type: () -> ConfigOptionParser + """Creates and returns the main parser for pip's CLI""" + + parser = ConfigOptionParser( + usage="\n%prog [options]", + add_help_option=False, + formatter=UpdatingDefaultsHelpFormatter(), + name="global", + prog=get_prog(), + ) + parser.disable_interspersed_args() + + parser.version = get_pip_version() + + # add the general options + gen_opts = cmdoptions.make_option_group(cmdoptions.general_group, parser) + parser.add_option_group(gen_opts) + + # so the help formatter knows + parser.main = True # type: ignore + + # create command listing for description + description = [""] + [ + f"{name:27} {command_info.summary}" + for name, command_info in commands_dict.items() + ] + parser.description = "\n".join(description) + + return parser + + +def parse_command(args): + # type: (List[str]) -> Tuple[str, List[str]] + parser = create_main_parser() + + # Note: parser calls disable_interspersed_args(), so the result of this + # call is to split the initial args into the general options before the + # subcommand and everything else. + # For example: + # args: ['--timeout=5', 'install', '--user', 'INITools'] + # general_options: ['--timeout==5'] + # args_else: ['install', '--user', 'INITools'] + general_options, args_else = parser.parse_args(args) + + # --version + if general_options.version: + sys.stdout.write(parser.version) + sys.stdout.write(os.linesep) + sys.exit() + + # pip || pip help -> print_help() + if not args_else or (args_else[0] == "help" and len(args_else) == 1): + parser.print_help() + sys.exit() + + # the subcommand name + cmd_name = args_else[0] + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + # all the args without the subcommand + cmd_args = args[:] + cmd_args.remove(cmd_name) + + return cmd_name, cmd_args diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/parser.py b/venv/lib/python3.8/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 00000000..16523c5a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/cli/parser.py @@ -0,0 +1,305 @@ +"""Base option parser setup""" + +import logging +import optparse +import shutil +import sys +import textwrap +from contextlib import suppress +from typing import Any, Dict, Iterator, List, Tuple + +from pip._internal.cli.status_codes import UNKNOWN_ERROR +from pip._internal.configuration import Configuration, ConfigurationError +from pip._internal.utils.misc import redact_auth_from_url, strtobool + +logger = logging.getLogger(__name__) + + +class PrettyHelpFormatter(optparse.IndentedHelpFormatter): + """A prettier/less verbose help formatter for optparse.""" + + def __init__(self, *args, **kwargs): + # type: (*Any, **Any) -> None + # help position must be aligned with __init__.parseopts.description + kwargs["max_help_position"] = 30 + kwargs["indent_increment"] = 1 + kwargs["width"] = shutil.get_terminal_size()[0] - 2 + super().__init__(*args, **kwargs) + + def format_option_strings(self, option): + # type: (optparse.Option) -> str + return self._format_option_strings(option) + + def _format_option_strings(self, option, mvarfmt=" <{}>", optsep=", "): + # type: (optparse.Option, str, str) -> str + """ + Return a comma-separated list of option strings and metavars. + + :param option: tuple of (short opt, long opt), e.g: ('-f', '--format') + :param mvarfmt: metavar format string + :param optsep: separator + """ + opts = [] + + if option._short_opts: + opts.append(option._short_opts[0]) + if option._long_opts: + opts.append(option._long_opts[0]) + if len(opts) > 1: + opts.insert(1, optsep) + + if option.takes_value(): + assert option.dest is not None + metavar = option.metavar or option.dest.lower() + opts.append(mvarfmt.format(metavar.lower())) + + return "".join(opts) + + def format_heading(self, heading): + # type: (str) -> str + if heading == "Options": + return "" + return heading + ":\n" + + def format_usage(self, usage): + # type: (str) -> str + """ + Ensure there is only one newline between usage and the first heading + if there is no description. + """ + msg = "\nUsage: {}\n".format(self.indent_lines(textwrap.dedent(usage), " ")) + return msg + + def format_description(self, description): + # type: (str) -> str + # leave full control over description to us + if description: + if hasattr(self.parser, "main"): + label = "Commands" + else: + label = "Description" + # some doc strings have initial newlines, some don't + description = description.lstrip("\n") + # some doc strings have final newlines and spaces, some don't + description = description.rstrip() + # dedent, then reindent + description = self.indent_lines(textwrap.dedent(description), " ") + description = f"{label}:\n{description}\n" + return description + else: + return "" + + def format_epilog(self, epilog): + # type: (str) -> str + # leave full control over epilog to us + if epilog: + return epilog + else: + return "" + + def indent_lines(self, text, indent): + # type: (str, str) -> str + new_lines = [indent + line for line in text.split("\n")] + return "\n".join(new_lines) + + +class UpdatingDefaultsHelpFormatter(PrettyHelpFormatter): + """Custom help formatter for use in ConfigOptionParser. + + This is updates the defaults before expanding them, allowing + them to show up correctly in the help listing. + + Also redact auth from url type options + """ + + def expand_default(self, option): + # type: (optparse.Option) -> str + default_values = None + if self.parser is not None: + assert isinstance(self.parser, ConfigOptionParser) + self.parser._update_defaults(self.parser.defaults) + assert option.dest is not None + default_values = self.parser.defaults.get(option.dest) + help_text = super().expand_default(option) + + if default_values and option.metavar == "URL": + if isinstance(default_values, str): + default_values = [default_values] + + # If its not a list, we should abort and just return the help text + if not isinstance(default_values, list): + default_values = [] + + for val in default_values: + help_text = help_text.replace(val, redact_auth_from_url(val)) + + return help_text + + +class CustomOptionParser(optparse.OptionParser): + def insert_option_group(self, idx, *args, **kwargs): + # type: (int, Any, Any) -> optparse.OptionGroup + """Insert an OptionGroup at a given position.""" + group = self.add_option_group(*args, **kwargs) + + self.option_groups.pop() + self.option_groups.insert(idx, group) + + return group + + @property + def option_list_all(self): + # type: () -> List[optparse.Option] + """Get a list of all options, including those in option groups.""" + res = self.option_list[:] + for i in self.option_groups: + res.extend(i.option_list) + + return res + + +class ConfigOptionParser(CustomOptionParser): + """Custom option parser which updates its defaults by checking the + configuration files and environmental variables""" + + def __init__( + self, + *args, # type: Any + name, # type: str + isolated=False, # type: bool + **kwargs, # type: Any + ): + # type: (...) -> None + self.name = name + self.config = Configuration(isolated) + + assert self.name + super().__init__(*args, **kwargs) + + def check_default(self, option, key, val): + # type: (optparse.Option, str, Any) -> Any + try: + return option.check_value(key, val) + except optparse.OptionValueError as exc: + print(f"An error occurred during configuration: {exc}") + sys.exit(3) + + def _get_ordered_configuration_items(self): + # type: () -> Iterator[Tuple[str, Any]] + # Configuration gives keys in an unordered manner. Order them. + override_order = ["global", self.name, ":env:"] + + # Pool the options into different groups + section_items = { + name: [] for name in override_order + } # type: Dict[str, List[Tuple[str, Any]]] + for section_key, val in self.config.items(): + # ignore empty values + if not val: + logger.debug( + "Ignoring configuration key '%s' as it's value is empty.", + section_key, + ) + continue + + section, key = section_key.split(".", 1) + if section in override_order: + section_items[section].append((key, val)) + + # Yield each group in their override order + for section in override_order: + for key, val in section_items[section]: + yield key, val + + def _update_defaults(self, defaults): + # type: (Dict[str, Any]) -> Dict[str, Any] + """Updates the given defaults with values from the config files and + the environ. Does a little special handling for certain types of + options (lists).""" + + # Accumulate complex default state. + self.values = optparse.Values(self.defaults) + late_eval = set() + # Then set the options with those values + for key, val in self._get_ordered_configuration_items(): + # '--' because configuration supports only long names + option = self.get_option("--" + key) + + # Ignore options not present in this parser. E.g. non-globals put + # in [global] by users that want them to apply to all applicable + # commands. + if option is None: + continue + + assert option.dest is not None + + if option.action in ("store_true", "store_false"): + try: + val = strtobool(val) + except ValueError: + self.error( + "{} is not a valid value for {} option, " # noqa + "please specify a boolean value like yes/no, " + "true/false or 1/0 instead.".format(val, key) + ) + elif option.action == "count": + with suppress(ValueError): + val = strtobool(val) + with suppress(ValueError): + val = int(val) + if not isinstance(val, int) or val < 0: + self.error( + "{} is not a valid value for {} option, " # noqa + "please instead specify either a non-negative integer " + "or a boolean value like yes/no or false/true " + "which is equivalent to 1/0.".format(val, key) + ) + elif option.action == "append": + val = val.split() + val = [self.check_default(option, key, v) for v in val] + elif option.action == "callback": + assert option.callback is not None + late_eval.add(option.dest) + opt_str = option.get_opt_string() + val = option.convert_value(opt_str, val) + # From take_action + args = option.callback_args or () + kwargs = option.callback_kwargs or {} + option.callback(option, opt_str, val, self, *args, **kwargs) + else: + val = self.check_default(option, key, val) + + defaults[option.dest] = val + + for key in late_eval: + defaults[key] = getattr(self.values, key) + self.values = None + return defaults + + def get_default_values(self): + # type: () -> optparse.Values + """Overriding to make updating the defaults after instantiation of + the option parser possible, _update_defaults() does the dirty work.""" + if not self.process_default_values: + # Old, pre-Optik 1.5 behaviour. + return optparse.Values(self.defaults) + + # Load the configuration, or error out in case of an error + try: + self.config.load() + except ConfigurationError as err: + self.exit(UNKNOWN_ERROR, str(err)) + + defaults = self._update_defaults(self.defaults.copy()) # ours + for option in self._get_all_options(): + assert option.dest is not None + default = defaults.get(option.dest) + if isinstance(default, str): + opt_str = option.get_opt_string() + defaults[option.dest] = option.check_value(opt_str, default) + return optparse.Values(defaults) + + def error(self, msg): + # type: (str) -> None + self.print_usage(sys.stderr) + self.exit(UNKNOWN_ERROR, f"{msg}\n") diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/progress_bars.py b/venv/lib/python3.8/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 00000000..3064c856 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/cli/progress_bars.py @@ -0,0 +1,261 @@ +import itertools +import sys +from signal import SIGINT, default_int_handler, signal +from typing import Any, Dict, List + +from pip._vendor.progress.bar import Bar, FillingCirclesBar, IncrementalBar +from pip._vendor.progress.spinner import Spinner + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import get_indentation +from pip._internal.utils.misc import format_size + +try: + from pip._vendor import colorama +# Lots of different errors can come from this, including SystemError and +# ImportError. +except Exception: + colorama = None + + +def _select_progress_class(preferred, fallback): + # type: (Bar, Bar) -> Bar + encoding = getattr(preferred.file, "encoding", None) + + # If we don't know what encoding this file is in, then we'll just assume + # that it doesn't support unicode and use the ASCII bar. + if not encoding: + return fallback + + # Collect all of the possible characters we want to use with the preferred + # bar. + characters = [ + getattr(preferred, "empty_fill", ""), + getattr(preferred, "fill", ""), + ] + characters += list(getattr(preferred, "phases", [])) + + # Try to decode the characters we're using for the bar using the encoding + # of the given file, if this works then we'll assume that we can use the + # fancier bar and if not we'll fall back to the plaintext bar. + try: + "".join(characters).encode(encoding) + except UnicodeEncodeError: + return fallback + else: + return preferred + + +_BaseBar = _select_progress_class(IncrementalBar, Bar) # type: Any + + +class InterruptibleMixin: + """ + Helper to ensure that self.finish() gets called on keyboard interrupt. + + This allows downloads to be interrupted without leaving temporary state + (like hidden cursors) behind. + + This class is similar to the progress library's existing SigIntMixin + helper, but as of version 1.2, that helper has the following problems: + + 1. It calls sys.exit(). + 2. It discards the existing SIGINT handler completely. + 3. It leaves its own handler in place even after an uninterrupted finish, + which will have unexpected delayed effects if the user triggers an + unrelated keyboard interrupt some time after a progress-displaying + download has already completed, for example. + """ + + def __init__(self, *args, **kwargs): + # type: (List[Any], Dict[Any, Any]) -> None + """ + Save the original SIGINT handler for later. + """ + # https://github.com/python/mypy/issues/5887 + super().__init__(*args, **kwargs) # type: ignore + + self.original_handler = signal(SIGINT, self.handle_sigint) + + # If signal() returns None, the previous handler was not installed from + # Python, and we cannot restore it. This probably should not happen, + # but if it does, we must restore something sensible instead, at least. + # The least bad option should be Python's default SIGINT handler, which + # just raises KeyboardInterrupt. + if self.original_handler is None: + self.original_handler = default_int_handler + + def finish(self): + # type: () -> None + """ + Restore the original SIGINT handler after finishing. + + This should happen regardless of whether the progress display finishes + normally, or gets interrupted. + """ + super().finish() # type: ignore + signal(SIGINT, self.original_handler) + + def handle_sigint(self, signum, frame): # type: ignore + """ + Call self.finish() before delegating to the original SIGINT handler. + + This handler should only be in place while the progress display is + active. + """ + self.finish() + self.original_handler(signum, frame) + + +class SilentBar(Bar): + def update(self): + # type: () -> None + pass + + +class BlueEmojiBar(IncrementalBar): + + suffix = "%(percent)d%%" + bar_prefix = " " + bar_suffix = " " + phases = ("\U0001F539", "\U0001F537", "\U0001F535") + + +class DownloadProgressMixin: + def __init__(self, *args, **kwargs): + # type: (List[Any], Dict[Any, Any]) -> None + # https://github.com/python/mypy/issues/5887 + super().__init__(*args, **kwargs) # type: ignore + self.message = (" " * (get_indentation() + 2)) + self.message # type: str + + @property + def downloaded(self): + # type: () -> str + return format_size(self.index) # type: ignore + + @property + def download_speed(self): + # type: () -> str + # Avoid zero division errors... + if self.avg == 0.0: # type: ignore + return "..." + return format_size(1 / self.avg) + "/s" # type: ignore + + @property + def pretty_eta(self): + # type: () -> str + if self.eta: # type: ignore + return f"eta {self.eta_td}" # type: ignore + return "" + + def iter(self, it): # type: ignore + for x in it: + yield x + # B305 is incorrectly raised here + # https://github.com/PyCQA/flake8-bugbear/issues/59 + self.next(len(x)) # noqa: B305 + self.finish() + + +class WindowsMixin: + def __init__(self, *args, **kwargs): + # type: (List[Any], Dict[Any, Any]) -> None + # The Windows terminal does not support the hide/show cursor ANSI codes + # even with colorama. So we'll ensure that hide_cursor is False on + # Windows. + # This call needs to go before the super() call, so that hide_cursor + # is set in time. The base progress bar class writes the "hide cursor" + # code to the terminal in its init, so if we don't set this soon + # enough, we get a "hide" with no corresponding "show"... + if WINDOWS and self.hide_cursor: # type: ignore + self.hide_cursor = False + + # https://github.com/python/mypy/issues/5887 + super().__init__(*args, **kwargs) # type: ignore + + # Check if we are running on Windows and we have the colorama module, + # if we do then wrap our file with it. + if WINDOWS and colorama: + self.file = colorama.AnsiToWin32(self.file) # type: ignore + # The progress code expects to be able to call self.file.isatty() + # but the colorama.AnsiToWin32() object doesn't have that, so we'll + # add it. + self.file.isatty = lambda: self.file.wrapped.isatty() + # The progress code expects to be able to call self.file.flush() + # but the colorama.AnsiToWin32() object doesn't have that, so we'll + # add it. + self.file.flush = lambda: self.file.wrapped.flush() + + +class BaseDownloadProgressBar(WindowsMixin, InterruptibleMixin, DownloadProgressMixin): + + file = sys.stdout + message = "%(percent)d%%" + suffix = "%(downloaded)s %(download_speed)s %(pretty_eta)s" + + +class DefaultDownloadProgressBar(BaseDownloadProgressBar, _BaseBar): + pass + + +class DownloadSilentBar(BaseDownloadProgressBar, SilentBar): + pass + + +class DownloadBar(BaseDownloadProgressBar, Bar): + pass + + +class DownloadFillingCirclesBar(BaseDownloadProgressBar, FillingCirclesBar): + pass + + +class DownloadBlueEmojiProgressBar(BaseDownloadProgressBar, BlueEmojiBar): + pass + + +class DownloadProgressSpinner( + WindowsMixin, InterruptibleMixin, DownloadProgressMixin, Spinner +): + + file = sys.stdout + suffix = "%(downloaded)s %(download_speed)s" + + def next_phase(self): + # type: () -> str + if not hasattr(self, "_phaser"): + self._phaser = itertools.cycle(self.phases) + return next(self._phaser) + + def update(self): + # type: () -> None + message = self.message % self + phase = self.next_phase() + suffix = self.suffix % self + line = "".join( + [ + message, + " " if message else "", + phase, + " " if suffix else "", + suffix, + ] + ) + + self.writeln(line) + + +BAR_TYPES = { + "off": (DownloadSilentBar, DownloadSilentBar), + "on": (DefaultDownloadProgressBar, DownloadProgressSpinner), + "ascii": (DownloadBar, DownloadProgressSpinner), + "pretty": (DownloadFillingCirclesBar, DownloadProgressSpinner), + "emoji": (DownloadBlueEmojiProgressBar, DownloadProgressSpinner), +} + + +def DownloadProgressProvider(progress_bar, max=None): # type: ignore + if max is None or max == 0: + return BAR_TYPES[progress_bar][1]().iter + else: + return BAR_TYPES[progress_bar][0](max=max).iter diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/req_command.py b/venv/lib/python3.8/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 00000000..3fc00d4f --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/cli/req_command.py @@ -0,0 +1,461 @@ +"""Contains the Command base classes that depend on PipSession. + +The classes in this module are in a separate module so the commands not +needing download / PackageFinder capability don't unnecessarily import the +PackageFinder machinery and all its vendored dependencies, etc. +""" + +import logging +import os +import sys +from functools import partial +from optparse import Values +from typing import Any, List, Optional, Tuple + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.exceptions import CommandError, PreviousBuildDirError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, + install_req_from_parsed_requirement, + install_req_from_req_string, +) +from pip._internal.req.req_file import parse_requirements +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import RequirementTracker +from pip._internal.resolution.base import BaseResolver +from pip._internal.self_outdated_check import pip_self_version_check +from pip._internal.utils.temp_dir import ( + TempDirectory, + TempDirectoryTypeRegistry, + tempdir_kinds, +) +from pip._internal.utils.virtualenv import running_under_virtualenv + +logger = logging.getLogger(__name__) + + +class SessionCommandMixin(CommandContextMixIn): + + """ + A class mixin for command classes needing _build_session(). + """ + + def __init__(self): + # type: () -> None + super().__init__() + self._session = None # Optional[PipSession] + + @classmethod + def _get_index_urls(cls, options): + # type: (Values) -> Optional[List[str]] + """Return a list of index urls from user-provided options.""" + index_urls = [] + if not getattr(options, "no_index", False): + url = getattr(options, "index_url", None) + if url: + index_urls.append(url) + urls = getattr(options, "extra_index_urls", None) + if urls: + index_urls.extend(urls) + # Return None rather than an empty list + return index_urls or None + + def get_default_session(self, options): + # type: (Values) -> PipSession + """Get a default-managed session.""" + if self._session is None: + self._session = self.enter_context(self._build_session(options)) + # there's no type annotation on requests.Session, so it's + # automatically ContextManager[Any] and self._session becomes Any, + # then https://github.com/python/mypy/issues/7696 kicks in + assert self._session is not None + return self._session + + def _build_session(self, options, retries=None, timeout=None): + # type: (Values, Optional[int], Optional[int]) -> PipSession + assert not options.cache_dir or os.path.isabs(options.cache_dir) + session = PipSession( + cache=( + os.path.join(options.cache_dir, "http") if options.cache_dir else None + ), + retries=retries if retries is not None else options.retries, + trusted_hosts=options.trusted_hosts, + index_urls=self._get_index_urls(options), + ) + + # Handle custom ca-bundles from the user + if options.cert: + session.verify = options.cert + + # Handle SSL client certificate + if options.client_cert: + session.cert = options.client_cert + + # Handle timeouts + if options.timeout or timeout: + session.timeout = timeout if timeout is not None else options.timeout + + # Handle configured proxies + if options.proxy: + session.proxies = { + "http": options.proxy, + "https": options.proxy, + } + + # Determine if we can prompt the user for authentication or not + session.auth.prompting = not options.no_input + + return session + + +class IndexGroupCommand(Command, SessionCommandMixin): + + """ + Abstract base class for commands with the index_group options. + + This also corresponds to the commands that permit the pip version check. + """ + + def handle_pip_version_check(self, options): + # type: (Values) -> None + """ + Do the pip version check if not disabled. + + This overrides the default behavior of not doing the check. + """ + # Make sure the index_group options are present. + assert hasattr(options, "no_index") + + if options.disable_pip_version_check or options.no_index: + return + + # Otherwise, check if we're using the latest version of pip available. + session = self._build_session( + options, retries=0, timeout=min(5, options.timeout) + ) + with session: + pip_self_version_check(session, options) + + +KEEPABLE_TEMPDIR_TYPES = [ + tempdir_kinds.BUILD_ENV, + tempdir_kinds.EPHEM_WHEEL_CACHE, + tempdir_kinds.REQ_BUILD, +] + + +def warn_if_run_as_root(): + # type: () -> None + """Output a warning for sudo users on Unix. + + In a virtual environment, sudo pip still writes to virtualenv. + On Windows, users may run pip as Administrator without issues. + This warning only applies to Unix root users outside of virtualenv. + """ + if running_under_virtualenv(): + return + if not hasattr(os, "getuid"): + return + # On Windows, there are no "system managed" Python packages. Installing as + # Administrator via pip is the correct way of updating system environments. + # + # We choose sys.platform over utils.compat.WINDOWS here to enable Mypy platform + # checks: https://mypy.readthedocs.io/en/stable/common_issues.html + if sys.platform == "win32" or sys.platform == "cygwin": + return + if sys.platform == "darwin" or sys.platform == "linux": + if os.getuid() != 0: + return + logger.warning( + "Running pip as root will break packages and permissions. " + "You should install packages reliably by using venv: " + "https://pip.pypa.io/warnings/venv" + ) + + +def with_cleanup(func): + # type: (Any) -> Any + """Decorator for common logic related to managing temporary + directories. + """ + + def configure_tempdir_registry(registry): + # type: (TempDirectoryTypeRegistry) -> None + for t in KEEPABLE_TEMPDIR_TYPES: + registry.set_delete(t, False) + + def wrapper(self, options, args): + # type: (RequirementCommand, Values, List[Any]) -> Optional[int] + assert self.tempdir_registry is not None + if options.no_clean: + configure_tempdir_registry(self.tempdir_registry) + + try: + return func(self, options, args) + except PreviousBuildDirError: + # This kind of conflict can occur when the user passes an explicit + # build directory with a pre-existing folder. In that case we do + # not want to accidentally remove it. + configure_tempdir_registry(self.tempdir_registry) + raise + + return wrapper + + +class RequirementCommand(IndexGroupCommand): + def __init__(self, *args, **kw): + # type: (Any, Any) -> None + super().__init__(*args, **kw) + + self.cmd_opts.add_option(cmdoptions.no_clean()) + + @staticmethod + def determine_resolver_variant(options): + # type: (Values) -> str + """Determines which resolver should be used, based on the given options.""" + if "legacy-resolver" in options.deprecated_features_enabled: + return "legacy" + + return "2020-resolver" + + @classmethod + def make_requirement_preparer( + cls, + temp_build_dir, # type: TempDirectory + options, # type: Values + req_tracker, # type: RequirementTracker + session, # type: PipSession + finder, # type: PackageFinder + use_user_site, # type: bool + download_dir=None, # type: str + ): + # type: (...) -> RequirementPreparer + """ + Create a RequirementPreparer instance for the given parameters. + """ + temp_build_dir_path = temp_build_dir.path + assert temp_build_dir_path is not None + + resolver_variant = cls.determine_resolver_variant(options) + if resolver_variant == "2020-resolver": + lazy_wheel = "fast-deps" in options.features_enabled + if lazy_wheel: + logger.warning( + "pip is using lazily downloaded wheels using HTTP " + "range requests to obtain dependency information. " + "This experimental feature is enabled through " + "--use-feature=fast-deps and it is not ready for " + "production." + ) + else: + lazy_wheel = False + if "fast-deps" in options.features_enabled: + logger.warning( + "fast-deps has no effect when used with the legacy resolver." + ) + + return RequirementPreparer( + build_dir=temp_build_dir_path, + src_dir=options.src_dir, + download_dir=download_dir, + build_isolation=options.build_isolation, + req_tracker=req_tracker, + session=session, + progress_bar=options.progress_bar, + finder=finder, + require_hashes=options.require_hashes, + use_user_site=use_user_site, + lazy_wheel=lazy_wheel, + in_tree_build="in-tree-build" in options.features_enabled, + ) + + @classmethod + def make_resolver( + cls, + preparer, # type: RequirementPreparer + finder, # type: PackageFinder + options, # type: Values + wheel_cache=None, # type: Optional[WheelCache] + use_user_site=False, # type: bool + ignore_installed=True, # type: bool + ignore_requires_python=False, # type: bool + force_reinstall=False, # type: bool + upgrade_strategy="to-satisfy-only", # type: str + use_pep517=None, # type: Optional[bool] + py_version_info=None, # type: Optional[Tuple[int, ...]] + ): + # type: (...) -> BaseResolver + """ + Create a Resolver instance for the given parameters. + """ + make_install_req = partial( + install_req_from_req_string, + isolated=options.isolated_mode, + use_pep517=use_pep517, + ) + resolver_variant = cls.determine_resolver_variant(options) + # The long import name and duplicated invocation is needed to convince + # Mypy into correctly typechecking. Otherwise it would complain the + # "Resolver" class being redefined. + if resolver_variant == "2020-resolver": + import pip._internal.resolution.resolvelib.resolver + + return pip._internal.resolution.resolvelib.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + import pip._internal.resolution.legacy.resolver + + return pip._internal.resolution.legacy.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + + def get_requirements( + self, + args, # type: List[str] + options, # type: Values + finder, # type: PackageFinder + session, # type: PipSession + ): + # type: (...) -> List[InstallRequirement] + """ + Parse command-line arguments into the corresponding requirements. + """ + requirements = [] # type: List[InstallRequirement] + for filename in options.constraints: + for parsed_req in parse_requirements( + filename, + constraint=True, + finder=finder, + options=options, + session=session, + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + user_supplied=False, + ) + requirements.append(req_to_add) + + for req in args: + req_to_add = install_req_from_line( + req, + None, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + ) + requirements.append(req_to_add) + + for req in options.editables: + req_to_add = install_req_from_editable( + req, + user_supplied=True, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + ) + requirements.append(req_to_add) + + # NOTE: options.require_hashes may be set if --require-hashes is True + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, finder=finder, options=options, session=session + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + ) + requirements.append(req_to_add) + + # If any requirement has hash options, enable hash checking. + if any(req.has_hash_options for req in requirements): + options.require_hashes = True + + if not (args or options.editables or options.requirements): + opts = {"name": self.name} + if options.find_links: + raise CommandError( + "You must give at least one requirement to {name} " + '(maybe you meant "pip {name} {links}"?)'.format( + **dict(opts, links=" ".join(options.find_links)) + ) + ) + else: + raise CommandError( + "You must give at least one requirement to {name} " + '(see "pip help {name}")'.format(**opts) + ) + + return requirements + + @staticmethod + def trace_basic_info(finder): + # type: (PackageFinder) -> None + """ + Trace basic information about the provided objects. + """ + # Display where finder is looking for packages + search_scope = finder.search_scope + locations = search_scope.get_formatted_locations() + if locations: + logger.info(locations) + + def _build_package_finder( + self, + options, # type: Values + session, # type: PipSession + target_python=None, # type: Optional[TargetPython] + ignore_requires_python=None, # type: Optional[bool] + ): + # type: (...) -> PackageFinder + """ + Create a package finder appropriate to this requirement command. + + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + link_collector = LinkCollector.create(session, options=options) + selection_prefs = SelectionPreferences( + allow_yanked=True, + format_control=options.format_control, + allow_all_prereleases=options.pre, + prefer_binary=options.prefer_binary, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/spinners.py b/venv/lib/python3.8/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 00000000..08e15661 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/cli/spinners.py @@ -0,0 +1,172 @@ +import contextlib +import itertools +import logging +import sys +import time +from typing import IO, Iterator + +from pip._vendor.progress import HIDE_CURSOR, SHOW_CURSOR + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import get_indentation + +logger = logging.getLogger(__name__) + + +class SpinnerInterface: + def spin(self): + # type: () -> None + raise NotImplementedError() + + def finish(self, final_status): + # type: (str) -> None + raise NotImplementedError() + + +class InteractiveSpinner(SpinnerInterface): + def __init__( + self, + message, + file=None, + spin_chars="-\\|/", + # Empirically, 8 updates/second looks nice + min_update_interval_seconds=0.125, + ): + # type: (str, IO[str], str, float) -> None + self._message = message + if file is None: + file = sys.stdout + self._file = file + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._finished = False + + self._spin_cycle = itertools.cycle(spin_chars) + + self._file.write(" " * get_indentation() + self._message + " ... ") + self._width = 0 + + def _write(self, status): + # type: (str) -> None + assert not self._finished + # Erase what we wrote before by backspacing to the beginning, writing + # spaces to overwrite the old text, and then backspacing again + backup = "\b" * self._width + self._file.write(backup + " " * self._width + backup) + # Now we have a blank slate to add our status + self._file.write(status) + self._width = len(status) + self._file.flush() + self._rate_limiter.reset() + + def spin(self): + # type: () -> None + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._write(next(self._spin_cycle)) + + def finish(self, final_status): + # type: (str) -> None + if self._finished: + return + self._write(final_status) + self._file.write("\n") + self._file.flush() + self._finished = True + + +# Used for dumb terminals, non-interactive installs (no tty), etc. +# We still print updates occasionally (once every 60 seconds by default) to +# act as a keep-alive for systems like Travis-CI that take lack-of-output as +# an indication that a task has frozen. +class NonInteractiveSpinner(SpinnerInterface): + def __init__(self, message, min_update_interval_seconds=60): + # type: (str, float) -> None + self._message = message + self._finished = False + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._update("started") + + def _update(self, status): + # type: (str) -> None + assert not self._finished + self._rate_limiter.reset() + logger.info("%s: %s", self._message, status) + + def spin(self): + # type: () -> None + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._update("still running...") + + def finish(self, final_status): + # type: (str) -> None + if self._finished: + return + self._update(f"finished with status '{final_status}'") + self._finished = True + + +class RateLimiter: + def __init__(self, min_update_interval_seconds): + # type: (float) -> None + self._min_update_interval_seconds = min_update_interval_seconds + self._last_update = 0 # type: float + + def ready(self): + # type: () -> bool + now = time.time() + delta = now - self._last_update + return delta >= self._min_update_interval_seconds + + def reset(self): + # type: () -> None + self._last_update = time.time() + + +@contextlib.contextmanager +def open_spinner(message): + # type: (str) -> Iterator[SpinnerInterface] + # Interactive spinner goes directly to sys.stdout rather than being routed + # through the logging system, but it acts like it has level INFO, + # i.e. it's only displayed if we're at level INFO or better. + # Non-interactive spinner goes through the logging system, so it is always + # in sync with logging configuration. + if sys.stdout.isatty() and logger.getEffectiveLevel() <= logging.INFO: + spinner = InteractiveSpinner(message) # type: SpinnerInterface + else: + spinner = NonInteractiveSpinner(message) + try: + with hidden_cursor(sys.stdout): + yield spinner + except KeyboardInterrupt: + spinner.finish("canceled") + raise + except Exception: + spinner.finish("error") + raise + else: + spinner.finish("done") + + +@contextlib.contextmanager +def hidden_cursor(file): + # type: (IO[str]) -> Iterator[None] + # The Windows terminal does not support the hide/show cursor ANSI codes, + # even via colorama. So don't even try. + if WINDOWS: + yield + # We don't want to clutter the output with control characters if we're + # writing to a file, or if the user is running with --quiet. + # See https://github.com/pypa/pip/issues/3418 + elif not file.isatty() or logger.getEffectiveLevel() > logging.INFO: + yield + else: + file.write(HIDE_CURSOR) + try: + yield + finally: + file.write(SHOW_CURSOR) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/cli/status_codes.py b/venv/lib/python3.8/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 00000000..5e29502c --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/cli/status_codes.py @@ -0,0 +1,6 @@ +SUCCESS = 0 +ERROR = 1 +UNKNOWN_ERROR = 2 +VIRTUALENV_NOT_FOUND = 3 +PREVIOUS_BUILD_DIR_ERROR = 4 +NO_MATCHES_FOUND = 23 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 00000000..31c985fd --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/commands/__init__.py @@ -0,0 +1,110 @@ +""" +Package containing all pip commands +""" + +import importlib +from collections import OrderedDict, namedtuple +from typing import Any, Optional + +from pip._internal.cli.base_command import Command + +CommandInfo = namedtuple('CommandInfo', 'module_path, class_name, summary') + +# The ordering matters for help display. +# Also, even though the module path starts with the same +# "pip._internal.commands" prefix in each case, we include the full path +# because it makes testing easier (specifically when modifying commands_dict +# in test setup / teardown by adding info for a FakeCommand class defined +# in a test-related module). +# Finally, we need to pass an iterable of pairs here rather than a dict +# so that the ordering won't be lost when using Python 2.7. +commands_dict = OrderedDict([ + ('install', CommandInfo( + 'pip._internal.commands.install', 'InstallCommand', + 'Install packages.', + )), + ('download', CommandInfo( + 'pip._internal.commands.download', 'DownloadCommand', + 'Download packages.', + )), + ('uninstall', CommandInfo( + 'pip._internal.commands.uninstall', 'UninstallCommand', + 'Uninstall packages.', + )), + ('freeze', CommandInfo( + 'pip._internal.commands.freeze', 'FreezeCommand', + 'Output installed packages in requirements format.', + )), + ('list', CommandInfo( + 'pip._internal.commands.list', 'ListCommand', + 'List installed packages.', + )), + ('show', CommandInfo( + 'pip._internal.commands.show', 'ShowCommand', + 'Show information about installed packages.', + )), + ('check', CommandInfo( + 'pip._internal.commands.check', 'CheckCommand', + 'Verify installed packages have compatible dependencies.', + )), + ('config', CommandInfo( + 'pip._internal.commands.configuration', 'ConfigurationCommand', + 'Manage local and global configuration.', + )), + ('search', CommandInfo( + 'pip._internal.commands.search', 'SearchCommand', + 'Search PyPI for packages.', + )), + ('cache', CommandInfo( + 'pip._internal.commands.cache', 'CacheCommand', + "Inspect and manage pip's wheel cache.", + )), + ('wheel', CommandInfo( + 'pip._internal.commands.wheel', 'WheelCommand', + 'Build wheels from your requirements.', + )), + ('hash', CommandInfo( + 'pip._internal.commands.hash', 'HashCommand', + 'Compute hashes of package archives.', + )), + ('completion', CommandInfo( + 'pip._internal.commands.completion', 'CompletionCommand', + 'A helper command used for command completion.', + )), + ('debug', CommandInfo( + 'pip._internal.commands.debug', 'DebugCommand', + 'Show information useful for debugging.', + )), + ('help', CommandInfo( + 'pip._internal.commands.help', 'HelpCommand', + 'Show help for commands.', + )), +]) # type: OrderedDict[str, CommandInfo] + + +def create_command(name, **kwargs): + # type: (str, **Any) -> Command + """ + Create an instance of the Command class with the given name. + """ + module_path, class_name, summary = commands_dict[name] + module = importlib.import_module(module_path) + command_class = getattr(module, class_name) + command = command_class(name=name, summary=summary, **kwargs) + + return command + + +def get_similar_commands(name): + # type: (str) -> Optional[str] + """Command name auto-correct.""" + from difflib import get_close_matches + + name = name.lower() + + close_commands = get_close_matches(name, commands_dict.keys()) + + if close_commands: + return close_commands[0] + else: + return None diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..248360b8512776664c355ed77a1e6866043cf25f GIT binary patch literal 2859 zcmd5;OLH4V5Z;#_)+=^mNSx<{Bu*4!Iqw$%lE{Rl0!gY|fhrYM%X)hxE#6mVcH@#t zIvI)^S1ufq8~hUf!(2J>7dTM#%62di*ip$mxGa1lOK=n|qe=)k%{ml0iot8h)B>xgc^O}M4d zZA5qAE_|fWJwzYFC-A94_YpmShtQR1a9~&O)nNlZ`(Eoc;1PU||4lG9wf5ujx!McI z-F60)xKWrmUg(7b;`ly^y%>jrzzKoZ{*)nq);2`_IRnZlY} zBT;=GCtegfep?rnZZ=)i^Ujm7AB{;6LF!XGc9P*G;`$Efw&b})c#788NL0L#C+NcX zB>K>?y)dB+89RkHom?(jPcp@ve!P@p5@$=|9Z`j7C-fr+#;4|x6$;|OMy^`W9V`ZB z_!d$OQ0ASC(0<pf8Xm4bOv)pHtj_LTs9KuX2nvaxPL3QPMn#5^Ba(5`~ zG2#$m^i}FH8qhG|q#v=sNjk#vJ)Vq@%`qc|qW%T8g^42)>|+3#_%Pa;%Or)OzKLzY zbWs9i$~?gWAyP$vl?C}`lS=f{o_Zj;}hI2WZ*|z*v+`} z$!LpHhq=SKY0ku=xvA6&_LU5h7o!(XWFq&nECc0WFy;qJN-MI*+!T=9m86fmy zet=Mj0m8Q6J*;@;q*-ry$Hm)l@2O(1gzr;)`CV)hZKADc-S zj&`!+B||klz+{C)p7b3>fH#IEk*MV7e%lhwJlfm_dA}@pK^(Ef_qIec>)P4nAu0o! zI7!0VRkn)j5#{Y2hYh%>&s;887kifrJFm3z*@YQfDTqpL^*4=OMYX@W>q!u=V+OWFF~y|i99y>8=}m)LeE9*LH#0%YgHmq^UjmrSXp*YLM& zum8daGfcFmJ3gF+g9@HZ?G_ zw{4A&cJs285hhNWL~Cxu81DQIla+zD^Ad&-0}yd)z_(Ds8`x-O!>Af9!_un; zlQr3HiHdDQ4)5jxZS?QBFoNZWSg2#bi~Be}5+UUT4d}W#x{s zvec}|MlM8!U0IxQSmvE6udDa6BKbsyiT{d?WmWY>ebHzbwVI(@x}h1m@wa9Dk9xnC I?^m1u05F+{9smFU literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/cache.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/cache.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0a1c0d401107172276383ee2bc44a97159bb597a GIT binary patch literal 5713 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/check.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/check.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a587ce7382a6b44264cb590e548c2787f9dbf1ad GIT binary patch literal 1489 zcmZ`(&5j#I5bmCTkH^FbXq62C4Tl_z*fA23012T*CgKtqX;;Z%NHiHwx9!>O`Ehqo zR<_0`2XW=V1AxSZSL!P#UV#Imde+%ENVHw$s_Lq)>aVN(WH9g%tnjBFUwq~u^ru!1 zmj%ixkk|kth+u|d{cA8>7_ou1Y%;U3Vym!YyVEV^6mINxvdz4r7xxN3_B-8S{UV5i zVh|5H-DU3-x8hqEQS|GO-u?~8cfLc!BfVFM^r*Wt<97)@MZE2EnmOjMyS3v0kCr zCN@;>s9>Ti*w?uE{3+%6d>!883iqXnaGAcOVOAA&D)SkmA)z%b2`#gnifD7>huwNm z^J)?PP}MT8O7T21p@P?I074IF0wjJ1CeaQ(Gq&c|lDIW@7-W0vwDz~?d9-y~vvrTr zg|YQoTT5U)+V-SLaO<{S+aty?+F2N_K3&~w9oT*NR*bWcx&O@E`rH0CfJitIB7@d% z`#T3B$!gl#;^)=@viL93I!EAT?J!0X;2{VgvZtGmABYgXoUWRjQ!RfIUM=%%8RjA^ zEBOYlh-0|d=HxnHncf5yw3J=ktdZfmYOdkz+@j3~(<+?t>XMePb7*%F&a0**(a7N% zHSPgZ?n}xAK+E-Xa2O24U0|buvIJ#w~Jb^$$8L9@HtsmWu@5XeN|fI7slJx>)hH9N`2+F0;QsgNSQhoT&g+w= z)afZXxmr@nPF9Nx`DOjZTw+V!0<3| zZ0HX%kn@jcYs;M*i?$kI4X_2io8e(sM{wK}THQ;!%9BL-Nm5j#VHD&bNmfnD^mRdV zlY~?m2zDc2BKbWipu5%qJJz;7upyApZ{R^z%j|5U_ms=3#X@80!DDF5Dc2LJ9J#K+ z%=Jug{r{yt1SFyxB%+Mv(JU1-*+atZ|8asp0@(;~BUHR;g8v>@)s(}q!W>2&v|R^v zy`=8Gow$)X6A|=7*7cR@EvS49m!O=#-&L+}1d6`&0TBARxkf{IUtQz*wQhf*aq-}} Nh6WHGT7lu4{{nq5lWYJ0 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/completion.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/completion.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..09b7f72e8c012ad514295006e28a8235695df539 GIT binary patch literal 3043 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/debug.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/debug.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9d47b18dc7a9fe84455f69231b66dff8de011774 GIT binary patch literal 6330 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/download.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/download.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..52b2edda707468d533a780db39546a01af5924dc GIT binary patch literal 3908 zcmbVP-EZT@5$94ANl}#idG>weQsRJ1W1yCsv_Zd&Lt0;2v^X4sI>`f*150z)5_SB# zUD6jB(nISj`edMgg8fpU|5327ed>E(ntskKDO;A&Jd^^LGdsJpJF_#t9evvCIT}3P zAAbLv-)?ByUyxaR3}8NlSNsVYs!@_?e*Gmr0bWn^wB@%5_O%itZToFS8;O}(zNP4P zVy7Lyqi8d6(yrf4UEfu_mGsiS-&eGqtfZ^{s-io|TDtD9ryKr8y6JDKJ}0@8Zuwh8 zW7@?wyL(Ced%w_Vm%48>>ay-x%fC;_p|;ceE9_N!zC)z>S(sEz0A)OjMG0RgN@-q{ zah_rCdK$iDK^gKPD}!QEj`D0rm+QY~ud0}{lx5{Xo~B_&rTaQAM?sXZFsllfX&rug zaPZOLA&}cRnO{!{N*+cp8Q*D1hh?JTETA!${VeBcn8c?nD8h0C8hKo@Ag{`z!kzU# zVQKLcmW|4sPa-s7@o53`A-v*UXqbl1_jOAA7S(-&wy5z&^V`g%ZEC*J&WLYO3tVB# zm8bdZEXhOKSQ0)Xn&x=$%mrQn+YN_Ic*i_Xf9xpXuJ`fe<6nC3g6&>jju`jijIuAm zmtG~}Z0Ic*?1_R!@o~(!7&MbVJ2>2SB6rbQQwLlRUUYLm76ID^jCR{p7}R zVc34-@aB~8#P_ZSN8p~TM+XW4=Kx;u1xTjaSi2yle$l$rE(y8jjU~Rl#G6aJwZz*? zd}oPwmiX=x?=JDZCBDDJuPpJaOZ?grzkbb+2_;m=9LDS|H^!UPqV~B>H1NwE^bmRm z=&e#8Zv%h#QlAn0UfiRdDY?{@-)as=15Y)`e&_kAzDrNd-CfE=dAe4A<19q{+lA~q z-M-aT!;f_538k>Bg<~Jy28=j^oY)89lfjN54O~T9DJ#R1kV}iQa14W; z`_cvg4j|x#bV8~q*bB#NMs_1WWdKjmDx|xRIzo1isyLx)FIJWZlodkuhe>`ECa4VI zTy{Wk1jg}+?B-cAnKQkDvt!2RY)kM+wxCb;n{hvKRia+UH~p8s=$f4WI@ zP5p=tKZEH1Fl|>ifHMAVwEN`r!91dxyJ@hnPJ|cU{OJSHfmgxCI}k~fOi7>(HE0!h zKoVez7*jHCpP{T>nl+87abcl+)++5OIU_RzQU}sz+M42chwA6XtPP{OrF#acHZ#i} z^!Ht;Xdp3-^VZA)>B>}xIqhld(wNzxVRZ^xrzU7=<4Tyi=hmzPlC^0E`%pK$>(n}L z&m7ROF>Nb|bHyeNhS-ov-enhO}w3N$<-z^A#=(wNf?zKM&mL( zf|8&Ho<=o=5)twjASjLyQg|0Pg*)eXXUPpL^cqkL8dvf*O71j{Xs-33F zI8v^Y7MP^Q-o;hT6IBvRR{*35DB5UnG?7LYrT~aP6$mb1`bV7S+}{@A2@8@q1K5}Y z8&*Qn42yzgl)I?W80T@uZ6J60d;p(177VDWg$e@x0d}er{s~U#K)f{9i~%MJ{sepN z`8MUsqTPa((wT=QoLviq3fk)CJ)GL&RrV_&1cgR3%$BJ;x=S2rZN!}#fBtD&uC5b6 zC8Gb!G*a_Z4Bcg0!4957wQUChdNK&4 z69j2as|0B`2wqiT(nzczpm_w{?Mgs4@%LfR+`{GyY!J2=8Z?k2{;k0)Fb=^a*Rbrz zI#K;Q52Tgk!y#0@{M#UwHl%xfTVS;%&2mzp4Dr-o1GFDpq5U9AVwC~@TetcL*MF4i z7=L(s2pk2(wfcj^O;E3_kZ<1}2#Hr#0>(mxpdv*sX#-6I)YklUQduJJ-c(eTG5nE8 zV-cxztg}-^;L`5vfeN1xnN+fMAjO`6mjG&BD6gQ)fI-hLcw0GN#gx5YAKw$KTLh+# UO>E*47Xr(Lix1mP;GEWf0e=>aq5uE@ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a1bd5ed48208b9d09de2e9030b96e7dd1ab21551 GIT binary patch literal 2887 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 IfnHeTKmA@nE&u=k literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/install.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/install.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f8a84a8f5d354606a8c9483091a3d348583b9420 GIT binary patch literal 16732 zcmb_@Ym6M(bzW6^0;t!mCrvD&gdbR-3#L)(F2Krk{BNQf5!5(UWfkATR33>dZp1a^%25g7I_IZp&Z z1ZbsYzH@F>cTbZW2}!1>tMBvNbMHO(Ja65ZoXjftGr#%kA3kX)%3o7v^e>6byZE|4 zR29WiEY(pe@>i{>oYyKE|0XI4{?#iw|0XL*{A!NTN>x&=bS14)zl4)%Wh>d%L}j9t ztK_&$cP3l;N}kh6XR1}G6gX`-)2*4x45w4hY-_GE$LX}QuQgwpZ|$$_Z!J_7xGduw zXdSE^Y#pi`;(XS5u64L_xOJp*g!2>5^DVPtaysW6Z5^u|=~l5)Q>=s5p@)if$e!O$RIXU3ti#rkhic`j^}J=G#Wm}+ zb<{eBlJ~6R)(MonZ!KCU@q67;SCnG$N3^@kMJ=3MxpVX8t*a|5)%UO7xEUHB)SRB} z787Cmx@U{ps$+-xjfU%m=`VJ@MyFkKifTArueCevM!n`Ve7oANwQLk-zqDc7&gEKt zgLCzk)!`m4>SkKCyLQ#9iFMnncDKBZP8&na+_LZW8p3YbZSQiY)vC3vaCWmM+SSHd zRrK1`np+i}ju+-O8{S5>?%1_jw9T84nZ@XU2 zacYDy7ZH9mwhQbS+bPP~?fVVUY18;oJQTdVtciQlE#kRXJyEOQwFRo?x;5e2RSPTL z^Dtx;OXhxz758k{t8R*hM_Yn=QPjh%-FAC|b0N>C+vryB+rq`H!_!^S@$5R58-;74 z)2g;QR$~pDMvGF#|7N3Ybv9kBF2LH=PS5N1cpYxrt?m`|0)TAyOft`dInNr6sS`UBaf6dhIT4yH(nxgHyV<-t<1#eRGZK zmarf=emHGQb$Kw{rHH`F-K}s=(xJpR#_lzmt$~N4<<+d}zfPDxt6}-P)4|boFO;8E zE6xH!Q4>q}5iiq&3PhP6FX0g`d=}hSQ0wY=C|b@Cl&e!_^pAGtU3^`7*b2!G$PE=T zLxa3XSUNaV(l)H5Wjs{2)k?}rS!tA|t&Ek$Z^oLia`??!li0ObF;Q( zdVt3>*)nTr+Hq`ig!xhRsvQqxTXL$k#dtMMa}j{o&96or{p;rW5gdkVbiw>;wBRLP z($b)Pxh!Em4XGsd0Fx8?zX9~sk`27>*WJM$V0SKfET0|#6X+EX?bL* z3PwoNSn(KWgVRGN$C`Mg%W+YbL)oNzehPb$F!a2y~W=W$wWTx(oD{jCEoNgGb5@N8-#`4p{JTPCxh$o>-owkZ2_`P6FqVz@U%*c9`P*z6Er9CarqVy${zC0{t zEN6zJaDH|yKR1@&H5PkUFIcU8CS*G!x$sADt@|FS)`RcN- zl{`OPDoNcd%tksG*i)Fm!~fn>oD!0!W1dIdg|c~R%e3sZTF>!JZ=>Own+?Y?+Z_)q ztn1XkyzGylsW4|EHngUGye&9aHlJk@i+qT@~&#oI93_NE!> zGHw~lj&4B%3R5kpV)ttzOhtHw`iAXveFI~-wg@NjtWv7#LZ=C{E>svOo}y>_|2m#2 zkO0?*5Fj-aET07cvsg3c+FK^%wz&lcZDO7t3GuRdd#g(-ud`+T@=}@E#?l!R%@!}- zym{r~?Td?Fi$DVEm!xi0HczkEnD%fut5ffhzR6k`k3xu+@2p(CRlRg^Yam%{VVh24^^6JS#2iXk zuhT6#7~jGCB#G3}kZH&QiQb|4L_`v%qJ;lzcOtUEq7Q_OHI(VmMuJj68Yal1;gEJ5 zlMQwZ>%IXb9GY@x4NKa!A?n+8NaZNwn%FJcpJ>pM3uWB1*SCl;tg=5dz-v$w7NWM* zxUHY>w4JR|W3AM-ZOgX8qz$D*)ZT*th3#OAR-=s(H#(a`6fgkKj!={8Fo|Hs*0#*A zM&y0YT#Qm*FPq00>M^r4ghCUcm5ea5aJ<%Q!opd^#MWp(FgL*ytoMWf;emV`QlY>w z(E&4E?4k=T$K{qIvYnxfEYD!|PrF4Rw0GKs*p|z3OmAF#khAR%W=0{&u&F%4Owi2w22Pb+8WO2+8T~q+Z${nn9*i! zpfF;8nUjvTjA6jmCJH@D=MEM|7u*}GDigQ;Q_!cWDCUuorpl@&>xx^jEIXEsO?eyp zG29usAvxwv5j4MiMecf(|G6*|BQTlO9bjYt59 zq)JJB(O&RbV-Q%vp65bSHg8_M{k}gt9AaS9N5E^VXgM_X{l!t>T#2pg+yxnpau-1c zZ1GT-h8v^`E!YjSHH%Zk!81g}xlz&&ConFt6G&e-Ou?20G&f9uuZC$@&usRG2MER< zFABj1L|2g38D^wG&BEOk^>98S&}bw#a=nBzfG?Xi+ztr>EM=A?XV>n&_R<^SBlI6+4~&P2+cRz#FB*fk=;Szu!eFB)7{!bzdKwzC#yWe-|$X}7ZR%699-a0A?1SS|Oj z@KCgZ${+k1s-|da^!dcd<}{SZ&rgl?NIE%4tJ)_Z;{<_lFz06M5N_rF9teJW_)KKjtzHs0)^Y~7YjS;9-=&gNtjQa-FiNCM_ zzgqC7n=?DJRI-cqRh9E|GB19>xqUL{{s35}7|VIGeIBX(WRPsm0G_h5KS;7|q&642 ze+j%&C_BKOptN@|Am301I`yGI4bnjd@Sd}>kMw@lJB;)Ze4pRe`V$1lGcgmjpY!HX zdNilNE0M5rj}raK$C|&27RLg3n1XDO-qrhg?|48nOm9mq{X~Fy2RV$9MX6#1-_X6ocB^N7htCA%DQ6hdzAc|*5B8khpjjFPzmO_&HiBjV@)i3 zFI)R}Ua=N-UJdr|V$WzlsKwXk`U}BA^VDO_y=5H;7OJm3*6!U33Ola{)4=)w_8t4s zd?Tkk);bT7db58hI0T5lgL!{0IDj@(f38pKqN4owF{kIew}JzK9)R*dNkli30oBtQ zp0^G@%JdI=Z*!jNXeWs7rmRDclKmszh2RM0_Iz--`HuJQ&PD6FT@}_T)&ulm28V(3 z2mPbL(dMQ8G5>V%{Lbaz7_c}V9H%q!I3ZpSj(tb5js(Y>SH7eCUZQ^tD?g8wzlxPl zh-JC*Sal7nZth&8-m3CAanA@2Mi2t*{d>Vd%%Qym&Sh?Fuq_NyPNEv^lk);!AY9$cA|gE%QSx}I2D|wwQ%Zpz|j&Y;))I}jkK2ErwdSAqTDLXd-MGbH&o5|e-djG9$P?2{F zcIAm>=m=0+$P|QJ2Y^^bJFuDoA~KF>~>pp zp-;RE?jy*RDc->&oRk6zzE^m!ZU61t972Fb1q+dFPuE=Sd885%Dx~Q|ZfiKiVq2Ab zuZ?!kE{BF35D4gZAt+!~rXu+nrd-G&l7o}7O(ZJCZNefI2|zf04a;^&qeqlX2@6sV zLf}b#$|@RR9;#b6lCHo;G^ybPBwy_17k8<|SR+X##9PP|vtb&N67mfN0tHbg_6t|* z6j9-J;u_TvM&c?xF45xyJTReoxuTKN5bMRANrPx~uc3aDz5iR#fG8mFl*5VweC#ei zh{QTvR9~Ozt8kmcS-!0au>0TC?&&Mi7hF`uNwoS{3$^muP!%7mBYt8Qwb}Cy+ybQV zUAP5B$R)87$vs7TqCfFZj>#kh7=~WyVQ0{ThpwRkwYjmj6;4W}CDwVqg1V<>LgH%$ zUv~iyo=JhC1Q2DIMRU(QG+sPWL__frJy=;7Xbd7i8Np|-x}j-`@x;G*nIacVZHx@* zm$n11C3NoxedNds3*E`QdG)3VU5ZZw^m`)DQ5S1Osm_+KoiQ8VH?fIEsI%#=Z*&lN zFr-N>-Y3L}O2SNcE7GBh$xz1_Li`F6UL9tXOa6vYvvAS<5$mribkC3Kuy58n#T7|{d^8I*A}g^6CD}#i zBO-fwD#S%tgh|U@?X8O=R5okD>uyD!oCvsN z4a611Iz8wxgj&Z9b>aqLs|)HQq+a0qF3D1qvV9(4pOi+^aAZwUSZ65olrh3-%TV zM8jNc^CJwmC7uT$4%vts1k$+AVPLUH#nW6uKCqe>>dj80UD@Zr%~0POpby*C1@D}v ziAPgntD@QwU~*8|*(@fTX5fDj*9q(#$|C>B(8iK9zn{i_j~a2r2~MTq@~tCAjV%+z zvY`1ROcJI$U3gsJ?t`V}c@$^{Ts{YKKZy851Hyusd@6E$gqf=!)onJR;9lzzcG!J3 zD#z@;%E2L`@gBrSNtlF2>WeFKWitT2+JRed3jt%S48>O6Dv&{(vjx0ic*8+NS&^rX z`HPr~AiQM%8Q4egSq|jD6+VH;qIX0^IBIc_JvIL7- z&*gS&i&6`S~QBrWER6f#%iR6HSA)`9wFe zD9NIAR!gH^TA=z*4I{7R(1PXY&kRF{m4`Y-f1>MgD{8C%!~k5`Yd9KG|I3)n!Y(8! zX6PD5ET~yMOD#E1aI$LpiIIx?;`ftm7IN=XL#I)7E&VC*%cj*d@B^eLdQzwPeX5~8 zi!bmcocKdH$glomBR5E^IxOb2HiNn}&n1gk^&D_9RICv9NPlW1X$=4e+Cn-pgV8um zb4}#6gIE`8sVj2!hU(8;-)rMy8|oa1#xBqw9UtP{Y}-O9ryBvVN?6O+J;c%it%=(J zu%gIXOu$-9Hg(vC$!4;j_Kc>slM0MoRa^>m#MqF69xO{!DE$z&hjBN7U#dmPpf-)# z`&^0?EMgt@#Gmvtp0Se&GP^2rKj>#+Yo_mN;)e_oHY4mi?c0hs!PgupCY}yB%J=Kq z0k*`pRq?}n--=qp%0w(^BEn{3SB1TIHb}Vt-OKGvT1GIj3%x&Tokx!9b6l6&Q#TdW zo%9Mj)09?~b{2Tf$TUi4qY*PSV%+zh&vB;ovN(n1g=Y9G_<2evqpf%aU)IT>Te3#B zqkIcS^an60?r8+%V|5vN3L-W&1ii^|iAxAu=oG4S0YIR#42)<2Pw7Q(drNutp@HfKWn*kGm!wQ;XlG$M?Az>F>1Q z-=kcj*4`42xSV(|Y>3ckxP*)N`&4SU8+2I-jJ4$n8>*{BEYu0TVonMyRviBgnzLRQ z=7>LIger{$2+$*;^iD+RQ4KN@Mb4xNO-`kvp5l*a>{#RxFQ;lrBLAMod5IqX3XeY| z3Ry-%(b8a+dGHqE$T{XbSrxzFD0%Rsym|y&Cyx(tX7J;m=}F2Xt!tm?;EdqY;LAGt zXrKB=e=e=nH5xVgqckz0%lNuP$$nO{p)Y~@VbZI2v*HEmFrdo<7Q5KK0z-X8`7%F? z+OogNIs(}laL=>yO-^mHJ_draY~GagLH>FW87RW-*%apjg`GlpfV0t^vvcN#=XKq4 zOH1oGa=q0uOpK-OR=392khrP4ga{iU1$;a!*AvplKR&*GLltWJ zSYY*F@o)-SRG)^UFH60pBktbnz0U_pw7fY6AsIn<{cDN-L_gP`v@#K#NjUj(5*P7@ zR<^CtwI;X$N1=ZA-rprht2MckB!NSCGONum!(w9X+yAcIPnjErAGW{_q^*a58$x>0 zNz4x0Ko_^;sNX=n z-x?uCfAZzCFP}whPNL-hBZ>4#+qh~3+d-((gUy3@C3tMDUhnk4-Y9%W!^TJ=Q$s02 zca1nO_x}ZNj^Oz3KA>BGee*$NF!Zsud~ee=AB^b1{rLV>il5rU9-IZU9dZ{Tst zaf-$e9r2$Cr*sT0oEQNn{xj97S+pmqApRvizDo~g0BJ zX2mxN%0z5Tv&GN?V<9m@Q7^t>OPM4bUlz+0bh3x4@@nG34KGE27~>EvX*``Jt3&YwK{qB z;y=0_I*>pnG9Iq-2jHRzS0tchYT!Yn0K@6q)Yjo7#?4x(*d@g_nzME%{Y?)k`>S|> zwpqRS4^;3MRA78&Tk+S_Xl%DWM%hK$EdryY<(fxN?1`ZIr{rh~g_rSl$z4RVz-?ei zP*0=TScym4Hk9jasQ8$JzV~)8iQxowr7y`eD5QDm?A#tvN5#KGl{kdQKo7OXQU5d4 zen6;`f(znO{36}vft4+9oenN+KSSsISQ{=RT_^@$3llgTJYVrM8hr0Uh4asbeVY&< zsR-=`bew&nJrPi5!jj@q&TWTmJrprqYfUJ~+Dbt{1;HW(V4I|L0zL&^=f3t4`!?>C!F$U(H|t_R zK&oPr@irVdf#f9&zG%$XatBD6_*Q-_JX{$G;)Xc3?0F7Trl+_D^6izC{*GPihad3U57NS|s7%uD#}e@biK_(pinz z4{HeUCAYfpC=YL_L;{hWf@XYC!}TjMT=?$D!H7K_gpr~yW%CZ*&?DL}#pjB}J*hSK z8!m}AAdmIJb`D=hDEqQs1m#)Ny6wO6)a)%N%Al@Nbmfh%_r;N{h?@LYpX#(~*K6eR zCzt#fqVPJ>l{AYFw14(9yY8JHzmP%w{9n2vuV0dS1-y8KJ!=_{jjKs5knUbMkv1{_ zSIn~H7QX=oAPV$2PLFANkZ^}970VnJt}b7^bmMB3FD0&AzkQYY3H)Ug2S~~|z`N9k zZMvaHelNcge-BN*M$Cx>kupQ(mJZVie3D#8>{6m%lqPZscIhPGMpAWMw#;e_VGrvk zwm%SHe+L=K`1=|Z{zO3P`q{o7=uO-q@F2tx*);+KQO(2-6#tzB#GJ9C??NyH`YxLU z_Yh?lO|+%xKecUgTYa>xRKDR;5mpk+3%9LdoTYY*AVD?66sf$J_J0ef8K&}pzDspD za@T3=aCuBBr_qgg5O8!5%}u&7*{#6^%)En7@rY)Lqb}mp4t z0g@V6Mj0C{CVahAde9gD7EQ(9#sh+rL=A-__@-whNTu>QMl2L-`v*iUB&7`U?z5&7a?B<@1KWfoH$xDymAmWBcEvW{4z zE4j+|P=i)Cr~w5k1l~?SV4;KiiWKyA+31kbzd|ew;>%=XT95b+`u{F%!RtsUNjPwz z=CG?7oJ3c%a1oPIFV%Z4L0(6mT+wDzb> zB+&3pz?9dmbdcOJc9nI8AfZL~l4wM!BxT`mM*U8D7qIu^1QsWJagE8F96B64GNTv- zYaA$y!cX!oqU)a7!fQXBI&S?EPx2Zq+q8OuwE(B_3VPL=;0{eDPPc@hc5&=ZhbkX;2W zn~^eO(UEEX-0jD$!p8Y*OpSEu<^T9x@lQu$8fEVqc? zEiBjhY6^8y#C_%Q4BhB)f z#n?j0CPST^k1DI25vdLcQQmaoI5AG|2^x5j9(20G3}X2=_>PG9F%^>YN#0d>l~Uv% zU`}ZCaU*e<`;B h|4~7oGqQ>FMBy8X{G?%U%g-m-*>rZ0KA(Q!e*=ei8?b)Ns7{lNkRKoF!TY4`)0s}LZQ*oiIEj3QEUXtN;7pk#S0YBktyEOs$J z%br>OOf6!^kV|w`=u~n@`QSy-|N{~>@KKS zRjJBuO;7jhH{Ct2-}~O{H}B2NR22N2Pk;LH^-GHKAJiEC8ECwLE3T-D!W5?Ziksh6 zS4CU%wLo`um1w$e1g2{SmTLtiw-nf}E$N0|4k|7N0FUWcgPL2Db<3X#>TX@uOa5#y z=g!Hx?H>!~-FaCr`wPLMyC~}w|9G(EF3Eb;KM^du%d%ecPX?#lQ?fqezZ9HyPs@7U ze>r%?eIL(Q!BJ-^T6hLPDf6E3_Y5}9$U6DOIz z!IR9q)9?8le6<^(iOyy}=|mygl~%x_9yMaLj@=9yfB0O>(}4f z*r2C})VG9)1llvVI^oXs$oF{*6B6OJ*V^&g{Ot|~BEsSZr%sH2TktI|c-X=!G4Jh8 zZ-d8izKUv`Fu$|e?CrGa73LTg+3dtk&N_*=>GSNRHU}Y$6AyE-CiNFD5ob1d`o5R& ztoA^365fpZNw1&Ka>gH{<;(_NuNn0Hq?2q5?y(lhZ~UjB@dmE=V-#E=?Q%7yx;oQb zgXylx3}!<97PD9h_Y$*N8F!miSQYm&tFal}E3D3Daj&vDb`19#n`aBS&#*;y9QQg~ zqW#ONv`0g!rb)%Yk0{RQU7cPo(fAT*Ex*q?VcRL>60cR{BSWdjjwiU|<9W`&?RZYh zi}@+ zi<0L!o-{_ZC3b=>vymIYwyV;8-)4=0dZ5X<@)o2+ZKhzCUt3SL)hMm3u0k;x^ps_l81}-O ziRkmU(PIclPd9FE<;ruvBa*)7^YFftY`#htez)GlNSh9MKZzJ&@vOSJ1CM-D*fU;R^eje=*<5mm{uHmgRt0fmG z>eSF_j2YC>yM~+ieWI4)JQ@;zK%_sUg48B2ewR3oH#hqopEZXj-6YWB;y$|Kc@&CS z*J($M&n?rSefvB;Ll98x!3&>0vKu2G|2G&BvRA|+N>wakFVsEtCu*Ya8}N1T!HJnz zd+M%^{*w6mK;O5iCVR@LRd7{t)o{(=st*uDJ+XH2baz&450w460gZ&61w|19P>vOp za2_;O{2a9Tf`zaiAS($uIUac2s6X)$?(~uTtCSgVlJKyQ_8pkuc@Y}9kIABqQ>~fS@YHjn@PIH7c zL$t{Bm?vTmY_2`Toj9}lJ@V#)HZwEj`ow9f+r^^91!@|!0CAqGa}?i>qkdK+O0lH8 zRV*u8${p@VfoN5TCIy|nCUnv8L^~FLEaxs9$h0=QZ zgC36lK#&=tS!!MO)zox$Tr)A!gdP$?5Hd(qSVD!O%uf(o?n5I7+JSaM*`w2szJ4S` zB{12*6_eoFc;xOPLNurssnd=jplW}q-7_|FyLw6%43Wd94+Dg(F43J8ZE$F7R}gBoFlE(YWJmGrlo+$})iw|L!=AYIk2EN~fT3tgdU;w8#<5~doW;{Gw5J6c zlETkzTIqbg(#Oh9iFWy~4y{T25In_dbsXiNsyG(&UK1}7=PQKlf*+cmNn#r`#C!On|-MmMv(x-k*HCl_fiQ*q{#pL%$No@6$ znV$aN#5SQSwD>ZvbGYK~p&*cY40ZU6YjBKEl*b5J4z!;spDLfKTX3NOG8>_cMviO` zKn8i51CuE`WpQO-%Kg9cedTM)yUO>J5Ax&V6wDQxDYwPPl+Z^^+r^~2n69hE&JZu9 z27;z^v6L>d7f;k(ZGiJD`EM*w$F#P%LFzWpyX2YmZmDaF516rQhB(t>X~sZlmIo%v z%7D(Y)=^z1Gufc`Uq&G@cP`hFt{P9`Eh45;0kktn?;HkGh1!(ityxF9LAg`1kUK?4 z@ozNCP+wI0dHT-yK7BES9xD16upSZ*kr+W>ZFnedhF-ukQ%2}G{Sp2*s@Vd?Tuq7t zN9&Bmhgg;P28wK19vwzqO@1FqIZDNeHgzvh@};>+?qUB@_ZX;vOOj=2+QnAI`y{3~XP z9Teo+Ev>G@ojU$0y|RnVO;~`02!e0Bgtuk^T*PId=*xu!5Xa{Q}~I=N&^$wB(qC* zdk=Z6dw&9|T~POQqJ+zGlrl#71>$bR*EHK6ypGH;RVJ;HPQT<~q*YRM2lEFO9e^NQ zG+}L0ArWLgpe*f}JVyqX*;jop*ksID_KX zw79go5`XJkE3tENC2piv-VkTe)2L)to}(16qM6O-NfXMs&^e3pE!itCo_f?z7_%86 zrYGkr-!!)}n_@3YMQ5{PqsmOnw5}oI^Aaz!wvi*|;zjZiw=npB;)-e63IbkDwLZ6S z^rb)9iL@0Qhb?^(_4Mp-7v2#K9G%8CF$HPh9&`|4?D9aR7=&VBoQ0r!dupzEV?4JI zoyhF$zMkOB%#gJn7<<}5o~P8|dTP670_Q_obnmv*BWqpI_J|b4Gu4?02PTw?7KZti zMe+&S`ZIM^dR73a`fw^Z5f8x&wN}I6oA;1VCD(#hso7*v3zdaVJESbyFn|GChxaqH zALBcU_&uydNKAZ(Y831Xifm=%A_()OA_`jj*!zskSe!ryb(|!V^#Q47&a^|BIGyF4AlL~Rj5e$qb$GW$P$VT6yJW?fX$~@BbCM|?6pXZ@n>y|ur zX2u;jc4=-CwnjTaVO2~QIYR{A^<6c$?!!Yu4(6&j2999_C4P$fm?Fs7=_Anak#g){ zurdaKLs%WNw&FP8+P8*?>6UK}Q^cZC6>riUe~Kd0z3>sfQuHXDe2BC%ei0FI(bB|^ zs5p+IQ9||t-}q$Y;m+aUACk0+e1$YuL5AxZ6o+NHh#pM8%mCf=8Cd2(6$^2QTGwop zr-8EgYqnlPi>!AZWd*%8P0&*l3Qo#R=On4%0u?B*M(TR^BMObXN`lC}3m41OU*;() zq_3c~*FZIpgw(Gh0XES0R7yx*CG)Vvhw_<{q?w@UT^qd?YTAAo;Q#@xomBR#0B%ZP zl-3au8w3Z^K}kK3!ph1;MqV7svQf*uwhk!E`DqIdg`027yF`A`8TF5^}&lM8#DO41QlLTzTy^)9!5K0$UQw8xgF6Fb7{HWc=b|NL# zOY$T+>2YQu=mc4iLJJbPAlVCwuH2Kzd9M-Ru}G{DObZ@IeLzPM2z?Fc3A2+Qtpy#)vR97s;44SckHLoTNiyw~El)Bb8OQUCqDlPFN zQPZE(DlO6qG{_H0E0j7jrf(xxg@`lvl-Hnm_{faHMi^C7mtnv#=c)g)MJ8U+=YFJw H_J#ie1D*=) literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/search.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/search.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f70ea08252fa60e5cc27db9b33dcfb3060d227f7 GIT binary patch literal 4866 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 C{P7(C literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/show.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/show.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e4dabdaa3bb921b1271053000a3643158ad5cdb5 GIT binary patch literal 6319 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 aS-RfW9a@|P(y=-=`~gaUgTFQ0asC5kf;jpB literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f9fcb6b9a7657e6149e78c3d568ccf5115cf3c22 GIT binary patch literal 4777 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 can be a glob expression or a package name. + """ + + ignore_require_venv = True + usage = """ + %prog dir + %prog info + %prog list [] [--format=[human, abspath]] + %prog remove + %prog purge + """ + + def add_options(self): + # type: () -> None + + self.cmd_opts.add_option( + '--format', + action='store', + dest='list_format', + default="human", + choices=('human', 'abspath'), + help="Select the output format among: human (default) or abspath" + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options, args): + # type: (Values, List[Any]) -> int + handlers = { + "dir": self.get_cache_dir, + "info": self.get_cache_info, + "list": self.list_cache_items, + "remove": self.remove_cache_items, + "purge": self.purge_cache, + } + + if not options.cache_dir: + logger.error("pip cache commands can not " + "function since cache is disabled.") + return ERROR + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def get_cache_dir(self, options, args): + # type: (Values, List[Any]) -> None + if args: + raise CommandError('Too many arguments') + + logger.info(options.cache_dir) + + def get_cache_info(self, options, args): + # type: (Values, List[Any]) -> None + if args: + raise CommandError('Too many arguments') + + num_http_files = len(self._find_http_files(options)) + num_packages = len(self._find_wheels(options, '*')) + + http_cache_location = self._cache_dir(options, 'http') + wheels_cache_location = self._cache_dir(options, 'wheels') + http_cache_size = filesystem.format_directory_size(http_cache_location) + wheels_cache_size = filesystem.format_directory_size( + wheels_cache_location + ) + + message = textwrap.dedent(""" + Package index page cache location: {http_cache_location} + Package index page cache size: {http_cache_size} + Number of HTTP files: {num_http_files} + Wheels location: {wheels_cache_location} + Wheels size: {wheels_cache_size} + Number of wheels: {package_count} + """).format( + http_cache_location=http_cache_location, + http_cache_size=http_cache_size, + num_http_files=num_http_files, + wheels_cache_location=wheels_cache_location, + package_count=num_packages, + wheels_cache_size=wheels_cache_size, + ).strip() + + logger.info(message) + + def list_cache_items(self, options, args): + # type: (Values, List[Any]) -> None + if len(args) > 1: + raise CommandError('Too many arguments') + + if args: + pattern = args[0] + else: + pattern = '*' + + files = self._find_wheels(options, pattern) + if options.list_format == 'human': + self.format_for_human(files) + else: + self.format_for_abspath(files) + + def format_for_human(self, files): + # type: (List[str]) -> None + if not files: + logger.info('Nothing cached.') + return + + results = [] + for filename in files: + wheel = os.path.basename(filename) + size = filesystem.format_file_size(filename) + results.append(f' - {wheel} ({size})') + logger.info('Cache contents:\n') + logger.info('\n'.join(sorted(results))) + + def format_for_abspath(self, files): + # type: (List[str]) -> None + if not files: + return + + results = [] + for filename in files: + results.append(filename) + + logger.info('\n'.join(sorted(results))) + + def remove_cache_items(self, options, args): + # type: (Values, List[Any]) -> None + if len(args) > 1: + raise CommandError('Too many arguments') + + if not args: + raise CommandError('Please provide a pattern') + + files = self._find_wheels(options, args[0]) + + # Only fetch http files if no specific pattern given + if args[0] == '*': + files += self._find_http_files(options) + + if not files: + raise CommandError('No matching packages') + + for filename in files: + os.unlink(filename) + logger.debug('Removed %s', filename) + logger.info('Files removed: %s', len(files)) + + def purge_cache(self, options, args): + # type: (Values, List[Any]) -> None + if args: + raise CommandError('Too many arguments') + + return self.remove_cache_items(options, ['*']) + + def _cache_dir(self, options, subdir): + # type: (Values, str) -> str + return os.path.join(options.cache_dir, subdir) + + def _find_http_files(self, options): + # type: (Values) -> List[str] + http_dir = self._cache_dir(options, 'http') + return filesystem.find_files(http_dir, '*') + + def _find_wheels(self, options, pattern): + # type: (Values, str) -> List[str] + wheel_dir = self._cache_dir(options, 'wheels') + + # The wheel filename format, as specified in PEP 427, is: + # {distribution}-{version}(-{build})?-{python}-{abi}-{platform}.whl + # + # Additionally, non-alphanumeric values in the distribution are + # normalized to underscores (_), meaning hyphens can never occur + # before `-{version}`. + # + # Given that information: + # - If the pattern we're given contains a hyphen (-), the user is + # providing at least the version. Thus, we can just append `*.whl` + # to match the rest of it. + # - If the pattern we're given doesn't contain a hyphen (-), the + # user is only providing the name. Thus, we append `-*.whl` to + # match the hyphen before the version, followed by anything else. + # + # PEP 427: https://www.python.org/dev/peps/pep-0427/ + pattern = pattern + ("*.whl" if "-" in pattern else "-*.whl") + + return filesystem.find_files(wheel_dir, pattern) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/check.py b/venv/lib/python3.8/site-packages/pip/_internal/commands/check.py new file mode 100644 index 00000000..70aa5af2 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/commands/check.py @@ -0,0 +1,48 @@ +import logging +from optparse import Values +from typing import Any, List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.operations.check import ( + check_package_set, + create_package_set_from_installed, +) +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class CheckCommand(Command): + """Verify installed packages have compatible dependencies.""" + + usage = """ + %prog [options]""" + + def run(self, options, args): + # type: (Values, List[Any]) -> int + + package_set, parsing_probs = create_package_set_from_installed() + missing, conflicting = check_package_set(package_set) + + for project_name in missing: + version = package_set[project_name].version + for dependency in missing[project_name]: + write_output( + "%s %s requires %s, which is not installed.", + project_name, version, dependency[0], + ) + + for project_name in conflicting: + version = package_set[project_name].version + for dep_name, dep_version, req in conflicting[project_name]: + write_output( + "%s %s has requirement %s, but you have %s %s.", + project_name, version, req, dep_name, dep_version, + ) + + if missing or conflicting or parsing_probs: + return ERROR + else: + write_output("No broken requirements found.") + return SUCCESS diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/completion.py b/venv/lib/python3.8/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 00000000..92cb7882 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/commands/completion.py @@ -0,0 +1,93 @@ +import sys +import textwrap +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.utils.misc import get_prog + +BASE_COMPLETION = """ +# pip {shell} completion start{script}# pip {shell} completion end +""" + +COMPLETION_SCRIPTS = { + 'bash': """ + _pip_completion() + {{ + COMPREPLY=( $( COMP_WORDS="${{COMP_WORDS[*]}}" \\ + COMP_CWORD=$COMP_CWORD \\ + PIP_AUTO_COMPLETE=1 $1 2>/dev/null ) ) + }} + complete -o default -F _pip_completion {prog} + """, + 'zsh': """ + function _pip_completion {{ + local words cword + read -Ac words + read -cn cword + reply=( $( COMP_WORDS="$words[*]" \\ + COMP_CWORD=$(( cword-1 )) \\ + PIP_AUTO_COMPLETE=1 $words[1] 2>/dev/null )) + }} + compctl -K _pip_completion {prog} + """, + 'fish': """ + function __fish_complete_pip + set -lx COMP_WORDS (commandline -o) "" + set -lx COMP_CWORD ( \\ + math (contains -i -- (commandline -t) $COMP_WORDS)-1 \\ + ) + set -lx PIP_AUTO_COMPLETE 1 + string split \\ -- (eval $COMP_WORDS[1]) + end + complete -fa "(__fish_complete_pip)" -c {prog} + """, +} + + +class CompletionCommand(Command): + """A helper command to be used for command completion.""" + + ignore_require_venv = True + + def add_options(self): + # type: () -> None + self.cmd_opts.add_option( + '--bash', '-b', + action='store_const', + const='bash', + dest='shell', + help='Emit completion code for bash') + self.cmd_opts.add_option( + '--zsh', '-z', + action='store_const', + const='zsh', + dest='shell', + help='Emit completion code for zsh') + self.cmd_opts.add_option( + '--fish', '-f', + action='store_const', + const='fish', + dest='shell', + help='Emit completion code for fish') + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options, args): + # type: (Values, List[str]) -> int + """Prints the completion code of the given shell""" + shells = COMPLETION_SCRIPTS.keys() + shell_options = ['--' + shell for shell in sorted(shells)] + if options.shell in shells: + script = textwrap.dedent( + COMPLETION_SCRIPTS.get(options.shell, '').format( + prog=get_prog()) + ) + print(BASE_COMPLETION.format(script=script, shell=options.shell)) + return SUCCESS + else: + sys.stderr.write( + 'ERROR: You must pass {}\n' .format(' or '.join(shell_options)) + ) + return SUCCESS diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/configuration.py b/venv/lib/python3.8/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 00000000..e13f7142 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/commands/configuration.py @@ -0,0 +1,280 @@ +import logging +import os +import subprocess +from optparse import Values +from typing import Any, List, Optional + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.configuration import ( + Configuration, + Kind, + get_configuration_files, + kinds, +) +from pip._internal.exceptions import PipError +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_prog, write_output + +logger = logging.getLogger(__name__) + + +class ConfigurationCommand(Command): + """ + Manage local and global configuration. + + Subcommands: + + - list: List the active configuration (or from the file specified) + - edit: Edit the configuration file in an editor + - get: Get the value associated with name + - set: Set the name=value + - unset: Unset the value associated with name + - debug: List the configuration files and values defined under them + + If none of --user, --global and --site are passed, a virtual + environment configuration file is used if one is active and the file + exists. Otherwise, all modifications happen on the to the user file by + default. + """ + + ignore_require_venv = True + usage = """ + %prog [] list + %prog [] [--editor ] edit + + %prog [] get name + %prog [] set name value + %prog [] unset name + %prog [] debug + """ + + def add_options(self): + # type: () -> None + self.cmd_opts.add_option( + '--editor', + dest='editor', + action='store', + default=None, + help=( + 'Editor to use to edit the file. Uses VISUAL or EDITOR ' + 'environment variables if not provided.' + ) + ) + + self.cmd_opts.add_option( + '--global', + dest='global_file', + action='store_true', + default=False, + help='Use the system-wide configuration file only' + ) + + self.cmd_opts.add_option( + '--user', + dest='user_file', + action='store_true', + default=False, + help='Use the user configuration file only' + ) + + self.cmd_opts.add_option( + '--site', + dest='site_file', + action='store_true', + default=False, + help='Use the current environment configuration file only' + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options, args): + # type: (Values, List[str]) -> int + handlers = { + "list": self.list_values, + "edit": self.open_in_editor, + "get": self.get_name, + "set": self.set_name_value, + "unset": self.unset_name, + "debug": self.list_config_values, + } + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Determine which configuration files are to be loaded + # Depends on whether the command is modifying. + try: + load_only = self._determine_file( + options, need_value=(action in ["get", "set", "unset", "edit"]) + ) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + # Load a new configuration + self.configuration = Configuration( + isolated=options.isolated_mode, load_only=load_only + ) + self.configuration.load() + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _determine_file(self, options, need_value): + # type: (Values, bool) -> Optional[Kind] + file_options = [key for key, value in ( + (kinds.USER, options.user_file), + (kinds.GLOBAL, options.global_file), + (kinds.SITE, options.site_file), + ) if value] + + if not file_options: + if not need_value: + return None + # Default to user, unless there's a site file. + elif any( + os.path.exists(site_config_file) + for site_config_file in get_configuration_files()[kinds.SITE] + ): + return kinds.SITE + else: + return kinds.USER + elif len(file_options) == 1: + return file_options[0] + + raise PipError( + "Need exactly one file to operate upon " + "(--user, --site, --global) to perform." + ) + + def list_values(self, options, args): + # type: (Values, List[str]) -> None + self._get_n_args(args, "list", n=0) + + for key, value in sorted(self.configuration.items()): + write_output("%s=%r", key, value) + + def get_name(self, options, args): + # type: (Values, List[str]) -> None + key = self._get_n_args(args, "get [name]", n=1) + value = self.configuration.get_value(key) + + write_output("%s", value) + + def set_name_value(self, options, args): + # type: (Values, List[str]) -> None + key, value = self._get_n_args(args, "set [name] [value]", n=2) + self.configuration.set_value(key, value) + + self._save_configuration() + + def unset_name(self, options, args): + # type: (Values, List[str]) -> None + key = self._get_n_args(args, "unset [name]", n=1) + self.configuration.unset_value(key) + + self._save_configuration() + + def list_config_values(self, options, args): + # type: (Values, List[str]) -> None + """List config key-value pairs across different config files""" + self._get_n_args(args, "debug", n=0) + + self.print_env_var_values() + # Iterate over config files and print if they exist, and the + # key-value pairs present in them if they do + for variant, files in sorted(self.configuration.iter_config_files()): + write_output("%s:", variant) + for fname in files: + with indent_log(): + file_exists = os.path.exists(fname) + write_output("%s, exists: %r", + fname, file_exists) + if file_exists: + self.print_config_file_values(variant) + + def print_config_file_values(self, variant): + # type: (Kind) -> None + """Get key-value pairs from the file of a variant""" + for name, value in self.configuration.\ + get_values_in_config(variant).items(): + with indent_log(): + write_output("%s: %s", name, value) + + def print_env_var_values(self): + # type: () -> None + """Get key-values pairs present as environment variables""" + write_output("%s:", 'env_var') + with indent_log(): + for key, value in sorted(self.configuration.get_environ_vars()): + env_var = f'PIP_{key.upper()}' + write_output("%s=%r", env_var, value) + + def open_in_editor(self, options, args): + # type: (Values, List[str]) -> None + editor = self._determine_editor(options) + + fname = self.configuration.get_file_to_edit() + if fname is None: + raise PipError("Could not determine appropriate file.") + + try: + subprocess.check_call([editor, fname]) + except subprocess.CalledProcessError as e: + raise PipError( + "Editor Subprocess exited with exit code {}" + .format(e.returncode) + ) + + def _get_n_args(self, args, example, n): + # type: (List[str], str, int) -> Any + """Helper to make sure the command got the right number of arguments + """ + if len(args) != n: + msg = ( + 'Got unexpected number of arguments, expected {}. ' + '(example: "{} config {}")' + ).format(n, get_prog(), example) + raise PipError(msg) + + if n == 1: + return args[0] + else: + return args + + def _save_configuration(self): + # type: () -> None + # We successfully ran a modifying command. Need to save the + # configuration. + try: + self.configuration.save() + except Exception: + logger.exception( + "Unable to save configuration. Please report this as a bug." + ) + raise PipError("Internal Error.") + + def _determine_editor(self, options): + # type: (Values) -> str + if options.editor is not None: + return options.editor + elif "VISUAL" in os.environ: + return os.environ["VISUAL"] + elif "EDITOR" in os.environ: + return os.environ["EDITOR"] + else: + raise PipError("Could not determine editor to use.") diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/debug.py b/venv/lib/python3.8/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 00000000..ead5119a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/commands/debug.py @@ -0,0 +1,215 @@ +import locale +import logging +import os +import sys +from optparse import Values +from types import ModuleType +from typing import Any, Dict, List, Optional + +import pip._vendor +from pip._vendor.certifi import where +from pip._vendor.packaging.version import parse as parse_version + +from pip import __file__ as pip_location +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.configuration import Configuration +from pip._internal.metadata import get_environment +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_pip_version + +logger = logging.getLogger(__name__) + + +def show_value(name, value): + # type: (str, Any) -> None + logger.info('%s: %s', name, value) + + +def show_sys_implementation(): + # type: () -> None + logger.info('sys.implementation:') + implementation_name = sys.implementation.name + with indent_log(): + show_value('name', implementation_name) + + +def create_vendor_txt_map(): + # type: () -> Dict[str, str] + vendor_txt_path = os.path.join( + os.path.dirname(pip_location), + '_vendor', + 'vendor.txt' + ) + + with open(vendor_txt_path) as f: + # Purge non version specifying lines. + # Also, remove any space prefix or suffixes (including comments). + lines = [line.strip().split(' ', 1)[0] + for line in f.readlines() if '==' in line] + + # Transform into "module" -> version dict. + return dict(line.split('==', 1) for line in lines) # type: ignore + + +def get_module_from_module_name(module_name): + # type: (str) -> ModuleType + # Module name can be uppercase in vendor.txt for some reason... + module_name = module_name.lower() + # PATCH: setuptools is actually only pkg_resources. + if module_name == 'setuptools': + module_name = 'pkg_resources' + + __import__( + f'pip._vendor.{module_name}', + globals(), + locals(), + level=0 + ) + return getattr(pip._vendor, module_name) + + +def get_vendor_version_from_module(module_name): + # type: (str) -> Optional[str] + module = get_module_from_module_name(module_name) + version = getattr(module, '__version__', None) + + if not version: + # Try to find version in debundled module info. + env = get_environment([os.path.dirname(module.__file__)]) + dist = env.get_distribution(module_name) + if dist: + version = str(dist.version) + + return version + + +def show_actual_vendor_versions(vendor_txt_versions): + # type: (Dict[str, str]) -> None + """Log the actual version and print extra info if there is + a conflict or if the actual version could not be imported. + """ + for module_name, expected_version in vendor_txt_versions.items(): + extra_message = '' + actual_version = get_vendor_version_from_module(module_name) + if not actual_version: + extra_message = ' (Unable to locate actual module version, using'\ + ' vendor.txt specified version)' + actual_version = expected_version + elif parse_version(actual_version) != parse_version(expected_version): + extra_message = ' (CONFLICT: vendor.txt suggests version should'\ + ' be {})'.format(expected_version) + logger.info('%s==%s%s', module_name, actual_version, extra_message) + + +def show_vendor_versions(): + # type: () -> None + logger.info('vendored library versions:') + + vendor_txt_versions = create_vendor_txt_map() + with indent_log(): + show_actual_vendor_versions(vendor_txt_versions) + + +def show_tags(options): + # type: (Values) -> None + tag_limit = 10 + + target_python = make_target_python(options) + tags = target_python.get_tags() + + # Display the target options that were explicitly provided. + formatted_target = target_python.format_given() + suffix = '' + if formatted_target: + suffix = f' (target: {formatted_target})' + + msg = 'Compatible tags: {}{}'.format(len(tags), suffix) + logger.info(msg) + + if options.verbose < 1 and len(tags) > tag_limit: + tags_limited = True + tags = tags[:tag_limit] + else: + tags_limited = False + + with indent_log(): + for tag in tags: + logger.info(str(tag)) + + if tags_limited: + msg = ( + '...\n' + '[First {tag_limit} tags shown. Pass --verbose to show all.]' + ).format(tag_limit=tag_limit) + logger.info(msg) + + +def ca_bundle_info(config): + # type: (Configuration) -> str + levels = set() + for key, _ in config.items(): + levels.add(key.split('.')[0]) + + if not levels: + return "Not specified" + + levels_that_override_global = ['install', 'wheel', 'download'] + global_overriding_level = [ + level for level in levels if level in levels_that_override_global + ] + if not global_overriding_level: + return 'global' + + if 'global' in levels: + levels.remove('global') + return ", ".join(levels) + + +class DebugCommand(Command): + """ + Display debug information. + """ + + usage = """ + %prog """ + ignore_require_venv = True + + def add_options(self): + # type: () -> None + cmdoptions.add_target_python_options(self.cmd_opts) + self.parser.insert_option_group(0, self.cmd_opts) + self.parser.config.load() + + def run(self, options, args): + # type: (Values, List[str]) -> int + logger.warning( + "This command is only meant for debugging. " + "Do not use this with automation for parsing and getting these " + "details, since the output and options of this command may " + "change without notice." + ) + show_value('pip version', get_pip_version()) + show_value('sys.version', sys.version) + show_value('sys.executable', sys.executable) + show_value('sys.getdefaultencoding', sys.getdefaultencoding()) + show_value('sys.getfilesystemencoding', sys.getfilesystemencoding()) + show_value( + 'locale.getpreferredencoding', locale.getpreferredencoding(), + ) + show_value('sys.platform', sys.platform) + show_sys_implementation() + + show_value("'cert' config value", ca_bundle_info(self.parser.config)) + show_value("REQUESTS_CA_BUNDLE", os.environ.get('REQUESTS_CA_BUNDLE')) + show_value("CURL_CA_BUNDLE", os.environ.get('CURL_CA_BUNDLE')) + show_value("pip._vendor.certifi.where()", where()) + show_value("pip._vendor.DEBUNDLED", pip._vendor.DEBUNDLED) + + show_vendor_versions() + + show_tags(options) + + return SUCCESS diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/download.py b/venv/lib/python3.8/site-packages/pip/_internal/commands/download.py new file mode 100644 index 00000000..19f8d6c0 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/commands/download.py @@ -0,0 +1,141 @@ +import logging +import os +from optparse import Values +from typing import List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.req.req_tracker import get_requirement_tracker +from pip._internal.utils.misc import ensure_dir, normalize_path, write_output +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +class DownloadCommand(RequirementCommand): + """ + Download packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports downloading from "requirements files", which provide + an easy way to specify a whole environment to be downloaded. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] ... + %prog [options] ... + %prog [options] ...""" + + def add_options(self): + # type: () -> None + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.build_dir()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.global_options()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + + self.cmd_opts.add_option( + '-d', '--dest', '--destination-dir', '--destination-directory', + dest='download_dir', + metavar='dir', + default=os.curdir, + help=("Download packages into ."), + ) + + cmdoptions.add_target_python_options(self.cmd_opts) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options, args): + # type: (Values, List[str]) -> int + + options.ignore_installed = True + # editable doesn't really make sense for `pip download`, but the bowels + # of the RequirementSet code require that property. + options.editables = [] + + cmdoptions.check_dist_restriction(options) + + options.download_dir = normalize_path(options.download_dir) + ensure_dir(options.download_dir) + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + req_tracker = self.enter_context(get_requirement_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="download", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + req_tracker=req_tracker, + session=session, + finder=finder, + download_dir=options.download_dir, + use_user_site=False, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + ignore_requires_python=options.ignore_requires_python, + py_version_info=options.python_version, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve( + reqs, check_supported_wheels=True + ) + + downloaded = [] # type: List[str] + for req in requirement_set.requirements.values(): + if req.satisfied_by is None: + assert req.name is not None + preparer.save_linked_requirement(req) + downloaded.append(req.name) + if downloaded: + write_output('Successfully downloaded %s', ' '.join(downloaded)) + + return SUCCESS diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/freeze.py b/venv/lib/python3.8/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 00000000..430d1018 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/commands/freeze.py @@ -0,0 +1,104 @@ +import sys +from optparse import Values +from typing import List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.freeze import freeze +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.deprecation import deprecated + +DEV_PKGS = {'pip', 'setuptools', 'distribute', 'wheel'} + + +class FreezeCommand(Command): + """ + Output installed packages in requirements format. + + packages are listed in a case-insensitive sorted order. + """ + + usage = """ + %prog [options]""" + log_streams = ("ext://sys.stderr", "ext://sys.stderr") + + def add_options(self): + # type: () -> None + self.cmd_opts.add_option( + '-r', '--requirement', + dest='requirements', + action='append', + default=[], + metavar='file', + help="Use the order in the given requirements file and its " + "comments when generating output. This option can be " + "used multiple times.") + self.cmd_opts.add_option( + '-f', '--find-links', + dest='find_links', + action='append', + default=[], + metavar='URL', + help='URL for finding packages, which will be added to the ' + 'output.') + self.cmd_opts.add_option( + '-l', '--local', + dest='local', + action='store_true', + default=False, + help='If in a virtualenv that has global access, do not output ' + 'globally-installed packages.') + self.cmd_opts.add_option( + '--user', + dest='user', + action='store_true', + default=False, + help='Only output packages installed in user-site.') + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + '--all', + dest='freeze_all', + action='store_true', + help='Do not skip these packages in the output:' + ' {}'.format(', '.join(DEV_PKGS))) + self.cmd_opts.add_option( + '--exclude-editable', + dest='exclude_editable', + action='store_true', + help='Exclude editable package from output.') + self.cmd_opts.add_option(cmdoptions.list_exclude()) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options, args): + # type: (Values, List[str]) -> int + skip = set(stdlib_pkgs) + if not options.freeze_all: + skip.update(DEV_PKGS) + + if options.excludes: + skip.update(options.excludes) + + cmdoptions.check_list_path_option(options) + + if options.find_links: + deprecated( + "--find-links option in pip freeze is deprecated.", + replacement=None, + gone_in="21.2", + issue=9069, + ) + + for line in freeze( + requirement=options.requirements, + find_links=options.find_links, + local_only=options.local, + user_only=options.user, + paths=options.path, + isolated=options.isolated_mode, + skip=skip, + exclude_editable=options.exclude_editable, + ): + sys.stdout.write(line + '\n') + return SUCCESS diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/hash.py b/venv/lib/python3.8/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 00000000..bca48dcc --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/commands/hash.py @@ -0,0 +1,58 @@ +import hashlib +import logging +import sys +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.utils.hashes import FAVORITE_HASH, STRONG_HASHES +from pip._internal.utils.misc import read_chunks, write_output + +logger = logging.getLogger(__name__) + + +class HashCommand(Command): + """ + Compute a hash of a local package archive. + + These can be used with --hash in a requirements file to do repeatable + installs. + """ + + usage = '%prog [options] ...' + ignore_require_venv = True + + def add_options(self): + # type: () -> None + self.cmd_opts.add_option( + '-a', '--algorithm', + dest='algorithm', + choices=STRONG_HASHES, + action='store', + default=FAVORITE_HASH, + help='The hash algorithm to use: one of {}'.format( + ', '.join(STRONG_HASHES))) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options, args): + # type: (Values, List[str]) -> int + if not args: + self.parser.print_usage(sys.stderr) + return ERROR + + algorithm = options.algorithm + for path in args: + write_output('%s:\n--hash=%s:%s', + path, algorithm, _hash_of_file(path, algorithm)) + return SUCCESS + + +def _hash_of_file(path, algorithm): + # type: (str, str) -> str + """Return the hash digest of a file.""" + with open(path, 'rb') as archive: + hash = hashlib.new(algorithm) + for chunk in read_chunks(archive): + hash.update(chunk) + return hash.hexdigest() diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/help.py b/venv/lib/python3.8/site-packages/pip/_internal/commands/help.py new file mode 100644 index 00000000..79d0eb49 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/commands/help.py @@ -0,0 +1,42 @@ +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError + + +class HelpCommand(Command): + """Show help for commands""" + + usage = """ + %prog """ + ignore_require_venv = True + + def run(self, options, args): + # type: (Values, List[str]) -> int + from pip._internal.commands import ( + commands_dict, + create_command, + get_similar_commands, + ) + + try: + # 'pip help' with no args is handled by pip.__init__.parseopt() + cmd_name = args[0] # the command we need help for + except IndexError: + return SUCCESS + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(' - '.join(msg)) + + command = create_command(cmd_name) + command.parser.print_help() + + return SUCCESS diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/install.py b/venv/lib/python3.8/site-packages/pip/_internal/commands/install.py new file mode 100644 index 00000000..6932f5a6 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/commands/install.py @@ -0,0 +1,740 @@ +import errno +import logging +import operator +import os +import shutil +import site +from optparse import SUPPRESS_HELP, Values +from typing import Iterable, List, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import ( + RequirementCommand, + warn_if_run_as_root, + with_cleanup, +) +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, InstallationError +from pip._internal.locations import get_scheme +from pip._internal.metadata import get_environment +from pip._internal.models.format_control import FormatControl +from pip._internal.operations.check import ConflictDetails, check_install_conflicts +from pip._internal.req import install_given_reqs +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import get_requirement_tracker +from pip._internal.utils.distutils_args import parse_distutils_args +from pip._internal.utils.filesystem import test_writable_dir +from pip._internal.utils.misc import ( + ensure_dir, + get_pip_version, + protect_pip_from_modification_on_windows, + write_output, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) +from pip._internal.wheel_builder import ( + BinaryAllowedPredicate, + build, + should_build_for_install_command, +) + +logger = logging.getLogger(__name__) + + +def get_check_binary_allowed(format_control): + # type: (FormatControl) -> BinaryAllowedPredicate + def check_binary_allowed(req): + # type: (InstallRequirement) -> bool + canonical_name = canonicalize_name(req.name or "") + allowed_formats = format_control.get_allowed_formats(canonical_name) + return "binary" in allowed_formats + + return check_binary_allowed + + +class InstallCommand(RequirementCommand): + """ + Install packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports installing from "requirements files", which provide + an easy way to specify a whole environment to be installed. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self): + # type: () -> None + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.pre()) + + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option( + '-t', '--target', + dest='target_dir', + metavar='dir', + default=None, + help='Install packages into . ' + 'By default this will not replace existing files/folders in ' + '. Use --upgrade to replace existing packages in ' + 'with new versions.' + ) + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option( + '--user', + dest='use_user_site', + action='store_true', + help="Install to the Python user install directory for your " + "platform. Typically ~/.local/, or %APPDATA%\\Python on " + "Windows. (See the Python documentation for site.USER_BASE " + "for full details.)") + self.cmd_opts.add_option( + '--no-user', + dest='use_user_site', + action='store_false', + help=SUPPRESS_HELP) + self.cmd_opts.add_option( + '--root', + dest='root_path', + metavar='dir', + default=None, + help="Install everything relative to this alternate root " + "directory.") + self.cmd_opts.add_option( + '--prefix', + dest='prefix_path', + metavar='dir', + default=None, + help="Installation prefix where lib, bin and other top-level " + "folders are placed") + + self.cmd_opts.add_option(cmdoptions.build_dir()) + + self.cmd_opts.add_option(cmdoptions.src()) + + self.cmd_opts.add_option( + '-U', '--upgrade', + dest='upgrade', + action='store_true', + help='Upgrade all specified packages to the newest available ' + 'version. The handling of dependencies depends on the ' + 'upgrade-strategy used.' + ) + + self.cmd_opts.add_option( + '--upgrade-strategy', + dest='upgrade_strategy', + default='only-if-needed', + choices=['only-if-needed', 'eager'], + help='Determines how dependency upgrading should be handled ' + '[default: %default]. ' + '"eager" - dependencies are upgraded regardless of ' + 'whether the currently installed version satisfies the ' + 'requirements of the upgraded package(s). ' + '"only-if-needed" - are upgraded only when they do not ' + 'satisfy the requirements of the upgraded package(s).' + ) + + self.cmd_opts.add_option( + '--force-reinstall', + dest='force_reinstall', + action='store_true', + help='Reinstall all packages even if they are already ' + 'up-to-date.') + + self.cmd_opts.add_option( + '-I', '--ignore-installed', + dest='ignore_installed', + action='store_true', + help='Ignore the installed packages, overwriting them. ' + 'This can break your system if the existing package ' + 'is of a different version or was installed ' + 'with a different package manager!' + ) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + + self.cmd_opts.add_option(cmdoptions.install_options()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--compile", + action="store_true", + dest="compile", + default=True, + help="Compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-compile", + action="store_false", + dest="compile", + help="Do not compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-warn-script-location", + action="store_false", + dest="warn_script_location", + default=True, + help="Do not warn when installing scripts outside PATH", + ) + self.cmd_opts.add_option( + "--no-warn-conflicts", + action="store_false", + dest="warn_about_conflicts", + default=True, + help="Do not warn about broken dependencies", + ) + + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options, args): + # type: (Values, List[str]) -> int + if options.use_user_site and options.target_dir is not None: + raise CommandError("Can not combine '--user' and '--target'") + + cmdoptions.check_install_build_global(options) + upgrade_strategy = "to-satisfy-only" + if options.upgrade: + upgrade_strategy = options.upgrade_strategy + + cmdoptions.check_dist_restriction(options, check_target=True) + + install_options = options.install_options or [] + + logger.debug("Using %s", get_pip_version()) + options.use_user_site = decide_user_install( + options.use_user_site, + prefix_path=options.prefix_path, + target_dir=options.target_dir, + root_path=options.root_path, + isolated_mode=options.isolated_mode, + ) + + target_temp_dir = None # type: Optional[TempDirectory] + target_temp_dir_path = None # type: Optional[str] + if options.target_dir: + options.ignore_installed = True + options.target_dir = os.path.abspath(options.target_dir) + if (os.path.exists(options.target_dir) and not + os.path.isdir(options.target_dir)): + raise CommandError( + "Target path exists but is not a directory, will not " + "continue." + ) + + # Create a target directory for using with the target option + target_temp_dir = TempDirectory(kind="target") + target_temp_dir_path = target_temp_dir.path + self.enter_context(target_temp_dir) + + global_options = options.global_options or [] + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + wheel_cache = WheelCache(options.cache_dir, options.format_control) + + req_tracker = self.enter_context(get_requirement_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="install", + globally_managed=True, + ) + + try: + reqs = self.get_requirements(args, options, finder, session) + + reject_location_related_install_options( + reqs, options.install_options + ) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + req_tracker=req_tracker, + session=session, + finder=finder, + use_user_site=options.use_user_site, + ) + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + use_user_site=options.use_user_site, + ignore_installed=options.ignore_installed, + ignore_requires_python=options.ignore_requires_python, + force_reinstall=options.force_reinstall, + upgrade_strategy=upgrade_strategy, + use_pep517=options.use_pep517, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve( + reqs, check_supported_wheels=not options.target_dir + ) + + try: + pip_req = requirement_set.get_requirement("pip") + except KeyError: + modifying_pip = False + else: + # If we're not replacing an already installed pip, + # we're not modifying it. + modifying_pip = pip_req.satisfied_by is None + protect_pip_from_modification_on_windows( + modifying_pip=modifying_pip + ) + + check_binary_allowed = get_check_binary_allowed( + finder.format_control + ) + + reqs_to_build = [ + r for r in requirement_set.requirements.values() + if should_build_for_install_command( + r, check_binary_allowed + ) + ] + + _, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=True, + build_options=[], + global_options=[], + ) + + # If we're using PEP 517, we cannot do a direct install + # so we fail here. + pep517_build_failure_names = [ + r.name # type: ignore + for r in build_failures if r.use_pep517 + ] # type: List[str] + if pep517_build_failure_names: + raise InstallationError( + "Could not build wheels for {} which use" + " PEP 517 and cannot be installed directly".format( + ", ".join(pep517_build_failure_names) + ) + ) + + # For now, we just warn about failures building legacy + # requirements, as we'll fall through to a direct + # install for those. + for r in build_failures: + if not r.use_pep517: + r.legacy_install_reason = 8368 + + to_install = resolver.get_installation_order( + requirement_set + ) + + # Check for conflicts in the package set we're installing. + conflicts = None # type: Optional[ConflictDetails] + should_warn_about_conflicts = ( + not options.ignore_dependencies and + options.warn_about_conflicts + ) + if should_warn_about_conflicts: + conflicts = self._determine_conflicts(to_install) + + # Don't warn about script install locations if + # --target has been specified + warn_script_location = options.warn_script_location + if options.target_dir: + warn_script_location = False + + installed = install_given_reqs( + to_install, + install_options, + global_options, + root=options.root_path, + home=target_temp_dir_path, + prefix=options.prefix_path, + warn_script_location=warn_script_location, + use_user_site=options.use_user_site, + pycompile=options.compile, + ) + + lib_locations = get_lib_location_guesses( + user=options.use_user_site, + home=target_temp_dir_path, + root=options.root_path, + prefix=options.prefix_path, + isolated=options.isolated_mode, + ) + env = get_environment(lib_locations) + + installed.sort(key=operator.attrgetter('name')) + items = [] + for result in installed: + item = result.name + try: + installed_dist = env.get_distribution(item) + if installed_dist is not None: + item = f"{item}-{installed_dist.version}" + except Exception: + pass + items.append(item) + + if conflicts is not None: + self._warn_about_conflicts( + conflicts, + resolver_variant=self.determine_resolver_variant(options), + ) + + installed_desc = ' '.join(items) + if installed_desc: + write_output( + 'Successfully installed %s', installed_desc, + ) + except OSError as error: + show_traceback = (self.verbosity >= 1) + + message = create_os_error_message( + error, show_traceback, options.use_user_site, + ) + logger.error(message, exc_info=show_traceback) # noqa + + return ERROR + + if options.target_dir: + assert target_temp_dir + self._handle_target_dir( + options.target_dir, target_temp_dir, options.upgrade + ) + + warn_if_run_as_root() + return SUCCESS + + def _handle_target_dir(self, target_dir, target_temp_dir, upgrade): + # type: (str, TempDirectory, bool) -> None + ensure_dir(target_dir) + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + lib_dir_list = [] + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + scheme = get_scheme('', home=target_temp_dir.path) + purelib_dir = scheme.purelib + platlib_dir = scheme.platlib + data_dir = scheme.data + + if os.path.exists(purelib_dir): + lib_dir_list.append(purelib_dir) + if os.path.exists(platlib_dir) and platlib_dir != purelib_dir: + lib_dir_list.append(platlib_dir) + if os.path.exists(data_dir): + lib_dir_list.append(data_dir) + + for lib_dir in lib_dir_list: + for item in os.listdir(lib_dir): + if lib_dir == data_dir: + ddir = os.path.join(data_dir, item) + if any(s.startswith(ddir) for s in lib_dir_list[:-1]): + continue + target_item_dir = os.path.join(target_dir, item) + if os.path.exists(target_item_dir): + if not upgrade: + logger.warning( + 'Target directory %s already exists. Specify ' + '--upgrade to force replacement.', + target_item_dir + ) + continue + if os.path.islink(target_item_dir): + logger.warning( + 'Target directory %s already exists and is ' + 'a link. pip will not automatically replace ' + 'links, please remove if replacement is ' + 'desired.', + target_item_dir + ) + continue + if os.path.isdir(target_item_dir): + shutil.rmtree(target_item_dir) + else: + os.remove(target_item_dir) + + shutil.move( + os.path.join(lib_dir, item), + target_item_dir + ) + + def _determine_conflicts(self, to_install): + # type: (List[InstallRequirement]) -> Optional[ConflictDetails] + try: + return check_install_conflicts(to_install) + except Exception: + logger.exception( + "Error while checking for conflicts. Please file an issue on " + "pip's issue tracker: https://github.com/pypa/pip/issues/new" + ) + return None + + def _warn_about_conflicts(self, conflict_details, resolver_variant): + # type: (ConflictDetails, str) -> None + package_set, (missing, conflicting) = conflict_details + if not missing and not conflicting: + return + + parts = [] # type: List[str] + if resolver_variant == "legacy": + parts.append( + "pip's legacy dependency resolver does not consider dependency " + "conflicts when selecting packages. This behaviour is the " + "source of the following dependency conflicts." + ) + else: + assert resolver_variant == "2020-resolver" + parts.append( + "pip's dependency resolver does not currently take into account " + "all the packages that are installed. This behaviour is the " + "source of the following dependency conflicts." + ) + + # NOTE: There is some duplication here, with commands/check.py + for project_name in missing: + version = package_set[project_name][0] + for dependency in missing[project_name]: + message = ( + "{name} {version} requires {requirement}, " + "which is not installed." + ).format( + name=project_name, + version=version, + requirement=dependency[1], + ) + parts.append(message) + + for project_name in conflicting: + version = package_set[project_name][0] + for dep_name, dep_version, req in conflicting[project_name]: + message = ( + "{name} {version} requires {requirement}, but {you} have " + "{dep_name} {dep_version} which is incompatible." + ).format( + name=project_name, + version=version, + requirement=req, + dep_name=dep_name, + dep_version=dep_version, + you=("you" if resolver_variant == "2020-resolver" else "you'll") + ) + parts.append(message) + + logger.critical("\n".join(parts)) + + +def get_lib_location_guesses( + user=False, # type: bool + home=None, # type: Optional[str] + root=None, # type: Optional[str] + isolated=False, # type: bool + prefix=None # type: Optional[str] +): + # type:(...) -> List[str] + scheme = get_scheme( + '', + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + return [scheme.purelib, scheme.platlib] + + +def site_packages_writable(root, isolated): + # type: (Optional[str], bool) -> bool + return all( + test_writable_dir(d) for d in set( + get_lib_location_guesses(root=root, isolated=isolated)) + ) + + +def decide_user_install( + use_user_site, # type: Optional[bool] + prefix_path=None, # type: Optional[str] + target_dir=None, # type: Optional[str] + root_path=None, # type: Optional[str] + isolated_mode=False, # type: bool +): + # type: (...) -> bool + """Determine whether to do a user install based on the input options. + + If use_user_site is False, no additional checks are done. + If use_user_site is True, it is checked for compatibility with other + options. + If use_user_site is None, the default behaviour depends on the environment, + which is provided by the other arguments. + """ + # In some cases (config from tox), use_user_site can be set to an integer + # rather than a bool, which 'use_user_site is False' wouldn't catch. + if (use_user_site is not None) and (not use_user_site): + logger.debug("Non-user install by explicit request") + return False + + if use_user_site: + if prefix_path: + raise CommandError( + "Can not combine '--user' and '--prefix' as they imply " + "different installation locations" + ) + if virtualenv_no_global(): + raise InstallationError( + "Can not perform a '--user' install. User site-packages " + "are not visible in this virtualenv." + ) + logger.debug("User install by explicit request") + return True + + # If we are here, user installs have not been explicitly requested/avoided + assert use_user_site is None + + # user install incompatible with --prefix/--target + if prefix_path or target_dir: + logger.debug("Non-user install due to --prefix or --target option") + return False + + # If user installs are not enabled, choose a non-user install + if not site.ENABLE_USER_SITE: + logger.debug("Non-user install because user site-packages disabled") + return False + + # If we have permission for a non-user install, do that, + # otherwise do a user install. + if site_packages_writable(root=root_path, isolated=isolated_mode): + logger.debug("Non-user install because site-packages writeable") + return False + + logger.info("Defaulting to user installation because normal site-packages " + "is not writeable") + return True + + +def reject_location_related_install_options(requirements, options): + # type: (List[InstallRequirement], Optional[List[str]]) -> None + """If any location-changing --install-option arguments were passed for + requirements or on the command-line, then show a deprecation warning. + """ + def format_options(option_names): + # type: (Iterable[str]) -> List[str] + return ["--{}".format(name.replace("_", "-")) for name in option_names] + + offenders = [] + + for requirement in requirements: + install_options = requirement.install_options + location_options = parse_distutils_args(install_options) + if location_options: + offenders.append( + "{!r} from {}".format( + format_options(location_options.keys()), requirement + ) + ) + + if options: + location_options = parse_distutils_args(options) + if location_options: + offenders.append( + "{!r} from command line".format( + format_options(location_options.keys()) + ) + ) + + if not offenders: + return + + raise CommandError( + "Location-changing options found in --install-option: {}." + " This is unsupported, use pip-level options like --user," + " --prefix, --root, and --target instead.".format( + "; ".join(offenders) + ) + ) + + +def create_os_error_message(error, show_traceback, using_user_site): + # type: (OSError, bool, bool) -> str + """Format an error message for an OSError + + It may occur anytime during the execution of the install command. + """ + parts = [] + + # Mention the error if we are not going to show a traceback + parts.append("Could not install packages due to an OSError") + if not show_traceback: + parts.append(": ") + parts.append(str(error)) + else: + parts.append(".") + + # Spilt the error indication from a helper message (if any) + parts[-1] += "\n" + + # Suggest useful actions to the user: + # (1) using user site-packages or (2) verifying the permissions + if error.errno == errno.EACCES: + user_option_part = "Consider using the `--user` option" + permissions_part = "Check the permissions" + + if not running_under_virtualenv() and not using_user_site: + parts.extend([ + user_option_part, " or ", + permissions_part.lower(), + ]) + else: + parts.append(permissions_part) + parts.append(".\n") + + return "".join(parts).strip() + "\n" diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/list.py b/venv/lib/python3.8/site-packages/pip/_internal/commands/list.py new file mode 100644 index 00000000..dcf94326 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/commands/list.py @@ -0,0 +1,319 @@ +import json +import logging +from optparse import Values +from typing import Iterator, List, Set, Tuple + +from pip._vendor.pkg_resources import Distribution + +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.misc import ( + dist_is_editable, + get_installed_distributions, + tabulate, + write_output, +) +from pip._internal.utils.packaging import get_installer +from pip._internal.utils.parallel import map_multithread + +logger = logging.getLogger(__name__) + + +class ListCommand(IndexGroupCommand): + """ + List installed packages, including editables. + + Packages are listed in a case-insensitive sorted order. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self): + # type: () -> None + self.cmd_opts.add_option( + '-o', '--outdated', + action='store_true', + default=False, + help='List outdated packages') + self.cmd_opts.add_option( + '-u', '--uptodate', + action='store_true', + default=False, + help='List uptodate packages') + self.cmd_opts.add_option( + '-e', '--editable', + action='store_true', + default=False, + help='List editable projects.') + self.cmd_opts.add_option( + '-l', '--local', + action='store_true', + default=False, + help=('If in a virtualenv that has global access, do not list ' + 'globally-installed packages.'), + ) + self.cmd_opts.add_option( + '--user', + dest='user', + action='store_true', + default=False, + help='Only output packages installed in user-site.') + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + '--pre', + action='store_true', + default=False, + help=("Include pre-release and development versions. By default, " + "pip only finds stable versions."), + ) + + self.cmd_opts.add_option( + '--format', + action='store', + dest='list_format', + default="columns", + choices=('columns', 'freeze', 'json'), + help="Select the output format among: columns (default), freeze, " + "or json", + ) + + self.cmd_opts.add_option( + '--not-required', + action='store_true', + dest='not_required', + help="List packages that are not dependencies of " + "installed packages.", + ) + + self.cmd_opts.add_option( + '--exclude-editable', + action='store_false', + dest='include_editable', + help='Exclude editable package from output.', + ) + self.cmd_opts.add_option( + '--include-editable', + action='store_true', + dest='include_editable', + help='Include editable package from output.', + default=True, + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, self.parser + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def _build_package_finder(self, options, session): + # type: (Values, PipSession) -> PackageFinder + """ + Create a package finder appropriate to this list command. + """ + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + + def run(self, options, args): + # type: (Values, List[str]) -> int + if options.outdated and options.uptodate: + raise CommandError( + "Options --outdated and --uptodate cannot be combined.") + + cmdoptions.check_list_path_option(options) + + skip = set(stdlib_pkgs) + if options.excludes: + skip.update(options.excludes) + + packages = get_installed_distributions( + local_only=options.local, + user_only=options.user, + editables_only=options.editable, + include_editables=options.include_editable, + paths=options.path, + skip=skip, + ) + + # get_not_required must be called firstly in order to find and + # filter out all dependencies correctly. Otherwise a package + # can't be identified as requirement because some parent packages + # could be filtered out before. + if options.not_required: + packages = self.get_not_required(packages, options) + + if options.outdated: + packages = self.get_outdated(packages, options) + elif options.uptodate: + packages = self.get_uptodate(packages, options) + + self.output_package_listing(packages, options) + return SUCCESS + + def get_outdated(self, packages, options): + # type: (List[Distribution], Values) -> List[Distribution] + return [ + dist for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version > dist.parsed_version + ] + + def get_uptodate(self, packages, options): + # type: (List[Distribution], Values) -> List[Distribution] + return [ + dist for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version == dist.parsed_version + ] + + def get_not_required(self, packages, options): + # type: (List[Distribution], Values) -> List[Distribution] + dep_keys = set() # type: Set[Distribution] + for dist in packages: + dep_keys.update(requirement.key for requirement in dist.requires()) + + # Create a set to remove duplicate packages, and cast it to a list + # to keep the return type consistent with get_outdated and + # get_uptodate + return list({pkg for pkg in packages if pkg.key not in dep_keys}) + + def iter_packages_latest_infos(self, packages, options): + # type: (List[Distribution], Values) -> Iterator[Distribution] + with self._build_session(options) as session: + finder = self._build_package_finder(options, session) + + def latest_info(dist): + # type: (Distribution) -> Distribution + all_candidates = finder.find_all_candidates(dist.key) + if not options.pre: + # Remove prereleases + all_candidates = [candidate for candidate in all_candidates + if not candidate.version.is_prerelease] + + evaluator = finder.make_candidate_evaluator( + project_name=dist.project_name, + ) + best_candidate = evaluator.sort_best_candidate(all_candidates) + if best_candidate is None: + return None + + remote_version = best_candidate.version + if best_candidate.link.is_wheel: + typ = 'wheel' + else: + typ = 'sdist' + # This is dirty but makes the rest of the code much cleaner + dist.latest_version = remote_version + dist.latest_filetype = typ + return dist + + for dist in map_multithread(latest_info, packages): + if dist is not None: + yield dist + + def output_package_listing(self, packages, options): + # type: (List[Distribution], Values) -> None + packages = sorted( + packages, + key=lambda dist: dist.project_name.lower(), + ) + if options.list_format == 'columns' and packages: + data, header = format_for_columns(packages, options) + self.output_package_listing_columns(data, header) + elif options.list_format == 'freeze': + for dist in packages: + if options.verbose >= 1: + write_output("%s==%s (%s)", dist.project_name, + dist.version, dist.location) + else: + write_output("%s==%s", dist.project_name, dist.version) + elif options.list_format == 'json': + write_output(format_for_json(packages, options)) + + def output_package_listing_columns(self, data, header): + # type: (List[List[str]], List[str]) -> None + # insert the header first: we need to know the size of column names + if len(data) > 0: + data.insert(0, header) + + pkg_strings, sizes = tabulate(data) + + # Create and add a separator. + if len(data) > 0: + pkg_strings.insert(1, " ".join(map(lambda x: '-' * x, sizes))) + + for val in pkg_strings: + write_output(val) + + +def format_for_columns(pkgs, options): + # type: (List[Distribution], Values) -> Tuple[List[List[str]], List[str]] + """ + Convert the package data into something usable + by output_package_listing_columns. + """ + running_outdated = options.outdated + # Adjust the header for the `pip list --outdated` case. + if running_outdated: + header = ["Package", "Version", "Latest", "Type"] + else: + header = ["Package", "Version"] + + data = [] + if options.verbose >= 1 or any(dist_is_editable(x) for x in pkgs): + header.append("Location") + if options.verbose >= 1: + header.append("Installer") + + for proj in pkgs: + # if we're working on the 'outdated' list, separate out the + # latest_version and type + row = [proj.project_name, proj.version] + + if running_outdated: + row.append(proj.latest_version) + row.append(proj.latest_filetype) + + if options.verbose >= 1 or dist_is_editable(proj): + row.append(proj.location) + if options.verbose >= 1: + row.append(get_installer(proj)) + + data.append(row) + + return data, header + + +def format_for_json(packages, options): + # type: (List[Distribution], Values) -> str + data = [] + for dist in packages: + info = { + 'name': dist.project_name, + 'version': str(dist.version), + } + if options.verbose >= 1: + info['location'] = dist.location + info['installer'] = get_installer(dist) + if options.outdated: + info['latest_version'] = str(dist.latest_version) + info['latest_filetype'] = dist.latest_filetype + data.append(info) + return json.dumps(data) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/search.py b/venv/lib/python3.8/site-packages/pip/_internal/commands/search.py new file mode 100644 index 00000000..d66e8234 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/commands/search.py @@ -0,0 +1,162 @@ +import logging +import shutil +import sys +import textwrap +import xmlrpc.client +from collections import OrderedDict +from optparse import Values +from typing import TYPE_CHECKING, Dict, List, Optional + +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin +from pip._internal.cli.status_codes import NO_MATCHES_FOUND, SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.metadata import get_default_environment +from pip._internal.models.index import PyPI +from pip._internal.network.xmlrpc import PipXmlrpcTransport +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import write_output + +if TYPE_CHECKING: + from typing import TypedDict + + class TransformedHit(TypedDict): + name: str + summary: str + versions: List[str] + +logger = logging.getLogger(__name__) + + +class SearchCommand(Command, SessionCommandMixin): + """Search for PyPI packages whose name or summary contains .""" + + usage = """ + %prog [options] """ + ignore_require_venv = True + + def add_options(self): + # type: () -> None + self.cmd_opts.add_option( + '-i', '--index', + dest='index', + metavar='URL', + default=PyPI.pypi_url, + help='Base URL of Python Package Index (default %default)') + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options, args): + # type: (Values, List[str]) -> int + if not args: + raise CommandError('Missing required argument (search query).') + query = args + pypi_hits = self.search(query, options) + hits = transform_hits(pypi_hits) + + terminal_width = None + if sys.stdout.isatty(): + terminal_width = shutil.get_terminal_size()[0] + + print_results(hits, terminal_width=terminal_width) + if pypi_hits: + return SUCCESS + return NO_MATCHES_FOUND + + def search(self, query, options): + # type: (List[str], Values) -> List[Dict[str, str]] + index_url = options.index + + session = self.get_default_session(options) + + transport = PipXmlrpcTransport(index_url, session) + pypi = xmlrpc.client.ServerProxy(index_url, transport) + try: + hits = pypi.search({'name': query, 'summary': query}, 'or') + except xmlrpc.client.Fault as fault: + message = "XMLRPC request failed [code: {code}]\n{string}".format( + code=fault.faultCode, + string=fault.faultString, + ) + raise CommandError(message) + assert isinstance(hits, list) + return hits + + +def transform_hits(hits): + # type: (List[Dict[str, str]]) -> List[TransformedHit] + """ + The list from pypi is really a list of versions. We want a list of + packages with the list of versions stored inline. This converts the + list from pypi into one we can use. + """ + packages = OrderedDict() # type: OrderedDict[str, TransformedHit] + for hit in hits: + name = hit['name'] + summary = hit['summary'] + version = hit['version'] + + if name not in packages.keys(): + packages[name] = { + 'name': name, + 'summary': summary, + 'versions': [version], + } + else: + packages[name]['versions'].append(version) + + # if this is the highest version, replace summary and score + if version == highest_version(packages[name]['versions']): + packages[name]['summary'] = summary + + return list(packages.values()) + + +def print_results(hits, name_column_width=None, terminal_width=None): + # type: (List[TransformedHit], Optional[int], Optional[int]) -> None + if not hits: + return + if name_column_width is None: + name_column_width = max([ + len(hit['name']) + len(highest_version(hit.get('versions', ['-']))) + for hit in hits + ]) + 4 + + env = get_default_environment() + for hit in hits: + name = hit['name'] + summary = hit['summary'] or '' + latest = highest_version(hit.get('versions', ['-'])) + if terminal_width is not None: + target_width = terminal_width - name_column_width - 5 + if target_width > 10: + # wrap and indent summary to fit terminal + summary_lines = textwrap.wrap(summary, target_width) + summary = ('\n' + ' ' * (name_column_width + 3)).join( + summary_lines) + + name_latest = f'{name} ({latest})' + line = f'{name_latest:{name_column_width}} - {summary}' + try: + write_output(line) + dist = env.get_distribution(name) + if dist is not None: + with indent_log(): + if dist.version == latest: + write_output('INSTALLED: %s (latest)', dist.version) + else: + write_output('INSTALLED: %s', dist.version) + if parse_version(latest).pre: + write_output('LATEST: %s (pre-release; install' + ' with "pip install --pre")', latest) + else: + write_output('LATEST: %s', latest) + except UnicodeEncodeError: + pass + + +def highest_version(versions): + # type: (List[str]) -> str + return max(versions, key=parse_version) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/show.py b/venv/lib/python3.8/site-packages/pip/_internal/commands/show.py new file mode 100644 index 00000000..24e855a8 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/commands/show.py @@ -0,0 +1,181 @@ +import logging +import os +from email.parser import FeedParser +from optparse import Values +from typing import Dict, Iterator, List + +from pip._vendor import pkg_resources +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class ShowCommand(Command): + """ + Show information about one or more installed packages. + + The output is in RFC-compliant mail header format. + """ + + usage = """ + %prog [options] ...""" + ignore_require_venv = True + + def add_options(self): + # type: () -> None + self.cmd_opts.add_option( + '-f', '--files', + dest='files', + action='store_true', + default=False, + help='Show the full list of installed files for each package.') + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options, args): + # type: (Values, List[str]) -> int + if not args: + logger.warning('ERROR: Please provide a package name or names.') + return ERROR + query = args + + results = search_packages_info(query) + if not print_results( + results, list_files=options.files, verbose=options.verbose): + return ERROR + return SUCCESS + + +def search_packages_info(query): + # type: (List[str]) -> Iterator[Dict[str, str]] + """ + Gather details from installed distributions. Print distribution name, + version, location, and installed files. Installed files requires a + pip generated 'installed-files.txt' in the distributions '.egg-info' + directory. + """ + installed = {} + for p in pkg_resources.working_set: + installed[canonicalize_name(p.project_name)] = p + + query_names = [canonicalize_name(name) for name in query] + missing = sorted( + [name for name, pkg in zip(query, query_names) if pkg not in installed] + ) + if missing: + logger.warning('Package(s) not found: %s', ', '.join(missing)) + + def get_requiring_packages(package_name): + # type: (str) -> List[str] + canonical_name = canonicalize_name(package_name) + return [ + pkg.project_name for pkg in pkg_resources.working_set + if canonical_name in + [canonicalize_name(required.name) for required in + pkg.requires()] + ] + + for dist in [installed[pkg] for pkg in query_names if pkg in installed]: + package = { + 'name': dist.project_name, + 'version': dist.version, + 'location': dist.location, + 'requires': [dep.project_name for dep in dist.requires()], + 'required_by': get_requiring_packages(dist.project_name) + } + file_list = None + metadata = '' + if isinstance(dist, pkg_resources.DistInfoDistribution): + # RECORDs should be part of .dist-info metadatas + if dist.has_metadata('RECORD'): + lines = dist.get_metadata_lines('RECORD') + paths = [line.split(',')[0] for line in lines] + paths = [os.path.join(dist.location, p) for p in paths] + file_list = [os.path.relpath(p, dist.location) for p in paths] + + if dist.has_metadata('METADATA'): + metadata = dist.get_metadata('METADATA') + else: + # Otherwise use pip's log for .egg-info's + if dist.has_metadata('installed-files.txt'): + paths = dist.get_metadata_lines('installed-files.txt') + paths = [os.path.join(dist.egg_info, p) for p in paths] + file_list = [os.path.relpath(p, dist.location) for p in paths] + + if dist.has_metadata('PKG-INFO'): + metadata = dist.get_metadata('PKG-INFO') + + if dist.has_metadata('entry_points.txt'): + entry_points = dist.get_metadata_lines('entry_points.txt') + package['entry_points'] = entry_points + + if dist.has_metadata('INSTALLER'): + for line in dist.get_metadata_lines('INSTALLER'): + if line.strip(): + package['installer'] = line.strip() + break + + # @todo: Should pkg_resources.Distribution have a + # `get_pkg_info` method? + feed_parser = FeedParser() + feed_parser.feed(metadata) + pkg_info_dict = feed_parser.close() + for key in ('metadata-version', 'summary', + 'home-page', 'author', 'author-email', 'license'): + package[key] = pkg_info_dict.get(key) + + # It looks like FeedParser cannot deal with repeated headers + classifiers = [] + for line in metadata.splitlines(): + if line.startswith('Classifier: '): + classifiers.append(line[len('Classifier: '):]) + package['classifiers'] = classifiers + + if file_list: + package['files'] = sorted(file_list) + yield package + + +def print_results(distributions, list_files=False, verbose=False): + # type: (Iterator[Dict[str, str]], bool, bool) -> bool + """ + Print the information from installed distributions found. + """ + results_printed = False + for i, dist in enumerate(distributions): + results_printed = True + if i > 0: + write_output("---") + + write_output("Name: %s", dist.get('name', '')) + write_output("Version: %s", dist.get('version', '')) + write_output("Summary: %s", dist.get('summary', '')) + write_output("Home-page: %s", dist.get('home-page', '')) + write_output("Author: %s", dist.get('author', '')) + write_output("Author-email: %s", dist.get('author-email', '')) + write_output("License: %s", dist.get('license', '')) + write_output("Location: %s", dist.get('location', '')) + write_output("Requires: %s", ', '.join(dist.get('requires', []))) + write_output("Required-by: %s", ', '.join(dist.get('required_by', []))) + + if verbose: + write_output("Metadata-Version: %s", + dist.get('metadata-version', '')) + write_output("Installer: %s", dist.get('installer', '')) + write_output("Classifiers:") + for classifier in dist.get('classifiers', []): + write_output(" %s", classifier) + write_output("Entry-points:") + for entry in dist.get('entry_points', []): + write_output(" %s", entry.strip()) + if list_files: + write_output("Files:") + for line in dist.get('files', []): + write_output(" %s", line.strip()) + if "files" not in dist: + write_output("Cannot locate installed-files.txt") + return results_printed diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/uninstall.py b/venv/lib/python3.8/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 00000000..9a3c9f88 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/commands/uninstall.py @@ -0,0 +1,92 @@ +from optparse import Values +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin, warn_if_run_as_root +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import InstallationError +from pip._internal.req import parse_requirements +from pip._internal.req.constructors import ( + install_req_from_line, + install_req_from_parsed_requirement, +) +from pip._internal.utils.misc import protect_pip_from_modification_on_windows + + +class UninstallCommand(Command, SessionCommandMixin): + """ + Uninstall packages. + + pip is able to uninstall most installed packages. Known exceptions are: + + - Pure distutils packages installed with ``python setup.py install``, which + leave behind no metadata to determine what files were installed. + - Script wrappers installed by ``python setup.py develop``. + """ + + usage = """ + %prog [options] ... + %prog [options] -r ...""" + + def add_options(self): + # type: () -> None + self.cmd_opts.add_option( + '-r', '--requirement', + dest='requirements', + action='append', + default=[], + metavar='file', + help='Uninstall all the packages listed in the given requirements ' + 'file. This option can be used multiple times.', + ) + self.cmd_opts.add_option( + '-y', '--yes', + dest='yes', + action='store_true', + help="Don't ask for confirmation of uninstall deletions.") + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options, args): + # type: (Values, List[str]) -> int + session = self.get_default_session(options) + + reqs_to_uninstall = {} + for name in args: + req = install_req_from_line( + name, isolated=options.isolated_mode, + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, + options=options, + session=session): + req = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + if not reqs_to_uninstall: + raise InstallationError( + f'You must give at least one requirement to {self.name} (see ' + f'"pip help {self.name}")' + ) + + protect_pip_from_modification_on_windows( + modifying_pip="pip" in reqs_to_uninstall + ) + + for req in reqs_to_uninstall.values(): + uninstall_pathset = req.uninstall( + auto_confirm=options.yes, verbose=self.verbosity > 0, + ) + if uninstall_pathset: + uninstall_pathset.commit() + + warn_if_run_as_root() + return SUCCESS diff --git a/venv/lib/python3.8/site-packages/pip/_internal/commands/wheel.py b/venv/lib/python3.8/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 00000000..ff47dbac --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/commands/wheel.py @@ -0,0 +1,178 @@ +import logging +import os +import shutil +from optparse import Values +from typing import List + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import get_requirement_tracker +from pip._internal.utils.misc import ensure_dir, normalize_path +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.wheel_builder import build, should_build_for_wheel_command + +logger = logging.getLogger(__name__) + + +class WheelCommand(RequirementCommand): + """ + Build Wheel archives for your requirements and dependencies. + + Wheel is a built-package format, and offers the advantage of not + recompiling your software during every install. For more details, see the + wheel docs: https://wheel.readthedocs.io/en/latest/ + + Requirements: setuptools>=0.8, and wheel. + + 'pip wheel' uses the bdist_wheel setuptools extension from the wheel + package to build individual wheels. + + """ + + usage = """ + %prog [options] ... + %prog [options] -r ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self): + # type: () -> None + + self.cmd_opts.add_option( + '-w', '--wheel-dir', + dest='wheel_dir', + metavar='dir', + default=os.curdir, + help=("Build wheels into , where the default is the " + "current working directory."), + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.build_dir()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + + self.cmd_opts.add_option( + '--no-verify', + dest='no_verify', + action='store_true', + default=False, + help="Don't verify if built wheel is valid.", + ) + + self.cmd_opts.add_option(cmdoptions.build_options()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + '--pre', + action='store_true', + default=False, + help=("Include pre-release and development versions. By default, " + "pip only finds stable versions."), + ) + + self.cmd_opts.add_option(cmdoptions.require_hashes()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options, args): + # type: (Values, List[str]) -> int + cmdoptions.check_install_build_global(options) + + session = self.get_default_session(options) + + finder = self._build_package_finder(options, session) + wheel_cache = WheelCache(options.cache_dir, options.format_control) + + options.wheel_dir = normalize_path(options.wheel_dir) + ensure_dir(options.wheel_dir) + + req_tracker = self.enter_context(get_requirement_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="wheel", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + req_tracker=req_tracker, + session=session, + finder=finder, + download_dir=options.wheel_dir, + use_user_site=False, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + ignore_requires_python=options.ignore_requires_python, + use_pep517=options.use_pep517, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve( + reqs, check_supported_wheels=True + ) + + reqs_to_build = [] # type: List[InstallRequirement] + for req in requirement_set.requirements.values(): + if req.is_wheel: + preparer.save_linked_requirement(req) + elif should_build_for_wheel_command(req): + reqs_to_build.append(req) + + # build wheels + build_successes, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=(not options.no_verify), + build_options=options.build_options or [], + global_options=options.global_options or [], + ) + for req in build_successes: + assert req.link and req.link.is_wheel + assert req.local_file_path + # copy from cache to target directory + try: + shutil.copy(req.local_file_path, options.wheel_dir) + except OSError as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, e, + ) + build_failures.append(req) + if len(build_failures) != 0: + raise CommandError( + "Failed to build one or more wheels" + ) + + return SUCCESS diff --git a/venv/lib/python3.8/site-packages/pip/_internal/configuration.py b/venv/lib/python3.8/site-packages/pip/_internal/configuration.py new file mode 100644 index 00000000..a4698ec1 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/configuration.py @@ -0,0 +1,403 @@ +"""Configuration management setup + +Some terminology: +- name + As written in config files. +- value + Value associated with a name +- key + Name combined with it's section (section.name) +- variant + A single word describing where the configuration key-value pair came from +""" + +import configparser +import locale +import logging +import os +import sys +from typing import Any, Dict, Iterable, List, NewType, Optional, Tuple + +from pip._internal.exceptions import ( + ConfigurationError, + ConfigurationFileCouldNotBeLoaded, +) +from pip._internal.utils import appdirs +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.misc import ensure_dir, enum + +RawConfigParser = configparser.RawConfigParser # Shorthand +Kind = NewType("Kind", str) + +CONFIG_BASENAME = 'pip.ini' if WINDOWS else 'pip.conf' +ENV_NAMES_IGNORED = "version", "help" + +# The kinds of configurations there are. +kinds = enum( + USER="user", # User Specific + GLOBAL="global", # System Wide + SITE="site", # [Virtual] Environment Specific + ENV="env", # from PIP_CONFIG_FILE + ENV_VAR="env-var", # from Environment Variables +) +OVERRIDE_ORDER = kinds.GLOBAL, kinds.USER, kinds.SITE, kinds.ENV, kinds.ENV_VAR +VALID_LOAD_ONLY = kinds.USER, kinds.GLOBAL, kinds.SITE + +logger = logging.getLogger(__name__) + + +# NOTE: Maybe use the optionx attribute to normalize keynames. +def _normalize_name(name): + # type: (str) -> str + """Make a name consistent regardless of source (environment or file) + """ + name = name.lower().replace('_', '-') + if name.startswith('--'): + name = name[2:] # only prefer long opts + return name + + +def _disassemble_key(name): + # type: (str) -> List[str] + if "." not in name: + error_message = ( + "Key does not contain dot separated section and key. " + "Perhaps you wanted to use 'global.{}' instead?" + ).format(name) + raise ConfigurationError(error_message) + return name.split(".", 1) + + +def get_configuration_files(): + # type: () -> Dict[Kind, List[str]] + global_config_files = [ + os.path.join(path, CONFIG_BASENAME) + for path in appdirs.site_config_dirs('pip') + ] + + site_config_file = os.path.join(sys.prefix, CONFIG_BASENAME) + legacy_config_file = os.path.join( + os.path.expanduser('~'), + 'pip' if WINDOWS else '.pip', + CONFIG_BASENAME, + ) + new_config_file = os.path.join( + appdirs.user_config_dir("pip"), CONFIG_BASENAME + ) + return { + kinds.GLOBAL: global_config_files, + kinds.SITE: [site_config_file], + kinds.USER: [legacy_config_file, new_config_file], + } + + +class Configuration: + """Handles management of configuration. + + Provides an interface to accessing and managing configuration files. + + This class converts provides an API that takes "section.key-name" style + keys and stores the value associated with it as "key-name" under the + section "section". + + This allows for a clean interface wherein the both the section and the + key-name are preserved in an easy to manage form in the configuration files + and the data stored is also nice. + """ + + def __init__(self, isolated, load_only=None): + # type: (bool, Optional[Kind]) -> None + super().__init__() + + if load_only is not None and load_only not in VALID_LOAD_ONLY: + raise ConfigurationError( + "Got invalid value for load_only - should be one of {}".format( + ", ".join(map(repr, VALID_LOAD_ONLY)) + ) + ) + self.isolated = isolated + self.load_only = load_only + + # Because we keep track of where we got the data from + self._parsers = { + variant: [] for variant in OVERRIDE_ORDER + } # type: Dict[Kind, List[Tuple[str, RawConfigParser]]] + self._config = { + variant: {} for variant in OVERRIDE_ORDER + } # type: Dict[Kind, Dict[str, Any]] + self._modified_parsers = [] # type: List[Tuple[str, RawConfigParser]] + + def load(self): + # type: () -> None + """Loads configuration from configuration files and environment + """ + self._load_config_files() + if not self.isolated: + self._load_environment_vars() + + def get_file_to_edit(self): + # type: () -> Optional[str] + """Returns the file with highest priority in configuration + """ + assert self.load_only is not None, \ + "Need to be specified a file to be editing" + + try: + return self._get_parser_to_modify()[0] + except IndexError: + return None + + def items(self): + # type: () -> Iterable[Tuple[str, Any]] + """Returns key-value pairs like dict.items() representing the loaded + configuration + """ + return self._dictionary.items() + + def get_value(self, key): + # type: (str) -> Any + """Get a value from the configuration. + """ + try: + return self._dictionary[key] + except KeyError: + raise ConfigurationError(f"No such key - {key}") + + def set_value(self, key, value): + # type: (str, Any) -> None + """Modify a value in the configuration. + """ + self._ensure_have_load_only() + + assert self.load_only + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + + # Modify the parser and the configuration + if not parser.has_section(section): + parser.add_section(section) + parser.set(section, name, value) + + self._config[self.load_only][key] = value + self._mark_as_modified(fname, parser) + + def unset_value(self, key): + # type: (str) -> None + """Unset a value in the configuration.""" + self._ensure_have_load_only() + + assert self.load_only + if key not in self._config[self.load_only]: + raise ConfigurationError(f"No such key - {key}") + + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + if not (parser.has_section(section) + and parser.remove_option(section, name)): + # The option was not removed. + raise ConfigurationError( + "Fatal Internal error [id=1]. Please report as a bug." + ) + + # The section may be empty after the option was removed. + if not parser.items(section): + parser.remove_section(section) + self._mark_as_modified(fname, parser) + + del self._config[self.load_only][key] + + def save(self): + # type: () -> None + """Save the current in-memory state. + """ + self._ensure_have_load_only() + + for fname, parser in self._modified_parsers: + logger.info("Writing to %s", fname) + + # Ensure directory exists. + ensure_dir(os.path.dirname(fname)) + + with open(fname, "w") as f: + parser.write(f) + + # + # Private routines + # + + def _ensure_have_load_only(self): + # type: () -> None + if self.load_only is None: + raise ConfigurationError("Needed a specific file to be modifying.") + logger.debug("Will be working with %s variant only", self.load_only) + + @property + def _dictionary(self): + # type: () -> Dict[str, Any] + """A dictionary representing the loaded configuration. + """ + # NOTE: Dictionaries are not populated if not loaded. So, conditionals + # are not needed here. + retval = {} + + for variant in OVERRIDE_ORDER: + retval.update(self._config[variant]) + + return retval + + def _load_config_files(self): + # type: () -> None + """Loads configuration from configuration files + """ + config_files = dict(self.iter_config_files()) + if config_files[kinds.ENV][0:1] == [os.devnull]: + logger.debug( + "Skipping loading configuration files due to " + "environment's PIP_CONFIG_FILE being os.devnull" + ) + return + + for variant, files in config_files.items(): + for fname in files: + # If there's specific variant set in `load_only`, load only + # that variant, not the others. + if self.load_only is not None and variant != self.load_only: + logger.debug( + "Skipping file '%s' (variant: %s)", fname, variant + ) + continue + + parser = self._load_file(variant, fname) + + # Keeping track of the parsers used + self._parsers[variant].append((fname, parser)) + + def _load_file(self, variant, fname): + # type: (Kind, str) -> RawConfigParser + logger.debug("For variant '%s', will try loading '%s'", variant, fname) + parser = self._construct_parser(fname) + + for section in parser.sections(): + items = parser.items(section) + self._config[variant].update(self._normalized_keys(section, items)) + + return parser + + def _construct_parser(self, fname): + # type: (str) -> RawConfigParser + parser = configparser.RawConfigParser() + # If there is no such file, don't bother reading it but create the + # parser anyway, to hold the data. + # Doing this is useful when modifying and saving files, where we don't + # need to construct a parser. + if os.path.exists(fname): + try: + parser.read(fname) + except UnicodeDecodeError: + # See https://github.com/pypa/pip/issues/4963 + raise ConfigurationFileCouldNotBeLoaded( + reason="contains invalid {} characters".format( + locale.getpreferredencoding(False) + ), + fname=fname, + ) + except configparser.Error as error: + # See https://github.com/pypa/pip/issues/4893 + raise ConfigurationFileCouldNotBeLoaded(error=error) + return parser + + def _load_environment_vars(self): + # type: () -> None + """Loads configuration from environment variables + """ + self._config[kinds.ENV_VAR].update( + self._normalized_keys(":env:", self.get_environ_vars()) + ) + + def _normalized_keys(self, section, items): + # type: (str, Iterable[Tuple[str, Any]]) -> Dict[str, Any] + """Normalizes items to construct a dictionary with normalized keys. + + This routine is where the names become keys and are made the same + regardless of source - configuration files or environment. + """ + normalized = {} + for name, val in items: + key = section + "." + _normalize_name(name) + normalized[key] = val + return normalized + + def get_environ_vars(self): + # type: () -> Iterable[Tuple[str, str]] + """Returns a generator with all environmental vars with prefix PIP_""" + for key, val in os.environ.items(): + if key.startswith("PIP_"): + name = key[4:].lower() + if name not in ENV_NAMES_IGNORED: + yield name, val + + # XXX: This is patched in the tests. + def iter_config_files(self): + # type: () -> Iterable[Tuple[Kind, List[str]]] + """Yields variant and configuration files associated with it. + + This should be treated like items of a dictionary. + """ + # SMELL: Move the conditions out of this function + + # environment variables have the lowest priority + config_file = os.environ.get('PIP_CONFIG_FILE', None) + if config_file is not None: + yield kinds.ENV, [config_file] + else: + yield kinds.ENV, [] + + config_files = get_configuration_files() + + # at the base we have any global configuration + yield kinds.GLOBAL, config_files[kinds.GLOBAL] + + # per-user configuration next + should_load_user_config = not self.isolated and not ( + config_file and os.path.exists(config_file) + ) + if should_load_user_config: + # The legacy config file is overridden by the new config file + yield kinds.USER, config_files[kinds.USER] + + # finally virtualenv configuration first trumping others + yield kinds.SITE, config_files[kinds.SITE] + + def get_values_in_config(self, variant): + # type: (Kind) -> Dict[str, Any] + """Get values present in a config file""" + return self._config[variant] + + def _get_parser_to_modify(self): + # type: () -> Tuple[str, RawConfigParser] + # Determine which parser to modify + assert self.load_only + parsers = self._parsers[self.load_only] + if not parsers: + # This should not happen if everything works correctly. + raise ConfigurationError( + "Fatal Internal error [id=2]. Please report as a bug." + ) + + # Use the highest priority parser. + return parsers[-1] + + # XXX: This is patched in the tests. + def _mark_as_modified(self, fname, parser): + # type: (str, RawConfigParser) -> None + file_parser_tuple = (fname, parser) + if file_parser_tuple not in self._modified_parsers: + self._modified_parsers.append(file_parser_tuple) + + def __repr__(self): + # type: () -> str + return f"{self.__class__.__name__}({self._dictionary!r})" diff --git a/venv/lib/python3.8/site-packages/pip/_internal/distributions/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 00000000..a222f248 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/distributions/__init__.py @@ -0,0 +1,20 @@ +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.distributions.sdist import SourceDistribution +from pip._internal.distributions.wheel import WheelDistribution +from pip._internal.req.req_install import InstallRequirement + + +def make_distribution_for_install_requirement(install_req): + # type: (InstallRequirement) -> AbstractDistribution + """Returns a Distribution for the given InstallRequirement""" + # Editable requirements will always be source distributions. They use the + # legacy logic until we create a modern standard for them. + if install_req.editable: + return SourceDistribution(install_req) + + # If it's a wheel, it's a WheelDistribution + if install_req.is_wheel: + return WheelDistribution(install_req) + + # Otherwise, a SourceDistribution + return SourceDistribution(install_req) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0dcbecdf25d6e0e102228540adeef5a1dc902407 GIT binary patch literal 732 zcmaJ;Jx{|h5Vf182_HoQF@h8%mJCfsK&lW323QzcA*3uJZ4NLvX=*zl5E~$V3x6pq z6Mun;vr8d>grmFMhkft)`MBMlCAhrjr_)o5kXN15R|AtBG}%R$l9Y0i(TGwVH+Unn zBFn@UZ)SF6o4CnanG-n}+iB~OL~iQziSNGQ1me?bd3PX{NQP>k;hzmk#YQ>Sm-?ep z4B=OG@#F%4|0*sW=29h`_h4Ky0U6|KNcH&7rDM%}4^6J4yC;`KEGT+U9%x@@4Y8uE zNj9ze^lqaEsua2O60eTvosER2F2Fly*N}UE!To0CLdsM!;2=;&Qn^gVH=4OSP00%zF%3l{TFvQORBksLr6q@L{pQj|H&4xHeE`b( B(QyC( literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/base.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/base.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8255f26abdb032890286a80de32791bc38a7486f GIT binary patch literal 1788 zcmaJ?L5~|X6t**yWRfObDCGcB!9qwh5=o@?0;obPEubD)Di$ttG0xaYX6qTx+MaH= z>WMDe6aN8@`H>J=Z4<6;t+k95z3h2WpB6}(p>f5}O%EH2}$EEW^ z>mSu|om*9?(r4&sdqiu+Jpe(GluDAeBu%4pGN-a7qq8K9Rr{zTW7$30#=5WgJ3*t2P+K%shh{C@-Y&ViJ}!AjIWB z89(HqyA6{kugD+tPeRE{`jYULB!}dJ9*m-s@d0d~zPNK0(I*>R8O3w!fiiv%;d6))fuf%x0eYSZGz)z^i zb;#{oaA*_-oK0sQ9-U@yR_9vs+!-y9jc*2Ur?RRNR_(y%8-9Geh5z1__^&k|^^qLd z#z2lf=Y^5AMtQ*baV_+Er^~rC8Rwy}O(bSnb5pEeEw|Y=sbl3A{=k Tta9}w7Cg{2p@SCu(LwYdI>`B# literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c3e2c865a5eecb024df64828cbb2b4ca1980318e GIT binary patch literal 1133 zcmaJ<&2H2%5O#hxn=ZS8Lpg8&S={!}>;VoSAq1iV^->UpOD@J6&+fW7PHH>AR@^9p zci;*7O1X046*w`@wpEI%PGo278Qb4{-@KnpMg)!i`2OKnNXT!$=v$17XE^LGPJ)O) zkuu1G!26*J%P5aJKT>fy$OoMttE3#}!+^XZVjz+eA`%#Ui}F+q56CqAgEx_B(5A0z zCo9br`r}<`ossj#@8Ej-`5f20aR2R3-tgihU&2eN1(?F$)HkePgO;KLBo741LlNYW z2t{;4@>s-TfPX}VNQUk0J#8IV3Pk^%dH|KATWDP@o3Er_mxm?sapXxaMVbHaj6%TDL1hd2Dvi8#k#w04xnjKm38AlWZhN~ z^s4i|A1`p&6sND`kQ@dF zw>(5I1__TJUdeHG{RKtj51*O$FADb!DaZjaLv*^jrjhYI+$M{zDcYO!Mk>LityD*J zm$aG2KJV^EAh?8>mEgGGj&EbiIrIltL%;U?{xoS*#xyU1v3A5*S&2q@f6UlX!_`@2 z$e5@K#>~Xm;R);E^l}*w)+9J>;jrFGgE&d!Zf}3O)h2FTOT9Fn===_9m$6TvMP;%} z${5dIOS|~Fwpm{-o6WfeLu&?bR6Or GjH7??IXe#k literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a36e12241b11503f46ee93f36c475cf68a8afa87 GIT binary patch literal 3384 zcmbtXOOG4J5$^684u@RsQyWKi{Afst69N*~3ZldbWI;}>7y*)n;&mP%9E@hCo7|!1 zwcSHWOOZKv6-YS*4staDkVpLkU-C!#>XZLM09&c*Ay=d<7y&%Q^z@^;x~lrC2mi3X z-X!qwM}ND0ZIh7Caj^WjFt`D){wp+s2%3;Cepy0O)@7;FbtsOV#7%46n(e!Zm)5&= z+pi^l+UPcH-%Fb5T6fL%>q#qJ@2=avpKPR?-Azg)nQqDL8SU=8PeemB9}>}&jZ>$4 zPS69=Ui$)MAp31*oC8^!+K0m;k!@;P@5Q=Q@!_zH^9;sYzZ}MixS8FJRi33XD`9T; z-9w-Wqw+c0?cZd&43i|py*HK06%eoA3Zpw=U;aAIgv5#OsbQ8$72J!H#&Nhvf>Wf_XF3>OQ$ zsMOTF%=w|TjQSGv3`;34aS6&w#fLi1`ux_-Tm0&kpK)MWO~4vYWIv2f_-!rAVbLj0 zxa{|XIP2xNJC<2Q!2*j1`)Hb9!K)E;V=^F9IwJ?<3ALB1d(tAP_ z;FA3J=3bc=dqrGa9%d-F6qoNENts+e?hneJ7jO4)Z4XW_rOLu&Z`nwCPva0IG_NE7 z;!ZyRt6FPnd)fj$FQITKC1Im0U%!veH}8%d+&O>Hb8u|+{V{YF`cm5)uzYvSCeGMV z-yf5yGo~|ItxVk+LBBX4Y7MrvYpMkwb1un45fmqd$_FwkgECJO(;R9U6taM;F9nXzn{4#f3yk=UOd@N2;DnD4FG2&<2M#!IsOlPU(%H7n`n6sVOe)3i_bsHpwJnK-38c24QX5VwG> zw?FD0=Ivz5_r=ny2h77GbVpI{}G#@@bpvAbj&^_|91We9&!vg00G(PB_3-Y zXHlLO5d97lS)IObf!lTr>%3(eaTVvKFy6fof`oV;+l^}&`|cO&`V~AIg>aeobad+l z2!7tvI@gjs3KM<36R0o-ms}{WpRJs+2Z`2}jAphL#0x8#wIv(1Yv8T9O2e`W1MVP? zGvn!8p$>JB5}f)C_^k4Q1GHJMHU^j-v%XoEnBTx%ZQgpq%-Yh)HZUx?`quNBU^dgc z&=7|`Wv)wI%D}_Due>ikfAr3`vXZIiccn_glhJGQe2h8g>xdg&nCGFrt5@FUdRP?J z41CF)di0au#oFeqYX9;YpoE`A&<;jWi{T&W&ggcPLTzm2A_sJ5dC7Glqquj%!?`er zn0Yctj$tM^Bpe=v8PfHjgy6V{snmwyGS3rjftU|VjwjUYrqRXsWm%$nD}rGL##qd4 zQX8Ge^g2Im#pjHdAsCX;8_R~Oq*@_t?^Jl%Inx(Xp7m61Hr~}*s4vzI`^GrB_JgQmd1EV-tS9g>i0sGfv)NTp5UZmVO*$El)4CG z)xgP(DtiTUWzDu89zu$X0Hi@xb(vQ&>n?;30MkJwsx?*HuaJwGTeY#dgly|+1p?#E znba2tfB?t30{Rb;921*DT)zpg-iL;;jUAu1Sd;pcLCpfcr>^5u@2T%VQUl;4^xdyq za0145zI1)0gdOmEmF-XuXrApHUHm^>W4~QDeh_3~Duci@gCNbtFu{H+2#$wgGGD0& zfykpEP}?A;dKnuOeJPe)wE%W*+A^ZhMbmtj_DvUJ%K) literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..99cd5223aa0de3c5835da753e25fabe21dfb5558 GIT binary patch literal 1485 zcmaJ>PmkO*6u0wdGCRz&E$RUdAgkgs5}V-wsFe_E1uYk}Ds9oCT#P67%x3GvS=*t^ zs9b0fC&YJv6CZ#tlPf2_0vCAC*?wGA`W`2lR7QZpeK4#XGIqDR8Q-@Vvmx~iJZvn1(BIb zpU1^aP9KrQ-e2IAENGt$mGib*b-pqU%x~OX!CaL7rS<&>qI@DY>VDNo zWx?>>_Q{4@JS4x7N8$T5kug-B?0)^i2pg#snB%6GN_XhQ0U#27s|Ej;TSz*7150yI|XZPjcT z0D{3ru8qC)Vbxg&;M9QnfJuNDXfP96o2S61k3KkBO!^oM`vYxCp*g0cM{m%GMr1-J|LopBewlaqt6h~b zx;Y=HBWD6f@J>tU?t&hL+7_|hhoye94p*r^Sap?_ymCedS_Y#*U~2u_17+3KD|X2V zFmZ?^iFV8XCjH8@*sv+**bL758RxZ;9rTR%bI#8?q0e_R&ZQ|ix7Q(zy@3LoG!mGo z%|PJIaM;r+P15PLuy(X~tHfqx;(Q8l5sfc^C20g_L!n+}UZ Jp3Esc@xNeEqy7K@ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/distributions/base.py b/venv/lib/python3.8/site-packages/pip/_internal/distributions/base.py new file mode 100644 index 00000000..78ee91e7 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/distributions/base.py @@ -0,0 +1,39 @@ +import abc +from typing import Optional + +from pip._vendor.pkg_resources import Distribution + +from pip._internal.index.package_finder import PackageFinder +from pip._internal.req import InstallRequirement + + +class AbstractDistribution(metaclass=abc.ABCMeta): + """A base class for handling installable artifacts. + + The requirements for anything installable are as follows: + + - we must be able to determine the requirement name + (or we can't correctly handle the non-upgrade case). + + - for packages with setup requirements, we must also be able + to determine their requirements without installing additional + packages (for the same reason as run-time dependencies) + + - we must be able to create a Distribution object exposing the + above metadata. + """ + + def __init__(self, req): + # type: (InstallRequirement) -> None + super().__init__() + self.req = req + + @abc.abstractmethod + def get_pkg_resources_distribution(self): + # type: () -> Optional[Distribution] + raise NotImplementedError() + + @abc.abstractmethod + def prepare_distribution_metadata(self, finder, build_isolation): + # type: (PackageFinder, bool) -> None + raise NotImplementedError() diff --git a/venv/lib/python3.8/site-packages/pip/_internal/distributions/installed.py b/venv/lib/python3.8/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 00000000..b19dfacb --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/distributions/installed.py @@ -0,0 +1,22 @@ +from typing import Optional + +from pip._vendor.pkg_resources import Distribution + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder + + +class InstalledDistribution(AbstractDistribution): + """Represents an installed package. + + This does not need any preparation as the required information has already + been computed. + """ + + def get_pkg_resources_distribution(self): + # type: () -> Optional[Distribution] + return self.req.satisfied_by + + def prepare_distribution_metadata(self, finder, build_isolation): + # type: (PackageFinder, bool) -> None + pass diff --git a/venv/lib/python3.8/site-packages/pip/_internal/distributions/sdist.py b/venv/lib/python3.8/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 00000000..c873a9f1 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/distributions/sdist.py @@ -0,0 +1,95 @@ +import logging +from typing import Set, Tuple + +from pip._vendor.pkg_resources import Distribution + +from pip._internal.build_env import BuildEnvironment +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.exceptions import InstallationError +from pip._internal.index.package_finder import PackageFinder +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +class SourceDistribution(AbstractDistribution): + """Represents a source distribution. + + The preparation step for these needs metadata for the packages to be + generated, either using PEP 517 or using the legacy `setup.py egg_info`. + """ + + def get_pkg_resources_distribution(self): + # type: () -> Distribution + return self.req.get_dist() + + def prepare_distribution_metadata(self, finder, build_isolation): + # type: (PackageFinder, bool) -> None + # Load pyproject.toml, to determine whether PEP 517 is to be used + self.req.load_pyproject_toml() + + # Set up the build isolation, if this requirement should be isolated + should_isolate = self.req.use_pep517 and build_isolation + if should_isolate: + self._setup_isolation(finder) + + self.req.prepare_metadata() + + def _setup_isolation(self, finder): + # type: (PackageFinder) -> None + def _raise_conflicts(conflicting_with, conflicting_reqs): + # type: (str, Set[Tuple[str, str]]) -> None + format_string = ( + "Some build dependencies for {requirement} " + "conflict with {conflicting_with}: {description}." + ) + error_message = format_string.format( + requirement=self.req, + conflicting_with=conflicting_with, + description=", ".join( + f"{installed} is incompatible with {wanted}" + for installed, wanted in sorted(conflicting) + ), + ) + raise InstallationError(error_message) + + # Isolate in a BuildEnvironment and install the build-time + # requirements. + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + + self.req.build_env = BuildEnvironment() + self.req.build_env.install_requirements( + finder, pyproject_requires, "overlay", "Installing build dependencies" + ) + conflicting, missing = self.req.build_env.check_requirements( + self.req.requirements_to_check + ) + if conflicting: + _raise_conflicts("PEP 517/518 supported requirements", conflicting) + if missing: + logger.warning( + "Missing build requirements in pyproject.toml for %s.", + self.req, + ) + logger.warning( + "The project does not specify a build backend, and " + "pip cannot fall back to setuptools without %s.", + " and ".join(map(repr, sorted(missing))), + ) + # Install any extra build dependencies that the backend requests. + # This must be done in a second pass, as the pyproject.toml + # dependencies must be installed before we can call the backend. + with self.req.build_env: + runner = runner_with_spinner_message("Getting requirements to build wheel") + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + reqs = backend.get_requires_for_build_wheel() + + conflicting, missing = self.req.build_env.check_requirements(reqs) + if conflicting: + _raise_conflicts("the backend dependencies", conflicting) + self.req.build_env.install_requirements( + finder, missing, "normal", "Installing backend dependencies" + ) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/distributions/wheel.py b/venv/lib/python3.8/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 00000000..d0384797 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/distributions/wheel.py @@ -0,0 +1,34 @@ +from zipfile import ZipFile + +from pip._vendor.pkg_resources import Distribution + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.utils.wheel import pkg_resources_distribution_for_wheel + + +class WheelDistribution(AbstractDistribution): + """Represents a wheel distribution. + + This does not need any preparation as wheels can be directly unpacked. + """ + + def get_pkg_resources_distribution(self): + # type: () -> Distribution + """Loads the metadata from the wheel file into memory and returns a + Distribution that uses it, not relying on the wheel file or + requirement. + """ + # Set as part of preparation during download. + assert self.req.local_file_path + # Wheels are never unnamed. + assert self.req.name + + with ZipFile(self.req.local_file_path, allowZip64=True) as z: + return pkg_resources_distribution_for_wheel( + z, self.req.name, self.req.local_file_path + ) + + def prepare_distribution_metadata(self, finder, build_isolation): + # type: (PackageFinder, bool) -> None + pass diff --git a/venv/lib/python3.8/site-packages/pip/_internal/exceptions.py b/venv/lib/python3.8/site-packages/pip/_internal/exceptions.py new file mode 100644 index 00000000..8aacf812 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,397 @@ +"""Exceptions used throughout package""" + +import configparser +from itertools import chain, groupby, repeat +from typing import TYPE_CHECKING, Dict, List, Optional + +from pip._vendor.pkg_resources import Distribution +from pip._vendor.requests.models import Request, Response + +if TYPE_CHECKING: + from hashlib import _Hash + + from pip._internal.req.req_install import InstallRequirement + + +class PipError(Exception): + """Base pip exception""" + + +class ConfigurationError(PipError): + """General exception in configuration""" + + +class InstallationError(PipError): + """General exception during installation""" + + +class UninstallationError(PipError): + """General exception during uninstallation""" + + +class NoneMetadataError(PipError): + """ + Raised when accessing "METADATA" or "PKG-INFO" metadata for a + pip._vendor.pkg_resources.Distribution object and + `dist.has_metadata('METADATA')` returns True but + `dist.get_metadata('METADATA')` returns None (and similarly for + "PKG-INFO"). + """ + + def __init__(self, dist, metadata_name): + # type: (Distribution, str) -> None + """ + :param dist: A Distribution object. + :param metadata_name: The name of the metadata being accessed + (can be "METADATA" or "PKG-INFO"). + """ + self.dist = dist + self.metadata_name = metadata_name + + def __str__(self): + # type: () -> str + # Use `dist` in the error message because its stringification + # includes more information, like the version and location. + return ( + 'None {} metadata found for distribution: {}'.format( + self.metadata_name, self.dist, + ) + ) + + +class UserInstallationInvalid(InstallationError): + """A --user install is requested on an environment without user site.""" + + def __str__(self): + # type: () -> str + return "User base directory is not specified" + + +class InvalidSchemeCombination(InstallationError): + def __str__(self): + # type: () -> str + before = ", ".join(str(a) for a in self.args[:-1]) + return f"Cannot set {before} and {self.args[-1]} together" + + +class DistributionNotFound(InstallationError): + """Raised when a distribution cannot be found to satisfy a requirement""" + + +class RequirementsFileParseError(InstallationError): + """Raised when a general error occurs parsing a requirements file line.""" + + +class BestVersionAlreadyInstalled(PipError): + """Raised when the most up-to-date version of a package is already + installed.""" + + +class BadCommand(PipError): + """Raised when virtualenv or a command is not found""" + + +class CommandError(PipError): + """Raised when there is an error in command-line arguments""" + + +class PreviousBuildDirError(PipError): + """Raised when there's a previous conflicting build directory""" + + +class NetworkConnectionError(PipError): + """HTTP connection error""" + + def __init__(self, error_msg, response=None, request=None): + # type: (str, Response, Request) -> None + """ + Initialize NetworkConnectionError with `request` and `response` + objects. + """ + self.response = response + self.request = request + self.error_msg = error_msg + if (self.response is not None and not self.request and + hasattr(response, 'request')): + self.request = self.response.request + super().__init__(error_msg, response, request) + + def __str__(self): + # type: () -> str + return str(self.error_msg) + + +class InvalidWheelFilename(InstallationError): + """Invalid wheel filename.""" + + +class UnsupportedWheel(InstallationError): + """Unsupported wheel.""" + + +class MetadataInconsistent(InstallationError): + """Built metadata contains inconsistent information. + + This is raised when the metadata contains values (e.g. name and version) + that do not match the information previously obtained from sdist filename + or user-supplied ``#egg=`` value. + """ + def __init__(self, ireq, field, f_val, m_val): + # type: (InstallRequirement, str, str, str) -> None + self.ireq = ireq + self.field = field + self.f_val = f_val + self.m_val = m_val + + def __str__(self): + # type: () -> str + template = ( + "Requested {} has inconsistent {}: " + "filename has {!r}, but metadata has {!r}" + ) + return template.format(self.ireq, self.field, self.f_val, self.m_val) + + +class InstallationSubprocessError(InstallationError): + """A subprocess call failed during installation.""" + def __init__(self, returncode, description): + # type: (int, str) -> None + self.returncode = returncode + self.description = description + + def __str__(self): + # type: () -> str + return ( + "Command errored out with exit status {}: {} " + "Check the logs for full command output." + ).format(self.returncode, self.description) + + +class HashErrors(InstallationError): + """Multiple HashError instances rolled into one for reporting""" + + def __init__(self): + # type: () -> None + self.errors = [] # type: List[HashError] + + def append(self, error): + # type: (HashError) -> None + self.errors.append(error) + + def __str__(self): + # type: () -> str + lines = [] + self.errors.sort(key=lambda e: e.order) + for cls, errors_of_cls in groupby(self.errors, lambda e: e.__class__): + lines.append(cls.head) + lines.extend(e.body() for e in errors_of_cls) + if lines: + return '\n'.join(lines) + return '' + + def __nonzero__(self): + # type: () -> bool + return bool(self.errors) + + def __bool__(self): + # type: () -> bool + return self.__nonzero__() + + +class HashError(InstallationError): + """ + A failure to verify a package against known-good hashes + + :cvar order: An int sorting hash exception classes by difficulty of + recovery (lower being harder), so the user doesn't bother fretting + about unpinned packages when he has deeper issues, like VCS + dependencies, to deal with. Also keeps error reports in a + deterministic order. + :cvar head: A section heading for display above potentially many + exceptions of this kind + :ivar req: The InstallRequirement that triggered this error. This is + pasted on after the exception is instantiated, because it's not + typically available earlier. + + """ + req = None # type: Optional[InstallRequirement] + head = '' + order = -1 # type: int + + def body(self): + # type: () -> str + """Return a summary of me for display under the heading. + + This default implementation simply prints a description of the + triggering requirement. + + :param req: The InstallRequirement that provoked this error, with + its link already populated by the resolver's _populate_link(). + + """ + return f' {self._requirement_name()}' + + def __str__(self): + # type: () -> str + return f'{self.head}\n{self.body()}' + + def _requirement_name(self): + # type: () -> str + """Return a description of the requirement that triggered me. + + This default implementation returns long description of the req, with + line numbers + + """ + return str(self.req) if self.req else 'unknown package' + + +class VcsHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 0 + head = ("Can't verify hashes for these requirements because we don't " + "have a way to hash version control repositories:") + + +class DirectoryUrlHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 1 + head = ("Can't verify hashes for these file:// requirements because they " + "point to directories:") + + +class HashMissing(HashError): + """A hash was needed for a requirement but is absent.""" + + order = 2 + head = ('Hashes are required in --require-hashes mode, but they are ' + 'missing from some requirements. Here is a list of those ' + 'requirements along with the hashes their downloaded archives ' + 'actually had. Add lines like these to your requirements files to ' + 'prevent tampering. (If you did not enable --require-hashes ' + 'manually, note that it turns on automatically when any package ' + 'has a hash.)') + + def __init__(self, gotten_hash): + # type: (str) -> None + """ + :param gotten_hash: The hash of the (possibly malicious) archive we + just downloaded + """ + self.gotten_hash = gotten_hash + + def body(self): + # type: () -> str + # Dodge circular import. + from pip._internal.utils.hashes import FAVORITE_HASH + + package = None + if self.req: + # In the case of URL-based requirements, display the original URL + # seen in the requirements file rather than the package name, + # so the output can be directly copied into the requirements file. + package = (self.req.original_link if self.req.original_link + # In case someone feeds something downright stupid + # to InstallRequirement's constructor. + else getattr(self.req, 'req', None)) + return ' {} --hash={}:{}'.format(package or 'unknown package', + FAVORITE_HASH, + self.gotten_hash) + + +class HashUnpinned(HashError): + """A requirement had a hash specified but was not pinned to a specific + version.""" + + order = 3 + head = ('In --require-hashes mode, all requirements must have their ' + 'versions pinned with ==. These do not:') + + +class HashMismatch(HashError): + """ + Distribution file hash values don't match. + + :ivar package_name: The name of the package that triggered the hash + mismatch. Feel free to write to this after the exception is raise to + improve its error message. + + """ + order = 4 + head = ('THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS ' + 'FILE. If you have updated the package versions, please update ' + 'the hashes. Otherwise, examine the package contents carefully; ' + 'someone may have tampered with them.') + + def __init__(self, allowed, gots): + # type: (Dict[str, List[str]], Dict[str, _Hash]) -> None + """ + :param allowed: A dict of algorithm names pointing to lists of allowed + hex digests + :param gots: A dict of algorithm names pointing to hashes we + actually got from the files under suspicion + """ + self.allowed = allowed + self.gots = gots + + def body(self): + # type: () -> str + return ' {}:\n{}'.format(self._requirement_name(), + self._hash_comparison()) + + def _hash_comparison(self): + # type: () -> str + """ + Return a comparison of actual and expected hash values. + + Example:: + + Expected sha256 abcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcde + or 123451234512345123451234512345123451234512345 + Got bcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdef + + """ + def hash_then_or(hash_name): + # type: (str) -> chain[str] + # For now, all the decent hashes have 6-char names, so we can get + # away with hard-coding space literals. + return chain([hash_name], repeat(' or')) + + lines = [] # type: List[str] + for hash_name, expecteds in self.allowed.items(): + prefix = hash_then_or(hash_name) + lines.extend((' Expected {} {}'.format(next(prefix), e)) + for e in expecteds) + lines.append(' Got {}\n'.format( + self.gots[hash_name].hexdigest())) + return '\n'.join(lines) + + +class UnsupportedPythonVersion(InstallationError): + """Unsupported python version according to Requires-Python package + metadata.""" + + +class ConfigurationFileCouldNotBeLoaded(ConfigurationError): + """When there are errors while loading a configuration file + """ + + def __init__(self, reason="could not be loaded", fname=None, error=None): + # type: (str, Optional[str], Optional[configparser.Error]) -> None + super().__init__(error) + self.reason = reason + self.fname = fname + self.error = error + + def __str__(self): + # type: () -> str + if self.fname is not None: + message_part = f" in {self.fname}." + else: + assert self.error is not None + message_part = f".\n{self.error}\n" + return f"Configuration file {self.reason}{message_part}" diff --git a/venv/lib/python3.8/site-packages/pip/_internal/index/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 00000000..7a17b7b3 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1,2 @@ +"""Index interaction code +""" diff --git a/venv/lib/python3.8/site-packages/pip/_internal/index/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/index/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88648cc37ee2bb1c5d2a976a8be82479d0572ca7 GIT binary patch literal 190 zcmWIL<>g`k0)_V01UVr67{oyaj6jY95EpX*i4=w?h7`tN22G|aanHPz)Cz^nypq(S z#N?99{5*x^{FGEKKTXD4?D6p_`N{F|D;bKIfV#lMF9-dS+yecA%mUrgyn@8!?9>$9 z@{H8f9Noh7tP;xti!_j&emvN~yu=*+Opy8d@j!vhlK6PNg34PQHo5sJr8%i~AUAym GVg>+iH8L6i literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/index/__pycache__/collector.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/index/__pycache__/collector.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bac6fbf23d3e0bcd18285b8fd74ca6f434095dfe GIT binary patch literal 15066 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 YnEVA}yzt@4naSfwE#S+)VqxF^0S0)J@c;k- literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/index/__pycache__/sources.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/index/__pycache__/sources.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4cacf92e8fed929886554b7c8a1913ea83839845 GIT binary patch literal 7155 zcmc&&TXWmS6$U^M1S#rj$+qOghHa%DwkDOPw?w%)qr{C{SIs1jr^8MLqKKsg8zkrj za4B_ZGTRj zIMA!}!V-l=t-65!BK}W`tSD~jX>Y?oL|Y1LZ%zUJjT`xDKx_l)Y2I3rGb`3Htq z@FqSntIuJy=uKjDQY`Ids?Vc6lF0XwP{k&_1Es4%Ry*7R71& zY>^XZ7B!ShiyCQr^A9XgV&6T*> zUTOR7@=mK=tKSx0`QvRNg7TfMTk$LHmm3^gaeXWxq3{(SbnmT1N{Xn`-c3xBUm(K< z3N6!_9*9}t*q4y-mHx&>P9ubf&gQPuuE~gE)>=+Y*0=q;0uo0tyWYL=qw7w?4Dp8ozIp9hlV!LAaW833SvUF^IieIUlfz7HQ^P}n(`>!WHRqw1yH@M zOd^!KDJFEjpw^w#wVc$3e4$)mW20Pd!1Kz=HeP>?uvL!3GK}htjg3m7;NZEj?MF@! zhOk5eL_LJdwqhq#xX`md5W5UV@|+ZWqSf@%uR9wXBj&%cvFa!*P|gN6!j>ay_3eSr zIetqKN-Y~JR}>puOIg6cpdYZ$^0W`Mhx&Rcmn;myzz~TXNd*38V!nq;VuX=g z#0n0BjV_5RqQPtIk4ApVEsu(WbLJR=5!hJ|-tMspR}NDnoKEkCRhE z&KO3tr{5fr&Qj9JG8R#i$qH-4k`!E5SQ`<9Sht3ERFHFH1sQ;RX6f$dTaFem% z7|Js23E=325`a`L{}jiEtd&1f@e9X#DB7RcL(yvur{;Y4{&fdn8tt^(0U#K`RqQl( zqS)CK7)|kQ6>DQ&#Zg}nC5At7;!vR>kvLSrs#*k#0+;XNI0mA|VUJY9mr-1C6o7vv zU`A*(2!)=6!Z*N9D{PfVX0O8&FJki)ij2ov26t=RUxH7HwOs?~ijcU6O%Dy_*}zJo z%%N`&mK|{kn(2pJkd~uha&dHfpA{l4EI@xgWJH(WMbEfkPzm@E1`lC!;TX+h5J@D? z;H~pBVpmLJ`YnRt45bGgX4o?T!@f>RW(o|7A07%R_>BW_I%bU|D2)cBGxd&hjJqdc z92w;{DMsny14dJL_lHbJF@+B53{2W0j zMv~7APT#`hAL2a(r->url$9K(0**Wk6t3WnZlV~C>4c@CIF5EpQ222$Ko8*Pc=X6fMn5T<5qZXPMc~-OJM5n4k8}1k(Oa)|&_|gw! zbmNO60vZG|S;-m4u;PCa$SkgHNVA6gknlT{5DsXHXnItoH%ou_1%}4yMWPu^8jwzefKcIygI4Xa5x+{|yQEe0*s< z*(dwCLcqSCA6}6L&ZNX1chu6Cf7hq3cU~Az{aJi@?NEDZ_Hcbj!{aEE<=+occE(d4 zxUzf&vxgQ{8>nt=yhi?tOR)=%hkL`&{UIYcUa}H9Krqj2Z5nzK?304H*G786#jP=! zt0Uczro(Vjs2t$Yj1oPSS#~0YlJ*fQo_0Tr*J5UAAHaH`%L}-}YPi8#U5vGs0l=n* zU`?)~ZQ+i`v23e|8!c+`Dto&~8r-(!rf1yG#kqaEo5M;5@GygL59?#>(>RYq&WH2GxGDeh}l`s`pmd*x8~!?u0Hf-j=e{|oKj!@ zHJ*OLJn-e&DPQE5R7?5wPL_ML+PTTQ64mQmdLg>RyNSQm3Z?K?d7D8~`0!%s)YOGQ z-0P)O)kOv<5Fi&EVX&8nsyh)jqbVvSV|^Wowzr^a9OM`AC;P{A$w)hvIoPWcd^>MG zjh9xR88Q!!$k!mTRGN_`QsTmirFf0ftU>`ve;G#~Ll#L}kj$DV77z{B;UxEQO}2nw z3h7nsnPmNlDTxc5OG9MtpEOnASjx*cIWQ3G3Y!#G(UvcwmSmdI7Lt=H1wP~ewEd*G zx#I_(n+|@Cp6Dkiw7iLMp2-VKFQ8UH%`|Mo_?KZK&^MUW;IHscD{C7J{Z;#somIV$ zEYrrsOFH z7C}_$9~F|1wUy3 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/index/collector.py b/venv/lib/python3.8/site-packages/pip/_internal/index/collector.py new file mode 100644 index 00000000..0721e368 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/index/collector.py @@ -0,0 +1,556 @@ +""" +The main purpose of this module is to expose LinkCollector.collect_sources(). +""" + +import cgi +import collections +import functools +import html +import itertools +import logging +import os +import re +import urllib.parse +import urllib.request +import xml.etree.ElementTree +from optparse import Values +from typing import ( + Callable, + Iterable, + List, + MutableMapping, + NamedTuple, + Optional, + Sequence, + Union, +) + +from pip._vendor import html5lib, requests +from pip._vendor.requests import Response +from pip._vendor.requests.exceptions import RetryError, SSLError + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status +from pip._internal.utils.filetypes import is_archive_file +from pip._internal.utils.misc import pairwise, redact_auth_from_url +from pip._internal.vcs import vcs + +from .sources import CandidatesFromPage, LinkSource, build_source + +logger = logging.getLogger(__name__) + +HTMLElement = xml.etree.ElementTree.Element +ResponseHeaders = MutableMapping[str, str] + + +def _match_vcs_scheme(url): + # type: (str) -> Optional[str] + """Look for VCS schemes in the URL. + + Returns the matched VCS scheme, or None if there's no match. + """ + for scheme in vcs.schemes: + if url.lower().startswith(scheme) and url[len(scheme)] in '+:': + return scheme + return None + + +class _NotHTML(Exception): + def __init__(self, content_type, request_desc): + # type: (str, str) -> None + super().__init__(content_type, request_desc) + self.content_type = content_type + self.request_desc = request_desc + + +def _ensure_html_header(response): + # type: (Response) -> None + """Check the Content-Type header to ensure the response contains HTML. + + Raises `_NotHTML` if the content type is not text/html. + """ + content_type = response.headers.get("Content-Type", "") + if not content_type.lower().startswith("text/html"): + raise _NotHTML(content_type, response.request.method) + + +class _NotHTTP(Exception): + pass + + +def _ensure_html_response(url, session): + # type: (str, PipSession) -> None + """Send a HEAD request to the URL, and ensure the response contains HTML. + + Raises `_NotHTTP` if the URL is not available for a HEAD request, or + `_NotHTML` if the content type is not text/html. + """ + scheme, netloc, path, query, fragment = urllib.parse.urlsplit(url) + if scheme not in {'http', 'https'}: + raise _NotHTTP() + + resp = session.head(url, allow_redirects=True) + raise_for_status(resp) + + _ensure_html_header(resp) + + +def _get_html_response(url, session): + # type: (str, PipSession) -> Response + """Access an HTML page with GET, and return the response. + + This consists of three parts: + + 1. If the URL looks suspiciously like an archive, send a HEAD first to + check the Content-Type is HTML, to avoid downloading a large file. + Raise `_NotHTTP` if the content type cannot be determined, or + `_NotHTML` if it is not HTML. + 2. Actually perform the request. Raise HTTP exceptions on network failures. + 3. Check the Content-Type header to make sure we got HTML, and raise + `_NotHTML` otherwise. + """ + if is_archive_file(Link(url).filename): + _ensure_html_response(url, session=session) + + logger.debug('Getting page %s', redact_auth_from_url(url)) + + resp = session.get( + url, + headers={ + "Accept": "text/html", + # We don't want to blindly returned cached data for + # /simple/, because authors generally expecting that + # twine upload && pip install will function, but if + # they've done a pip install in the last ~10 minutes + # it won't. Thus by setting this to zero we will not + # blindly use any cached data, however the benefit of + # using max-age=0 instead of no-cache, is that we will + # still support conditional requests, so we will still + # minimize traffic sent in cases where the page hasn't + # changed at all, we will just always incur the round + # trip for the conditional GET now instead of only + # once per 10 minutes. + # For more information, please see pypa/pip#5670. + "Cache-Control": "max-age=0", + }, + ) + raise_for_status(resp) + + # The check for archives above only works if the url ends with + # something that looks like an archive. However that is not a + # requirement of an url. Unless we issue a HEAD request on every + # url we cannot know ahead of time for sure if something is HTML + # or not. However we can check after we've downloaded it. + _ensure_html_header(resp) + + return resp + + +def _get_encoding_from_headers(headers): + # type: (ResponseHeaders) -> Optional[str] + """Determine if we have any encoding information in our headers. + """ + if headers and "Content-Type" in headers: + content_type, params = cgi.parse_header(headers["Content-Type"]) + if "charset" in params: + return params['charset'] + return None + + +def _determine_base_url(document, page_url): + # type: (HTMLElement, str) -> str + """Determine the HTML document's base URL. + + This looks for a ```` tag in the HTML document. If present, its href + attribute denotes the base URL of anchor tags in the document. If there is + no such tag (or if it does not have a valid href attribute), the HTML + file's URL is used as the base URL. + + :param document: An HTML document representation. The current + implementation expects the result of ``html5lib.parse()``. + :param page_url: The URL of the HTML document. + """ + for base in document.findall(".//base"): + href = base.get("href") + if href is not None: + return href + return page_url + + +def _clean_url_path_part(part): + # type: (str) -> str + """ + Clean a "part" of a URL path (i.e. after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + return urllib.parse.quote(urllib.parse.unquote(part)) + + +def _clean_file_url_path(part): + # type: (str) -> str + """ + Clean the first part of a URL path that corresponds to a local + filesystem path (i.e. the first part after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + # Also, on Windows the path part might contain a drive letter which + # should not be quoted. On Linux where drive letters do not + # exist, the colon should be quoted. We rely on urllib.request + # to do the right thing here. + return urllib.request.pathname2url(urllib.request.url2pathname(part)) + + +# percent-encoded: / +_reserved_chars_re = re.compile('(@|%2F)', re.IGNORECASE) + + +def _clean_url_path(path, is_local_path): + # type: (str, bool) -> str + """ + Clean the path portion of a URL. + """ + if is_local_path: + clean_func = _clean_file_url_path + else: + clean_func = _clean_url_path_part + + # Split on the reserved characters prior to cleaning so that + # revision strings in VCS URLs are properly preserved. + parts = _reserved_chars_re.split(path) + + cleaned_parts = [] + for to_clean, reserved in pairwise(itertools.chain(parts, [''])): + cleaned_parts.append(clean_func(to_clean)) + # Normalize %xx escapes (e.g. %2f -> %2F) + cleaned_parts.append(reserved.upper()) + + return ''.join(cleaned_parts) + + +def _clean_link(url): + # type: (str) -> str + """ + Make sure a link is fully quoted. + For example, if ' ' occurs in the URL, it will be replaced with "%20", + and without double-quoting other characters. + """ + # Split the URL into parts according to the general structure + # `scheme://netloc/path;parameters?query#fragment`. + result = urllib.parse.urlparse(url) + # If the netloc is empty, then the URL refers to a local filesystem path. + is_local_path = not result.netloc + path = _clean_url_path(result.path, is_local_path=is_local_path) + return urllib.parse.urlunparse(result._replace(path=path)) + + +def _create_link_from_element( + anchor, # type: HTMLElement + page_url, # type: str + base_url, # type: str +): + # type: (...) -> Optional[Link] + """ + Convert an anchor element in a simple repository page to a Link. + """ + href = anchor.get("href") + if not href: + return None + + url = _clean_link(urllib.parse.urljoin(base_url, href)) + pyrequire = anchor.get('data-requires-python') + pyrequire = html.unescape(pyrequire) if pyrequire else None + + yanked_reason = anchor.get('data-yanked') + if yanked_reason: + yanked_reason = html.unescape(yanked_reason) + + link = Link( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + ) + + return link + + +class CacheablePageContent: + def __init__(self, page): + # type: (HTMLPage) -> None + assert page.cache_link_parsing + self.page = page + + def __eq__(self, other): + # type: (object) -> bool + return (isinstance(other, type(self)) and + self.page.url == other.page.url) + + def __hash__(self): + # type: () -> int + return hash(self.page.url) + + +def with_cached_html_pages( + fn, # type: Callable[[HTMLPage], Iterable[Link]] +): + # type: (...) -> Callable[[HTMLPage], List[Link]] + """ + Given a function that parses an Iterable[Link] from an HTMLPage, cache the + function's result (keyed by CacheablePageContent), unless the HTMLPage + `page` has `page.cache_link_parsing == False`. + """ + + @functools.lru_cache(maxsize=None) + def wrapper(cacheable_page): + # type: (CacheablePageContent) -> List[Link] + return list(fn(cacheable_page.page)) + + @functools.wraps(fn) + def wrapper_wrapper(page): + # type: (HTMLPage) -> List[Link] + if page.cache_link_parsing: + return wrapper(CacheablePageContent(page)) + return list(fn(page)) + + return wrapper_wrapper + + +@with_cached_html_pages +def parse_links(page): + # type: (HTMLPage) -> Iterable[Link] + """ + Parse an HTML document, and yield its anchor elements as Link objects. + """ + document = html5lib.parse( + page.content, + transport_encoding=page.encoding, + namespaceHTMLElements=False, + ) + + url = page.url + base_url = _determine_base_url(document, url) + for anchor in document.findall(".//a"): + link = _create_link_from_element( + anchor, + page_url=url, + base_url=base_url, + ) + if link is None: + continue + yield link + + +class HTMLPage: + """Represents one page, along with its URL""" + + def __init__( + self, + content, # type: bytes + encoding, # type: Optional[str] + url, # type: str + cache_link_parsing=True, # type: bool + ): + # type: (...) -> None + """ + :param encoding: the encoding to decode the given content. + :param url: the URL from which the HTML was downloaded. + :param cache_link_parsing: whether links parsed from this page's url + should be cached. PyPI index urls should + have this set to False, for example. + """ + self.content = content + self.encoding = encoding + self.url = url + self.cache_link_parsing = cache_link_parsing + + def __str__(self): + # type: () -> str + return redact_auth_from_url(self.url) + + +def _handle_get_page_fail( + link, # type: Link + reason, # type: Union[str, Exception] + meth=None # type: Optional[Callable[..., None]] +): + # type: (...) -> None + if meth is None: + meth = logger.debug + meth("Could not fetch URL %s: %s - skipping", link, reason) + + +def _make_html_page(response, cache_link_parsing=True): + # type: (Response, bool) -> HTMLPage + encoding = _get_encoding_from_headers(response.headers) + return HTMLPage( + response.content, + encoding=encoding, + url=response.url, + cache_link_parsing=cache_link_parsing) + + +def _get_html_page(link, session=None): + # type: (Link, Optional[PipSession]) -> Optional[HTMLPage] + if session is None: + raise TypeError( + "_get_html_page() missing 1 required keyword argument: 'session'" + ) + + url = link.url.split('#', 1)[0] + + # Check for VCS schemes that do not support lookup as web pages. + vcs_scheme = _match_vcs_scheme(url) + if vcs_scheme: + logger.warning('Cannot look at %s URL %s because it does not support ' + 'lookup as web pages.', vcs_scheme, link) + return None + + # Tack index.html onto file:// URLs that point to directories + scheme, _, path, _, _, _ = urllib.parse.urlparse(url) + if (scheme == 'file' and os.path.isdir(urllib.request.url2pathname(path))): + # add trailing slash if not present so urljoin doesn't trim + # final segment + if not url.endswith('/'): + url += '/' + url = urllib.parse.urljoin(url, 'index.html') + logger.debug(' file: URL is directory, getting %s', url) + + try: + resp = _get_html_response(url, session=session) + except _NotHTTP: + logger.warning( + 'Skipping page %s because it looks like an archive, and cannot ' + 'be checked by a HTTP HEAD request.', link, + ) + except _NotHTML as exc: + logger.warning( + 'Skipping page %s because the %s request got Content-Type: %s.' + 'The only supported Content-Type is text/html', + link, exc.request_desc, exc.content_type, + ) + except NetworkConnectionError as exc: + _handle_get_page_fail(link, exc) + except RetryError as exc: + _handle_get_page_fail(link, exc) + except SSLError as exc: + reason = "There was a problem confirming the ssl certificate: " + reason += str(exc) + _handle_get_page_fail(link, reason, meth=logger.info) + except requests.ConnectionError as exc: + _handle_get_page_fail(link, f"connection error: {exc}") + except requests.Timeout: + _handle_get_page_fail(link, "timed out") + else: + return _make_html_page(resp, + cache_link_parsing=link.cache_link_parsing) + return None + + +class CollectedSources(NamedTuple): + find_links: Sequence[Optional[LinkSource]] + index_urls: Sequence[Optional[LinkSource]] + + +class LinkCollector: + + """ + Responsible for collecting Link objects from all configured locations, + making network requests as needed. + + The class's main method is its collect_sources() method. + """ + + def __init__( + self, + session, # type: PipSession + search_scope, # type: SearchScope + ): + # type: (...) -> None + self.search_scope = search_scope + self.session = session + + @classmethod + def create(cls, session, options, suppress_no_index=False): + # type: (PipSession, Values, bool) -> LinkCollector + """ + :param session: The Session to use to make requests. + :param suppress_no_index: Whether to ignore the --no-index option + when constructing the SearchScope object. + """ + index_urls = [options.index_url] + options.extra_index_urls + if options.no_index and not suppress_no_index: + logger.debug( + 'Ignoring indexes: %s', + ','.join(redact_auth_from_url(url) for url in index_urls), + ) + index_urls = [] + + # Make sure find_links is a list before passing to create(). + find_links = options.find_links or [] + + search_scope = SearchScope.create( + find_links=find_links, index_urls=index_urls, + ) + link_collector = LinkCollector( + session=session, search_scope=search_scope, + ) + return link_collector + + @property + def find_links(self): + # type: () -> List[str] + return self.search_scope.find_links + + def fetch_page(self, location): + # type: (Link) -> Optional[HTMLPage] + """ + Fetch an HTML page containing package links. + """ + return _get_html_page(location, session=self.session) + + def collect_sources( + self, + project_name: str, + candidates_from_page: CandidatesFromPage, + ) -> CollectedSources: + # The OrderedDict calls deduplicate sources by URL. + index_url_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=False, + cache_link_parsing=False, + ) + for loc in self.search_scope.get_index_urls_locations(project_name) + ).values() + find_links_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=True, + cache_link_parsing=True, + ) + for loc in self.find_links + ).values() + + if logger.isEnabledFor(logging.DEBUG): + lines = [ + f"* {s.link}" + for s in itertools.chain(find_links_sources, index_url_sources) + if s is not None and s.link is not None + ] + lines = [ + f"{len(lines)} location(s) to search " + f"for versions of {project_name}:" + ] + lines + logger.debug("\n".join(lines)) + + return CollectedSources( + find_links=list(find_links_sources), + index_urls=list(index_url_sources), + ) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/index/package_finder.py b/venv/lib/python3.8/site-packages/pip/_internal/index/package_finder.py new file mode 100644 index 00000000..7f2e04e7 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/index/package_finder.py @@ -0,0 +1,1012 @@ +"""Routines related to PyPI, indexes""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import functools +import itertools +import logging +import re +from typing import FrozenSet, Iterable, List, Optional, Set, Tuple, Union + +from pip._vendor.packaging import specifiers +from pip._vendor.packaging.tags import Tag +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import _BaseVersion +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + InvalidWheelFilename, + UnsupportedWheel, +) +from pip._internal.index.collector import LinkCollector, parse_links +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.format_control import FormatControl +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.models.wheel import Wheel +from pip._internal.req import InstallRequirement +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import build_netloc +from pip._internal.utils.packaging import check_requires_python +from pip._internal.utils.unpacking import SUPPORTED_EXTENSIONS +from pip._internal.utils.urls import url_to_path + +__all__ = ['FormatControl', 'BestCandidateResult', 'PackageFinder'] + + +logger = logging.getLogger(__name__) + +BuildTag = Union[Tuple[()], Tuple[int, str]] +CandidateSortingKey = ( + Tuple[int, int, int, _BaseVersion, Optional[int], BuildTag] +) + + +def _check_link_requires_python( + link, # type: Link + version_info, # type: Tuple[int, int, int] + ignore_requires_python=False, # type: bool +): + # type: (...) -> bool + """ + Return whether the given Python version is compatible with a link's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + """ + try: + is_compatible = check_requires_python( + link.requires_python, version_info=version_info, + ) + except specifiers.InvalidSpecifier: + logger.debug( + "Ignoring invalid Requires-Python (%r) for link: %s", + link.requires_python, link, + ) + else: + if not is_compatible: + version = '.'.join(map(str, version_info)) + if not ignore_requires_python: + logger.debug( + 'Link requires a different Python (%s not in: %r): %s', + version, link.requires_python, link, + ) + return False + + logger.debug( + 'Ignoring failed Requires-Python check (%s not in: %r) ' + 'for link: %s', + version, link.requires_python, link, + ) + + return True + + +class LinkEvaluator: + + """ + Responsible for evaluating links for a particular project. + """ + + _py_version_re = re.compile(r'-py([123]\.?[0-9]?)$') + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + project_name, # type: str + canonical_name, # type: str + formats, # type: FrozenSet[str] + target_python, # type: TargetPython + allow_yanked, # type: bool + ignore_requires_python=None, # type: Optional[bool] + ): + # type: (...) -> None + """ + :param project_name: The user supplied package name. + :param canonical_name: The canonical package name. + :param formats: The formats allowed for this package. Should be a set + with 'binary' or 'source' or both in it. + :param target_python: The target Python interpreter to use when + evaluating link compatibility. This is used, for example, to + check wheel compatibility, as well as when checking the Python + version, e.g. the Python version embedded in a link filename + (or egg fragment) and against an HTML link's optional PEP 503 + "data-requires-python" attribute. + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param ignore_requires_python: Whether to ignore incompatible + PEP 503 "data-requires-python" values in HTML links. Defaults + to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self._allow_yanked = allow_yanked + self._canonical_name = canonical_name + self._ignore_requires_python = ignore_requires_python + self._formats = formats + self._target_python = target_python + + self.project_name = project_name + + def evaluate_link(self, link): + # type: (Link) -> Tuple[bool, Optional[str]] + """ + Determine whether a link is a candidate for installation. + + :return: A tuple (is_candidate, result), where `result` is (1) a + version string if `is_candidate` is True, and (2) if + `is_candidate` is False, an optional string to log the reason + the link fails to qualify. + """ + version = None + if link.is_yanked and not self._allow_yanked: + reason = link.yanked_reason or '' + return (False, f'yanked for reason: {reason}') + + if link.egg_fragment: + egg_info = link.egg_fragment + ext = link.ext + else: + egg_info, ext = link.splitext() + if not ext: + return (False, 'not a file') + if ext not in SUPPORTED_EXTENSIONS: + return (False, f'unsupported archive format: {ext}') + if "binary" not in self._formats and ext == WHEEL_EXTENSION: + reason = 'No binaries permitted for {}'.format( + self.project_name) + return (False, reason) + if "macosx10" in link.path and ext == '.zip': + return (False, 'macosx10 one') + if ext == WHEEL_EXTENSION: + try: + wheel = Wheel(link.filename) + except InvalidWheelFilename: + return (False, 'invalid wheel filename') + if canonicalize_name(wheel.name) != self._canonical_name: + reason = 'wrong project name (not {})'.format( + self.project_name) + return (False, reason) + + supported_tags = self._target_python.get_tags() + if not wheel.supported(supported_tags): + # Include the wheel's tags in the reason string to + # simplify troubleshooting compatibility issues. + file_tags = wheel.get_formatted_file_tags() + reason = ( + "none of the wheel's tags ({}) are compatible " + "(run pip debug --verbose to show compatible tags)".format( + ', '.join(file_tags) + ) + ) + return (False, reason) + + version = wheel.version + + # This should be up by the self.ok_binary check, but see issue 2700. + if "source" not in self._formats and ext != WHEEL_EXTENSION: + reason = f'No sources permitted for {self.project_name}' + return (False, reason) + + if not version: + version = _extract_version_from_fragment( + egg_info, self._canonical_name, + ) + if not version: + reason = f'Missing project version for {self.project_name}' + return (False, reason) + + match = self._py_version_re.search(version) + if match: + version = version[:match.start()] + py_version = match.group(1) + if py_version != self._target_python.py_version: + return (False, 'Python version is incorrect') + + supports_python = _check_link_requires_python( + link, version_info=self._target_python.py_version_info, + ignore_requires_python=self._ignore_requires_python, + ) + if not supports_python: + # Return None for the reason text to suppress calling + # _log_skipped_link(). + return (False, None) + + logger.debug('Found link %s, version: %s', link, version) + + return (True, version) + + +def filter_unallowed_hashes( + candidates, # type: List[InstallationCandidate] + hashes, # type: Hashes + project_name, # type: str +): + # type: (...) -> List[InstallationCandidate] + """ + Filter out candidates whose hashes aren't allowed, and return a new + list of candidates. + + If at least one candidate has an allowed hash, then all candidates with + either an allowed hash or no hash specified are returned. Otherwise, + the given candidates are returned. + + Including the candidates with no hash specified when there is a match + allows a warning to be logged if there is a more preferred candidate + with no hash specified. Returning all candidates in the case of no + matches lets pip report the hash of the candidate that would otherwise + have been installed (e.g. permitting the user to more easily update + their requirements file with the desired hash). + """ + if not hashes: + logger.debug( + 'Given no hashes to check %s links for project %r: ' + 'discarding no candidates', + len(candidates), + project_name, + ) + # Make sure we're not returning back the given value. + return list(candidates) + + matches_or_no_digest = [] + # Collect the non-matches for logging purposes. + non_matches = [] + match_count = 0 + for candidate in candidates: + link = candidate.link + if not link.has_hash: + pass + elif link.is_hash_allowed(hashes=hashes): + match_count += 1 + else: + non_matches.append(candidate) + continue + + matches_or_no_digest.append(candidate) + + if match_count: + filtered = matches_or_no_digest + else: + # Make sure we're not returning back the given value. + filtered = list(candidates) + + if len(filtered) == len(candidates): + discard_message = 'discarding no candidates' + else: + discard_message = 'discarding {} non-matches:\n {}'.format( + len(non_matches), + '\n '.join(str(candidate.link) for candidate in non_matches) + ) + + logger.debug( + 'Checked %s links for project %r against %s hashes ' + '(%s matches, %s no digest): %s', + len(candidates), + project_name, + hashes.digest_count, + match_count, + len(matches_or_no_digest) - match_count, + discard_message + ) + + return filtered + + +class CandidatePreferences: + + """ + Encapsulates some of the preferences for filtering and sorting + InstallationCandidate objects. + """ + + def __init__( + self, + prefer_binary=False, # type: bool + allow_all_prereleases=False, # type: bool + ): + # type: (...) -> None + """ + :param allow_all_prereleases: Whether to allow all pre-releases. + """ + self.allow_all_prereleases = allow_all_prereleases + self.prefer_binary = prefer_binary + + +class BestCandidateResult: + """A collection of candidates, returned by `PackageFinder.find_best_candidate`. + + This class is only intended to be instantiated by CandidateEvaluator's + `compute_best_candidate()` method. + """ + + def __init__( + self, + candidates, # type: List[InstallationCandidate] + applicable_candidates, # type: List[InstallationCandidate] + best_candidate, # type: Optional[InstallationCandidate] + ): + # type: (...) -> None + """ + :param candidates: A sequence of all available candidates found. + :param applicable_candidates: The applicable candidates. + :param best_candidate: The most preferred candidate found, or None + if no applicable candidates were found. + """ + assert set(applicable_candidates) <= set(candidates) + + if best_candidate is None: + assert not applicable_candidates + else: + assert best_candidate in applicable_candidates + + self._applicable_candidates = applicable_candidates + self._candidates = candidates + + self.best_candidate = best_candidate + + def iter_all(self): + # type: () -> Iterable[InstallationCandidate] + """Iterate through all candidates. + """ + return iter(self._candidates) + + def iter_applicable(self): + # type: () -> Iterable[InstallationCandidate] + """Iterate through the applicable candidates. + """ + return iter(self._applicable_candidates) + + +class CandidateEvaluator: + + """ + Responsible for filtering and sorting candidates for installation based + on what tags are valid. + """ + + @classmethod + def create( + cls, + project_name, # type: str + target_python=None, # type: Optional[TargetPython] + prefer_binary=False, # type: bool + allow_all_prereleases=False, # type: bool + specifier=None, # type: Optional[specifiers.BaseSpecifier] + hashes=None, # type: Optional[Hashes] + ): + # type: (...) -> CandidateEvaluator + """Create a CandidateEvaluator object. + + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + :param hashes: An optional collection of allowed hashes. + """ + if target_python is None: + target_python = TargetPython() + if specifier is None: + specifier = specifiers.SpecifierSet() + + supported_tags = target_python.get_tags() + + return cls( + project_name=project_name, + supported_tags=supported_tags, + specifier=specifier, + prefer_binary=prefer_binary, + allow_all_prereleases=allow_all_prereleases, + hashes=hashes, + ) + + def __init__( + self, + project_name, # type: str + supported_tags, # type: List[Tag] + specifier, # type: specifiers.BaseSpecifier + prefer_binary=False, # type: bool + allow_all_prereleases=False, # type: bool + hashes=None, # type: Optional[Hashes] + ): + # type: (...) -> None + """ + :param supported_tags: The PEP 425 tags supported by the target + Python in order of preference (most preferred first). + """ + self._allow_all_prereleases = allow_all_prereleases + self._hashes = hashes + self._prefer_binary = prefer_binary + self._project_name = project_name + self._specifier = specifier + self._supported_tags = supported_tags + # Since the index of the tag in the _supported_tags list is used + # as a priority, precompute a map from tag to index/priority to be + # used in wheel.find_most_preferred_tag. + self._wheel_tag_preferences = { + tag: idx for idx, tag in enumerate(supported_tags) + } + + def get_applicable_candidates( + self, + candidates, # type: List[InstallationCandidate] + ): + # type: (...) -> List[InstallationCandidate] + """ + Return the applicable candidates from a list of candidates. + """ + # Using None infers from the specifier instead. + allow_prereleases = self._allow_all_prereleases or None + specifier = self._specifier + versions = { + str(v) for v in specifier.filter( + # We turn the version object into a str here because otherwise + # when we're debundled but setuptools isn't, Python will see + # packaging.version.Version and + # pkg_resources._vendor.packaging.version.Version as different + # types. This way we'll use a str as a common data interchange + # format. If we stop using the pkg_resources provided specifier + # and start using our own, we can drop the cast to str(). + (str(c.version) for c in candidates), + prereleases=allow_prereleases, + ) + } + + # Again, converting version to str to deal with debundling. + applicable_candidates = [ + c for c in candidates if str(c.version) in versions + ] + + filtered_applicable_candidates = filter_unallowed_hashes( + candidates=applicable_candidates, + hashes=self._hashes, + project_name=self._project_name, + ) + + return sorted(filtered_applicable_candidates, key=self._sort_key) + + def _sort_key(self, candidate): + # type: (InstallationCandidate) -> CandidateSortingKey + """ + Function to pass as the `key` argument to a call to sorted() to sort + InstallationCandidates by preference. + + Returns a tuple such that tuples sorting as greater using Python's + default comparison operator are more preferred. + + The preference is as follows: + + First and foremost, candidates with allowed (matching) hashes are + always preferred over candidates without matching hashes. This is + because e.g. if the only candidate with an allowed hash is yanked, + we still want to use that candidate. + + Second, excepting hash considerations, candidates that have been + yanked (in the sense of PEP 592) are always less preferred than + candidates that haven't been yanked. Then: + + If not finding wheels, they are sorted by version only. + If finding wheels, then the sort order is by version, then: + 1. existing installs + 2. wheels ordered via Wheel.support_index_min(self._supported_tags) + 3. source archives + If prefer_binary was set, then all wheels are sorted above sources. + + Note: it was considered to embed this logic into the Link + comparison operators, but then different sdist links + with the same version, would have to be considered equal + """ + valid_tags = self._supported_tags + support_num = len(valid_tags) + build_tag = () # type: BuildTag + binary_preference = 0 + link = candidate.link + if link.is_wheel: + # can raise InvalidWheelFilename + wheel = Wheel(link.filename) + try: + pri = -(wheel.find_most_preferred_tag( + valid_tags, self._wheel_tag_preferences + )) + except ValueError: + raise UnsupportedWheel( + "{} is not a supported wheel for this platform. It " + "can't be sorted.".format(wheel.filename) + ) + if self._prefer_binary: + binary_preference = 1 + if wheel.build_tag is not None: + match = re.match(r'^(\d+)(.*)$', wheel.build_tag) + build_tag_groups = match.groups() + build_tag = (int(build_tag_groups[0]), build_tag_groups[1]) + else: # sdist + pri = -(support_num) + has_allowed_hash = int(link.is_hash_allowed(self._hashes)) + yank_value = -1 * int(link.is_yanked) # -1 for yanked. + return ( + has_allowed_hash, yank_value, binary_preference, candidate.version, + pri, build_tag, + ) + + def sort_best_candidate( + self, + candidates, # type: List[InstallationCandidate] + ): + # type: (...) -> Optional[InstallationCandidate] + """ + Return the best candidate per the instance's sort order, or None if + no candidate is acceptable. + """ + if not candidates: + return None + best_candidate = max(candidates, key=self._sort_key) + return best_candidate + + def compute_best_candidate( + self, + candidates, # type: List[InstallationCandidate] + ): + # type: (...) -> BestCandidateResult + """ + Compute and return a `BestCandidateResult` instance. + """ + applicable_candidates = self.get_applicable_candidates(candidates) + + best_candidate = self.sort_best_candidate(applicable_candidates) + + return BestCandidateResult( + candidates, + applicable_candidates=applicable_candidates, + best_candidate=best_candidate, + ) + + +class PackageFinder: + """This finds packages. + + This is meant to match easy_install's technique for looking for + packages, by reading pages and looking for appropriate links. + """ + + def __init__( + self, + link_collector, # type: LinkCollector + target_python, # type: TargetPython + allow_yanked, # type: bool + format_control=None, # type: Optional[FormatControl] + candidate_prefs=None, # type: CandidatePreferences + ignore_requires_python=None, # type: Optional[bool] + ): + # type: (...) -> None + """ + This constructor is primarily meant to be used by the create() class + method and from tests. + + :param format_control: A FormatControl object, used to control + the selection of source packages / binary packages when consulting + the index and links. + :param candidate_prefs: Options to use when creating a + CandidateEvaluator object. + """ + if candidate_prefs is None: + candidate_prefs = CandidatePreferences() + + format_control = format_control or FormatControl(set(), set()) + + self._allow_yanked = allow_yanked + self._candidate_prefs = candidate_prefs + self._ignore_requires_python = ignore_requires_python + self._link_collector = link_collector + self._target_python = target_python + + self.format_control = format_control + + # These are boring links that have already been logged somehow. + self._logged_links = set() # type: Set[Link] + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + @classmethod + def create( + cls, + link_collector, # type: LinkCollector + selection_prefs, # type: SelectionPreferences + target_python=None, # type: Optional[TargetPython] + ): + # type: (...) -> PackageFinder + """Create a PackageFinder. + + :param selection_prefs: The candidate selection preferences, as a + SelectionPreferences object. + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + """ + if target_python is None: + target_python = TargetPython() + + candidate_prefs = CandidatePreferences( + prefer_binary=selection_prefs.prefer_binary, + allow_all_prereleases=selection_prefs.allow_all_prereleases, + ) + + return cls( + candidate_prefs=candidate_prefs, + link_collector=link_collector, + target_python=target_python, + allow_yanked=selection_prefs.allow_yanked, + format_control=selection_prefs.format_control, + ignore_requires_python=selection_prefs.ignore_requires_python, + ) + + @property + def target_python(self): + # type: () -> TargetPython + return self._target_python + + @property + def search_scope(self): + # type: () -> SearchScope + return self._link_collector.search_scope + + @search_scope.setter + def search_scope(self, search_scope): + # type: (SearchScope) -> None + self._link_collector.search_scope = search_scope + + @property + def find_links(self): + # type: () -> List[str] + return self._link_collector.find_links + + @property + def index_urls(self): + # type: () -> List[str] + return self.search_scope.index_urls + + @property + def trusted_hosts(self): + # type: () -> Iterable[str] + for host_port in self._link_collector.session.pip_trusted_origins: + yield build_netloc(*host_port) + + @property + def allow_all_prereleases(self): + # type: () -> bool + return self._candidate_prefs.allow_all_prereleases + + def set_allow_all_prereleases(self): + # type: () -> None + self._candidate_prefs.allow_all_prereleases = True + + @property + def prefer_binary(self): + # type: () -> bool + return self._candidate_prefs.prefer_binary + + def set_prefer_binary(self): + # type: () -> None + self._candidate_prefs.prefer_binary = True + + def make_link_evaluator(self, project_name): + # type: (str) -> LinkEvaluator + canonical_name = canonicalize_name(project_name) + formats = self.format_control.get_allowed_formats(canonical_name) + + return LinkEvaluator( + project_name=project_name, + canonical_name=canonical_name, + formats=formats, + target_python=self._target_python, + allow_yanked=self._allow_yanked, + ignore_requires_python=self._ignore_requires_python, + ) + + def _sort_links(self, links): + # type: (Iterable[Link]) -> List[Link] + """ + Returns elements of links in order, non-egg links first, egg links + second, while eliminating duplicates + """ + eggs, no_eggs = [], [] + seen = set() # type: Set[Link] + for link in links: + if link not in seen: + seen.add(link) + if link.egg_fragment: + eggs.append(link) + else: + no_eggs.append(link) + return no_eggs + eggs + + def _log_skipped_link(self, link, reason): + # type: (Link, str) -> None + if link not in self._logged_links: + # Put the link at the end so the reason is more visible and because + # the link string is usually very long. + logger.debug('Skipping link: %s: %s', reason, link) + self._logged_links.add(link) + + def get_install_candidate(self, link_evaluator, link): + # type: (LinkEvaluator, Link) -> Optional[InstallationCandidate] + """ + If the link is a candidate for install, convert it to an + InstallationCandidate and return it. Otherwise, return None. + """ + is_candidate, result = link_evaluator.evaluate_link(link) + if not is_candidate: + if result: + self._log_skipped_link(link, reason=result) + return None + + return InstallationCandidate( + name=link_evaluator.project_name, + link=link, + version=result, + ) + + def evaluate_links(self, link_evaluator, links): + # type: (LinkEvaluator, Iterable[Link]) -> List[InstallationCandidate] + """ + Convert links that are candidates to InstallationCandidate objects. + """ + candidates = [] + for link in self._sort_links(links): + candidate = self.get_install_candidate(link_evaluator, link) + if candidate is not None: + candidates.append(candidate) + + return candidates + + def process_project_url(self, project_url, link_evaluator): + # type: (Link, LinkEvaluator) -> List[InstallationCandidate] + logger.debug( + 'Fetching project page and analyzing links: %s', project_url, + ) + html_page = self._link_collector.fetch_page(project_url) + if html_page is None: + return [] + + page_links = list(parse_links(html_page)) + + with indent_log(): + package_links = self.evaluate_links( + link_evaluator, + links=page_links, + ) + + return package_links + + @functools.lru_cache(maxsize=None) + def find_all_candidates(self, project_name): + # type: (str) -> List[InstallationCandidate] + """Find all available InstallationCandidate for project_name + + This checks index_urls and find_links. + All versions found are returned as an InstallationCandidate list. + + See LinkEvaluator.evaluate_link() for details on which files + are accepted. + """ + link_evaluator = self.make_link_evaluator(project_name) + + collected_sources = self._link_collector.collect_sources( + project_name=project_name, + candidates_from_page=functools.partial( + self.process_project_url, + link_evaluator=link_evaluator, + ), + ) + + page_candidates_it = itertools.chain.from_iterable( + source.page_candidates() + for sources in collected_sources + for source in sources + if source is not None + ) + page_candidates = list(page_candidates_it) + + file_links_it = itertools.chain.from_iterable( + source.file_links() + for sources in collected_sources + for source in sources + if source is not None + ) + file_candidates = self.evaluate_links( + link_evaluator, + sorted(file_links_it, reverse=True), + ) + + if logger.isEnabledFor(logging.DEBUG) and file_candidates: + paths = [url_to_path(c.link.url) for c in file_candidates] + logger.debug("Local files found: %s", ", ".join(paths)) + + # This is an intentional priority ordering + return file_candidates + page_candidates + + def make_candidate_evaluator( + self, + project_name, # type: str + specifier=None, # type: Optional[specifiers.BaseSpecifier] + hashes=None, # type: Optional[Hashes] + ): + # type: (...) -> CandidateEvaluator + """Create a CandidateEvaluator object to use. + """ + candidate_prefs = self._candidate_prefs + return CandidateEvaluator.create( + project_name=project_name, + target_python=self._target_python, + prefer_binary=candidate_prefs.prefer_binary, + allow_all_prereleases=candidate_prefs.allow_all_prereleases, + specifier=specifier, + hashes=hashes, + ) + + @functools.lru_cache(maxsize=None) + def find_best_candidate( + self, + project_name, # type: str + specifier=None, # type: Optional[specifiers.BaseSpecifier] + hashes=None, # type: Optional[Hashes] + ): + # type: (...) -> BestCandidateResult + """Find matches for the given project and specifier. + + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + + :return: A `BestCandidateResult` instance. + """ + candidates = self.find_all_candidates(project_name) + candidate_evaluator = self.make_candidate_evaluator( + project_name=project_name, + specifier=specifier, + hashes=hashes, + ) + return candidate_evaluator.compute_best_candidate(candidates) + + def find_requirement(self, req, upgrade): + # type: (InstallRequirement, bool) -> Optional[InstallationCandidate] + """Try to find a Link matching req + + Expects req, an InstallRequirement and upgrade, a boolean + Returns a InstallationCandidate if found, + Raises DistributionNotFound or BestVersionAlreadyInstalled otherwise + """ + hashes = req.hashes(trust_internet=False) + best_candidate_result = self.find_best_candidate( + req.name, specifier=req.specifier, hashes=hashes, + ) + best_candidate = best_candidate_result.best_candidate + + installed_version = None # type: Optional[_BaseVersion] + if req.satisfied_by is not None: + installed_version = parse_version(req.satisfied_by.version) + + def _format_versions(cand_iter): + # type: (Iterable[InstallationCandidate]) -> str + # This repeated parse_version and str() conversion is needed to + # handle different vendoring sources from pip and pkg_resources. + # If we stop using the pkg_resources provided specifier and start + # using our own, we can drop the cast to str(). + return ", ".join(sorted( + {str(c.version) for c in cand_iter}, + key=parse_version, + )) or "none" + + if installed_version is None and best_candidate is None: + logger.critical( + 'Could not find a version that satisfies the requirement %s ' + '(from versions: %s)', + req, + _format_versions(best_candidate_result.iter_all()), + ) + + raise DistributionNotFound( + 'No matching distribution found for {}'.format( + req) + ) + + best_installed = False + if installed_version and ( + best_candidate is None or + best_candidate.version <= installed_version): + best_installed = True + + if not upgrade and installed_version is not None: + if best_installed: + logger.debug( + 'Existing installed version (%s) is most up-to-date and ' + 'satisfies requirement', + installed_version, + ) + else: + logger.debug( + 'Existing installed version (%s) satisfies requirement ' + '(most up-to-date version is %s)', + installed_version, + best_candidate.version, + ) + return None + + if best_installed: + # We have an existing version, and its the best version + logger.debug( + 'Installed version (%s) is most up-to-date (past versions: ' + '%s)', + installed_version, + _format_versions(best_candidate_result.iter_applicable()), + ) + raise BestVersionAlreadyInstalled + + logger.debug( + 'Using version %s (newest of versions: %s)', + best_candidate.version, + _format_versions(best_candidate_result.iter_applicable()), + ) + return best_candidate + + +def _find_name_version_sep(fragment, canonical_name): + # type: (str, str) -> int + """Find the separator's index based on the package's canonical name. + + :param fragment: A + filename "fragment" (stem) or + egg fragment. + :param canonical_name: The package's canonical name. + + This function is needed since the canonicalized name does not necessarily + have the same length as the egg info's name part. An example:: + + >>> fragment = 'foo__bar-1.0' + >>> canonical_name = 'foo-bar' + >>> _find_name_version_sep(fragment, canonical_name) + 8 + """ + # Project name and version must be separated by one single dash. Find all + # occurrences of dashes; if the string in front of it matches the canonical + # name, this is the one separating the name and version parts. + for i, c in enumerate(fragment): + if c != "-": + continue + if canonicalize_name(fragment[:i]) == canonical_name: + return i + raise ValueError(f"{fragment} does not match {canonical_name}") + + +def _extract_version_from_fragment(fragment, canonical_name): + # type: (str, str) -> Optional[str] + """Parse the version string from a + filename + "fragment" (stem) or egg fragment. + + :param fragment: The string to parse. E.g. foo-2.1 + :param canonical_name: The canonicalized name of the package this + belongs to. + """ + try: + version_start = _find_name_version_sep(fragment, canonical_name) + 1 + except ValueError: + return None + version = fragment[version_start:] + if not version: + return None + return version diff --git a/venv/lib/python3.8/site-packages/pip/_internal/index/sources.py b/venv/lib/python3.8/site-packages/pip/_internal/index/sources.py new file mode 100644 index 00000000..eec3f12f --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/index/sources.py @@ -0,0 +1,224 @@ +import logging +import mimetypes +import os +import pathlib +from typing import Callable, Iterable, Optional, Tuple + +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url, url_to_path +from pip._internal.vcs import is_url + +logger = logging.getLogger(__name__) + +FoundCandidates = Iterable[InstallationCandidate] +FoundLinks = Iterable[Link] +CandidatesFromPage = Callable[[Link], Iterable[InstallationCandidate]] +PageValidator = Callable[[Link], bool] + + +class LinkSource: + @property + def link(self) -> Optional[Link]: + """Returns the underlying link, if there's one.""" + raise NotImplementedError() + + def page_candidates(self) -> FoundCandidates: + """Candidates found by parsing an archive listing HTML file.""" + raise NotImplementedError() + + def file_links(self) -> FoundLinks: + """Links found by specifying archives directly.""" + raise NotImplementedError() + + +def _is_html_file(file_url: str) -> bool: + return mimetypes.guess_type(file_url, strict=False)[0] == "text/html" + + +class _FlatDirectorySource(LinkSource): + """Link source specified by ``--find-links=``. + + This looks the content of the directory, and returns: + + * ``page_candidates``: Links listed on each HTML file in the directory. + * ``file_candidates``: Archives in the directory. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + path: str, + ) -> None: + self._candidates_from_page = candidates_from_page + self._path = pathlib.Path(os.path.realpath(path)) + + @property + def link(self) -> Optional[Link]: + return None + + def page_candidates(self) -> FoundCandidates: + for path in self._path.iterdir(): + url = path_to_url(str(path)) + if not _is_html_file(url): + continue + yield from self._candidates_from_page(Link(url)) + + def file_links(self) -> FoundLinks: + for path in self._path.iterdir(): + url = path_to_url(str(path)) + if _is_html_file(url): + continue + yield Link(url) + + +class _LocalFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + If a URL is supplied, it must be a ``file:`` URL. If a path is supplied to + the option, it is converted to a URL first. This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not _is_html_file(self._link.url): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + if _is_html_file(self._link.url): + return + yield self._link + + +class _RemoteFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._page_validator = page_validator + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not self._page_validator(self._link): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + yield self._link + + +class _IndexDirectorySource(LinkSource): + """``--[extra-]index-url=``. + + This is treated like a remote URL; ``candidates_from_page`` contains logic + for this by appending ``index.html`` to the link. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + return () + + +def build_source( + location: str, + *, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + expand_dir: bool, + cache_link_parsing: bool, +) -> Tuple[Optional[str], Optional[LinkSource]]: + + path: Optional[str] = None + url: Optional[str] = None + if os.path.exists(location): # Is a local path. + url = path_to_url(location) + path = location + elif location.startswith("file:"): # A file: URL. + url = location + path = url_to_path(location) + elif is_url(location): + url = location + + if url is None: + msg = ( + "Location '%s' is ignored: " + "it is either a non-existing path or lacks a specific scheme." + ) + logger.warning(msg, location) + return (None, None) + + if path is None: + source: LinkSource = _RemoteFileSource( + candidates_from_page=candidates_from_page, + page_validator=page_validator, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + + if os.path.isdir(path): + if expand_dir: + source = _FlatDirectorySource( + candidates_from_page=candidates_from_page, + path=path, + ) + else: + source = _IndexDirectorySource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + elif os.path.isfile(path): + source = _LocalFileSource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + logger.warning( + "Location '%s' is ignored: it is neither a file nor a directory.", + location, + ) + return (url, None) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/locations/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/locations/__init__.py new file mode 100644 index 00000000..18bf0319 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/locations/__init__.py @@ -0,0 +1,184 @@ +import logging +import pathlib +import sys +import sysconfig +from typing import List, Optional + +from pip._internal.models.scheme import SCHEME_KEYS, Scheme + +from . import _distutils, _sysconfig +from .base import ( + USER_CACHE_DIR, + get_major_minor_version, + get_src_prefix, + site_packages, + user_site, +) + +__all__ = [ + "USER_CACHE_DIR", + "get_bin_prefix", + "get_bin_user", + "get_major_minor_version", + "get_platlib", + "get_prefixed_libs", + "get_purelib", + "get_scheme", + "get_src_prefix", + "site_packages", + "user_site", +] + + +logger = logging.getLogger(__name__) + + +def _default_base(*, user: bool) -> str: + if user: + base = sysconfig.get_config_var("userbase") + else: + base = sysconfig.get_config_var("base") + assert base is not None + return base + + +def _warn_if_mismatch(old: pathlib.Path, new: pathlib.Path, *, key: str) -> bool: + if old == new: + return False + issue_url = "https://github.com/pypa/pip/issues/9617" + message = ( + "Value for %s does not match. Please report this to <%s>" + "\ndistutils: %s" + "\nsysconfig: %s" + ) + logger.warning(message, key, issue_url, old, new) + return True + + +def _log_context( + *, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + prefix: Optional[str] = None, +) -> None: + message = ( + "Additional context:" "\nuser = %r" "\nhome = %r" "\nroot = %r" "\nprefix = %r" + ) + logger.warning(message, user, home, root, prefix) + + +def get_scheme( + dist_name, # type: str + user=False, # type: bool + home=None, # type: Optional[str] + root=None, # type: Optional[str] + isolated=False, # type: bool + prefix=None, # type: Optional[str] +): + # type: (...) -> Scheme + old = _distutils.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + new = _sysconfig.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + + base = prefix or home or _default_base(user=user) + warned = [] + for k in SCHEME_KEYS: + # Extra join because distutils can return relative paths. + old_v = pathlib.Path(base, getattr(old, k)) + new_v = pathlib.Path(getattr(new, k)) + + # distutils incorrectly put PyPy packages under ``site-packages/python`` + # in the ``posix_home`` scheme, but PyPy devs said they expect the + # directory name to be ``pypy`` instead. So we treat this as a bug fix + # and not warn about it. See bpo-43307 and python/cpython#24628. + skip_pypy_special_case = ( + sys.implementation.name == "pypy" + and home is not None + and k in ("platlib", "purelib") + and old_v.parent == new_v.parent + and old_v.name == "python" + and new_v.name == "pypy" + ) + if skip_pypy_special_case: + continue + + warned.append(_warn_if_mismatch(old_v, new_v, key=f"scheme.{k}")) + + if any(warned): + _log_context(user=user, home=home, root=root, prefix=prefix) + + return old + + +def get_bin_prefix(): + # type: () -> str + old = _distutils.get_bin_prefix() + new = _sysconfig.get_bin_prefix() + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="bin_prefix"): + _log_context() + return old + + +def get_bin_user(): + # type: () -> str + return _sysconfig.get_scheme("", user=True).scripts + + +def get_purelib(): + # type: () -> str + """Return the default pure-Python lib location.""" + old = _distutils.get_purelib() + new = _sysconfig.get_purelib() + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="purelib"): + _log_context() + return old + + +def get_platlib(): + # type: () -> str + """Return the default platform-shared lib location.""" + old = _distutils.get_platlib() + new = _sysconfig.get_platlib() + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="platlib"): + _log_context() + return old + + +def get_prefixed_libs(prefix): + # type: (str) -> List[str] + """Return the lib locations under ``prefix``.""" + old_pure, old_plat = _distutils.get_prefixed_libs(prefix) + new_pure, new_plat = _sysconfig.get_prefixed_libs(prefix) + + warned = [ + _warn_if_mismatch( + pathlib.Path(old_pure), + pathlib.Path(new_pure), + key="prefixed-purelib", + ), + _warn_if_mismatch( + pathlib.Path(old_plat), + pathlib.Path(new_plat), + key="prefixed-platlib", + ), + ] + if any(warned): + _log_context(prefix=prefix) + + if old_pure == old_plat: + return [old_pure] + return [old_pure, old_plat] diff --git a/venv/lib/python3.8/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1f496086cf0e9cf09690e81a103ed53b09751c5b GIT binary patch literal 3672 zcmcImTW{RP73K^tOL8w-$rs7CY|~Dhbkj&mdQA+)tzk=TQFm)tNzoE5C~AjVQ6iW0 z%&ct*Toj01v@d$@LtQ|6Dd3m>AU^aV0Se>?^hIr&o-@>CqsnhBi8(WK=Kjq&-}@`~B}$|2Cy*pJQeGt3&07ki;y}G^R0kI%}{d zYq1H|W|RH8e=gGY&PNyaiGMMgj%L`@OUll%^DhklQbaZ{t27f$vkNZ`c9Bhk{tBC6 zME#du8ZgF+W-e*t651}mG}#q4`@-^P*&FOCYrP=;Rd$WpFEsxeyUrZQuQQJ|A@|q~ zR)_osyU7}m-(+M(>%92|;@0iZ(s&RHS=v9(WtQNQ1hh zLHJeBb&OKa5?1Pi=xM2MMce!WXnTkVeu$0}g*z0~ zXMp?~?w3Kq$T7}fl3^Y)Hz4{tgAHZ4xvTWiUoz zGO}xpEJ@GM)(SIUENH$cb#OkqOGb8I8#&Urul?rJkt@wTtFUFQunPA%-KV2EYM@?I zbuwy5d(+u;nZ8A{zZ4K5wj9V^W^7rI*Ej1$W3#T>>d?znrAF0%)GV6(uaB1tXRjff z1@vUF%Ad49Q&!v6_X*J+FUwZpJSY4!IdOOzli9ll(FzN$#p(VRq@^8;4CpLk>e^qC zLpuSF*aniS9Z_8^Kjbtk-c^(azvgA?^2ixjKJFU_| zPYbZ`X%qe?F0SnO#I=yqN(+7z!PmcMcTCnvA&|z`Zv|xFR5Ywi<rtKt9{oMw+B5CsLQjo>^%7MCA|{AXL*`oxdlo=RlJMdZFI+-IHj> z--mfRwd#h@1F9QBdf?we@og07E3fDnAz=tO;T?_xe+#K1Z`ip_E)$Dp@PBx1+SfV zAE{^zbRKz!;mSk9pL?i`-UIvfj>6kKU%+jRqYCfD*Q3hsVCyM3al|g93Qqk@IR8h+ zu=CzohXdD#0GG~*4e&K~>VWgO9v~h_|r;9k64m0ltk4g>xU4U^?GMx~g=l1UkNm15a5NuCfnFV7S!u7HR1e zoYf}uOT#=a9T*LpxZuVX>6pvi?sB*DMp?rL3Or0ITKFyu=QAKmOK#_=MuX%!YOcV` zZ~pk@H=kxKO2m8>85HevWHJ5&6e=>PpnycI9^C3led=Xg)`B2Rk{~D@2oVper;;5g zmJb4c6PGpCvMhnfA$b*G6muyeL-eZfqZkf3gDbC8maC9I!ReS=N_!EuK1`xJXqMua zAP_11+Z28>>x|L-3E}_4m~i#BGc$46`cHUt0h0LBgT@5#aP=R!AJ~p<+OF;X2X{|P A*#H0l literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bbb043612a6befe53089106b7f58f4f6872a7705 GIT binary patch literal 3867 zcmb6c%WfRUae8)M+!vP=Ns*MIOl0LjM7tZrLE_MoBSR7s$1)v+G>j}9OorRNlUlE)aW}3fjb0;Z_L|9bZ#rr9TFFdrCYkNcYPuI+O6GcV8lQ^i zlZD=b#;ft=WU;phc#YQMrDVCc4EQo_(&>*$?+U#_TXY7nt8|uL`q=1wgU-=;cweIn z^fJ7^Nf+r7ynSkJ7%Nwge)1sehce1i;Xm48ocWKKA7|N~KghV>&(cA(EpGZzDr6YP zzL3Mg;HJ-H{~5T#SYIK^y_+RTm{LG%8+U(k|DF56+xLI7fs~QdQ=*#NOa}R(+{w}) zjpN)s=xV~-h376j z;xiD{duk-)*a5#*3L_%NZej83)Y>M6OYK`m;S}x(Ira+giFs-OmvcN-c)JzqQjbnO zHeobHoxLgXD`|a1q%ECd>cl**7KHB?Hs6;P1^f%x!NUH+__K9FJ|cz5KL^_9K&uz# zb2O6wsi^L{MKy2>BK`urf29o=d4-+-4Je+*&HV3xPXRtvRPrwYuL2IwlNwqX8OJqQ zzi0e*;kYhAnl_92W#hywYDN8)@$esX8rIXK?kU-G{y_M(qV{B3wm{1aKD71NJSD`C zvnK{ne=jfX&OMn2ibrQK(&WO40c$Y}5Gn7km-{scm;L2Fk>hsFQ+a^0mXCc408&OQWlQ* zA~5r5lrS@)tUQ!E%G%AMl+WPDs>tI=QXcIy<%U}V=_^e&g_Z`mIs67H_zr^aqJS5P z44lX)|2BTp9x1tTyA+|Sg6k)da)jP}RoP>Qs)34wGz;`pPYwP$NPo4~l}X;sqr5## z^RU0iXd4n8i`x&kcjZs>*9J)Ig0m#!;Dl~G&WBxC>L}Pc`JtLQ8wTa9^Ppa=12EjW z=@E-m0phz!>ZEF2C0F6?5eFdNo@v2o&TWwe;B$b_gu6=2uRX5{ybg~3<=Ol;XuOc4 zFh5Ol)N3%1Mqw0?Gm1)K750g9>_}2Llq^ARqHu-)Ry4FUw3i@9J+|RIx#8=uv-+_7 zoJn8qF#meFnCp=2IcFlzQVLnsmzkzUX+D%bL?dhyI7oE-O^}&5Mr)#3f0(coLIpw* zj!d>6Q6{uF1h8ZWQWq1PEZh&HINXYvU(PC4wT2xjbFtd(f+hjJ#xl{#_;&Zz?kI-g zP1!+bM<($rVXSvbvi69m=dEf*tJ+d+pN_0mZ3V`dpA9sQArNjeTpwqUB-lRSU|DGo z8hX=*b3(N`Og&Mm>7!FS=EG1sKO-KkRp5p50D%jO&rpk&ypFW%Bf;}BcmQ7}gS4@X z57qUeTem{NCI-@ov%bvu;l#@V)_Z;;JmafALSGk4sPs{P$IoEh9DG%ZM__db^`Emg zsxKWd^5^(GuKMiZFxtm53&E557ji0e2_4q)Y38Re5$wExFyIq2KkUNJP6DR`N!b5h zo{8vS#fMJg!|s0((=2U|7+_Z>dPW}ca7gj{9Zg=4kF#u`sA4#%nKB-7+*QVsuJT~;$ zfznOH56;m{q!q@70h}&{W(dnOwf0Q@ftEF>t-m<2YflMOADBK6IqOG*sL%1A;oS6Cin!j#8t&t$S@;yb3KM`~ z@&^F_k103#FG1jcO#>!DEAkm|j;DDCr@^QgUx=fzIzq6LQ4J_L6n|ksUQiiNv;Mpo?^eVNN8O4@g{1N1Y?z}5isB;_(=Zd|yzP`3Tetk>1 zK>#%%2+G~Q4=k#2E@vc^qqlmkd*jMH`uRB5_H;(=PG?jdbStAfJpKymyL6@xLa6Mp zco~=SFo)8|vD9)8!4v}AZC*p58>}nPE_5dCLMO>6i$$kAnEG_9<%=A;T}7)PW$92> z*IvYM_5)M4QWmBn-9VLz;|^MYaj7GP<34I1zA(tVTVU5PW^dr`iXQ{8Z0t?SPNYtJ d2zI#5I_8G*`giqB_)947uc|k^Y0viT{{YWm9RdIV literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8edf81ba5b449bf173286a2f652dddb5a5413846 GIT binary patch literal 4468 zcmbVPTW=f372X?{%Zq5;tc$N()o{(!qJqXKQo}G}J9eW)kqt0uS|S0p;tZvg$X$AN zD4PP+hsc5bV!%M3iZ+1sQo!wh=>O=v_Q^nhf&0?$%#sq-SS?x-JC`$O&TY?azZ@IO z8~FLpzgzp;S;P1{ZAO1CHXq?h{(*rR%xoDoQ_oh-(z9K&_3YFfJ!fheJ-am*v(?JB zy_(m~)p91?w_Evkp;l-YYel_xT4U`}t%P-kxvewp@!Gg)aO+@#Pac}JDL&0J2WJnB zeX};hvdnvC)Mit3GkoK8(x&-)d(Y?_(%E)}-#4m*bG^Tj;sT~Inf1N3XZB5fw$g{@1lPN-X;sBLgEgGs z6$Jc3^n4ln%`jqq;CBRXhEM%Oo5gR&!k3%eZ*+y=k@P#T2w?3>KJVlA#b%iJQiMFY znF8MPm)o5d3>ryoI{&Bs!|HXvn{ei@_xwk_M?F7|{I9?(evE_tXN) ztgGxmB2^s4C})(N^b%DHPZ(J_B%!k6L`~N3{OZo~%ALC__v@*zR?Ajx_9T8i={E6> zIaA(n_1X}V@VK`RmSnrL)CoI_-KYa8Ia_?P$$4w>@y3??Md!mNoh{YFNOBPct)*7n z(C;}}szb0w95us@N~fpBfYL-Lq;|bP9zBD>7@Iad(=m$}>2b`w>6&61CnrLI!iK^@ zhr)YUkb6@gz^y3+EQG)ug#fd#&Wfwj-Z#EA863N8?|yL7qv3qwzxuPv)Co`JQ+w08 z?1(d9ElMwZK_zMUBZFu0khznO;R}6JOuoP);Q`Frx4t!B7~%>b zR{*hx5aysX+>qwJvFApUxbu;;^x7rw*mGYP8e{#r(KM+rJ@cgVF^bS$Hu7JX`s}yQ zO`K&LP{s7 zU-C4!Eu>j~!EeM!?@1?)7^)a$Cd&C?)Ir+q1Omwg;hqd~{!I<>S(wN=<(-=vnO4Ju zM~NfY;6z7ost!nhMDVz#q}f!AEs(C9r!NT88UkE0jI|8d9y`M^=$kT#-_x zh=GbTEdUvkv|UU>$^B06h*+i3-0*P&1&(-@MY48$ugp|Kf6 z8@x_|qp~0tNGVh{Nf+f(dPAoS+<=>it3=1q_}(yPH1k>^wOfjugYm*(y~PuiN#!LQ z)^e#0>rZ>)8WFO$c~51~(|1!BDO;LBs?8K(pSYJqRAl)BT8NxmZz` zGHp3l$#&7Bj9VpiD>IgbGVYq=H2%}g(yeLi#C=dXQP_zr)vkMZk{cMPu+!($cNX%v zwQY%OfY67QtsxFUScaPP1Lx3S?mRl1a(4BNelIQy#FH?3LmkNO_)@i(NZwvr3D-p+ zdP}>drEVg0AJ$sJCye$6_zAs8rOPk1>!}ew08EfPBQ;;QG1@vMvJNN=iu3P*r=8ib zufPW4Q|y1BCApi{lGsV(z=ZUsmfl*`Ui#V+|CwunxDLGikXRB)!xAeP|2K9zGCsq# zcWRgNNyF<;KpOJ-ocO#eIcc>Pa7r()kJx7BA1!9RG$~Cn8)X?S!@SX?mNSD7N*&nZ zGA%|G)Ys2O}OVz z;>l8mDV%ka5&x|_Kf^vgSheu4upmtI1ID+1)w%UlLk3HSH1=YGO yew*IA&H@zsgTFP7m@ZmHD_ga6z7UC;9}Uglpa`GmIs literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/locations/__pycache__/base.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/locations/__pycache__/base.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1d19fca373ad8372ecbf428e491de0e2419d65a8 GIT binary patch literal 1178 zcmZuwQE%He5GEyAmL1zm8Xzr-At3T*V3AuCXgi=S5@Z1ypvZ=##X7xcvP9c*WKtuk zBzBsoZWz#qqCdfY>>t^W;On0D7xuIx?JXHl61pSrc;wypo!+$DO$3Ad{@c%g)DZg9 zY;KPLHhb{NParas;Q~cVjU#OLPUKkaMy}Ofuhf70alI&vT)wq@e6vyJcSLdRYltUKb_fK+;^BjxrEylfx(=_dyRP;JTuc(BT{)GywR#}V z*?@mWq5=6?@%LU&P0AirwOg?=NzZ7udoiN4*!^WVR^OIS2gcWfI7J0ZieACfL_w;u z*H0u3%c;IQq$;+>#I~4t_11;~!XSctu?F&gXkjpz#;|Bbuu$kd688*Vb60ueT80T0Nd|&XNSZLhI4L+A!oj`?fi?)cP2obG+Tl`rWuivf8}por zx-t5tpo9EU`+!Ayk?H#Pr-wptp*?z;D`>60G$GJhO~@o(p1xs0m_JB&43IbO`(TqD z5XkZI9oNBIxZ|vQVhb$YP0O!cqkisyc zx4+;CZ`yoWX{VCV{ArSoXbeAw?z}lYJc$qX4_+R|-yNOkz~pO@Xqz-(nVuy>DlOYK zO}z<6%q_ Dict[str, str] + """ + Return a distutils install scheme + """ + from distutils.dist import Distribution + + dist_args = {"name": dist_name} # type: Dict[str, Union[str, List[str]]] + if isolated: + dist_args["script_args"] = ["--no-user-cfg"] + + d = Distribution(dist_args) + d.parse_config_files() + obj = None # type: Optional[DistutilsCommand] + obj = d.get_command_obj("install", create=True) + assert obj is not None + i = cast(distutils_install_command, obj) + # NOTE: setting user or home has the side-effect of creating the home dir + # or user base for installations during finalize_options() + # ideally, we'd prefer a scheme class that has no side-effects. + assert not (user and prefix), f"user={user} prefix={prefix}" + assert not (home and prefix), f"home={home} prefix={prefix}" + i.user = user or i.user + if user or home: + i.prefix = "" + i.prefix = prefix or i.prefix + i.home = home or i.home + i.root = root or i.root + i.finalize_options() + + scheme = {} + for key in SCHEME_KEYS: + scheme[key] = getattr(i, "install_" + key) + + # install_lib specified in setup.cfg should install *everything* + # into there (i.e. it takes precedence over both purelib and + # platlib). Note, i.install_lib is *always* set after + # finalize_options(); we only want to override here if the user + # has explicitly requested it hence going back to the config + if "install_lib" in d.get_option_dict("install"): + scheme.update(dict(purelib=i.install_lib, platlib=i.install_lib)) + + if running_under_virtualenv(): + scheme["headers"] = os.path.join( + i.prefix, + "include", + "site", + f"python{get_major_minor_version()}", + dist_name, + ) + + if root is not None: + path_no_drive = os.path.splitdrive(os.path.abspath(scheme["headers"]))[1] + scheme["headers"] = os.path.join( + root, + path_no_drive[1:], + ) + + return scheme + + +def get_scheme( + dist_name, # type: str + user=False, # type: bool + home=None, # type: Optional[str] + root=None, # type: Optional[str] + isolated=False, # type: bool + prefix=None, # type: Optional[str] +): + # type: (...) -> Scheme + """ + Get the "scheme" corresponding to the input parameters. The distutils + documentation provides the context for the available schemes: + https://docs.python.org/3/install/index.html#alternate-installation + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme and provides the base + directory for the same + :param root: root under which other directories are re-based + :param isolated: equivalent to --no-user-cfg, i.e. do not consider + ~/.pydistutils.cfg (posix) or ~/pydistutils.cfg (non-posix) for + scheme paths + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + scheme = _distutils_scheme(dist_name, user, home, root, isolated, prefix) + return Scheme( + platlib=scheme["platlib"], + purelib=scheme["purelib"], + headers=scheme["headers"], + scripts=scheme["scripts"], + data=scheme["data"], + ) + + +def get_bin_prefix(): + # type: () -> str + if WINDOWS: + bin_py = os.path.join(sys.prefix, "Scripts") + # buildout uses 'bin' on Windows too? + if not os.path.exists(bin_py): + bin_py = os.path.join(sys.prefix, "bin") + return bin_py + # Forcing to use /usr/local/bin for standard macOS framework installs + # Also log to ~/Library/Logs/ for use with the Console.app log viewer + if sys.platform[:6] == "darwin" and sys.prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return os.path.join(sys.prefix, "bin") + + +def get_purelib(): + # type: () -> str + return get_python_lib(plat_specific=False) + + +def get_platlib(): + # type: () -> str + return get_python_lib(plat_specific=True) + + +def get_prefixed_libs(prefix): + # type: (str) -> Tuple[str, str] + return ( + get_python_lib(plat_specific=False, prefix=prefix), + get_python_lib(plat_specific=True, prefix=prefix), + ) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/locations/_sysconfig.py b/venv/lib/python3.8/site-packages/pip/_internal/locations/_sysconfig.py new file mode 100644 index 00000000..e4d66d25 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/locations/_sysconfig.py @@ -0,0 +1,174 @@ +import distutils.util # FIXME: For change_root. +import logging +import os +import sys +import sysconfig +import typing + +from pip._internal.exceptions import InvalidSchemeCombination, UserInstallationInvalid +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import get_major_minor_version + +logger = logging.getLogger(__name__) + + +# Notes on _infer_* functions. +# Unfortunately ``_get_default_scheme()`` is private, so there's no way to +# ask things like "what is the '_prefix' scheme on this platform". These +# functions try to answer that with some heuristics while accounting for ad-hoc +# platforms not covered by CPython's default sysconfig implementation. If the +# ad-hoc implementation does not fully implement sysconfig, we'll fall back to +# a POSIX scheme. + +_AVAILABLE_SCHEMES = set(sysconfig.get_scheme_names()) + + +def _infer_prefix(): + # type: () -> str + """Try to find a prefix scheme for the current platform. + + This tries: + + * Implementation + OS, used by PyPy on Windows (``pypy_nt``). + * Implementation without OS, used by PyPy on POSIX (``pypy``). + * OS + "prefix", used by CPython on POSIX (``posix_prefix``). + * Just the OS name, used by CPython on Windows (``nt``). + + If none of the above works, fall back to ``posix_prefix``. + """ + implementation_suffixed = f"{sys.implementation.name}_{os.name}" + if implementation_suffixed in _AVAILABLE_SCHEMES: + return implementation_suffixed + if sys.implementation.name in _AVAILABLE_SCHEMES: + return sys.implementation.name + suffixed = f"{os.name}_prefix" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if os.name in _AVAILABLE_SCHEMES: # On Windows, prefx is just called "nt". + return os.name + return "posix_prefix" + + +def _infer_user(): + # type: () -> str + """Try to find a user scheme for the current platform.""" + suffixed = f"{os.name}_user" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if "posix_user" not in _AVAILABLE_SCHEMES: # User scheme unavailable. + raise UserInstallationInvalid() + return "posix_user" + + +def _infer_home(): + # type: () -> str + """Try to find a home for the current platform.""" + suffixed = f"{os.name}_home" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + return "posix_home" + + +# Update these keys if the user sets a custom home. +_HOME_KEYS = [ + "installed_base", + "base", + "installed_platbase", + "platbase", + "prefix", + "exec_prefix", +] +if sysconfig.get_config_var("userbase") is not None: + _HOME_KEYS.append("userbase") + + +def get_scheme( + dist_name, # type: str + user=False, # type: bool + home=None, # type: typing.Optional[str] + root=None, # type: typing.Optional[str] + isolated=False, # type: bool + prefix=None, # type: typing.Optional[str] +): + # type: (...) -> Scheme + """ + Get the "scheme" corresponding to the input parameters. + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme + :param root: root under which other directories are re-based + :param isolated: ignored, but kept for distutils compatibility (where + this controls whether the user-site pydistutils.cfg is honored) + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + if user and prefix: + raise InvalidSchemeCombination("--user", "--prefix") + if home and prefix: + raise InvalidSchemeCombination("--home", "--prefix") + + if home is not None: + scheme_name = _infer_home() + elif user: + scheme_name = _infer_user() + else: + scheme_name = _infer_prefix() + + if home is not None: + variables = {k: home for k in _HOME_KEYS} + elif prefix is not None: + variables = {k: prefix for k in _HOME_KEYS} + else: + variables = {} + + paths = sysconfig.get_paths(scheme=scheme_name, vars=variables) + + # Pip historically uses a special header path in virtual environments. + if running_under_virtualenv(): + if user: + base = variables.get("userbase", sys.prefix) + else: + base = variables.get("base", sys.prefix) + python_xy = f"python{get_major_minor_version()}" + paths["include"] = os.path.join(base, "include", "site", python_xy) + + scheme = Scheme( + platlib=paths["platlib"], + purelib=paths["purelib"], + headers=os.path.join(paths["include"], dist_name), + scripts=paths["scripts"], + data=paths["data"], + ) + if root is not None: + for key in SCHEME_KEYS: + value = distutils.util.change_root(root, getattr(scheme, key)) + setattr(scheme, key, value) + return scheme + + +def get_bin_prefix(): + # type: () -> str + # Forcing to use /usr/local/bin for standard macOS framework installs. + if sys.platform[:6] == "darwin" and sys.prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return sysconfig.get_paths()["scripts"] + + +def get_purelib(): + # type: () -> str + return sysconfig.get_paths()["purelib"] + + +def get_platlib(): + # type: () -> str + return sysconfig.get_paths()["platlib"] + + +def get_prefixed_libs(prefix): + # type: (str) -> typing.Tuple[str, str] + paths = sysconfig.get_paths(vars={"base": prefix, "platbase": prefix}) + return (paths["purelib"], paths["platlib"]) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/locations/base.py b/venv/lib/python3.8/site-packages/pip/_internal/locations/base.py new file mode 100644 index 00000000..98557abb --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/locations/base.py @@ -0,0 +1,48 @@ +import os +import site +import sys +import sysconfig +import typing + +from pip._internal.utils import appdirs +from pip._internal.utils.virtualenv import running_under_virtualenv + +# Application Directories +USER_CACHE_DIR = appdirs.user_cache_dir("pip") + +# FIXME doesn't account for venv linked to global site-packages +site_packages = sysconfig.get_path("purelib") # type: typing.Optional[str] + + +def get_major_minor_version(): + # type: () -> str + """ + Return the major-minor version of the current Python as a string, e.g. + "3.7" or "3.10". + """ + return "{}.{}".format(*sys.version_info) + + +def get_src_prefix(): + # type: () -> str + if running_under_virtualenv(): + src_prefix = os.path.join(sys.prefix, "src") + else: + # FIXME: keep src in cwd for now (it is not a temporary folder) + try: + src_prefix = os.path.join(os.getcwd(), "src") + except OSError: + # In case the current working directory has been renamed or deleted + sys.exit("The folder you are executing pip from can no longer be found.") + + # under macOS + virtualenv sys.prefix is not properly resolved + # it is something like /path/to/python/bin/.. + return os.path.abspath(src_prefix) + + +try: + # Use getusersitepackages if this is present, as it ensures that the + # value is initialised properly. + user_site = site.getusersitepackages() # type: typing.Optional[str] +except AttributeError: + user_site = site.USER_SITE diff --git a/venv/lib/python3.8/site-packages/pip/_internal/main.py b/venv/lib/python3.8/site-packages/pip/_internal/main.py new file mode 100644 index 00000000..51eee158 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/main.py @@ -0,0 +1,13 @@ +from typing import List, Optional + + +def main(args=None): + # type: (Optional[List[str]]) -> int + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/metadata/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/metadata/__init__.py new file mode 100644 index 00000000..63335a19 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/metadata/__init__.py @@ -0,0 +1,43 @@ +from typing import List, Optional + +from .base import BaseDistribution, BaseEnvironment + + +def get_default_environment(): + # type: () -> BaseEnvironment + """Get the default representation for the current environment. + + This returns an Environment instance from the chosen backend. The default + Environment instance should be built from ``sys.path`` and may use caching + to share instance state accorss calls. + """ + from .pkg_resources import Environment + + return Environment.default() + + +def get_environment(paths): + # type: (Optional[List[str]]) -> BaseEnvironment + """Get a representation of the environment specified by ``paths``. + + This returns an Environment instance from the chosen backend based on the + given import paths. The backend must build a fresh instance representing + the state of installed distributions when this function is called. + """ + from .pkg_resources import Environment + + return Environment.from_paths(paths) + + +def get_wheel_distribution(wheel_path, canonical_name): + # type: (str, str) -> BaseDistribution + """Get the representation of the specified wheel's distribution metadata. + + This returns a Distribution instance from the chosen backend based on + the given wheel's ``.dist-info`` directory. + + :param canonical_name: Normalized project name of the given wheel. + """ + from .pkg_resources import Distribution + + return Distribution.from_wheel(wheel_path, canonical_name) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f567638a874a8b433a5f2482b4688453da077bcc GIT binary patch literal 1689 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 QtzR*!#ytEg=He&+2X!?CRsaA1 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eefe14a93795490caef8055ed56a8889d0f28ec6 GIT binary patch literal 4199 zcmbVP&2JmW6`$E%k}H0R5-Hh^YlH=gAao-t2-4Is(n4)rIY9#@sZu*xpjfRrBXOnu zpk|g9%u+xBx#+3rwTB+0qyMGpu_ylvxuoySa>-qZF4`=y!#6W;W`6U&_YaLmmB7>e z>t7E3(IVvE*vUT@bavpC|AdASMg!vDzY);TaE#D&%+PWyieqL_3d>Ge(^gOkZO7Jh zDOd@sPEFJ0pdL1yhNde)GhB66HEjp2aLri*dWBVk^|0-n>P{e%k%8x8P6`NxFL z4!rWu&~V~VMjV4tX1pYh$t`9w>m|9MPKlRUiIp{70lLC$P1`_&cs0EOv=%DxSAo_7 z1-b_GDr;$;I?!uuUDFMq+pMGMCffjkZ>oA8^uPd6*@HB`zkyexg-z*{xL_pvWFwEdpK%OOxY<(zVg+6ezYj!0j_H)5 zsQ+gCef``_jHx*_ru4!*x1N%pk*~<_$v0$5rq%`8qPh1q+_4JA5}!H#=%Ww82r3hQ zbm#|MRbXTn2!V3xm6SOMq_Rd{GE^4YpE4$gq62eU8fmi$T~$34ahO^bPRlYh#B9+` zI=NN2(}Hh+7MMLqUw;ozuaaJ89X&T=bpt=*QrTbr?y>vX z-tHHw1PbCpRl%`EBF}u#K}n7RKY>4R=n)77WuPovcuf+jHQ#oIpbM-L1xw5hZPK^s zPS#BJSu|XSesuyj#V7Lptpwd-~K@f9&>2l^L-ZSuUbf~3p?2P5- zIW)z#bsV$AIa&s_MF7%*FxIb=N%|dqFxQZoy`%HV8Z^!Tp9Y6K~^)4em4IB6*?X znfNJ;2{cJ&``vO*nEV|!n-tu5m~H4gRguC8k^ddL91nW@xL_ZFH3MKT zJZNA$@XANf{MXEG%`^KfuRE1Ar#p6<&z%+4fC$-CwOoDizb5B2&QN8#XEKX@#+l4r zUf&yq`YFPlrPNODs6|G_h?YG_&!d|z2y{-(J1}MlRXdBti60%gk|#YXFwtB)TvZr9 z^u|H*Im~4Nt(^xjo4;{qtYx(qH-VVK`QXQpY;ItvK20&~0|Y}uz=ALtUKhhGA?vBH za$q*|V013lECoD>1(mMxyaxmXG(d80Oaavuft0v;Zcfc(V``ijkPgjx`osFdnEY$k zk6731qL*idXE*ec!4QPkO@_RCaDX0gaM1N5-RFyHvtO-tXV2F|Uv?$;#9+u}7r}P# zL)mh_u(9lV&pkiDkhWyE_qs_u-%mr(=RM;?@3|j~ZhQz>ilrImqO_QW5_5lO6{aQE3HiKf!tEBT~;o2z=rT%g$j1^fdN4L0vc5j{B-OKF0^A5a^zl|?8f7WfuMAWrUkJ~2CeIo9>C5L%RORMsYR`- z0R?1>+H~@xycBLM%lk6=F-k%2^%f9V$brQ+&uIc4bwQuN4NuEhsAZKUUPwniv5wRt zmSQ+jZTF_4{{#~fy@VK`qPO$lmT>R&ssdA~c!15v*kFtj53$+72Gx}c_c2l!y>c)X zAssUza%dsVLb?v$cEi3caJF|_+<`w;PF{?_*#wG1pgaV^RWrX5F xEuySv@Kq|X#t{u{Fixgg!+S3im$E-e^X@OvKqQ)=O*=*%T&q57J7(*_e*kqh%@zOv literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/metadata/base.py b/venv/lib/python3.8/site-packages/pip/_internal/metadata/base.py new file mode 100644 index 00000000..37f9a823 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/metadata/base.py @@ -0,0 +1,142 @@ +import logging +import re +from typing import Container, Iterator, List, Optional, Union + +from pip._vendor.packaging.version import LegacyVersion, Version + +from pip._internal.utils.misc import stdlib_pkgs # TODO: Move definition here. + +DistributionVersion = Union[LegacyVersion, Version] + +logger = logging.getLogger(__name__) + + +class BaseDistribution: + @property + def location(self): + # type: () -> Optional[str] + """Where the distribution is loaded from. + + A string value is not necessarily a filesystem path, since distributions + can be loaded from other sources, e.g. arbitrary zip archives. ``None`` + means the distribution is created in-memory. + """ + raise NotImplementedError() + + @property + def metadata_version(self): + # type: () -> Optional[str] + """Value of "Metadata-Version:" in the distribution, if available.""" + raise NotImplementedError() + + @property + def canonical_name(self): + # type: () -> str + raise NotImplementedError() + + @property + def version(self): + # type: () -> DistributionVersion + raise NotImplementedError() + + @property + def installer(self): + # type: () -> str + raise NotImplementedError() + + @property + def editable(self): + # type: () -> bool + raise NotImplementedError() + + @property + def local(self): + # type: () -> bool + raise NotImplementedError() + + @property + def in_usersite(self): + # type: () -> bool + raise NotImplementedError() + + +class BaseEnvironment: + """An environment containing distributions to introspect.""" + + @classmethod + def default(cls): + # type: () -> BaseEnvironment + raise NotImplementedError() + + @classmethod + def from_paths(cls, paths): + # type: (Optional[List[str]]) -> BaseEnvironment + raise NotImplementedError() + + def get_distribution(self, name): + # type: (str) -> Optional[BaseDistribution] + """Given a requirement name, return the installed distributions.""" + raise NotImplementedError() + + def _iter_distributions(self): + # type: () -> Iterator[BaseDistribution] + """Iterate through installed distributions. + + This function should be implemented by subclass, but never called + directly. Use the public ``iter_distribution()`` instead, which + implements additional logic to make sure the distributions are valid. + """ + raise NotImplementedError() + + def iter_distributions(self): + # type: () -> Iterator[BaseDistribution] + """Iterate through installed distributions.""" + for dist in self._iter_distributions(): + # Make sure the distribution actually comes from a valid Python + # packaging distribution. Pip's AdjacentTempDirectory leaves folders + # e.g. ``~atplotlib.dist-info`` if cleanup was interrupted. The + # valid project name pattern is taken from PEP 508. + project_name_valid = re.match( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", + dist.canonical_name, + flags=re.IGNORECASE, + ) + if not project_name_valid: + logger.warning( + "Ignoring invalid distribution %s (%s)", + dist.canonical_name, + dist.location, + ) + continue + yield dist + + def iter_installed_distributions( + self, + local_only=True, # type: bool + skip=stdlib_pkgs, # type: Container[str] + include_editables=True, # type: bool + editables_only=False, # type: bool + user_only=False, # type: bool + ): + # type: (...) -> Iterator[BaseDistribution] + """Return a list of installed distributions. + + :param local_only: If True (default), only return installations + local to the current virtualenv, if in a virtualenv. + :param skip: An iterable of canonicalized project names to ignore; + defaults to ``stdlib_pkgs``. + :param include_editables: If False, don't report editables. + :param editables_only: If True, only report editables. + :param user_only: If True, only report installations in the user + site directory. + """ + it = self.iter_distributions() + if local_only: + it = (d for d in it if d.local) + if not include_editables: + it = (d for d in it if not d.editable) + if editables_only: + it = (d for d in it if d.editable) + if user_only: + it = (d for d in it if d.in_usersite) + return (d for d in it if d.canonical_name not in skip) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/metadata/pkg_resources.py b/venv/lib/python3.8/site-packages/pip/_internal/metadata/pkg_resources.py new file mode 100644 index 00000000..f39a39eb --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/metadata/pkg_resources.py @@ -0,0 +1,126 @@ +import zipfile +from typing import Iterator, List, Optional + +from pip._vendor import pkg_resources +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.utils import misc # TODO: Move definition here. +from pip._internal.utils.packaging import get_installer +from pip._internal.utils.wheel import pkg_resources_distribution_for_wheel + +from .base import BaseDistribution, BaseEnvironment, DistributionVersion + + +class Distribution(BaseDistribution): + def __init__(self, dist): + # type: (pkg_resources.Distribution) -> None + self._dist = dist + + @classmethod + def from_wheel(cls, path, name): + # type: (str, str) -> Distribution + with zipfile.ZipFile(path, allowZip64=True) as zf: + dist = pkg_resources_distribution_for_wheel(zf, name, path) + return cls(dist) + + @property + def location(self): + # type: () -> Optional[str] + return self._dist.location + + @property + def metadata_version(self): + # type: () -> Optional[str] + for line in self._dist.get_metadata_lines(self._dist.PKG_INFO): + if line.lower().startswith("metadata-version:"): + return line.split(":", 1)[-1].strip() + return None + + @property + def canonical_name(self): + # type: () -> str + return canonicalize_name(self._dist.project_name) + + @property + def version(self): + # type: () -> DistributionVersion + return parse_version(self._dist.version) + + @property + def installer(self): + # type: () -> str + return get_installer(self._dist) + + @property + def editable(self): + # type: () -> bool + return misc.dist_is_editable(self._dist) + + @property + def local(self): + # type: () -> bool + return misc.dist_is_local(self._dist) + + @property + def in_usersite(self): + # type: () -> bool + return misc.dist_in_usersite(self._dist) + + +class Environment(BaseEnvironment): + def __init__(self, ws): + # type: (pkg_resources.WorkingSet) -> None + self._ws = ws + + @classmethod + def default(cls): + # type: () -> BaseEnvironment + return cls(pkg_resources.working_set) + + @classmethod + def from_paths(cls, paths): + # type: (Optional[List[str]]) -> BaseEnvironment + return cls(pkg_resources.WorkingSet(paths)) + + def _search_distribution(self, name): + # type: (str) -> Optional[BaseDistribution] + """Find a distribution matching the ``name`` in the environment. + + This searches from *all* distributions available in the environment, to + match the behavior of ``pkg_resources.get_distribution()``. + """ + canonical_name = canonicalize_name(name) + for dist in self.iter_distributions(): + if dist.canonical_name == canonical_name: + return dist + return None + + def get_distribution(self, name): + # type: (str) -> Optional[BaseDistribution] + + # Search the distribution by looking through the working set. + dist = self._search_distribution(name) + if dist: + return dist + + # If distribution could not be found, call working_set.require to + # update the working set, and try to find the distribution again. + # This might happen for e.g. when you install a package twice, once + # using setup.py develop and again using setup.py install. Now when + # running pip uninstall twice, the package gets removed from the + # working set in the first uninstall, so we have to populate the + # working set again so that pip knows about it and the packages gets + # picked up and is successfully uninstalled the second time too. + try: + # We didn't pass in any version specifiers, so this can never + # raise pkg_resources.VersionConflict. + self._ws.require(name) + except pkg_resources.DistributionNotFound: + return None + return self._search_distribution(name) + + def _iter_distributions(self): + # type: () -> Iterator[BaseDistribution] + for dist in self._ws: + yield Distribution(dist) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/models/__init__.py new file mode 100644 index 00000000..7855226e --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/models/__init__.py @@ -0,0 +1,2 @@ +"""A package that contains models that represent entities. +""" diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f92d389f3b70dc81ddbc9bc22d287dfb1fd1336a GIT binary patch literal 224 zcmYjLF%H5o3`|+5koZGZhBhlm2Mc1jpYBfv53=AIYEW=dr??-!d{A##yfd9eCgmRcHFSQBS)*|!ko znTj8FCQBa1-M)_VE7h%f4CYvo^`xtPklMhOjw!fU2Wgua#@O%@<}tV-9TH9~9eT$Y zc|#w(Z`m=~35H~cK=YvaUEhX+eyPX?@ZMJ9Ie%B~yBQ(7d65^}yrVK>l9~=-Ti2|} z*}sGH)WeK|iPKQ`L7SGLQ%Tpko< z*4dR}`Qv*j)$-o$}KQsMj_j7;@+JVqHjF#GlIyNpWy?=Fi7H@@IAUK+n|e0UUR z7JQ;_BgVN4pcUi_ZH;qd0qnvxVCS!;2#BvLk}13@N}F?6=Nz7OpfGN5zBkC!I0FZW zeg~#OGe-5T0ebMI^&NC~!MWyGO&zHeWH0%=flCl(B}Y_i#b-pBU-uf*QCQ7yC6Sv4 ziM2r2h3M-RiZI&-@wX;I_i&GCaPEG!aH7T5NQ*7}ks5!Wd+=v|U~^^0t2BPm>clG$ VFPV(iMhvW@1`U3 zpJU5fwNjAAa%)SP*P?nVo%hmE1P|g+I=|?oQM(ny(!9OZ31xxuyMd6_ofg_<@meIp zdU{91@_b&r8^jS0=(`mm+Cmo4^IogbmJ`dOz7}nUs#3UHPgH^3?oDwujo%gV!g|tf z^%g$5ck$li50>X^!F=!1{G0Rshu^!m{qkGKwN~D~Sf@=Kei$lCNJ$Ao zKS0*k``Si9l={Xkt&iHAwr!?b-|Vv;J-L(up1V3~dY|nXJM7o2Z_);Pue}?l-ewSY zL$4v)O^-vSBt)_01ugDvh9YWgdEv($NG{}F3Xv}K<{y7YY7}s|Zpi`<8$mZtrKN~FV68Zf z%}Uc>4O6J6mYheX84fdvlOk+ z>p9q^jbd^o)gfk8ho}qHk!5HJ!qY7z#luxh{o(XB>jVB9MFHIWL4OF0?6a!cQ$?5h z!X;@&P|op9x|ic9N$c%q=gRkKJ_4qVT{v3ryMFj_P*3A6zugM`c4Ogk+^z?4as`Fq zH@(GXlmH;B9>#d>h8JY25A|rYUjZb=ptM;}ROxeKQt#DfTZCS^7PP+UcY?mF7#ReO zIBd!Ca*~81H$N37Em|}g-{I8QHZIXNN!}z#K#l=!MrrV#X5uCE)Tw*;(8>nV&yW(r z$WW}i+MW_EL}c{58^K1XbPy_6kGq_hQYEe^El3tdWJvSnGW-@Q5y^1&p1#et^}aro zV_*NHlBA#^nJf+QZImV3kZf~&tL|m80ZN$fV32~V4RJaUXwUN-Q4E{qw?Nb(S>~T8 z4yIuPuXVHN+U=uA|+;@B+v^`-~Da$z{AuGou_^ia8oq&9sW1*Pwf zDAD%%WDXhmiXCH6(ourXK%0@5%)Dgn7~FnpDf4n7^%d*nE<+hWX(XvohIC(-MmN0{$wdu*Umg9FOl9swSKPqCdKn`zsDRxxQJqF94RRh(SLkVBhN z`=R|mM9K_?**kM6Mm!nrxxXj-cM{yW{*)p|sXETT~ibouvLNq>LH*7&C@&g7>~W z`tbogXz3QsKn1|V)V_9YK*O%1KJpN?OGrnd;r>@6Tm(xe#00*S&d`lt|6gI@ggi>= zgfWE1HOx284T8pRi9*7dX7;A9W#@>KVUgQ_7xBUIu;4m3o|@cLa1BfrOx%u1^`RcGaAy_uZ8Z-5a}-wY!imm_i*;$%RA!ii$aNjUiv zQJ^@ZAL7gaBh?DKelkc%csum@7)YEt8b=-jwI!sahAj8gGsHxAY4~c6Q>^mV@X`Zs z?eHRb>(JpYpHOW@oOUPC=Ay04r&QYnpXR5~R#K<3(}EmWbtJB*Fo^a?98q!Ez?YL3 zXUd}^92)p8yA`I0(PgoV$k^||*T~aZ6M{ZJZye)_JdYr#+1?EOpqs8`o;v$#A8RJ0 zF`7=Nv}xUart9w4x?z8%TPFOr$$BqB8;0yVVVV&iPOQxJm+V^#503LK{P!Ni8AjX1 z`DNWgSyw$aY6Uv`t~*FYB)37mhGHD+{RMdN9!2SzNBet=HvOnAxYr3p>SY9RoORX0;6LABX zbkWgmsV-?J^|i1WO0yHBYtlmWDz>E45WygOz7hQQon>=N?A?9VsCLpcz?|tn1SZzprpZ@>TEj0dH~^j|ho)mxM{8vtpKE@g9t*~lka_mr{juV0`g>*Wi-N8M`mQW)42yNmDWyG6oZBC_C z$_~tdDydMIJo2YV>MF^xwST*=GX=m+Iwtb6Q$%hO5%|9#3%<|Wb>Gi+sEbgRU`k-k z7L+j)zr;+^#$_O`KLjyZP;4Oxh=N2aY|6+12)az8`GPpce00LX5Wu0B$DK(>TPTk%J6;&yRskDybpqfLM z&~&Yxspv7Bkj~}odiV+nUB%0EGfBUT(7?g(OVe?5_&#IWbf;X$nR4uMrF^!0u5A1V DGw(UY literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/format_control.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/format_control.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c24ce34176e00f8ebf8731720608d9b4f5423c8 GIT binary patch literal 2498 zcmaJ@S#KLR5GJ{YR*LLgMv^vZvMqY4h~yqA+8U`5AWhQtK?Q2G4+2tVv!tb!_mId{ z94o7r+ClOo`d~liFY&cc`3nZxbY?g5kr<^hTyi)Z&GF69zbz~@2n_$((+788^*3&g z4huH7fb=R%f(ROug!X8{dMvSe7DXP5?ZoLh<=Tqfq}HoZa*qgGI6Fi*+pOmaca5}a zFF^-sS*CthWmB21$=rCqjPfW;gVOlBYo;f!VyBB}tHqJ4$6L zL@h_hfsI|@O46f(^q8PMOE6*eS;DzL!1_8;Co8gVDmY%a5qy)kl)VITxId}-j6aKN#(C+$_JBzew6lc10vdAS6Sk3 z4x(`22mUAsH-f(O!6E;l^rKYgK^#lbY4|WqJIhCdH*6U3-M0e%`*9_=3 zkiHI60nTlBYB491{fTg!O;kn@75 z1vuEhx11-V&1?GLO<+D#+Jzk_j2><;ry)R^jQ4 zwv5L?D9Sls1hu*e6JZ{8DG+n%^un=tcILt%x;Y=Xwt>)ny#iBCo|ETvNVl0jle0Bk zThGbR+OU)_=o-oGXXF`OXPEIF4^Mx9oNmKO%kJI{DX5qa)a?L$1*AWKsUY{?ol*D& zT7Z81CH!u%-w7q-GLQ;u1YlU}%RI<))nbNqJ~wpZ1v5^T52RA)W*J9?UYq*OzD(ug zky`a(tI-#mu~*Yi-gI7$Iq%$zGr+rE?Ht@{Ii?Zm5;AEhO`Y>F4z%XnEOxW}r(_h% zL_#J69_cvC@yG&rwOD1!68vIi&v{&xM!B5h&s{=`kU?0J+9fSA``_u(Nwyse9flD@ zSEBI(ECk(!@D1q@FgLV->^%!Y&brgali8=_SyAJMzbCEn{-xJ}&t(v-m1vkD@0PgO8 zIkO8}xEoAO=Q_qBcME%)!U@~06_qx+3v#G;Ebw-#*4?M=={N0mnzgIW;4k~_Ha3U( zJ}bMWujF_VDXIN0{6O_52!+l*y}s|P00dTEVxFe%3iMIA((+6L8js5LW|R+<3rEJ$ zqd3Zq6UH)702?8U6Qx2vRv0W(6Oj%BB_MImqadD0=Q^OFxO!rAiD!LD_i1_Kvu6p+<}MDPH$nO95UeED7k+|=P^fEN#1amy;9ZWa&Txw0CJ3+bH1 z`I{j<4`Jt!)NE4OHt>8l1y} zGXZdM)8u>%_^O(Ssc|l{5IV&>Xvk@tF5`3!uQdVsc@!oxA7rAk{01I=jnkpg2bQZE z9N=TA&*6gFmd6?mZ^82zZCvyg%JXik4i&LAf|p<6YoZW(3VXb{3~ywIKa#1)RHym} v0HivTJc@NyT$f6T`77Fi8j)p9>#{UU{U;e_yqlH(t61C`%Xo=3S=0It>Bw6+ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/index.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/index.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cdad752cf863225d32dfc9b19d2a5e5e02eb84a3 GIT binary patch literal 1159 zcmZ`%OK%e~5VpOKY(fGpg^I^zuQ{ZVI3Pf%LV#5DQdK-Idojz}Nj7YDUE2W~<<_E} z_z&r^f5}%)`~@y$W|KfTU}biSW)?!Xy*E2t@duB_7xf5!JRY=v&fl{)9Yol%d`{!OAg@!H`f>kc0`E zcvyK^Zx|&01sPDRcpfEzXo}W3Nx}=_lcWK)Z@Bhxnte)#@~{;0>+Il-R9YHYS`(-7 zDiqhTI4wo2boDtG(!??~xzur*Wzv|~RQv>mwKK@!&e%%B^ITMuG%qu610mXLF)zWfTeMBv z!R+qlIQQ0&GKT-H4%!If6^PjaWyzQ>fTFPnR5Bom9(8?UCO@iw!vc n`1JVDMeiUPtqlx+Xm!!^B|G~RxxEc4@^0Q|lo56vddu%`&C@Ck literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/link.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/link.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8786449152158d6262535ff0f359e495a0b16736 GIT binary patch literal 7194 zcmb_g&2Jmm5#KLTBt=oOEi1NT#~V3y%tRlyY^S#3e7cHl#9>rhMiR!(dd2r7QX+Th zw@ce%C0yCh+C!0lpa);t-^}t;VgUyzrF}bZ z-t5f0nR)Z(y<1~r84W-C$uIAoKBj5^q)z|OLg#%v!SB!rP3Tpv7{B$R&V8e3@Y^g} zcpKG3Em=&~Mv5b~R54Xc7t=b?o7GHhv^dJJRn6AMien5Xs=3;DalAHBoT%+9?qgiC zy1#ayc!1%N>SXO;@nCJLIHhYcslElTRQ09Wq2eK3yP}D-$UN3WMjm)%77vS2k$tQc zj|lyymLK~88f%5T6^*TYvApD5zPfbz<7rrSn)l#8YNa5^{R{#w>AONE=)J}m&1yy^yJ8RX4qQc2;KLdR`{WoJ$KHK(Df(Ns{cR{D{i46A-A zN-dWO0e4oMW85o%&x^MhJ`VV&;sV1q;EQ6B;aA1m;u5}_ zexg}g@dTpg-N?FL@iv?9-H>%91L=i6Y}BffgMz8 zh$Z{hjq4d3zi1Smq>tFS7Ppy_Uy}jHPBgCMy+#ERocdN+_PuCq%k?%vuB02FyT9a? z%F-c;%&6k67gkCg-%|(>Osmtx6BN<3^c}3vr@Go7>Mi||zO9GGhPh+4fNN<^qD5`8 zWuP5tnd)52^bA40RLeq}4l|FmjnS4KW`+4{L)TgfV8?_3t61(IA&MtPlUu~p+?tJu zU8KhL*X*z?ZOq1RsFJkne#Hx6uh6$om6crU5YTM$ySem?vS?SlAap%&0LRV(upgAA zk}QDj|G*9GHNWABnJy>N$yas|Dwt`mi*BpA%hHSXO{TL;z8AU`51%meyEob%nO$a& z-0kuq_B9#0!VO(}ts<*p#t!PTQ~@lYv%S2uY@a=Me$HMgR|31{ZrQ7{k79LefR$?# zquGvHvvB~}ZV0tj8=)kQWKJ?b9CD$%K4ZJV02d*H66kvhoIibb&(sHEYO(DkiZ2G& zDhSvz%(*J1XUDWNc7>feAZs`wEMD+Es2h8~L*%_4_A~71L}p|I!A3N{`);+to~F(; z+a%Uux@QYkr@asXdjo2@okgc)-480EueN$do3pPC>ea854Lc98@_a-u8-~KGuKfEI zA>rnb92%7UMpckcNmE&?hg+Rkvu{c{z=%TO{KW-CsIqH5;f zA^7BdaOL#I)27unFt;I`2-PzWYcA&O<*nswm^cz6rH76IUxe4X^rUjD)h)#3eX=*1 zUxt)PK5{YN88YmPFp>{l%Evw9HjUf23)pncO}Q22gk0m5@06-;5ae@F28l<7!GlUz zR#_y|C<)E0mDMQ0X*^2NL};s56Bt$dsM$}=0cs}EM2VnLmnup*4p@hdqsD3IAewwK zvI1FMi%f9Y^%)a9)1$N#>*6@iwCC^4hqd~Ay;7fTcy(+vQq00qn)~VY^2r5`ErK zuh6KW>WZcsHzx=+;y561oS&l;kY_Z^e8RBwq;Bac?3u=YEVG$y+ki<2OhD$KO_fbR zu|SiLr;cfug=X>+eQQ70-({)KbXH}z8i)hrCFpSnECRBt*0X#(vPUe5X0f!nlf`dp z&vcZbalE|={aP3A`kjP^*$od`3*^ELEUu0~nnRQfP&LAcLu9H&5H$Owjk2`(gBKH(*PG|M$(OhClIwNq zD4PyO{o7qH_re^UHOVJKRilA#x~e6cv1)M)>`~1GAse1}hOog7g`>G)J?&Z}(F+`P z4pgytijJY;Y2XQ-jvvx&8H&q2!f9c$@F@VH7Pf`&ShSX&as=d!f||o9f|5c*ouOud z8dl&mLBsq*#J|E5YthLSopaXcx z4-!0OZw^VtQNb%WajzlO7S^V6*K0U>?OwE#;NZ{}?KeUkqhg}pfKfonO*1F-=HX8M z+e6nJ|MJAiJ92&fol{?ab@I*|`GKjDHM@ajqeD~Op&gC#9?nz26zyU-W0~Y>EW5Ws zgv*5q2Q0hFAmw8XN>`Q2@m`f!SAL`Zti4+$PzYjV8lT3^2|!V{pTqaS1hl?2%0&2U z?&B%-(=-p!RD#B;zzMQMb?^UoPKTX--u;tP6bkWf^fQ8%sM$50gF`?5Ehq=)btKL| zeY5CFYA&1#%I=vKnuUdP^g4TiUkm5oqTcy43$2hAv8(X;d|mG#^(foZ(Q)_A*;StzbMd{D3ohl&Az)i0UGc zLlqf^Jo&H^gt%&OK=~IC#tIqDNnQlI2=*wp#|$Bxp|kbBLz2m#L&c}Solg&c?aJ-g zy)!Z(kc4#w9zusgqN>%925~8bgxJzI%*`a%!W;;=t~BqL0wlwIIF`(Hk0osMZ;i!VRH^)7FgG%`riwiyY%W7WfmTxy?*ifFmqHqV( zzQL)|sRpXpF12O8uBh;R13c$HkfK-76+VK~GiCV@@w_gB5Vg)%&`|N@&lB_snusEw zSUGJ5ZMR2BLdxAmxw?yQ{)LBEyOy9zJg4XS7RdlFt57Jc=U&6DwnuO#6n+V49J7O}9|ky_9fKs5r)CCCl){k(=l5_cuG%lq0554yFx?_0 zuBmv%eL$ZX*zrejhgnCaQ6JJrSE#v4%{6MSQ$yB>jYFp|&L8SCf zgy8N-B4ZFPZY>>$u=9k)~zM~8+H)GD}^rD^jymV;$Dr})Z7 zjs8zgm{Gu2QGAr#tuo)P&6WIWl?yRN>M7+*E)_phaGOneBdDuE8d~Yb!G(K7EkIT~*V<=A zA#`Q)_R`h5$+ejkkBgf#@h{*auiacd;L3q%kk)vcP@Z+e7P%>ThR(u3@6^Br7~2hP zWn}AY7Ypuqg?jvDA-$^g|0MNmc%mxD=LcfEssYsaeD>KrZJ$hitY8wK7+*>ib1gvG zV$(DDz+K8PC>>*WaXZ_$aXJV#-_^lJ*Zel;bTsq@4W9#JUB(!0w@}{SW$b*x)lFo` z7&Z_t-W7Pe)I>LgH!bNCGp2oNTDxzX*6F*@(#*?S{T9K!cIM~p ze%th&EXddTYo_mJoqWB&Zu(xfk#F`l^R50Cu{fFE;5RQx|JH9T)?)sJ#r$*H-)7{< z>bCy_nplTjqMd_ODrj#caZwg&5@+d@M@5`-Tzv5K!Ed2$jba(8Om?Z>C`yqxo2poi z^tRwEPE-_6)F>K=GLI%AOHlgib7g@&nB^9p8cs~$w3OLH+IP6i9OhnF=cMm3kF_qW zKIqKa(E2Q3YtXh?2Q**TYezg5$>=C4D?a^o5W@3Sk;IjpWU=BhR3jc{WfH5jEN~R7 zuu7{im0?mAgLF6njYCz2(unC90Xi6@1&gw@IF>qqE`NgOkO?Zjcv{eLpnL&E{u!#F zHM48-rSb`U+>)oNHTP>; z+m{q%+?hG5Jr3q;xM$|o-nhf)F%<`DeZIkL{0_c6JvpeY+O8>c{zkzZ?(}PO0JOpv zf`b9VI9xGMSUw)}M1}D{aS<+jmli`~rbo+DKWYqta$b->X?LVlC8z0|mOD$;=ym%F zelke~55GA$+C4ftxEqejGkyv`L|;gmg?Y&)84uGUeDG9_$^yMnl%UpWoM!RkjQ5^X z(FT(WWKwri2U5jCN&K1cU`o?cYR4eX<4*vxQhRY#@q!5#m)j|vPnBgRwVRCMw9p>- zFH0Y5w~B@2+J|A&^JFsOIoDoR4u@Rm)>$kHut>M1?Ie>+HT2fwNt&r>X(a6+LbPA- zGlLcF8IkO{B|^~R#aFv3uXe#^_a;RZC&!%KI~#GH-8&hM)z7NW2e`Hyr3ENk#Mv&G zg=ccNL1H8k(Y@-a_7daCAAv~uF;v#3LwpiI=@5r>9FJ^4FMvLM>9`)H1m5qbH&^`L zYeZbbFJhTOG5FnrPEBenvH*cr1cW@Yo|8kd4)a}GJCbLEr76tun(8O8LHiLLB2`iJ zD;P;6h2?oNDdTiLY@ zoN|;icITd9h+DhkmV5}cFCVJ*JYc}POG@B84Tpd&J2jcFF*@%sd%j-NOW-H+2>!Am z{$bXfW{tVbyD;-#LI_&yV=ed!M!+-waC-k60J8}VAz&%o`AF_S4B@$i$y11k>~2_P zJeEAHM0uJrWMTug-t^srvOGrC0RxN(F7JnboK5N7aJs#+W&#kdTr(Ov4V@>kybD!r zeY-Iu3LJP&{(xZtvd57nK7gez5g4bQQ%!rHY8y0t-FNN1AusroO6-qN9y$+zWKBO? zb>5Hz?lICU#UU;(!f9_0yP4eYT?x@7=x!R?3KRv*O>?jVhEJo3cn4+$YHc_ut1MOG zHV(alD-b6T=i+^=AbG-c^Iz?Z%d{{M?0VuuTyeoXTJ$H^XL~TSL7bQVOUIdh@B=KDpc5C* z!lA~gApHl`o`5KRud0p=9Ec1Dp7qNuqrK)(}3CzCjPwbF_rRwgjr zjv|?rNqZ)93Qf1aK~@^J7%r> zjzG`o7G4q{aEnd+>NA|`06ySi(KD&vz)yP$a08o=*ZRkh<9pF50I(FWDLIZ&KyRW_ zxLg=;zHfFcZUMdK7SK?)iJ`A;FrW6&%du*%JGZY(Xg1`jOw47;#9iG6{~VYrj@U=# iO_;@Vzs(@p-)l_1kJ;KJ83=T*-VTKqZX8=Qu>T9WmvqJe literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a27aeda7f6218eb93424b7a92315a00da8feff00 GIT binary patch literal 1569 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 T)dON@L#GVc8@$hNu)hBdd5T&> literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/wheel.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/models/__pycache__/wheel.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ffe87158e080630c567bb117e1d10153541aa4ab GIT binary patch literal 4169 zcmc&&-*4O273L)=iBe=Y?TjW3x{L!h)JkJI>(VVV47*$73>k(jNZM@ElCq5Ml|+Xk z=}XG71^H#p&^~RzUWWnkTk|hn^leZ37m5MdcP{mVO6;K+28;$T$@}A+bI&>7caQw( z(o(~~<$m#}&o3_<#y{wzd|CMT2zT}?G~8$#oN+T^ZHA{6nFFhB4eYi(sI)7L#_Xs% zsI_bQy%ITtdb`eyUmCp1YtIZ`J2u-5Zr(Rq&gk=dB9$T&ah|z>`?N1a%;?mz@_827x!KVh+P zr)4SoX4uJ!cAfCR!_`!ja%G)X0#n%;Z;2Ayv7|o8@$dNc%I|ucoWYiUxE{s zRYfZuHGf`m!00cZt#04lBrEoX+?u{`dGBwx*653Ry(`PfKtE+n8@i2_|) z&(fmuW7nMdquD@oY9(qsv(fFaq;iI)M?k24tbWCh{dQn17#)n`8Djq{83LWA;b%e`)yE*nDnt^Mt`u@Xv{fzN+r4EcDfM zU-g96IQqSY@j7>OPeb?AOFidwPovb+{KDum?PCXaHEtTmBx|Yg_UL!BU2e!A%#dEE zg?@u#5$k-TeAMX`W^PzyiQ7%&G+$@pM&ENWBTjOR=v*p=lh%96riWtwH*8H=h=;1^ zV5y3Zj$)p&5Ex}sKspR=onGW?2lsbyXV=j5jj{1)^$7dgHEtS@-aUdhcNyN!A6ex4 zu{pMmt-soP7x$L;?EA(GgCGFm8I(bKCM%HAvX$vwQ|v&oL&Zifn6fhwb>*8F`(|rB zAEfJPn63@uH0V4Ld`;tXZLhbR|17=HrLlECjDe^)h}H)Q7g4sZ=XmL%s&8f@?<9kC z>wU7iiKfa-<`^cnV!j-GUuV7NLqeGQzPA}Aogm7#yxF=tz{Zl6=Ti)PDO6ixGE7xX3hb>TB)Lk};NUDwVpZ2p_Vb{pDp?wZxoT*C(_kjw!dyvyRduZd z)3TN&-=Xfy)ZHj7AQWiF$cr>|iH4l1@o(cRquEBK$!yx?OWUfl6>Ehx*<18yHJJT! zw7j_Ig&0%32~Qv6&Q{Rmnr5FN(iGWacFe#Q*68{@kq>2&n%cDYz>F~34TwUsMCO9K z5r9k7nB@{Qn0X7D2+5==qnk`eE-fFi+!#a01A`fRCO42X><;lGM7%I18Kf-eDSSW~ zQuv_0*%PriNafa#NgQRWjS!En66{f~+lXpC0OXpHpbhNcdjZqJ-Ww+CM%J|)jb$x{IrhcOoi#krHj zVsaQ2xJOu~3FQI?kHa{~DdT2*5p?%*43wafdhBxsSp~NvpSBi9k_(SN2;nRsG_i~uRDpc~hT`e@oMa5#@9jb;f- z)J{MZ#}p4#(gyoU$Y=HiF~FUQIKxiC1+fUEn|06&G7sD+kUi=y$o&;!_;2Ak$G}`d z*+&~tJaLoTm5C+*GJNJkU4kQ`uxH}O*>(u$g-_uo^5Y!qB|lCJvHt_gDbY2`>GTH5 z-!7wk%-%8P=b^@Ufwc*~-@uN`o_Yo9pF(7&q0ThaCr4rz821Sk$ifNlQE_q#;N=I9 zFfB$j(tnDMLd#F+O;;fo&JegWRd1X}QSx$nFrG2{wS$p7^D&9QFG8w8CiQ(2l|hS* z{yafEU;|c_CDKQrsp`XFho4ym$(NvB9CH8j%x#&P6;&h5@S9~fK~*ZR!|uXY^8%ti zqyOL2)^y2G9lfzYiGts0Em3Vp)w=JihL33RAqr4mHGO|?7(|nin(y9+mGw53@XSye|FKMLl6! ny?f%IBT`+T=;B)IIn6}nY!=SgqIxx>{~Oqr!&c0u*|h!*MJ{Y} literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/candidate.py b/venv/lib/python3.8/site-packages/pip/_internal/models/candidate.py new file mode 100644 index 00000000..3b91704a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/models/candidate.py @@ -0,0 +1,34 @@ +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.models.link import Link +from pip._internal.utils.models import KeyBasedCompareMixin + + +class InstallationCandidate(KeyBasedCompareMixin): + """Represents a potential "candidate" for installation. + """ + + __slots__ = ["name", "version", "link"] + + def __init__(self, name, version, link): + # type: (str, str, Link) -> None + self.name = name + self.version = parse_version(version) + self.link = link + + super().__init__( + key=(self.name, self.version, self.link), + defining_class=InstallationCandidate + ) + + def __repr__(self): + # type: () -> str + return "".format( + self.name, self.version, self.link, + ) + + def __str__(self): + # type: () -> str + return '{!r} candidate (version {} at {})'.format( + self.name, self.version, self.link, + ) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/direct_url.py b/venv/lib/python3.8/site-packages/pip/_internal/models/direct_url.py new file mode 100644 index 00000000..345dbaf1 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/models/direct_url.py @@ -0,0 +1,233 @@ +""" PEP 610 """ +import json +import re +import urllib.parse +from typing import Any, Dict, Iterable, Optional, Type, TypeVar, Union + +__all__ = [ + "DirectUrl", + "DirectUrlValidationError", + "DirInfo", + "ArchiveInfo", + "VcsInfo", +] + +T = TypeVar("T") + +DIRECT_URL_METADATA_NAME = "direct_url.json" +ENV_VAR_RE = re.compile(r"^\$\{[A-Za-z0-9-_]+\}(:\$\{[A-Za-z0-9-_]+\})?$") + + +class DirectUrlValidationError(Exception): + pass + + +def _get(d, expected_type, key, default=None): + # type: (Dict[str, Any], Type[T], str, Optional[T]) -> Optional[T] + """Get value from dictionary and verify expected type.""" + if key not in d: + return default + value = d[key] + if not isinstance(value, expected_type): + raise DirectUrlValidationError( + "{!r} has unexpected type for {} (expected {})".format( + value, key, expected_type + ) + ) + return value + + +def _get_required(d, expected_type, key, default=None): + # type: (Dict[str, Any], Type[T], str, Optional[T]) -> T + value = _get(d, expected_type, key, default) + if value is None: + raise DirectUrlValidationError(f"{key} must have a value") + return value + + +def _exactly_one_of(infos): + # type: (Iterable[Optional[InfoType]]) -> InfoType + infos = [info for info in infos if info is not None] + if not infos: + raise DirectUrlValidationError( + "missing one of archive_info, dir_info, vcs_info" + ) + if len(infos) > 1: + raise DirectUrlValidationError( + "more than one of archive_info, dir_info, vcs_info" + ) + assert infos[0] is not None + return infos[0] + + +def _filter_none(**kwargs): + # type: (Any) -> Dict[str, Any] + """Make dict excluding None values.""" + return {k: v for k, v in kwargs.items() if v is not None} + + +class VcsInfo: + name = "vcs_info" + + def __init__( + self, + vcs, # type: str + commit_id, # type: str + requested_revision=None, # type: Optional[str] + resolved_revision=None, # type: Optional[str] + resolved_revision_type=None, # type: Optional[str] + ): + self.vcs = vcs + self.requested_revision = requested_revision + self.commit_id = commit_id + self.resolved_revision = resolved_revision + self.resolved_revision_type = resolved_revision_type + + @classmethod + def _from_dict(cls, d): + # type: (Optional[Dict[str, Any]]) -> Optional[VcsInfo] + if d is None: + return None + return cls( + vcs=_get_required(d, str, "vcs"), + commit_id=_get_required(d, str, "commit_id"), + requested_revision=_get(d, str, "requested_revision"), + resolved_revision=_get(d, str, "resolved_revision"), + resolved_revision_type=_get(d, str, "resolved_revision_type"), + ) + + def _to_dict(self): + # type: () -> Dict[str, Any] + return _filter_none( + vcs=self.vcs, + requested_revision=self.requested_revision, + commit_id=self.commit_id, + resolved_revision=self.resolved_revision, + resolved_revision_type=self.resolved_revision_type, + ) + + +class ArchiveInfo: + name = "archive_info" + + def __init__( + self, + hash=None, # type: Optional[str] + ): + self.hash = hash + + @classmethod + def _from_dict(cls, d): + # type: (Optional[Dict[str, Any]]) -> Optional[ArchiveInfo] + if d is None: + return None + return cls(hash=_get(d, str, "hash")) + + def _to_dict(self): + # type: () -> Dict[str, Any] + return _filter_none(hash=self.hash) + + +class DirInfo: + name = "dir_info" + + def __init__( + self, + editable=False, # type: bool + ): + self.editable = editable + + @classmethod + def _from_dict(cls, d): + # type: (Optional[Dict[str, Any]]) -> Optional[DirInfo] + if d is None: + return None + return cls( + editable=_get_required(d, bool, "editable", default=False) + ) + + def _to_dict(self): + # type: () -> Dict[str, Any] + return _filter_none(editable=self.editable or None) + + +InfoType = Union[ArchiveInfo, DirInfo, VcsInfo] + + +class DirectUrl: + + def __init__( + self, + url, # type: str + info, # type: InfoType + subdirectory=None, # type: Optional[str] + ): + self.url = url + self.info = info + self.subdirectory = subdirectory + + def _remove_auth_from_netloc(self, netloc): + # type: (str) -> str + if "@" not in netloc: + return netloc + user_pass, netloc_no_user_pass = netloc.split("@", 1) + if ( + isinstance(self.info, VcsInfo) and + self.info.vcs == "git" and + user_pass == "git" + ): + return netloc + if ENV_VAR_RE.match(user_pass): + return netloc + return netloc_no_user_pass + + @property + def redacted_url(self): + # type: () -> str + """url with user:password part removed unless it is formed with + environment variables as specified in PEP 610, or it is ``git`` + in the case of a git URL. + """ + purl = urllib.parse.urlsplit(self.url) + netloc = self._remove_auth_from_netloc(purl.netloc) + surl = urllib.parse.urlunsplit( + (purl.scheme, netloc, purl.path, purl.query, purl.fragment) + ) + return surl + + def validate(self): + # type: () -> None + self.from_dict(self.to_dict()) + + @classmethod + def from_dict(cls, d): + # type: (Dict[str, Any]) -> DirectUrl + return DirectUrl( + url=_get_required(d, str, "url"), + subdirectory=_get(d, str, "subdirectory"), + info=_exactly_one_of( + [ + ArchiveInfo._from_dict(_get(d, dict, "archive_info")), + DirInfo._from_dict(_get(d, dict, "dir_info")), + VcsInfo._from_dict(_get(d, dict, "vcs_info")), + ] + ), + ) + + def to_dict(self): + # type: () -> Dict[str, Any] + res = _filter_none( + url=self.redacted_url, + subdirectory=self.subdirectory, + ) + res[self.info.name] = self.info._to_dict() + return res + + @classmethod + def from_json(cls, s): + # type: (str) -> DirectUrl + return cls.from_dict(json.loads(s)) + + def to_json(self): + # type: () -> str + return json.dumps(self.to_dict(), sort_keys=True) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/format_control.py b/venv/lib/python3.8/site-packages/pip/_internal/models/format_control.py new file mode 100644 index 00000000..cf262af2 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/models/format_control.py @@ -0,0 +1,86 @@ +from typing import FrozenSet, Optional, Set + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import CommandError + + +class FormatControl: + """Helper for managing formats from which a package can be installed. + """ + + __slots__ = ["no_binary", "only_binary"] + + def __init__(self, no_binary=None, only_binary=None): + # type: (Optional[Set[str]], Optional[Set[str]]) -> None + if no_binary is None: + no_binary = set() + if only_binary is None: + only_binary = set() + + self.no_binary = no_binary + self.only_binary = only_binary + + def __eq__(self, other): + # type: (object) -> bool + if not isinstance(other, self.__class__): + return NotImplemented + + if self.__slots__ != other.__slots__: + return False + + return all( + getattr(self, k) == getattr(other, k) + for k in self.__slots__ + ) + + def __repr__(self): + # type: () -> str + return "{}({}, {})".format( + self.__class__.__name__, + self.no_binary, + self.only_binary + ) + + @staticmethod + def handle_mutual_excludes(value, target, other): + # type: (str, Set[str], Set[str]) -> None + if value.startswith('-'): + raise CommandError( + "--no-binary / --only-binary option requires 1 argument." + ) + new = value.split(',') + while ':all:' in new: + other.clear() + target.clear() + target.add(':all:') + del new[:new.index(':all:') + 1] + # Without a none, we want to discard everything as :all: covers it + if ':none:' not in new: + return + for name in new: + if name == ':none:': + target.clear() + continue + name = canonicalize_name(name) + other.discard(name) + target.add(name) + + def get_allowed_formats(self, canonical_name): + # type: (str) -> FrozenSet[str] + result = {"binary", "source"} + if canonical_name in self.only_binary: + result.discard('source') + elif canonical_name in self.no_binary: + result.discard('binary') + elif ':all:' in self.only_binary: + result.discard('source') + elif ':all:' in self.no_binary: + result.discard('binary') + return frozenset(result) + + def disallow_binaries(self): + # type: () -> None + self.handle_mutual_excludes( + ':all:', self.no_binary, self.only_binary, + ) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/index.py b/venv/lib/python3.8/site-packages/pip/_internal/models/index.py new file mode 100644 index 00000000..b148abb4 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/models/index.py @@ -0,0 +1,34 @@ +import urllib.parse + + +class PackageIndex: + """Represents a Package Index and provides easier access to endpoints + """ + + __slots__ = ['url', 'netloc', 'simple_url', 'pypi_url', + 'file_storage_domain'] + + def __init__(self, url, file_storage_domain): + # type: (str, str) -> None + super().__init__() + self.url = url + self.netloc = urllib.parse.urlsplit(url).netloc + self.simple_url = self._url_for_path('simple') + self.pypi_url = self._url_for_path('pypi') + + # This is part of a temporary hack used to block installs of PyPI + # packages which depend on external urls only necessary until PyPI can + # block such packages themselves + self.file_storage_domain = file_storage_domain + + def _url_for_path(self, path): + # type: (str) -> str + return urllib.parse.urljoin(self.url, path) + + +PyPI = PackageIndex( + 'https://pypi.org/', file_storage_domain='files.pythonhosted.org' +) +TestPyPI = PackageIndex( + 'https://test.pypi.org/', file_storage_domain='test-files.pythonhosted.org' +) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/link.py b/venv/lib/python3.8/site-packages/pip/_internal/models/link.py new file mode 100644 index 00000000..86d0be40 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/models/link.py @@ -0,0 +1,248 @@ +import os +import posixpath +import re +import urllib.parse +from typing import TYPE_CHECKING, Optional, Tuple, Union + +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + redact_auth_from_url, + split_auth_from_netloc, + splitext, +) +from pip._internal.utils.models import KeyBasedCompareMixin +from pip._internal.utils.urls import path_to_url, url_to_path + +if TYPE_CHECKING: + from pip._internal.index.collector import HTMLPage + + +class Link(KeyBasedCompareMixin): + """Represents a parsed link from a Package Index's simple URL + """ + + __slots__ = [ + "_parsed_url", + "_url", + "comes_from", + "requires_python", + "yanked_reason", + "cache_link_parsing", + ] + + def __init__( + self, + url, # type: str + comes_from=None, # type: Optional[Union[str, HTMLPage]] + requires_python=None, # type: Optional[str] + yanked_reason=None, # type: Optional[str] + cache_link_parsing=True, # type: bool + ): + # type: (...) -> None + """ + :param url: url of the resource pointed to (href of the link) + :param comes_from: instance of HTMLPage where the link was found, + or string. + :param requires_python: String containing the `Requires-Python` + metadata field, specified in PEP 345. This may be specified by + a data-requires-python attribute in the HTML link tag, as + described in PEP 503. + :param yanked_reason: the reason the file has been yanked, if the + file has been yanked, or None if the file hasn't been yanked. + This is the value of the "data-yanked" attribute, if present, in + a simple repository HTML link. If the file has been yanked but + no reason was provided, this should be the empty string. See + PEP 592 for more information and the specification. + :param cache_link_parsing: A flag that is used elsewhere to determine + whether resources retrieved from this link + should be cached. PyPI index urls should + generally have this set to False, for + example. + """ + + # url can be a UNC windows share + if url.startswith('\\\\'): + url = path_to_url(url) + + self._parsed_url = urllib.parse.urlsplit(url) + # Store the url as a private attribute to prevent accidentally + # trying to set a new value. + self._url = url + + self.comes_from = comes_from + self.requires_python = requires_python if requires_python else None + self.yanked_reason = yanked_reason + + super().__init__(key=url, defining_class=Link) + + self.cache_link_parsing = cache_link_parsing + + def __str__(self): + # type: () -> str + if self.requires_python: + rp = f' (requires-python:{self.requires_python})' + else: + rp = '' + if self.comes_from: + return '{} (from {}){}'.format( + redact_auth_from_url(self._url), self.comes_from, rp) + else: + return redact_auth_from_url(str(self._url)) + + def __repr__(self): + # type: () -> str + return f'' + + @property + def url(self): + # type: () -> str + return self._url + + @property + def filename(self): + # type: () -> str + path = self.path.rstrip('/') + name = posixpath.basename(path) + if not name: + # Make sure we don't leak auth information if the netloc + # includes a username and password. + netloc, user_pass = split_auth_from_netloc(self.netloc) + return netloc + + name = urllib.parse.unquote(name) + assert name, f'URL {self._url!r} produced no filename' + return name + + @property + def file_path(self): + # type: () -> str + return url_to_path(self.url) + + @property + def scheme(self): + # type: () -> str + return self._parsed_url.scheme + + @property + def netloc(self): + # type: () -> str + """ + This can contain auth information. + """ + return self._parsed_url.netloc + + @property + def path(self): + # type: () -> str + return urllib.parse.unquote(self._parsed_url.path) + + def splitext(self): + # type: () -> Tuple[str, str] + return splitext(posixpath.basename(self.path.rstrip('/'))) + + @property + def ext(self): + # type: () -> str + return self.splitext()[1] + + @property + def url_without_fragment(self): + # type: () -> str + scheme, netloc, path, query, fragment = self._parsed_url + return urllib.parse.urlunsplit((scheme, netloc, path, query, None)) + + _egg_fragment_re = re.compile(r'[#&]egg=([^&]*)') + + @property + def egg_fragment(self): + # type: () -> Optional[str] + match = self._egg_fragment_re.search(self._url) + if not match: + return None + return match.group(1) + + _subdirectory_fragment_re = re.compile(r'[#&]subdirectory=([^&]*)') + + @property + def subdirectory_fragment(self): + # type: () -> Optional[str] + match = self._subdirectory_fragment_re.search(self._url) + if not match: + return None + return match.group(1) + + _hash_re = re.compile( + r'(sha1|sha224|sha384|sha256|sha512|md5)=([a-f0-9]+)' + ) + + @property + def hash(self): + # type: () -> Optional[str] + match = self._hash_re.search(self._url) + if match: + return match.group(2) + return None + + @property + def hash_name(self): + # type: () -> Optional[str] + match = self._hash_re.search(self._url) + if match: + return match.group(1) + return None + + @property + def show_url(self): + # type: () -> str + return posixpath.basename(self._url.split('#', 1)[0].split('?', 1)[0]) + + @property + def is_file(self): + # type: () -> bool + return self.scheme == 'file' + + def is_existing_dir(self): + # type: () -> bool + return self.is_file and os.path.isdir(self.file_path) + + @property + def is_wheel(self): + # type: () -> bool + return self.ext == WHEEL_EXTENSION + + @property + def is_vcs(self): + # type: () -> bool + from pip._internal.vcs import vcs + + return self.scheme in vcs.all_schemes + + @property + def is_yanked(self): + # type: () -> bool + return self.yanked_reason is not None + + @property + def has_hash(self): + # type: () -> bool + return self.hash_name is not None + + def is_hash_allowed(self, hashes): + # type: (Optional[Hashes]) -> bool + """ + Return True if the link has a hash and it is allowed. + """ + if hashes is None or not self.has_hash: + return False + # Assert non-None so mypy knows self.hash_name and self.hash are str. + assert self.hash_name is not None + assert self.hash is not None + + return hashes.is_hash_allowed(self.hash_name, hex_digest=self.hash) + + +# TODO: Relax this comparison logic to ignore, for example, fragments. +def links_equivalent(link1, link2): + # type: (Link, Link) -> bool + return link1 == link2 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/scheme.py b/venv/lib/python3.8/site-packages/pip/_internal/models/scheme.py new file mode 100644 index 00000000..697cd19b --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/models/scheme.py @@ -0,0 +1,31 @@ +""" +For types associated with installation schemes. + +For a general overview of available schemes and their context, see +https://docs.python.org/3/install/index.html#alternate-installation. +""" + + +SCHEME_KEYS = ['platlib', 'purelib', 'headers', 'scripts', 'data'] + + +class Scheme: + """A Scheme holds paths which are used as the base directories for + artifacts associated with a Python package. + """ + + __slots__ = SCHEME_KEYS + + def __init__( + self, + platlib, # type: str + purelib, # type: str + headers, # type: str + scripts, # type: str + data, # type: str + ): + self.platlib = platlib + self.purelib = purelib + self.headers = headers + self.scripts = scripts + self.data = data diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/search_scope.py b/venv/lib/python3.8/site-packages/pip/_internal/models/search_scope.py new file mode 100644 index 00000000..a3f0a5c0 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/models/search_scope.py @@ -0,0 +1,131 @@ +import itertools +import logging +import os +import posixpath +import urllib.parse +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.models.index import PyPI +from pip._internal.utils.compat import has_tls +from pip._internal.utils.misc import normalize_path, redact_auth_from_url + +logger = logging.getLogger(__name__) + + +class SearchScope: + + """ + Encapsulates the locations that pip is configured to search. + """ + + __slots__ = ["find_links", "index_urls"] + + @classmethod + def create( + cls, + find_links, # type: List[str] + index_urls, # type: List[str] + ): + # type: (...) -> SearchScope + """ + Create a SearchScope object after normalizing the `find_links`. + """ + # Build find_links. If an argument starts with ~, it may be + # a local file relative to a home directory. So try normalizing + # it and if it exists, use the normalized version. + # This is deliberately conservative - it might be fine just to + # blindly normalize anything starting with a ~... + built_find_links = [] # type: List[str] + for link in find_links: + if link.startswith('~'): + new_link = normalize_path(link) + if os.path.exists(new_link): + link = new_link + built_find_links.append(link) + + # If we don't have TLS enabled, then WARN if anyplace we're looking + # relies on TLS. + if not has_tls(): + for link in itertools.chain(index_urls, built_find_links): + parsed = urllib.parse.urlparse(link) + if parsed.scheme == 'https': + logger.warning( + 'pip is configured with locations that require ' + 'TLS/SSL, however the ssl module in Python is not ' + 'available.' + ) + break + + return cls( + find_links=built_find_links, + index_urls=index_urls, + ) + + def __init__( + self, + find_links, # type: List[str] + index_urls, # type: List[str] + ): + # type: (...) -> None + self.find_links = find_links + self.index_urls = index_urls + + def get_formatted_locations(self): + # type: () -> str + lines = [] + redacted_index_urls = [] + if self.index_urls and self.index_urls != [PyPI.simple_url]: + for url in self.index_urls: + + redacted_index_url = redact_auth_from_url(url) + + # Parse the URL + purl = urllib.parse.urlsplit(redacted_index_url) + + # URL is generally invalid if scheme and netloc is missing + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not purl.scheme and not purl.netloc: + logger.warning( + 'The index url "%s" seems invalid, ' + 'please provide a scheme.', redacted_index_url) + + redacted_index_urls.append(redacted_index_url) + + lines.append('Looking in indexes: {}'.format( + ', '.join(redacted_index_urls))) + + if self.find_links: + lines.append( + 'Looking in links: {}'.format(', '.join( + redact_auth_from_url(url) for url in self.find_links)) + ) + return '\n'.join(lines) + + def get_index_urls_locations(self, project_name): + # type: (str) -> List[str] + """Returns the locations found via self.index_urls + + Checks the url_name on the main (first in the list) index and + use this url_name to produce all locations + """ + + def mkurl_pypi_url(url): + # type: (str) -> str + loc = posixpath.join( + url, + urllib.parse.quote(canonicalize_name(project_name))) + # For maximum compatibility with easy_install, ensure the path + # ends in a trailing slash. Although this isn't in the spec + # (and PyPI can handle it without the slash) some other index + # implementations might break if they relied on easy_install's + # behavior. + if not loc.endswith('/'): + loc = loc + '/' + return loc + + return [mkurl_pypi_url(url) for url in self.index_urls] diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/selection_prefs.py b/venv/lib/python3.8/site-packages/pip/_internal/models/selection_prefs.py new file mode 100644 index 00000000..edc1cf79 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/models/selection_prefs.py @@ -0,0 +1,47 @@ +from typing import Optional + +from pip._internal.models.format_control import FormatControl + + +class SelectionPreferences: + """ + Encapsulates the candidate selection preferences for downloading + and installing files. + """ + + __slots__ = ['allow_yanked', 'allow_all_prereleases', 'format_control', + 'prefer_binary', 'ignore_requires_python'] + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + allow_yanked, # type: bool + allow_all_prereleases=False, # type: bool + format_control=None, # type: Optional[FormatControl] + prefer_binary=False, # type: bool + ignore_requires_python=None, # type: Optional[bool] + ): + # type: (...) -> None + """Create a SelectionPreferences object. + + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param format_control: A FormatControl object or None. Used to control + the selection of source packages / binary packages when consulting + the index and links. + :param prefer_binary: Whether to prefer an old, but valid, binary + dist over a new source dist. + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self.allow_yanked = allow_yanked + self.allow_all_prereleases = allow_all_prereleases + self.format_control = format_control + self.prefer_binary = prefer_binary + self.ignore_requires_python = ignore_requires_python diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/target_python.py b/venv/lib/python3.8/site-packages/pip/_internal/models/target_python.py new file mode 100644 index 00000000..b91e349f --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/models/target_python.py @@ -0,0 +1,114 @@ +import sys +from typing import List, Optional, Tuple + +from pip._vendor.packaging.tags import Tag + +from pip._internal.utils.compatibility_tags import get_supported, version_info_to_nodot +from pip._internal.utils.misc import normalize_version_info + + +class TargetPython: + + """ + Encapsulates the properties of a Python interpreter one is targeting + for a package install, download, etc. + """ + + __slots__ = [ + "_given_py_version_info", + "abis", + "implementation", + "platforms", + "py_version", + "py_version_info", + "_valid_tags", + ] + + def __init__( + self, + platforms=None, # type: Optional[List[str]] + py_version_info=None, # type: Optional[Tuple[int, ...]] + abis=None, # type: Optional[List[str]] + implementation=None, # type: Optional[str] + ): + # type: (...) -> None + """ + :param platforms: A list of strings or None. If None, searches for + packages that are supported by the current system. Otherwise, will + find packages that can be built on the platforms passed in. These + packages will only be downloaded for distribution: they will + not be built locally. + :param py_version_info: An optional tuple of ints representing the + Python version information to use (e.g. `sys.version_info[:3]`). + This can have length 1, 2, or 3 when provided. + :param abis: A list of strings or None. This is passed to + compatibility_tags.py's get_supported() function as is. + :param implementation: A string or None. This is passed to + compatibility_tags.py's get_supported() function as is. + """ + # Store the given py_version_info for when we call get_supported(). + self._given_py_version_info = py_version_info + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + py_version = '.'.join(map(str, py_version_info[:2])) + + self.abis = abis + self.implementation = implementation + self.platforms = platforms + self.py_version = py_version + self.py_version_info = py_version_info + + # This is used to cache the return value of get_tags(). + self._valid_tags = None # type: Optional[List[Tag]] + + def format_given(self): + # type: () -> str + """ + Format the given, non-None attributes for display. + """ + display_version = None + if self._given_py_version_info is not None: + display_version = '.'.join( + str(part) for part in self._given_py_version_info + ) + + key_values = [ + ('platforms', self.platforms), + ('version_info', display_version), + ('abis', self.abis), + ('implementation', self.implementation), + ] + return ' '.join( + f'{key}={value!r}' for key, value in key_values + if value is not None + ) + + def get_tags(self): + # type: () -> List[Tag] + """ + Return the supported PEP 425 tags to check wheel candidates against. + + The tags are returned in order of preference (most preferred first). + """ + if self._valid_tags is None: + # Pass versions=None if no py_version_info was given since + # versions=None uses special default logic. + py_version_info = self._given_py_version_info + if py_version_info is None: + version = None + else: + version = version_info_to_nodot(py_version_info) + + tags = get_supported( + version=version, + platforms=self.platforms, + abis=self.abis, + impl=self.implementation, + ) + self._valid_tags = tags + + return self._valid_tags diff --git a/venv/lib/python3.8/site-packages/pip/_internal/models/wheel.py b/venv/lib/python3.8/site-packages/pip/_internal/models/wheel.py new file mode 100644 index 00000000..0a582b30 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/models/wheel.py @@ -0,0 +1,95 @@ +"""Represents a wheel file and provides access to the various parts of the +name that have meaning. +""" +import re +from typing import Dict, Iterable, List + +from pip._vendor.packaging.tags import Tag + +from pip._internal.exceptions import InvalidWheelFilename + + +class Wheel: + """A wheel file""" + + wheel_file_re = re.compile( + r"""^(?P(?P.+?)-(?P.*?)) + ((-(?P\d[^-]*?))?-(?P.+?)-(?P.+?)-(?P.+?) + \.whl|\.dist-info)$""", + re.VERBOSE + ) + + def __init__(self, filename): + # type: (str) -> None + """ + :raises InvalidWheelFilename: when the filename is invalid for a wheel + """ + wheel_info = self.wheel_file_re.match(filename) + if not wheel_info: + raise InvalidWheelFilename( + f"{filename} is not a valid wheel filename." + ) + self.filename = filename + self.name = wheel_info.group('name').replace('_', '-') + # we'll assume "_" means "-" due to wheel naming scheme + # (https://github.com/pypa/pip/issues/1150) + self.version = wheel_info.group('ver').replace('_', '-') + self.build_tag = wheel_info.group('build') + self.pyversions = wheel_info.group('pyver').split('.') + self.abis = wheel_info.group('abi').split('.') + self.plats = wheel_info.group('plat').split('.') + + # All the tag combinations from this file + self.file_tags = { + Tag(x, y, z) for x in self.pyversions + for y in self.abis for z in self.plats + } + + def get_formatted_file_tags(self): + # type: () -> List[str] + """Return the wheel's tags as a sorted list of strings.""" + return sorted(str(tag) for tag in self.file_tags) + + def support_index_min(self, tags): + # type: (List[Tag]) -> int + """Return the lowest index that one of the wheel's file_tag combinations + achieves in the given list of supported tags. + + For example, if there are 8 supported tags and one of the file tags + is first in the list, then return 0. + + :param tags: the PEP 425 tags to check the wheel against, in order + with most preferred first. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + return min(tags.index(tag) for tag in self.file_tags if tag in tags) + + def find_most_preferred_tag(self, tags, tag_to_priority): + # type: (List[Tag], Dict[Tag, int]) -> int + """Return the priority of the most preferred tag that one of the wheel's file + tag combinations acheives in the given list of supported tags using the given + tag_to_priority mapping, where lower priorities are more-preferred. + + This is used in place of support_index_min in some cases in order to avoid + an expensive linear scan of a large list of tags. + + :param tags: the PEP 425 tags to check the wheel against. + :param tag_to_priority: a mapping from tag to priority of that tag, where + lower is more preferred. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + return min( + tag_to_priority[tag] for tag in self.file_tags if tag in tag_to_priority + ) + + def supported(self, tags): + # type: (Iterable[Tag]) -> bool + """Return whether the wheel is compatible with one of the given tags. + + :param tags: the PEP 425 tags to check the wheel against. + """ + return not self.file_tags.isdisjoint(tags) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/network/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/network/__init__.py new file mode 100644 index 00000000..b51bde91 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/network/__init__.py @@ -0,0 +1,2 @@ +"""Contains purely network-related utilities. +""" diff --git a/venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3de782345e35a87788d3dc068ebf2d8dcd8fa266 GIT binary patch literal 212 zcmWIL<>g`k0)_V01S25*7{oyaj6jY95EpX*i4=w?h7`tN22G|aZRh;FlElosVugaz zqSTy9g}l^~^8BJ~T_7j1BsE2$v?Mbpvm`UMSdYt3lkpaNe0)lNa(w(sh9V}QNnqla zlYU8Vfqp?|fo^GDL1J=tYKm@oMrvw~Zee;>iDiLB8c0q*J~OW*wJ0w!M;~g3emqbp bvm`!Vub}c4hfQvNN@-529mu7hftUdR>@Pbd literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/auth.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/auth.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5df097e2845d76cc4a885d4c7d8675326caee2c1 GIT binary patch literal 7034 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

Jj6{XKUG-6 ze`RpVhX2NFQse##@L4Nr2dCk}Y5i5D$XdV7|2iu>Q!00Vt^Y_->p>5Gp~D$<`)3c% zk*UP^E{?X={`^;v#pV`H?VFGce}k*1BAR$DNNvK!GxKdz21%Dv7tHJq$VG zSS~(Qt|S0rTu$Uvg8fO#5g&6BysW86TAG6~!uztpqa;Es41=dBS6ox8E^nMJk8+7Z z5kZy`*T@yR$j(!*^r#;UAef!5w<(h~*q%J&`_c&!yh>TCUJ{f=>?WN(jJG3jRiKr# zBeq9xjLl!6IbCv9sQC%SBA{e)r@cz=8lg`9Cc2bvF@-Jo z7A3SsFrT`Vy-x)nP@=S6C8YZN9VAzPIHBU=a39OK&DdWknz`dYCL59q!9~d?MTShk zUR|sZdy$_8He0U(4xoRsb^&Z4?~}~HY8vk&3TPeJ3^y+*7%92=3#b|*l#e4?SVOdM zw~SDtmCHZ{`ZQck_R<+Yy-?PKqGKe9K(!ckyO9tS6Rd9gDI6*eX9(d4A3=i%*Kp;W zP5CtbB?L5n42*j+fOy2Y;|rT%oRps7$yot<#lZgv!EmL3v*VJMx(l5DYRlf};`0Mi6{B3X`&iKZWVao0uY-m+A9WN?xOcFrjo+VU5!&=T?4% z#3xWe9R%59*YFzdIRM}*?-{q{uDT7^ai4QtPOVyBleHjV2$~17MuAm|zBNh~+$gE9 zjb_rx_lKzB20l2cFDIOGvO1iMS?4@Lpc?_aX_oPgis;0K@&xD(q!_UC=)y)2MU)6m zR*aMCbS^AxHp*kPT0#T4t{P0^tsAOlV-Sn3vdpD}LcR&7K!)<0rGLE3y{^~*QU&Oh zXq#sVKTRXo;aT5N@nz1aueu&ThFoW9jyV(t<`=3eL-y^*zYKlF{> z%x3a-*fzSC&E|9ATs|Mpn|>?n^w@d(~kF)%c?9ShqVha8^j456REt4`e3D-f>#-g z!7`s0awvGjQjt(}VA4=WGFRXy+aMIF4Vn8k0I^rK-xp;b86=NjpXLS!97=%diOJ!w ziI{_x|9-g)CoflNwKOcMIN9QCX=ju3Z0W_uKz&->@8jHZlmci0$d(JPc1p3eY&P#z zyLvX2(b;hwbjboiEP;B0>U4v|FoW_vP)0tZKN3oQBE_NuD7JiYi$b50pGjdo2TXv+ z8f`!62Rj@hQ`}WSoFrVzKtYg<52zKB>0mIFDv(=gW#-aiBZvzYRHDQ+egIAI7eg+U z3}P9i{Zq4@SmNfqh}SdDdd3vP-TZd#YavQu$eI%K;Jv;khgAiHO3ub)M;vYC6_}I= zlr${r(>W?Gf&La1Hd;WF4?u7NbwEOk(a?TH`cN6nKJY?^In0Ipby)s$dYsVBgofOMUifuu7_fCB+vTd8hG*=N-~O)ES55g#!*qNfcI#OgrsMpw_V z+B@0$97-(4(}MgMI*J_8njX_VOIfwW0P9QZ2HZWhwL!0uJzLoWXW-Uk(CE|J{?qz> zjQWiWYr9Q>$Lj_!l9F-lWT{lzDy4R+SZ!)&P^N`}(RIXiv~-F%=en^O%T3O-Tg5`j zi@7=N29~ej7EeLc(|zmk z-95XukL+V8af{p|-;<~0uXFmE8G8<6<5?*BF&Ekr>i`h12~$4WDJx!RNAQ@P0JpdJ zuDA^rn)WXOwgJH>=%Fb@%cmY~)6v3tm|&Bflp)v>DdaVn54jZA-2`havM+5W_?Vn?L~0$vQqRCyzg+0D6?@#U^eR8|8FGCWf9(-wmNy^dO!uwq-f$k zw;yT%4D3Q_^g|XG?=H7&2VKNM(?w65Wc{F ZDiZG~$HwyOSZ$DPxLDh^=fc}K^B*{=Z?ymb literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/download.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/download.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6d0dff0f5d250ddd4a4003b37d530f8e35302e35 GIT binary patch literal 5033 zcmbtYNpl;=74BIu7=j?Uh?Yo7vc|Gy8;S_Ive~IPF541q$yO*@q?aIe#zV}27;+Y< zry)x4KnKyTT8pPC4h?*PQ$pbg=Wi9)O#eLlUs&^)lT(-S55c zy|4M<#6*SR=lu4o&s%eh{fiohe+C+F;>l(-#(dUfzUJ$Z*3?v~H+5ASO+%Gt(?n@R zrPyj(ak*KJ?WV2K95Wh=E6qwg-W*r$QdEs6niHySMYVXcIjQR9Xeyp=POG{d&BUjg zr&N6`nvI`nKBMZD=yZIhc}CU8qq%s#IUg@H7vi(cv#PHeor}*m&&SU;pN%gxFK8^# zcb(w5J*|1spYUs6vgY&tq(6o71%KL~L3znP<(cqHwt8-*gcFIw=U{U6oI|E}T5ehAT@5-ew% z@UD5bqkYU)naPAM3}Lp7tqQ-QG5Y%zJaLtMqGVlP?$=srB7#ILMnSS6I`xt?!bHe& zC-9(`OjbVfqF$g>A?^2r2Ssgc?LoKbB)!n79y30VO+0z~s))N+yJ2^+mvp_>R^Tsg zcY+{Vyt}a}e%5`hP4BL{_(s5CyQ@i|^{f8S6B^wI@{GF?2)83d*WFhb>E{d`)rMfY zu1#sP8b6DAi*Ppj(c2OprIo* zi-Gg<7lV3#^201lHXP-5zH=$-*G3La-Iua=*1|Xc$QW#5#NPe-jM9&^pyMcQ@iC}F zo+6~dA5-pa1g@XPUYNkcI_b7czBUWt5)9LxfCqXTF?@qh(@d-IR6d0UA6Gq5y0H;( zX@*HVmD4cVQoBvqxfk3D?gf!7(*SHunm3ohOCRvA zxU7m)c#&K9q%>$}74e|x=W^VEqgrVSrdiQcpXV&{WYP%~Q&;Hi~Uva#|SF7+q^mwB5 z<_B%B7YUUsNPSM&R{e+()E#C{5O>9cLRp+bV%?NRYa@hn(O%p_nbLrxszW2#of;{| zKTx`y8h&YCTe9Q|1UzYB9WTz*+E3}a_{ItAtzsvcq6$_`t7xWSYy9WvdrIdPI+Y(i zLIuHz4d6%QO-kF)J9nUMBi9iybYY?dp_pf6hipZZcCF!P!#DTzp?y{mPRv(nB{O@7 zHOm-N-ZJ<@VQ-G@n$+6cUxh#1A596m)KA|H1We%|M|#nL;+4aaD{lbmiF0FZZN(Wy z>MKs$ivZ~jXC2|+5vejG4JMo)tO4UCsi1668Q3qZ)*snp@sK^frBv6i4mG=|EWzrP z!V0r^$A3zKRLW-{CKu_qQil{S1Ql=rJklM$HVNRaGF>%Cq z(bK|nnK%G7RnKnTn3kA zF4kLRkG18;y0qQlndAf#K*1#`sXR8MnFUdsFJUTwnZ&W<*)DiVC|q|3FEg?Xvn;KD z>R>;O(TF1(qhz>G#r}rIh>GPJkZOF)lIujpK*H8EpjBi27jttHw0~5E2|5gajm_O8xMXi5+857PZ{+ zjUD}W3j;eZUuU1y24lIsJDHE|!DsG%P3wNZ?tlX3#^%)SG;20bR2Y2 zyg9+4u-nLWzsCIR1qfykbDh#^2nRZ|h*lW0dIj{OhLB-vr}5^P!xbwmKQ6(uUCMi| zD=V%Wr+yDi&XrZyz1#Dm;tjuzZ*Y&qfpe=GQ6hc=;t?L@+_q+qshFP-Mkcn-igckFW~Ba(<1p^{FP{SzYBfP{YxjD2JRAp`Re zGCu_}OA48#Au?Y(giQ1SnZ^-hmL8T4A(LVA6;QIVwCR*A^&NWo(OT|eVU-|ZO2cf#x&wEYZVtlx*`tQ7wEw)bur`wKNY&w zMYM>?blWJnnu^=R7E};YraQ^X(tf>&b#G`Gn-NDcabYX|X7wo$u7kf>4UT2lwtWT9 Lq&;Wbwdei~h$H+P literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..da370cd8a8c0e479c1116fa811d8f2da33d60efd GIT binary patch literal 7830 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 F{|o-VuzCOh literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/session.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/session.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..554e33ad1c4d4220c88e7ab7c6db9cd2f8e51716 GIT binary patch literal 9473 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 Ssj=56Sw(BH@_1#eGWOr6D)-C) literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/utils.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/utils.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..27de70af28f907aac79afc42fbe5114d4062c7da GIT binary patch literal 1282 zcmZ8h&yO256t+D-GCRA?MoYU?TY=^pi6nr8lvW73B!RY|Aa!@!?MP@k9ea1(Ogt0Y z*=3`I0~B$p#DQCdRF2&E6FBf!_{yc+IdOsK$);N2(Y*1q-+Q*d@ADj7xe_91(GTB0 zezl3vpVqnD9B^*KtG)n35yd$g;~0-gOtAGy?u^~o9ec4?`A+VSYjF+wF7-H$1M1V- zGZe2e_XyK~u06wXNW(qUT>lFyq9!qJpJ&^}ZbL4~F|m@6N&S^JMRC zJTSq1rpiJn*2HFe$n;quN4-J_mT6vyfs}=uZSH0nD|KrivVwAPYywW1&|IHq*e-U_ z?3n_1d+@41z)-xv8qLvDtjTvo_Gb;-f9X*23to_iXmZa*+8u@RHb(Zjn04&zBbYrz z!nb1!LS6WJE^^Qa%g59kA^DAPF%mm=`~{-^oPe!?=f6NddkZYyr{1NUpJ)I%zg0Qc zFLKuYpEJkucU_y~Iilfn@-3#w;yE;E=1uict2+z1Dq7v{2RB>q@gL#n{BJO`&8U}i zz$2>Ax)sgB=%|pCD(NmRF0S+uDeE_}b7}wS|^%JejgjoiYu{xIPF!?KzZ@}lD zk2`u?c1m8hrlL%<5u>fM6UOq^fFEFe zjwz<(Iq9RX!UdU=2cVG2)Y^swm~ zN2X`SR~q;loBFQSl0TVhwxk9aNNLlNYj7SDR@D;4XUuq2zan92uG)yrl^Bxc!d;8S zHW=g*;$!kAc@^$#;JUMcT}-gFU=N$?#@FX1+(&8glorVN2JqHS;GndS?bS)!V^B`6 zq-(=GFy?v{wxYMqzP9%p?z^fa6xZ$ycKd_-dlg&NYL|9w1thC&2OmP=Y0f^fe*tBG Ocn#7Z8`lCSxbYuoWKQS+ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..99fd3067609cebe60ce2dce1a729b6b1fe3b9ab2 GIT binary patch literal 1875 zcmZuxZEqYk5VrSyH+R=-3ZW1Ir=lVbkqZ(+DiT6PQQIIOirPa>_lvVxJIP+XFR^`j zIc*SX0{z5)NF*dwev-fPiNC-HV7zxp3&c9ldB$V!%ro=&yLLN5FnZ5_-2Bx;=y#*M zIvh~$!jwOOpeRNZQ;XvmH~&^_H~&uT!oSVE+>iY{hy!f=93JLT95ri~&*iPS)vP_< z&O31jBjyVVem-~dYw@+b8+XBm&#tria~$7zfM`I&Q$$1Nj$RwReqzT9)Ov*a(d50u zoQo>u+16kvl0sIcP`xa#ILld~5|x!j^alit*7}xi51*{xBP*--R=)mf?SXcOWAN)^ zy|BjAK`EZDltsZ(bLO59rGTAiJ*yruDZvCu5XHJdJ@v&1oBezDxt1XZ|MG!Jx>j&DE|^__hwSg0e#bN3=iN)2%U-gC>fpENAiD z)B|o*@&$&>a*(3w%J>TI298` z!k3F_M=Vc)9aKkR4gk0bQwAWA)xs?t;K}0u3p2P#H#GoW3_~t6S76HDKqypWg-)-@R zQab>DRHL)GIvBOi@na~2gH-!zB!0o@IK*gjs}4sU`GfhQx^~v3uF*%=Ywz5~=oxy9 zK83Fzhu?=A=m{#U4bY&N-rA%E+)%)%CDZAXK(Rw*uo?Dk?LYw%?eDULG9k4mm0(Fe zd1rMvT<+LY5vSJ4e{dpZ_GAn>cMar}dr*!8_DVezBpXdTiqGd!I zgpQ#0rh3pi;<_<76;MyWV}-Q8&%{;^L32vGv~&pMXXC21zI=FtK6wU|JnhGu@tX2Oei=oY Optional[AuthInfo] + """Return the tuple auth for a given url from keyring.""" + global keyring + if not url or not keyring: + return None + + try: + try: + get_credential = keyring.get_credential + except AttributeError: + pass + else: + logger.debug("Getting credentials from keyring for %s", url) + cred = get_credential(url, username) + if cred is not None: + return cred.username, cred.password + return None + + if username: + logger.debug("Getting password from keyring for %s", url) + password = keyring.get_password(url, username) + if password: + return username, password + + except Exception as exc: + logger.warning( + "Keyring is skipped due to an exception: %s", str(exc), + ) + keyring = None + return None + + +class MultiDomainBasicAuth(AuthBase): + + def __init__(self, prompting=True, index_urls=None): + # type: (bool, Optional[List[str]]) -> None + self.prompting = prompting + self.index_urls = index_urls + self.passwords = {} # type: Dict[str, AuthInfo] + # When the user is prompted to enter credentials and keyring is + # available, we will offer to save them. If the user accepts, + # this value is set to the credentials they entered. After the + # request authenticates, the caller should call + # ``save_credentials`` to save these. + self._credentials_to_save = None # type: Optional[Credentials] + + def _get_index_url(self, url): + # type: (str) -> Optional[str] + """Return the original index URL matching the requested URL. + + Cached or dynamically generated credentials may work against + the original index URL rather than just the netloc. + + The provided url should have had its username and password + removed already. If the original index url had credentials then + they will be included in the return value. + + Returns None if no matching index was found, or if --no-index + was specified by the user. + """ + if not url or not self.index_urls: + return None + + for u in self.index_urls: + prefix = remove_auth_from_url(u).rstrip("/") + "/" + if url.startswith(prefix): + return u + return None + + def _get_new_credentials(self, original_url, allow_netrc=True, + allow_keyring=False): + # type: (str, bool, bool) -> AuthInfo + """Find and return credentials for the specified URL.""" + # Split the credentials and netloc from the url. + url, netloc, url_user_password = split_auth_netloc_from_url( + original_url, + ) + + # Start with the credentials embedded in the url + username, password = url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in url for %s", netloc) + return url_user_password + + # Find a matching index url for this request + index_url = self._get_index_url(url) + if index_url: + # Split the credentials from the url. + index_info = split_auth_netloc_from_url(index_url) + if index_info: + index_url, _, index_url_user_password = index_info + logger.debug("Found index url %s", index_url) + + # If an index URL was found, try its embedded credentials + if index_url and index_url_user_password[0] is not None: + username, password = index_url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in index url for %s", netloc) + return index_url_user_password + + # Get creds from netrc if we still don't have them + if allow_netrc: + netrc_auth = get_netrc_auth(original_url) + if netrc_auth: + logger.debug("Found credentials in netrc for %s", netloc) + return netrc_auth + + # If we don't have a password and keyring is available, use it. + if allow_keyring: + # The index url is more specific than the netloc, so try it first + kr_auth = ( + get_keyring_auth(index_url, username) or + get_keyring_auth(netloc, username) + ) + if kr_auth: + logger.debug("Found credentials in keyring for %s", netloc) + return kr_auth + + return username, password + + def _get_url_and_credentials(self, original_url): + # type: (str) -> Tuple[str, Optional[str], Optional[str]] + """Return the credentials to use for the provided URL. + + If allowed, netrc and keyring may be used to obtain the + correct credentials. + + Returns (url_without_credentials, username, password). Note + that even if the original URL contains credentials, this + function may return a different username and password. + """ + url, netloc, _ = split_auth_netloc_from_url(original_url) + + # Use any stored credentials that we have for this netloc + username, password = self.passwords.get(netloc, (None, None)) + + if username is None and password is None: + # No stored credentials. Acquire new credentials without prompting + # the user. (e.g. from netrc, keyring, or the URL itself) + username, password = self._get_new_credentials(original_url) + + if username is not None or password is not None: + # Convert the username and password if they're None, so that + # this netloc will show up as "cached" in the conditional above. + # Further, HTTPBasicAuth doesn't accept None, so it makes sense to + # cache the value that is going to be used. + username = username or "" + password = password or "" + + # Store any acquired credentials. + self.passwords[netloc] = (username, password) + + assert ( + # Credentials were found + (username is not None and password is not None) or + # Credentials were not found + (username is None and password is None) + ), f"Could not load credentials from url: {original_url}" + + return url, username, password + + def __call__(self, req): + # type: (Request) -> Request + # Get credentials for this request + url, username, password = self._get_url_and_credentials(req.url) + + # Set the url of the request to the url without any credentials + req.url = url + + if username is not None and password is not None: + # Send the basic auth with this request + req = HTTPBasicAuth(username, password)(req) + + # Attach a hook to handle 401 responses + req.register_hook("response", self.handle_401) + + return req + + # Factored out to allow for easy patching in tests + def _prompt_for_password(self, netloc): + # type: (str) -> Tuple[Optional[str], Optional[str], bool] + username = ask_input(f"User for {netloc}: ") + if not username: + return None, None, False + auth = get_keyring_auth(netloc, username) + if auth and auth[0] is not None and auth[1] is not None: + return auth[0], auth[1], False + password = ask_password("Password: ") + return username, password, True + + # Factored out to allow for easy patching in tests + def _should_save_password_to_keyring(self): + # type: () -> bool + if not keyring: + return False + return ask("Save credentials to keyring [y/N]: ", ["y", "n"]) == "y" + + def handle_401(self, resp, **kwargs): + # type: (Response, **Any) -> Response + # We only care about 401 responses, anything else we want to just + # pass through the actual response + if resp.status_code != 401: + return resp + + # We are not able to prompt the user so simply return the response + if not self.prompting: + return resp + + parsed = urllib.parse.urlparse(resp.url) + + # Query the keyring for credentials: + username, password = self._get_new_credentials(resp.url, + allow_netrc=False, + allow_keyring=True) + + # Prompt the user for a new username and password + save = False + if not username and not password: + username, password, save = self._prompt_for_password(parsed.netloc) + + # Store the new username and password to use for future requests + self._credentials_to_save = None + if username is not None and password is not None: + self.passwords[parsed.netloc] = (username, password) + + # Prompt to save the password to keyring + if save and self._should_save_password_to_keyring(): + self._credentials_to_save = (parsed.netloc, username, password) + + # Consume content and release the original connection to allow our new + # request to reuse the same one. + resp.content + resp.raw.release_conn() + + # Add our new username and password to the request + req = HTTPBasicAuth(username or "", password or "")(resp.request) + req.register_hook("response", self.warn_on_401) + + # On successful request, save the credentials that were used to + # keyring. (Note that if the user responded "no" above, this member + # is not set and nothing will be saved.) + if self._credentials_to_save: + req.register_hook("response", self.save_credentials) + + # Send our new request + new_resp = resp.connection.send(req, **kwargs) + new_resp.history.append(resp) + + return new_resp + + def warn_on_401(self, resp, **kwargs): + # type: (Response, **Any) -> None + """Response callback to warn about incorrect credentials.""" + if resp.status_code == 401: + logger.warning( + '401 Error, Credentials not correct for %s', resp.request.url, + ) + + def save_credentials(self, resp, **kwargs): + # type: (Response, **Any) -> None + """Response callback to save credentials on success.""" + assert keyring is not None, "should never reach here without keyring" + if not keyring: + return + + creds = self._credentials_to_save + self._credentials_to_save = None + if creds and resp.status_code < 400: + try: + logger.info('Saving credentials to keyring') + keyring.set_password(*creds) + except Exception: + logger.exception('Failed to save credentials') diff --git a/venv/lib/python3.8/site-packages/pip/_internal/network/cache.py b/venv/lib/python3.8/site-packages/pip/_internal/network/cache.py new file mode 100644 index 00000000..ce08932a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/network/cache.py @@ -0,0 +1,76 @@ +"""HTTP cache implementation. +""" + +import os +from contextlib import contextmanager +from typing import Iterator, Optional + +from pip._vendor.cachecontrol.cache import BaseCache +from pip._vendor.cachecontrol.caches import FileCache +from pip._vendor.requests.models import Response + +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import ensure_dir + + +def is_from_cache(response): + # type: (Response) -> bool + return getattr(response, "from_cache", False) + + +@contextmanager +def suppressed_cache_errors(): + # type: () -> Iterator[None] + """If we can't access the cache then we can just skip caching and process + requests as if caching wasn't enabled. + """ + try: + yield + except OSError: + pass + + +class SafeFileCache(BaseCache): + """ + A file based cache which is safe to use even when the target directory may + not be accessible or writable. + """ + + def __init__(self, directory): + # type: (str) -> None + assert directory is not None, "Cache directory must not be None." + super().__init__() + self.directory = directory + + def _get_cache_path(self, name): + # type: (str) -> str + # From cachecontrol.caches.file_cache.FileCache._fn, brought into our + # class for backwards-compatibility and to avoid using a non-public + # method. + hashed = FileCache.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key): + # type: (str) -> Optional[bytes] + path = self._get_cache_path(key) + with suppressed_cache_errors(): + with open(path, 'rb') as f: + return f.read() + + def set(self, key, value): + # type: (str, bytes) -> None + path = self._get_cache_path(key) + with suppressed_cache_errors(): + ensure_dir(os.path.dirname(path)) + + with adjacent_tmp_file(path) as f: + f.write(value) + + replace(f.name, path) + + def delete(self, key): + # type: (str) -> None + path = self._get_cache_path(key) + with suppressed_cache_errors(): + os.remove(path) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/network/download.py b/venv/lib/python3.8/site-packages/pip/_internal/network/download.py new file mode 100644 index 00000000..1897d99a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/network/download.py @@ -0,0 +1,196 @@ +"""Download files with progress indicators. +""" +import cgi +import logging +import mimetypes +import os +from typing import Iterable, Optional, Tuple + +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.cli.progress_bars import DownloadProgressProvider +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.index import PyPI +from pip._internal.models.link import Link +from pip._internal.network.cache import is_from_cache +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks +from pip._internal.utils.misc import format_size, redact_auth_from_url, splitext + +logger = logging.getLogger(__name__) + + +def _get_http_response_size(resp): + # type: (Response) -> Optional[int] + try: + return int(resp.headers['content-length']) + except (ValueError, KeyError, TypeError): + return None + + +def _prepare_download( + resp, # type: Response + link, # type: Link + progress_bar # type: str +): + # type: (...) -> Iterable[bytes] + total_length = _get_http_response_size(resp) + + if link.netloc == PyPI.file_storage_domain: + url = link.show_url + else: + url = link.url_without_fragment + + logged_url = redact_auth_from_url(url) + + if total_length: + logged_url = '{} ({})'.format(logged_url, format_size(total_length)) + + if is_from_cache(resp): + logger.info("Using cached %s", logged_url) + else: + logger.info("Downloading %s", logged_url) + + if logger.getEffectiveLevel() > logging.INFO: + show_progress = False + elif is_from_cache(resp): + show_progress = False + elif not total_length: + show_progress = True + elif total_length > (40 * 1000): + show_progress = True + else: + show_progress = False + + chunks = response_chunks(resp, CONTENT_CHUNK_SIZE) + + if not show_progress: + return chunks + + return DownloadProgressProvider( + progress_bar, max=total_length + )(chunks) + + +def sanitize_content_filename(filename): + # type: (str) -> str + """ + Sanitize the "filename" value from a Content-Disposition header. + """ + return os.path.basename(filename) + + +def parse_content_disposition(content_disposition, default_filename): + # type: (str, str) -> str + """ + Parse the "filename" value from a Content-Disposition header, and + return the default filename if the result is empty. + """ + _type, params = cgi.parse_header(content_disposition) + filename = params.get('filename') + if filename: + # We need to sanitize the filename to prevent directory traversal + # in case the filename contains ".." path parts. + filename = sanitize_content_filename(filename) + return filename or default_filename + + +def _get_http_response_filename(resp, link): + # type: (Response, Link) -> str + """Get an ideal filename from the given HTTP response, falling back to + the link filename if not provided. + """ + filename = link.filename # fallback + # Have a look at the Content-Disposition header for a better guess + content_disposition = resp.headers.get('content-disposition') + if content_disposition: + filename = parse_content_disposition(content_disposition, filename) + ext = splitext(filename)[1] # type: Optional[str] + if not ext: + ext = mimetypes.guess_extension( + resp.headers.get('content-type', '') + ) + if ext: + filename += ext + if not ext and link.url != resp.url: + ext = os.path.splitext(resp.url)[1] + if ext: + filename += ext + return filename + + +def _http_get_download(session, link): + # type: (PipSession, Link) -> Response + target_url = link.url.split('#', 1)[0] + resp = session.get(target_url, headers=HEADERS, stream=True) + raise_for_status(resp) + return resp + + +class Downloader: + def __init__( + self, + session, # type: PipSession + progress_bar, # type: str + ): + # type: (...) -> None + self._session = session + self._progress_bar = progress_bar + + def __call__(self, link, location): + # type: (Link, str) -> Tuple[str, str] + """Download the file given by link into location.""" + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", e.response.status_code, link + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, 'wb') as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get('Content-Type', '') + return filepath, content_type + + +class BatchDownloader: + + def __init__( + self, + session, # type: PipSession + progress_bar, # type: str + ): + # type: (...) -> None + self._session = session + self._progress_bar = progress_bar + + def __call__(self, links, location): + # type: (Iterable[Link], str) -> Iterable[Tuple[Link, Tuple[str, str]]] + """Download the files given by links into location.""" + for link in links: + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", + e.response.status_code, link, + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, 'wb') as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get('Content-Type', '') + yield link, (filepath, content_type) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/network/lazy_wheel.py b/venv/lib/python3.8/site-packages/pip/_internal/network/lazy_wheel.py new file mode 100644 index 00000000..b877d3b7 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/network/lazy_wheel.py @@ -0,0 +1,224 @@ +"""Lazy ZIP over HTTP""" + +__all__ = ['HTTPRangeRequestUnsupported', 'dist_from_wheel_url'] + +from bisect import bisect_left, bisect_right +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, Dict, Iterator, List, Optional, Tuple +from zipfile import BadZipfile, ZipFile + +from pip._vendor.pkg_resources import Distribution +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks +from pip._internal.utils.wheel import pkg_resources_distribution_for_wheel + + +class HTTPRangeRequestUnsupported(Exception): + pass + + +def dist_from_wheel_url(name, url, session): + # type: (str, str, PipSession) -> Distribution + """Return a pkg_resources.Distribution from the given wheel URL. + + This uses HTTP range requests to only fetch the potion of the wheel + containing metadata, just enough for the object to be constructed. + If such requests are not supported, HTTPRangeRequestUnsupported + is raised. + """ + with LazyZipOverHTTP(url, session) as wheel: + # For read-only ZIP files, ZipFile only needs methods read, + # seek, seekable and tell, not the whole IO protocol. + zip_file = ZipFile(wheel) # type: ignore + # After context manager exit, wheel.name + # is an invalid file by intention. + return pkg_resources_distribution_for_wheel(zip_file, name, wheel.name) + + +class LazyZipOverHTTP: + """File-like object mapped to a ZIP file over HTTP. + + This uses HTTP range requests to lazily fetch the file's content, + which is supposed to be fed to ZipFile. If such requests are not + supported by the server, raise HTTPRangeRequestUnsupported + during initialization. + """ + + def __init__(self, url, session, chunk_size=CONTENT_CHUNK_SIZE): + # type: (str, PipSession, int) -> None + head = session.head(url, headers=HEADERS) + raise_for_status(head) + assert head.status_code == 200 + self._session, self._url, self._chunk_size = session, url, chunk_size + self._length = int(head.headers['Content-Length']) + self._file = NamedTemporaryFile() + self.truncate(self._length) + self._left = [] # type: List[int] + self._right = [] # type: List[int] + if 'bytes' not in head.headers.get('Accept-Ranges', 'none'): + raise HTTPRangeRequestUnsupported('range request is not supported') + self._check_zip() + + @property + def mode(self): + # type: () -> str + """Opening mode, which is always rb.""" + return 'rb' + + @property + def name(self): + # type: () -> str + """Path to the underlying file.""" + return self._file.name + + def seekable(self): + # type: () -> bool + """Return whether random access is supported, which is True.""" + return True + + def close(self): + # type: () -> None + """Close the file.""" + self._file.close() + + @property + def closed(self): + # type: () -> bool + """Whether the file is closed.""" + return self._file.closed + + def read(self, size=-1): + # type: (int) -> bytes + """Read up to size bytes from the object and return them. + + As a convenience, if size is unspecified or -1, + all bytes until EOF are returned. Fewer than + size bytes may be returned if EOF is reached. + """ + download_size = max(size, self._chunk_size) + start, length = self.tell(), self._length + stop = length if size < 0 else min(start+download_size, length) + start = max(0, stop-download_size) + self._download(start, stop-1) + return self._file.read(size) + + def readable(self): + # type: () -> bool + """Return whether the file is readable, which is True.""" + return True + + def seek(self, offset, whence=0): + # type: (int, int) -> int + """Change stream position and return the new absolute position. + + Seek to offset relative position indicated by whence: + * 0: Start of stream (the default). pos should be >= 0; + * 1: Current position - pos may be negative; + * 2: End of stream - pos usually negative. + """ + return self._file.seek(offset, whence) + + def tell(self): + # type: () -> int + """Return the current possition.""" + return self._file.tell() + + def truncate(self, size=None): + # type: (Optional[int]) -> int + """Resize the stream to the given size in bytes. + + If size is unspecified resize to the current position. + The current stream position isn't changed. + + Return the new file size. + """ + return self._file.truncate(size) + + def writable(self): + # type: () -> bool + """Return False.""" + return False + + def __enter__(self): + # type: () -> LazyZipOverHTTP + self._file.__enter__() + return self + + def __exit__(self, *exc): + # type: (*Any) -> Optional[bool] + return self._file.__exit__(*exc) + + @contextmanager + def _stay(self): + # type: ()-> Iterator[None] + """Return a context manager keeping the position. + + At the end of the block, seek back to original position. + """ + pos = self.tell() + try: + yield + finally: + self.seek(pos) + + def _check_zip(self): + # type: () -> None + """Check and download until the file is a valid ZIP.""" + end = self._length - 1 + for start in reversed(range(0, end, self._chunk_size)): + self._download(start, end) + with self._stay(): + try: + # For read-only ZIP files, ZipFile only needs + # methods read, seek, seekable and tell. + ZipFile(self) # type: ignore + except BadZipfile: + pass + else: + break + + def _stream_response(self, start, end, base_headers=HEADERS): + # type: (int, int, Dict[str, str]) -> Response + """Return HTTP response to a range request from start to end.""" + headers = base_headers.copy() + headers['Range'] = f'bytes={start}-{end}' + # TODO: Get range requests to be correctly cached + headers['Cache-Control'] = 'no-cache' + return self._session.get(self._url, headers=headers, stream=True) + + def _merge(self, start, end, left, right): + # type: (int, int, int, int) -> Iterator[Tuple[int, int]] + """Return an iterator of intervals to be fetched. + + Args: + start (int): Start of needed interval + end (int): End of needed interval + left (int): Index of first overlapping downloaded data + right (int): Index after last overlapping downloaded data + """ + lslice, rslice = self._left[left:right], self._right[left:right] + i = start = min([start]+lslice[:1]) + end = max([end]+rslice[-1:]) + for j, k in zip(lslice, rslice): + if j > i: + yield i, j-1 + i = k + 1 + if i <= end: + yield i, end + self._left[left:right], self._right[left:right] = [start], [end] + + def _download(self, start, end): + # type: (int, int) -> None + """Download bytes from start to end inclusively.""" + with self._stay(): + left = bisect_left(self._right, start) + right = bisect_right(self._left, end) + for start, end in self._merge(start, end, left, right): + response = self._stream_response(start, end) + response.raise_for_status() + self.seek(start) + for chunk in response_chunks(response, self._chunk_size): + self._file.write(chunk) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/network/session.py b/venv/lib/python3.8/site-packages/pip/_internal/network/session.py new file mode 100644 index 00000000..4af800f1 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/network/session.py @@ -0,0 +1,449 @@ +"""PipSession and supporting code, containing all pip-specific +network request configuration and behavior. +""" + +# When mypy runs on Windows the call to distro.linux_distribution() is skipped +# resulting in the failure: +# +# error: unused 'type: ignore' comment +# +# If the upstream module adds typing, this comment should be removed. See +# https://github.com/nir0s/distro/pull/269 +# +# mypy: warn-unused-ignores=False + +import email.utils +import ipaddress +import json +import logging +import mimetypes +import os +import platform +import sys +import urllib.parse +import warnings +from typing import Any, Dict, Iterator, List, Mapping, Optional, Sequence, Tuple, Union + +from pip._vendor import requests, urllib3 +from pip._vendor.cachecontrol import CacheControlAdapter +from pip._vendor.requests.adapters import BaseAdapter, HTTPAdapter +from pip._vendor.requests.models import PreparedRequest, Response +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3.connectionpool import ConnectionPool +from pip._vendor.urllib3.exceptions import InsecureRequestWarning + +from pip import __version__ +from pip._internal.metadata import get_default_environment +from pip._internal.models.link import Link +from pip._internal.network.auth import MultiDomainBasicAuth +from pip._internal.network.cache import SafeFileCache + +# Import ssl from compat so the initial import occurs in only one place. +from pip._internal.utils.compat import has_tls +from pip._internal.utils.glibc import libc_ver +from pip._internal.utils.misc import build_url_from_netloc, parse_netloc +from pip._internal.utils.urls import url_to_path + +logger = logging.getLogger(__name__) + +SecureOrigin = Tuple[str, str, Optional[Union[int, str]]] + + +# Ignore warning raised when using --trusted-host. +warnings.filterwarnings("ignore", category=InsecureRequestWarning) + + +SECURE_ORIGINS = [ + # protocol, hostname, port + # Taken from Chrome's list of secure origins (See: http://bit.ly/1qrySKC) + ("https", "*", "*"), + ("*", "localhost", "*"), + ("*", "127.0.0.0/8", "*"), + ("*", "::1/128", "*"), + ("file", "*", None), + # ssh is always secure. + ("ssh", "*", "*"), +] # type: List[SecureOrigin] + + +# These are environment variables present when running under various +# CI systems. For each variable, some CI systems that use the variable +# are indicated. The collection was chosen so that for each of a number +# of popular systems, at least one of the environment variables is used. +# This list is used to provide some indication of and lower bound for +# CI traffic to PyPI. Thus, it is okay if the list is not comprehensive. +# For more background, see: https://github.com/pypa/pip/issues/5499 +CI_ENVIRONMENT_VARIABLES = ( + # Azure Pipelines + 'BUILD_BUILDID', + # Jenkins + 'BUILD_ID', + # AppVeyor, CircleCI, Codeship, Gitlab CI, Shippable, Travis CI + 'CI', + # Explicit environment variable. + 'PIP_IS_CI', +) + + +def looks_like_ci(): + # type: () -> bool + """ + Return whether it looks like pip is running under CI. + """ + # We don't use the method of checking for a tty (e.g. using isatty()) + # because some CI systems mimic a tty (e.g. Travis CI). Thus that + # method doesn't provide definitive information in either direction. + return any(name in os.environ for name in CI_ENVIRONMENT_VARIABLES) + + +def user_agent(): + # type: () -> str + """ + Return a string representing the user agent. + """ + data = { + "installer": {"name": "pip", "version": __version__}, + "python": platform.python_version(), + "implementation": { + "name": platform.python_implementation(), + }, + } # type: Dict[str, Any] + + if data["implementation"]["name"] == 'CPython': + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == 'PyPy': + pypy_version_info = sys.pypy_version_info # type: ignore + if pypy_version_info.releaselevel == 'final': + pypy_version_info = pypy_version_info[:3] + data["implementation"]["version"] = ".".join( + [str(x) for x in pypy_version_info] + ) + elif data["implementation"]["name"] == 'Jython': + # Complete Guess + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == 'IronPython': + # Complete Guess + data["implementation"]["version"] = platform.python_version() + + if sys.platform.startswith("linux"): + from pip._vendor import distro + + # https://github.com/nir0s/distro/pull/269 + linux_distribution = distro.linux_distribution() # type: ignore + distro_infos = dict(filter( + lambda x: x[1], + zip(["name", "version", "id"], linux_distribution), + )) + libc = dict(filter( + lambda x: x[1], + zip(["lib", "version"], libc_ver()), + )) + if libc: + distro_infos["libc"] = libc + if distro_infos: + data["distro"] = distro_infos + + if sys.platform.startswith("darwin") and platform.mac_ver()[0]: + data["distro"] = {"name": "macOS", "version": platform.mac_ver()[0]} + + if platform.system(): + data.setdefault("system", {})["name"] = platform.system() + + if platform.release(): + data.setdefault("system", {})["release"] = platform.release() + + if platform.machine(): + data["cpu"] = platform.machine() + + if has_tls(): + import _ssl as ssl + data["openssl_version"] = ssl.OPENSSL_VERSION + + setuptools_dist = get_default_environment().get_distribution("setuptools") + if setuptools_dist is not None: + data["setuptools_version"] = str(setuptools_dist.version) + + # Use None rather than False so as not to give the impression that + # pip knows it is not being run under CI. Rather, it is a null or + # inconclusive result. Also, we include some value rather than no + # value to make it easier to know that the check has been run. + data["ci"] = True if looks_like_ci() else None + + user_data = os.environ.get("PIP_USER_AGENT_USER_DATA") + if user_data is not None: + data["user_data"] = user_data + + return "{data[installer][name]}/{data[installer][version]} {json}".format( + data=data, + json=json.dumps(data, separators=(",", ":"), sort_keys=True), + ) + + +class LocalFSAdapter(BaseAdapter): + + def send( + self, + request, # type: PreparedRequest + stream=False, # type: bool + timeout=None, # type: Optional[Union[float, Tuple[float, float]]] + verify=True, # type: Union[bool, str] + cert=None, # type: Optional[Union[str, Tuple[str, str]]] + proxies=None, # type:Optional[Mapping[str, str]] + ): + # type: (...) -> Response + pathname = url_to_path(request.url) + + resp = Response() + resp.status_code = 200 + resp.url = request.url + + try: + stats = os.stat(pathname) + except OSError as exc: + resp.status_code = 404 + resp.raw = exc + else: + modified = email.utils.formatdate(stats.st_mtime, usegmt=True) + content_type = mimetypes.guess_type(pathname)[0] or "text/plain" + resp.headers = CaseInsensitiveDict({ + "Content-Type": content_type, + "Content-Length": stats.st_size, + "Last-Modified": modified, + }) + + resp.raw = open(pathname, "rb") + resp.close = resp.raw.close + + return resp + + def close(self): + # type: () -> None + pass + + +class InsecureHTTPAdapter(HTTPAdapter): + + def cert_verify( + self, + conn, # type: ConnectionPool + url, # type: str + verify, # type: Union[bool, str] + cert, # type: Optional[Union[str, Tuple[str, str]]] + ): + # type: (...) -> None + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class InsecureCacheControlAdapter(CacheControlAdapter): + + def cert_verify( + self, + conn, # type: ConnectionPool + url, # type: str + verify, # type: Union[bool, str] + cert, # type: Optional[Union[str, Tuple[str, str]]] + ): + # type: (...) -> None + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class PipSession(requests.Session): + + timeout = None # type: Optional[int] + + def __init__( + self, + *args, # type: Any + retries=0, # type: int + cache=None, # type: Optional[str] + trusted_hosts=(), # type: Sequence[str] + index_urls=None, # type: Optional[List[str]] + **kwargs, # type: Any + ): + # type: (...) -> None + """ + :param trusted_hosts: Domains not to emit warnings for when not using + HTTPS. + """ + super().__init__(*args, **kwargs) + + # Namespace the attribute with "pip_" just in case to prevent + # possible conflicts with the base class. + self.pip_trusted_origins = [] # type: List[Tuple[str, Optional[int]]] + + # Attach our User Agent to the request + self.headers["User-Agent"] = user_agent() + + # Attach our Authentication handler to the session + self.auth = MultiDomainBasicAuth(index_urls=index_urls) + + # Create our urllib3.Retry instance which will allow us to customize + # how we handle retries. + retries = urllib3.Retry( + # Set the total number of retries that a particular request can + # have. + total=retries, + + # A 503 error from PyPI typically means that the Fastly -> Origin + # connection got interrupted in some way. A 503 error in general + # is typically considered a transient error so we'll go ahead and + # retry it. + # A 500 may indicate transient error in Amazon S3 + # A 520 or 527 - may indicate transient error in CloudFlare + status_forcelist=[500, 503, 520, 527], + + # Add a small amount of back off between failed requests in + # order to prevent hammering the service. + backoff_factor=0.25, + ) # type: ignore + + # Our Insecure HTTPAdapter disables HTTPS validation. It does not + # support caching so we'll use it for all http:// URLs. + # If caching is disabled, we will also use it for + # https:// hosts that we've marked as ignoring + # TLS errors for (trusted-hosts). + insecure_adapter = InsecureHTTPAdapter(max_retries=retries) + + # We want to _only_ cache responses on securely fetched origins or when + # the host is specified as trusted. We do this because + # we can't validate the response of an insecurely/untrusted fetched + # origin, and we don't want someone to be able to poison the cache and + # require manual eviction from the cache to fix it. + if cache: + secure_adapter = CacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ) + self._trusted_host_adapter = InsecureCacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ) + else: + secure_adapter = HTTPAdapter(max_retries=retries) + self._trusted_host_adapter = insecure_adapter + + self.mount("https://", secure_adapter) + self.mount("http://", insecure_adapter) + + # Enable file:// urls + self.mount("file://", LocalFSAdapter()) + + for host in trusted_hosts: + self.add_trusted_host(host, suppress_logging=True) + + def update_index_urls(self, new_index_urls): + # type: (List[str]) -> None + """ + :param new_index_urls: New index urls to update the authentication + handler with. + """ + self.auth.index_urls = new_index_urls + + def add_trusted_host(self, host, source=None, suppress_logging=False): + # type: (str, Optional[str], bool) -> None + """ + :param host: It is okay to provide a host that has previously been + added. + :param source: An optional source string, for logging where the host + string came from. + """ + if not suppress_logging: + msg = f'adding trusted host: {host!r}' + if source is not None: + msg += f' (from {source})' + logger.info(msg) + + host_port = parse_netloc(host) + if host_port not in self.pip_trusted_origins: + self.pip_trusted_origins.append(host_port) + + self.mount( + build_url_from_netloc(host) + '/', + self._trusted_host_adapter + ) + if not host_port[1]: + # Mount wildcard ports for the same host. + self.mount( + build_url_from_netloc(host) + ':', + self._trusted_host_adapter + ) + + def iter_secure_origins(self): + # type: () -> Iterator[SecureOrigin] + yield from SECURE_ORIGINS + for host, port in self.pip_trusted_origins: + yield ('*', host, '*' if port is None else port) + + def is_secure_origin(self, location): + # type: (Link) -> bool + # Determine if this url used a secure transport mechanism + parsed = urllib.parse.urlparse(str(location)) + origin_protocol, origin_host, origin_port = ( + parsed.scheme, parsed.hostname, parsed.port, + ) + + # The protocol to use to see if the protocol matches. + # Don't count the repository type as part of the protocol: in + # cases such as "git+ssh", only use "ssh". (I.e., Only verify against + # the last scheme.) + origin_protocol = origin_protocol.rsplit('+', 1)[-1] + + # Determine if our origin is a secure origin by looking through our + # hardcoded list of secure origins, as well as any additional ones + # configured on this PackageFinder instance. + for secure_origin in self.iter_secure_origins(): + secure_protocol, secure_host, secure_port = secure_origin + if origin_protocol != secure_protocol and secure_protocol != "*": + continue + + try: + addr = ipaddress.ip_address(origin_host) + network = ipaddress.ip_network(secure_host) + except ValueError: + # We don't have both a valid address or a valid network, so + # we'll check this origin against hostnames. + if ( + origin_host and + origin_host.lower() != secure_host.lower() and + secure_host != "*" + ): + continue + else: + # We have a valid address and network, so see if the address + # is contained within the network. + if addr not in network: + continue + + # Check to see if the port matches. + if ( + origin_port != secure_port and + secure_port != "*" and + secure_port is not None + ): + continue + + # If we've gotten here, then this origin matches the current + # secure origin and we should return True + return True + + # If we've gotten to this point, then the origin isn't secure and we + # will not accept it as a valid location to search. We will however + # log a warning that we are ignoring it. + logger.warning( + "The repository located at %s is not a trusted or secure host and " + "is being ignored. If this repository is available via HTTPS we " + "recommend you use HTTPS instead, otherwise you may silence " + "this warning and allow it anyway with '--trusted-host %s'.", + origin_host, + origin_host, + ) + + return False + + def request(self, method, url, *args, **kwargs): + # type: (str, str, *Any, **Any) -> Response + # Allow setting a default timeout on a session + kwargs.setdefault("timeout", self.timeout) + + # Dispatch the actual request + return super().request(method, url, *args, **kwargs) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/network/utils.py b/venv/lib/python3.8/site-packages/pip/_internal/network/utils.py new file mode 100644 index 00000000..6e5cf0d1 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/network/utils.py @@ -0,0 +1,95 @@ +from typing import Dict, Iterator + +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.exceptions import NetworkConnectionError + +# The following comments and HTTP headers were originally added by +# Donald Stufft in git commit 22c562429a61bb77172039e480873fb239dd8c03. +# +# We use Accept-Encoding: identity here because requests defaults to +# accepting compressed responses. This breaks in a variety of ways +# depending on how the server is configured. +# - Some servers will notice that the file isn't a compressible file +# and will leave the file alone and with an empty Content-Encoding +# - Some servers will notice that the file is already compressed and +# will leave the file alone, adding a Content-Encoding: gzip header +# - Some servers won't notice anything at all and will take a file +# that's already been compressed and compress it again, and set +# the Content-Encoding: gzip header +# By setting this to request only the identity encoding we're hoping +# to eliminate the third case. Hopefully there does not exist a server +# which when given a file will notice it is already compressed and that +# you're not asking for a compressed file and will then decompress it +# before sending because if that's the case I don't think it'll ever be +# possible to make this work. +HEADERS = {'Accept-Encoding': 'identity'} # type: Dict[str, str] + + +def raise_for_status(resp): + # type: (Response) -> None + http_error_msg = '' + if isinstance(resp.reason, bytes): + # We attempt to decode utf-8 first because some servers + # choose to localize their reason strings. If the string + # isn't utf-8, we fall back to iso-8859-1 for all other + # encodings. + try: + reason = resp.reason.decode('utf-8') + except UnicodeDecodeError: + reason = resp.reason.decode('iso-8859-1') + else: + reason = resp.reason + + if 400 <= resp.status_code < 500: + http_error_msg = ( + f'{resp.status_code} Client Error: {reason} for url: {resp.url}') + + elif 500 <= resp.status_code < 600: + http_error_msg = ( + f'{resp.status_code} Server Error: {reason} for url: {resp.url}') + + if http_error_msg: + raise NetworkConnectionError(http_error_msg, response=resp) + + +def response_chunks(response, chunk_size=CONTENT_CHUNK_SIZE): + # type: (Response, int) -> Iterator[bytes] + """Given a requests Response, provide the data chunks. + """ + try: + # Special case for urllib3. + for chunk in response.raw.stream( + chunk_size, + # We use decode_content=False here because we don't + # want urllib3 to mess with the raw bytes we get + # from the server. If we decompress inside of + # urllib3 then we cannot verify the checksum + # because the checksum will be of the compressed + # file. This breakage will only occur if the + # server adds a Content-Encoding header, which + # depends on how the server was configured: + # - Some servers will notice that the file isn't a + # compressible file and will leave the file alone + # and with an empty Content-Encoding + # - Some servers will notice that the file is + # already compressed and will leave the file + # alone and will add a Content-Encoding: gzip + # header + # - Some servers won't notice anything at all and + # will take a file that's already been compressed + # and compress it again and set the + # Content-Encoding: gzip header + # + # By setting this not to decode automatically we + # hope to eliminate problems with the second case. + decode_content=False, + ): + yield chunk + except AttributeError: + # Standard file-like object. + while True: + chunk = response.raw.read(chunk_size) + if not chunk: + break + yield chunk diff --git a/venv/lib/python3.8/site-packages/pip/_internal/network/xmlrpc.py b/venv/lib/python3.8/site-packages/pip/_internal/network/xmlrpc.py new file mode 100644 index 00000000..b92b8d9a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/network/xmlrpc.py @@ -0,0 +1,49 @@ +"""xmlrpclib.Transport implementation +""" + +import logging +import urllib.parse +import xmlrpc.client +from typing import TYPE_CHECKING, Tuple + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status + +if TYPE_CHECKING: + from xmlrpc.client import _HostType, _Marshallable + +logger = logging.getLogger(__name__) + + +class PipXmlrpcTransport(xmlrpc.client.Transport): + """Provide a `xmlrpclib.Transport` implementation via a `PipSession` + object. + """ + + def __init__(self, index_url, session, use_datetime=False): + # type: (str, PipSession, bool) -> None + super().__init__(use_datetime) + index_parts = urllib.parse.urlparse(index_url) + self._scheme = index_parts.scheme + self._session = session + + def request(self, host, handler, request_body, verbose=False): + # type: (_HostType, str, bytes, bool) -> Tuple[_Marshallable, ...] + assert isinstance(host, str) + parts = (self._scheme, host, handler, None, None, None) + url = urllib.parse.urlunparse(parts) + try: + headers = {'Content-Type': 'text/xml'} + response = self._session.post(url, data=request_body, + headers=headers, stream=True) + raise_for_status(response) + self.verbose = verbose + return self.parse_response(response.raw) + except NetworkConnectionError as exc: + assert exc.response + logger.critical( + "HTTP error %s while getting %s", + exc.response.status_code, url, + ) + raise diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/operations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a0af9a20286e67b8c190400404ee162673f11b04 GIT binary patch literal 160 zcmWIL<>g`k0)_V01Q7igL?8o3AjbiSi&=m~3PUi1CZpdvpw8@Pq4NQXy2A`3HUcANF;7{*@N1?#GXs;6%u21y4(!YcoU9hq zGB6fEg>Jw2D5 z56&|~*zz0f<6-`V-~#&Wa9OMzvEZU`hP2q@UJTI=3E?)Sa$BXgVmsW5i zz8o*b=U%elt@wO=;iVD09WTc#_`Mllj4$E09rGtf`^x^?zl+i&j*287_<7fl#ZU}l zG3X>hQGXb9`cY3P@1Nv=%{HsNL6nKO7!6a=cB{FkUp#&gZhZV;x7JdiS%P_(nCFTxlL%4BOq3x?fXhRHw`*ff+U(=d4P;Y2*M7^IhaqBx!) z;!|rWs9T%4%=BU6O*#yh^SF7{dOWejeNjY7s&EeWGAEbMgrTWQm|AzJ@kOiv^dj5>dln-C}H`HyEr<-k0o`FFm znWt(FWxgXig$9VWyIdsYSyI+MeWKTtP3k#m-s=fj)nN4jc4#~D9LXC~EQbp4bFm%} znyJbnFjW=-uVO-8pjD~*_r0|u8?FtL;jPhtri%F1i)|s&Tf4oT;{D-zmvn1DQXwQ@ zy_OG!)bB{Gb+$#PzdGEju63k{3K7n19d>1&o#5{pwo=Qe49jI6x0uCR%wwD_vnAd_ zEw4k@;WT3U(JgBz8z}1UsDKcTVwT3Caby4=fBQWjTVuOm2gcaZb**Ib=Y)&{{O-<| z_72CmbnF5lOrPiTyWI*Q0_0l=4VVv9LM~oS}>!nfF zSBxEZ+`zc{j#oB_g1_Zzy{zexkax}LSV#U)G)kvv#@4sIJ7%3&ijK%m4HZ1P=2u;6@CFq0lM`f$9oVQ{AdsZp7dr3{9AdRifAwaH{i*DC@G|XPzhoV zvoH4AbCsPGgew!r)bP{*mKWit%E=1{8OpbW+HsqV6ThK6{#rAs;tDm7VTmYHRbB8&+$vF3zXS#qkel@_k z>9KjX2)NIqzsTh}=5!FvUw;(ii5yK7^-ENRabN(}M1%~mV+R~02%u2wFX#iv>}#V- zIRJm@5(qVftbOqjNJSr&=mtnCw#7-D+w*%e8gBb92swm~6Il6C7f+k03>2s13oXz~ zo{PaL*3!T^b$Gf6y;x!=<)SK$KjUpZFo*_G{LI7XiVl{ZE``|(#%nl8?^X-p zl%7t`Kz?Xjl~?4)qbHzaVYR4D6mGp<2e8m=c^h*kh`8{74jEyDBEB{pk9($Pau6Ih zy#HGNksFYnqBo*88-*0=87lJpn3qIsA5Q`wg}u@`+co(CN%ga@ zPtO20aH&bTPBj;80XPxjqE3l?8cpx^M^9DWh3q-X)CmqABmVF-Jw%x%*ZNaVAP2m5 z!XtDFU>Jr)b^$lsMyxSQ-go51-6o<6651V-`(q1F(%LZ(kUv0s9VSO!LMBJFXzpIe zXc%6;j|JQI#BB6NCKRa;uJ3KjdnDEOUYK&13Zrfp830iC3sMp%{P>!`g6tcV$u+sl z>6#p2ltQY@CF$F2v;9t03&S|?gke>qY+*{DX^QpX8YSuRR!*@ughmntN#Y|(7LmkC zl0YiyWy?BM^#4kA3HiWk2zH2bxjH#DrmrGPMZQRm4pvT$m_^AXb(ySioKdXKrnySv zE4ZRpcs&9bSVejLR$FwA<1-W1eKg6F+)yV~VJI)tRqzj&A=l`% zwcku4OVHRji7Y{5Dy7suI5VTsg2o2L>(7K5r8C;&q*>?776nqxO`7#J0cZef_sqCd xlgpG3vpgQ9;w}-Z4louF++;U_;3gH+777KKCTsC|gcXvt%;hETUH6=O{(tV9(w_hT literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2f865bf0a1daa8239d168031628b9375040cac6e GIT binary patch literal 5599 zcmaJ_U5^~cb*<{|>FN2{*_r+1E+wiZiW0}>EFD2nY=cr9Q(8xWw3125lG~QYy;C*I z+3kK>9i?r{RF3%nh^f!X9G2J#RD`3Zr3M85_$ARsUTMzx>5d7hh!T-|1uiaq#gSyvdg+1QR@9Uh$WETz?y$ zfxkvzhL&fAC9f3Po*kCGa_D$YSn(=h)vJazuNKz5I;XK_un;!9hOS$|V%YSWVascU zOWu-hD+SBpinkK3daL@|4%WhTZ#}%^UDDs>U?bf0Hg(+zE{9KfPlZo=PwVeWa3y@k zdnR-}mov$y&&uacxOY|7WJT8H^Rm@9HrNJ}*Q6t#-(Y=ngLyBAB~cd(A9L?T(GZIt zGw=HMm}rXD$4s=24X-WuUDjUy91&nU?Mhy`9Y?7@h@{G`*9W~cciv2;@^=GyT1#W} zyfsMB^Ug3G#E~E5=3SZQrT0cdNR{4?(AegAtLH~?H0b%kU@W_lAIi3w*I&m-HP{`| z$h>w(9*zb|hB8X?)wz#%eU->Jl!{f`$gAJ=#qBr@{Yd1kH=`u=gTSZpGl7jk(b!e; zu-jL0*p*_CYMWP|=nCK)tgGIB=k2%O*mnGiz9KQVWH@c^d zO7^9aQBUT}0@io;WIF4DJVrNl^B_5&_A<$wPAvtb&z(-Tf6scf^JdRFDmA=4yve^9 zjAeXi@39Hb`0MPW=EM;^bAHQyXZ(P1c32;;taW=uu9B-!9v?Q#on$=HC&OTs2WPfiTzVre6bL`ql{pa-$(GnRS zvdmV0m(})B9=?>-vI^?uTMTvfsi7XG&M})Tq?Ktktzo7{#$IQi@{j&@vY6Jh#bf>{ z|8+2FW=-AtlSwOUO&3m>`cv_D+7P7^p3qlA*e8%yP1F}p7)fRe2W9nHwlGE83Fj

vxwS=5}#PB*i~Q;nAq^W_b8%qcDu0s4NGJt;|R z_kDJUeaH^~IcrRxI>B0e^zx65$;xCkZDp(Qy?J0^)oy7kTG@(Nnm(OgNge7t<|mxI z`P4YPC6;NP^h#ElK6ApvidY3YtbJlYpF3I0*7nO;8NM0nSLx+!?c6eq{gq(AkM*6g z+3CCL683Q0%Bw+)W8aOV;3&6}gTXMbj1sAehSJba?3EZxArvGEvowW)&kvkj=-M*4?EWh2O>1GerDcE=MCPefZ+h0=5AI1BbPo6S({ByG*{8mnfN+o>817~~q#X**Np2Rl zYz>cc=T_i{yTX6%A29oW;br4Xr@goI2}oYsnu)*w^FSW8T}61Gx3*P0meE|`@``3I zz2zGuVh8cw9%#6Hx?s68+hcj-j9N9X=4Jx^t@RL1kQf=6*M#i*h`t~Sw*sPT3qC}7 ziI`}ZSHYqxO&$!=d%3NOHWMMw%>Y7npj%W6cBmyPmdPSB8SSd)sb&o#oKIq{-1dib zX3&|cyfjE-eJb;!YRmn%T1`yO$_rEWjIJNcQ@84O5#<})ulb2cnh;?mw+gD zW}jNK^c*^%lu3B&vs(9JxQh^!3T^dyL(VstLcWRE6uW^!mi#LUR&xx8H@IaO{Pf?K zRog&Ivt&^VGagyiCa2x@GDjmZP3Y@j~&Z+Y*_}knfac3(Jnl)TV+yNx&5#xX=X0=i0;1Q*60($2dq<@?6e)TM=E3DO7ga$yQ9K>9o} zLT3W%$;@dbqaF*13_ozx!;DRbC)4qTEe*h zEXHB}Wl@D@Ykx&sfH}#tGuhRHDyaSnlB+V3tEQH(W#totQY)lXd{X{-S*KJ;tdLUZ z(TEG_t-~wGi3PHPVpe$5Zj2AAE*|8%!x7jJ`7Uq~Bon#C339JvTi$SIFmS`|AuC4e zoU}DtYTk&niYL%z>kM43x3{#&&bA^11x_yCkzt(5ojBc&N0HE3b#C78CF4KaiQOOE zz6fM6$kG1FL?XC zaeHpW&n8a{!tDUYxz~R-X^-Ev$7ZeHM#9%ZmQrLG3lQhSkfB7-(DIScGYN zej@X-znc_Ivnlcx*lg>J&9<<%Y6rvBJEUWoE-T~*V7v?C>2i}da1Fw4o26r_Ly{#S zcSn20fJF7?1@by_sC~LaY1XxiAmmnhG{nuZt6RHWwMesWQ9+=nnkd?i`X1Har{dhI z8jPG-rT!Xyxij1D>P-@*T(c-N)~=8ja~8wfe*BM+Nj^luY@nvGW;9U}f&%#%@b-~a zsy?>ND)4v-2Kjy0Fx5>eeu|=9LW(Yf zej#i+U@=k19i^Dz#ha#HXm<32|6?J9vMG-Y*gsg&d}O`KH$cW&51EF zK?V551yt}#W+tx`4o*M>>XpW;a0BdQ)LzfND)_ zBf~Mqm!AyD84h2dREiHRvX05is8BA8UjW!XS8KTcbGrY7K#i%9Vv+YjWGSL?%=h>@ zJ3;$8mb-1zElj#OuVT^9efcZsQ>0YKLj5IbZA0x+gBBte<_=Q1+eIqZ?Sgn&;-HV# zm{xhb@uWMavJ_}i(=Mx@;7?xdcEebV0@>~6^=|iYWXe{J3Bku+xTD1{5ACwsV-C23}9B@r!O1uLmw1h zWl~{LL7`T(2UVF0a#B^OptL5xtikd=&@fh8#pMS&w(ye`_6Z#$Z{vc*!5(m@Ae}_j zNzDQk4bpY#BJd(Nl|@EcAR*yje&wPJFl-A9i8UDYKorS&7Vd36DG6zv*A^N23l{~n z$y?{UxO-0qxX2{M8KBefRRfC=;UMX0ekm?16+r7-`ZA(dS95{hM!B^c$APza=bR|s zq>BNijKzsN!?U@?)o|_HDmKV#l!PRNO9aafzfrIA6~J`Us^e`MRpW}KQ@J8Bqw>G2 Kf5S@7tN#ZJDgzM! literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f4648ae66c856245097a3adaa7c05b978d048c87 GIT binary patch literal 14205 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3932b92b17948c75d7b660bbba8adab6a37392d1 GIT binary patch literal 1073 zcmZuw&2Q5%6t|r;{a7nD0bLZFNNpK&-*GWj~^c`$9qiI-OU)spv;T3YYdfv?iqH`H%X@&UE$lSglv ziD+aZf5-$=k>OJKi5&9SKak4TGFLJ4Dc45vL2j)&X#9p6(7QG+R(mYleE4`r%EPTF zNtm*_mpM=9wm9NSij)Zhx($^Jh#nquGYWOaOCe=iM?(hY)*efu zi}ukqXDVZS?oFL(<-%f7nIy005HLSofRbx2h9JhHNN}BMpE4Z-5{&v>_`U6(5A6qy zh7V_#nOq6&n-N=p32w_!bkSc>dQWbpk}@Sa3x~ZnDcnOYXt6p>t*cSh9@TuBr-vQn*=UMhX@O6>B;lWJ<<>Za9a%@U!wc3m3UUm~A+)a|+9N z1(CXN$C8V-SJdYQCXR~gAc_welyqzP(xe%5QZ$zeD|uImns!mRIFKP|eU2o(x6t$B~CNrIO+iJz`qFodr3JlWBAP^ECRkea$5E8qB?jq1g$j!u_G;LyM z?PSXg=?h)NQ-yd&NbMtk$*(-^UqFI#?fFoPRyfMF6JOic=bU@LUR`Y?XyMO4?HxA} z`qO+|ZZ3S>g;#Mf6b%u@)XDG=+uj*E(7TzNdqWSKIWKGE{?NDMM%K)OVPMC8*2>$% zwjDRKmAo_TV8rm*DqB0p!)r94t!HSsPTO<^`VHzlLfy{vqX(>vXjDdF!Z?#rnF=0e zB1z+LEM%CmB#I}Y5|xZuNK;kHbW|B9)o(wCfYHM)*6SZvX-4n!r>PV?XS{@e8=rGk zMp z$U{%wg_*{gXT0qUI%u5vHL5Z7Z=rJoQFHq4rzxjl#KS&B+cVLI5FlMd6sA1fTYl~J z+aa_UhWW^Z`7)RU)#$rT6WSRtevYMA<6oU89vp|Kt>rOr`G9e%j?!|!>u9I{w#MT> zkTiPwYj;rQ#h^%wUd4+jK4i3aw9i=9dy*WK9~AG8&D;RMEt%v|HW0;}T{RdPwg&l} zcrxR-Urcm+I|GJekrzAHO{_i`A3LaxrmvDQps?htznux7O6|a4v1A%P6qhhsLIOgn z06>80xgl@bdmtnW%Y8spaQ6QzemIt9O}D8Xp>)%n1^Y^qGuq7<*FLB;k4o(oQMs?Z z1Ceros>MLAOzx0zWn>({PcX&wHl+hCCA~X1!`;W+{Fm=1=^$DsdL~SH%cJ7ZqzPqoVv%LvtO=*N2B&@ zhx)X63jW`q_s~~p7k!ILziymhkVG)$pUrZUg$vTcN~JsrZ6*P8y-}nX4JjK(kR{+1 z1G=foAxW(qcOl~>R{%O&zY2RZ+E z4clJ?9`xq<+xH=_=HvCI+yd|Jrfw2KMN9|?9j*if$TgVIHvroHGL!quOGs1y^v$cY z?E9D%wm{Fa2qQ+oIV?yF4G8-R=A2CJ+3>pKt#Hjl+4%@N}%olCPbvMfk zYJ4L80As>F`j`6ZlYhYn^|p(MowU>2IrsG3)6R>@NgqKYpFX~6IS75%!P#a*@Bq4a z3IjzHC#XGs<2HuaO03jw+gPvJiIci**UX*7ODpXPMhqQSS#5;dK6R=00ktP6-b9Vc z58y*<4Xmo`g^cqoN??9&gB6Q6Z>{F}-cpn#jKkV2FSCsCuougnP!zEVQYJ*yWgU=w z+B}%mpf5oehcFB+iuY=wF3}+#EK7WBQEO+p$)n2k#*p{M2qM-YN1!?CCaWjNP2rd=NRb+7%S8pBF*?3tl0#VtnSv1eaLr5 zmM(K}^r(yzO7e`6Cz+5?Rg3MHF=r{uBq>Flb&1?zWMgH6KyYBDq6kPI^0xB_!S^qU>ncc9|r7lPLqT4s5&^3wDF>le{(9JupmbgDcBS$T*9% z=Y)cej?8)gE}0jD3r4CIG~Qr4=VaiM>nGA0a2V4mlM#(%6rQFIu0D?9gwe6`|Fh>s zV?s?m6oPTR-wNkBS6-5LyNoNBvaPbq^%1J`qTD*EIUJw2nlMg;MvAJfyz4M?Pn63H ziOj|90#;b|A8T%{WuIj;oko21KK-D%u%vkWWIaJlTia-sP4KWf V=Cn-MeGHM%6;(lU-O`V5{{dq|IdK30 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..38973724345a7a91a02a062af3f3061e4b230e41 GIT binary patch literal 2475 zcma);TW=dh6o6;;?v0bQN%~NV$`V?&mWU$|ml9PKYLix#qC_+*Ek{{m3p%&eWJ5lF1HvvWH$bLM>K9N(Xv^$|S558r=# zSV!nL)j0W>(D)o)&Y&QO;1sp0FK!voHc~UQT2^MaY^?gt)XChItLs+kWwlmK*X`8L zW?C~@y;aX23E#QshzEz_MQSX&&-^lIN5`JIJCv8geQIeNhxC58DJp!u=klX&A9CZl^pvd>o}|$Or8{D`LvITvtKM7i@-`F#mFOuR z83dQcAza4`b7Yp7FPA1UKSd)mzb^3DI6}hQwe~Ew2K|=qzf|I}O^hSVH%m+m=)*8( zm-r9~=McTn(xnMk;0&+a*2fAa#|o0XIwxF20JR`3y4@u2HiwJ1s)Glh?I5GM;A?@z z{%~p9UkpTlAl8DdBB#SEr+dF1a2l+vJff^!Kur_@?-l#s49}dJ=r>&Ef%4K(J5wgl zcB$CtbZ9J+M|6`uqN#Kzhm!XC#?AY8q(^hY_Y=`$4oEgES&vU#vYeZ?suR8*C6vd~ z67;e71+hgC{e62?Wc}5C(q9?m{V3j}WJQ~J<-6{#_^f}eqsCUlBo~wcD62pTixf0` zwLM5uvRVO=(ry$VH2Vkg+$pOw$_J@91AFl$D3Igfx?y1-&tc#2v4lZ9y2Z6qkfFulT zSFnTT@Pkc#FOz|yGZ9pnJ$aXnf|$`rP!i-t&`DCtoBq~I4C)SB|5Gq47@*aQ@&Fjr zYc&1auu>jnlm}PiUQuv>8AccvjkVy($Y*MUMol`rV6eAzDuZbwFcrU~yC1O}q@)Q8 zNu%J>Qp!tfw@C7aBW=C9^pxTuXe%w%!RA4hDML#$<6VtcRVcg53qW;PVG`4$*2p1Xdx$3{#1mKG(tV15dN%TeF^2d7#26S27lc(hz=%ie=jN#P0Og-pz|fx0 zh8U?|>5U!YD7rw-C9a|gqp#2d^fCGZ-9tYk;_aY^NO5Z0}c+H-p} zQ_eg<#_{|eE%#8%HT>a^HE=B>I#=9NKImG)As{-Dq8t5 zsuN5*0UyLFBzFdBT2U&R!8R<%_7hIu516K$>p<4jD?xCd>!w9JO2b0u2rg$Ut4*8p z5KBao>sX*57%uAbE7+=S739O2;Hpj`5E&Z7^XsogUVF(}aG66!GUI(B-AVqDHf5|} z!?$lo05hqSeRJu{e5+xzi(qZ`jw%9G93$A6VJdzwm0l{SZ9?0FE_0zn);1o;RI3H_ zCwanq?5di0K@GYo*DkQ2L zDeFq15PXq?8QB#z%c+90KKgX7TJ*HTES&U`%IX^MYp@8KHSpy3r{mVaPrys2J+FLQ zc}^W7t3T~i-#;9eeFU str + """Generate metadata using mechanisms described in PEP 517. + + Returns the generated metadata directory. + """ + metadata_tmpdir = TempDirectory( + kind="modern-metadata", globally_managed=True + ) + + metadata_dir = metadata_tmpdir.path + + with build_env: + # Note that Pep517HookCaller implements a fallback for + # prepare_metadata_for_build_wheel, so we don't have to + # consider the possibility that this hook doesn't exist. + runner = runner_with_spinner_message("Preparing wheel metadata") + with backend.subprocess_runner(runner): + distinfo_dir = backend.prepare_metadata_for_build_wheel( + metadata_dir + ) + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/build/metadata_legacy.py b/venv/lib/python3.8/site-packages/pip/_internal/operations/build/metadata_legacy.py new file mode 100644 index 00000000..f46538a0 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/operations/build/metadata_legacy.py @@ -0,0 +1,74 @@ +"""Metadata generation logic for legacy source distributions. +""" + +import logging +import os + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import InstallationError +from pip._internal.utils.setuptools_build import make_setuptools_egg_info_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +def _find_egg_info(directory): + # type: (str) -> str + """Find an .egg-info subdirectory in `directory`. + """ + filenames = [ + f for f in os.listdir(directory) if f.endswith(".egg-info") + ] + + if not filenames: + raise InstallationError( + f"No .egg-info directory found in {directory}" + ) + + if len(filenames) > 1: + raise InstallationError( + "More than one .egg-info directory found in {}".format( + directory + ) + ) + + return os.path.join(directory, filenames[0]) + + +def generate_metadata( + build_env, # type: BuildEnvironment + setup_py_path, # type: str + source_dir, # type: str + isolated, # type: bool + details, # type: str +): + # type: (...) -> str + """Generate metadata using setup.py-based defacto mechanisms. + + Returns the generated metadata directory. + """ + logger.debug( + 'Running setup.py (path:%s) egg_info for package %s', + setup_py_path, details, + ) + + egg_info_dir = TempDirectory( + kind="pip-egg-info", globally_managed=True + ).path + + args = make_setuptools_egg_info_args( + setup_py_path, + egg_info_dir=egg_info_dir, + no_user_config=isolated, + ) + + with build_env: + call_subprocess( + args, + cwd=source_dir, + command_desc='python setup.py egg_info', + ) + + # Return the .egg-info directory. + return _find_egg_info(egg_info_dir) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/build/wheel.py b/venv/lib/python3.8/site-packages/pip/_internal/operations/build/wheel.py new file mode 100644 index 00000000..903bd7a0 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/operations/build/wheel.py @@ -0,0 +1,38 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pep517.wrappers import Pep517HookCaller + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_pep517( + name, # type: str + backend, # type: Pep517HookCaller + metadata_directory, # type: str + tempd, # type: str +): + # type: (...) -> Optional[str] + """Build one InstallRequirement using the PEP 517 build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + assert metadata_directory is not None + try: + logger.debug('Destination directory: %s', tempd) + + runner = runner_with_spinner_message( + f'Building wheel for {name} (PEP 517)' + ) + with backend.subprocess_runner(runner): + wheel_name = backend.build_wheel( + tempd, + metadata_directory=metadata_directory, + ) + except Exception: + logger.error('Failed building wheel for %s', name) + return None + return os.path.join(tempd, wheel_name) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/build/wheel_legacy.py b/venv/lib/python3.8/site-packages/pip/_internal/operations/build/wheel_legacy.py new file mode 100644 index 00000000..755c3bc8 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/operations/build/wheel_legacy.py @@ -0,0 +1,110 @@ +import logging +import os.path +from typing import List, Optional + +from pip._internal.cli.spinners import open_spinner +from pip._internal.utils.setuptools_build import make_setuptools_bdist_wheel_args +from pip._internal.utils.subprocess import ( + LOG_DIVIDER, + call_subprocess, + format_command_args, +) + +logger = logging.getLogger(__name__) + + +def format_command_result( + command_args, # type: List[str] + command_output, # type: str +): + # type: (...) -> str + """Format command information for logging.""" + command_desc = format_command_args(command_args) + text = f'Command arguments: {command_desc}\n' + + if not command_output: + text += 'Command output: None' + elif logger.getEffectiveLevel() > logging.DEBUG: + text += 'Command output: [use --verbose to show]' + else: + if not command_output.endswith('\n'): + command_output += '\n' + text += f'Command output:\n{command_output}{LOG_DIVIDER}' + + return text + + +def get_legacy_build_wheel_path( + names, # type: List[str] + temp_dir, # type: str + name, # type: str + command_args, # type: List[str] + command_output, # type: str +): + # type: (...) -> Optional[str] + """Return the path to the wheel in the temporary build directory.""" + # Sort for determinism. + names = sorted(names) + if not names: + msg = ( + 'Legacy build of wheel for {!r} created no files.\n' + ).format(name) + msg += format_command_result(command_args, command_output) + logger.warning(msg) + return None + + if len(names) > 1: + msg = ( + 'Legacy build of wheel for {!r} created more than one file.\n' + 'Filenames (choosing first): {}\n' + ).format(name, names) + msg += format_command_result(command_args, command_output) + logger.warning(msg) + + return os.path.join(temp_dir, names[0]) + + +def build_wheel_legacy( + name, # type: str + setup_py_path, # type: str + source_dir, # type: str + global_options, # type: List[str] + build_options, # type: List[str] + tempd, # type: str +): + # type: (...) -> Optional[str] + """Build one unpacked package using the "legacy" build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + wheel_args = make_setuptools_bdist_wheel_args( + setup_py_path, + global_options=global_options, + build_options=build_options, + destination_dir=tempd, + ) + + spin_message = f'Building wheel for {name} (setup.py)' + with open_spinner(spin_message) as spinner: + logger.debug('Destination directory: %s', tempd) + + try: + output = call_subprocess( + wheel_args, + cwd=source_dir, + spinner=spinner, + ) + except Exception: + spinner.finish("error") + logger.error('Failed building wheel for %s', name) + return None + + names = os.listdir(tempd) + wheel_path = get_legacy_build_wheel_path( + names=names, + temp_dir=tempd, + name=name, + command_args=wheel_args, + command_output=output, + ) + return wheel_path diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/check.py b/venv/lib/python3.8/site-packages/pip/_internal/operations/check.py new file mode 100644 index 00000000..5699c0b9 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/operations/check.py @@ -0,0 +1,153 @@ +"""Validation of dependencies of packages +""" + +import logging +from collections import namedtuple +from typing import TYPE_CHECKING, Any, Callable, Dict, List, Optional, Set, Tuple + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.pkg_resources import RequirementParseError + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.misc import get_installed_distributions + +if TYPE_CHECKING: + from pip._vendor.packaging.utils import NormalizedName + +logger = logging.getLogger(__name__) + +# Shorthands +PackageSet = Dict['NormalizedName', 'PackageDetails'] +Missing = Tuple[str, Any] +Conflicting = Tuple[str, str, Any] + +MissingDict = Dict['NormalizedName', List[Missing]] +ConflictingDict = Dict['NormalizedName', List[Conflicting]] +CheckResult = Tuple[MissingDict, ConflictingDict] +ConflictDetails = Tuple[PackageSet, CheckResult] + +PackageDetails = namedtuple('PackageDetails', ['version', 'requires']) + + +def create_package_set_from_installed(**kwargs: Any) -> Tuple["PackageSet", bool]: + """Converts a list of distributions into a PackageSet. + """ + # Default to using all packages installed on the system + if kwargs == {}: + kwargs = {"local_only": False, "skip": ()} + + package_set = {} + problems = False + for dist in get_installed_distributions(**kwargs): + name = canonicalize_name(dist.project_name) + try: + package_set[name] = PackageDetails(dist.version, dist.requires()) + except (OSError, RequirementParseError) as e: + # Don't crash on unreadable or broken metadata + logger.warning("Error parsing requirements for %s: %s", name, e) + problems = True + return package_set, problems + + +def check_package_set(package_set, should_ignore=None): + # type: (PackageSet, Optional[Callable[[str], bool]]) -> CheckResult + """Check if a package set is consistent + + If should_ignore is passed, it should be a callable that takes a + package name and returns a boolean. + """ + + missing = {} + conflicting = {} + + for package_name, package_detail in package_set.items(): + # Info about dependencies of package_name + missing_deps = set() # type: Set[Missing] + conflicting_deps = set() # type: Set[Conflicting] + + if should_ignore and should_ignore(package_name): + continue + + for req in package_detail.requires: + name = canonicalize_name(req.project_name) + + # Check if it's missing + if name not in package_set: + missed = True + if req.marker is not None: + missed = req.marker.evaluate() + if missed: + missing_deps.add((name, req)) + continue + + # Check if there's a conflict + version = package_set[name].version # type: str + if not req.specifier.contains(version, prereleases=True): + conflicting_deps.add((name, version, req)) + + if missing_deps: + missing[package_name] = sorted(missing_deps, key=str) + if conflicting_deps: + conflicting[package_name] = sorted(conflicting_deps, key=str) + + return missing, conflicting + + +def check_install_conflicts(to_install): + # type: (List[InstallRequirement]) -> ConflictDetails + """For checking if the dependency graph would be consistent after \ + installing given requirements + """ + # Start from the current state + package_set, _ = create_package_set_from_installed() + # Install packages + would_be_installed = _simulate_installation_of(to_install, package_set) + + # Only warn about directly-dependent packages; create a whitelist of them + whitelist = _create_whitelist(would_be_installed, package_set) + + return ( + package_set, + check_package_set( + package_set, should_ignore=lambda name: name not in whitelist + ) + ) + + +def _simulate_installation_of(to_install, package_set): + # type: (List[InstallRequirement], PackageSet) -> Set[NormalizedName] + """Computes the version of packages after installing to_install. + """ + + # Keep track of packages that were installed + installed = set() + + # Modify it as installing requirement_set would (assuming no errors) + for inst_req in to_install: + abstract_dist = make_distribution_for_install_requirement(inst_req) + dist = abstract_dist.get_pkg_resources_distribution() + + assert dist is not None + name = canonicalize_name(dist.key) + package_set[name] = PackageDetails(dist.version, dist.requires()) + + installed.add(name) + + return installed + + +def _create_whitelist(would_be_installed, package_set): + # type: (Set[NormalizedName], PackageSet) -> Set[NormalizedName] + packages_affected = set(would_be_installed) + + for package_name in package_set: + if package_name in packages_affected: + continue + + for req in package_set[package_name].requires: + if canonicalize_name(req.name) in packages_affected: + packages_affected.add(package_name) + break + + return packages_affected diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/freeze.py b/venv/lib/python3.8/site-packages/pip/_internal/operations/freeze.py new file mode 100644 index 00000000..f34a9d4b --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/operations/freeze.py @@ -0,0 +1,264 @@ +import collections +import logging +import os +from typing import ( + Container, + Dict, + Iterable, + Iterator, + List, + Optional, + Set, + Tuple, + Union, +) + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.pkg_resources import Distribution, Requirement, RequirementParseError + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_file import COMMENT_RE +from pip._internal.utils.direct_url_helpers import ( + direct_url_as_pep440_direct_reference, + dist_get_direct_url, +) +from pip._internal.utils.misc import dist_is_editable, get_installed_distributions + +logger = logging.getLogger(__name__) + +RequirementInfo = Tuple[Optional[Union[str, Requirement]], bool, List[str]] + + +def freeze( + requirement=None, # type: Optional[List[str]] + find_links=None, # type: Optional[List[str]] + local_only=False, # type: bool + user_only=False, # type: bool + paths=None, # type: Optional[List[str]] + isolated=False, # type: bool + exclude_editable=False, # type: bool + skip=() # type: Container[str] +): + # type: (...) -> Iterator[str] + find_links = find_links or [] + + for link in find_links: + yield f'-f {link}' + installations = {} # type: Dict[str, FrozenRequirement] + + for dist in get_installed_distributions( + local_only=local_only, + skip=(), + user_only=user_only, + paths=paths + ): + try: + req = FrozenRequirement.from_dist(dist) + except RequirementParseError as exc: + # We include dist rather than dist.project_name because the + # dist string includes more information, like the version and + # location. We also include the exception message to aid + # troubleshooting. + logger.warning( + 'Could not generate requirement for distribution %r: %s', + dist, exc + ) + continue + if exclude_editable and req.editable: + continue + installations[req.canonical_name] = req + + if requirement: + # the options that don't get turned into an InstallRequirement + # should only be emitted once, even if the same option is in multiple + # requirements files, so we need to keep track of what has been emitted + # so that we don't emit it again if it's seen again + emitted_options = set() # type: Set[str] + # keep track of which files a requirement is in so that we can + # give an accurate warning if a requirement appears multiple times. + req_files = collections.defaultdict(list) # type: Dict[str, List[str]] + for req_file_path in requirement: + with open(req_file_path) as req_file: + for line in req_file: + if (not line.strip() or + line.strip().startswith('#') or + line.startswith(( + '-r', '--requirement', + '-f', '--find-links', + '-i', '--index-url', + '--pre', + '--trusted-host', + '--process-dependency-links', + '--extra-index-url', + '--use-feature'))): + line = line.rstrip() + if line not in emitted_options: + emitted_options.add(line) + yield line + continue + + if line.startswith('-e') or line.startswith('--editable'): + if line.startswith('-e'): + line = line[2:].strip() + else: + line = line[len('--editable'):].strip().lstrip('=') + line_req = install_req_from_editable( + line, + isolated=isolated, + ) + else: + line_req = install_req_from_line( + COMMENT_RE.sub('', line).strip(), + isolated=isolated, + ) + + if not line_req.name: + logger.info( + "Skipping line in requirement file [%s] because " + "it's not clear what it would install: %s", + req_file_path, line.strip(), + ) + logger.info( + " (add #egg=PackageName to the URL to avoid" + " this warning)" + ) + else: + line_req_canonical_name = canonicalize_name( + line_req.name) + if line_req_canonical_name not in installations: + # either it's not installed, or it is installed + # but has been processed already + if not req_files[line_req.name]: + logger.warning( + "Requirement file [%s] contains %s, but " + "package %r is not installed", + req_file_path, + COMMENT_RE.sub('', line).strip(), + line_req.name + ) + else: + req_files[line_req.name].append(req_file_path) + else: + yield str(installations[ + line_req_canonical_name]).rstrip() + del installations[line_req_canonical_name] + req_files[line_req.name].append(req_file_path) + + # Warn about requirements that were included multiple times (in a + # single requirements file or in different requirements files). + for name, files in req_files.items(): + if len(files) > 1: + logger.warning("Requirement %s included multiple times [%s]", + name, ', '.join(sorted(set(files)))) + + yield( + '## The following requirements were added by ' + 'pip freeze:' + ) + for installation in sorted( + installations.values(), key=lambda x: x.name.lower()): + if installation.canonical_name not in skip: + yield str(installation).rstrip() + + +def get_requirement_info(dist): + # type: (Distribution) -> RequirementInfo + """ + Compute and return values (req, editable, comments) for use in + FrozenRequirement.from_dist(). + """ + if not dist_is_editable(dist): + return (None, False, []) + + location = os.path.normcase(os.path.abspath(dist.location)) + + from pip._internal.vcs import RemoteNotFoundError, vcs + vcs_backend = vcs.get_backend_for_dir(location) + + if vcs_backend is None: + req = dist.as_requirement() + logger.debug( + 'No VCS found for editable requirement "%s" in: %r', req, + location, + ) + comments = [ + f'# Editable install with no version control ({req})' + ] + return (location, True, comments) + + try: + req = vcs_backend.get_src_requirement(location, dist.project_name) + except RemoteNotFoundError: + req = dist.as_requirement() + comments = [ + '# Editable {} install with no remote ({})'.format( + type(vcs_backend).__name__, req, + ) + ] + return (location, True, comments) + + except BadCommand: + logger.warning( + 'cannot determine version of editable source in %s ' + '(%s command not found in path)', + location, + vcs_backend.name, + ) + return (None, True, []) + + except InstallationError as exc: + logger.warning( + "Error when trying to get requirement for VCS system %s, " + "falling back to uneditable format", exc + ) + else: + return (req, True, []) + + logger.warning( + 'Could not determine repository location of %s', location + ) + comments = ['## !! Could not determine repository location'] + + return (None, False, comments) + + +class FrozenRequirement: + def __init__(self, name, req, editable, comments=()): + # type: (str, Union[str, Requirement], bool, Iterable[str]) -> None + self.name = name + self.canonical_name = canonicalize_name(name) + self.req = req + self.editable = editable + self.comments = comments + + @classmethod + def from_dist(cls, dist): + # type: (Distribution) -> FrozenRequirement + # TODO `get_requirement_info` is taking care of editable requirements. + # TODO This should be refactored when we will add detection of + # editable that provide .dist-info metadata. + req, editable, comments = get_requirement_info(dist) + if req is None and not editable: + # if PEP 610 metadata is present, attempt to use it + direct_url = dist_get_direct_url(dist) + if direct_url: + req = direct_url_as_pep440_direct_reference( + direct_url, dist.project_name + ) + comments = [] + if req is None: + # name==version requirement + req = dist.as_requirement() + + return cls(dist.project_name, req, editable, comments=comments) + + def __str__(self): + # type: () -> str + req = self.req + if self.editable: + req = f'-e {req}' + return '\n'.join(list(self.comments) + [str(req)]) + '\n' diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/install/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/operations/install/__init__.py new file mode 100644 index 00000000..24d6a5dd --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/operations/install/__init__.py @@ -0,0 +1,2 @@ +"""For modules related to installing packages. +""" diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d3b749129cef60524d62fee2773472ba8f570e06 GIT binary patch literal 224 zcmYjLF$w}P5X{+l2>v0h;9UwE1raMdZN$bV2D6^gn8aic(O!IuU%J*O*jbrV3kPPF zVV2!lwA(EbL2uVpFV078{*gp8jtprONtQ$=bJA&Cx)bZ^!OBuYpdPe9kQ6OdCZNz- znSwg8-irc4-kNois>!*uYtHY)H{z*}yrv8fjydJB($wo9v(pwpXUAfP1J~cw8RNG0cVRJVRck~g9fKUM$$ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ca35efedecdf7e5ff72aa0bf17fed6294fe61f89 GIT binary patch literal 1227 zcmZuw&2HQ_5T<@stChX>)+mrTDO#au4hzJ)rvfcdG(mzK0=Nm9q-dcYXsyWAGNwqG zr0lMtoRT1?z^{-T`%1j_)JI4TMTgq;Pk>P1ry0(0IQ(Y#+i;j580nkW2d0P6KTf$i z0#NS4)N=rWGDJM$b1(DYA8@}4vY-mHugS@dWe*l?d|W8=rQ+n943Kcz zI{iLO{S3gMcfeZPd+&S5_-)jBEo%F%-v(_+{I~rVi3wh!vu{1r#%DX=6She^Ai-Pk z{~djgenn5vA6Fz20$07$KOe5RN%OSMi^IHhY+W)}NdhGOBDF~&>&D$vgG9ku>pinj zvMCoy3d6|s@~V?=>GYc?jSx(fE6Wv<)45dXEj^CxR>|co=U8?eYrDO!)y2Y=khsxQ z;X;ZzD{WLOI%j{`a3L#dhhSQnH8ZX(L2*JJje9nN8kAJokO?@e4+N^nK@2e7P>xzP zaIooM=wJ)Lh9Y-iyQ|=OiR;`fY|ONT?xDmEX0Ga(ietOm2*(&DSj$Eg6ceUsVWe8x z&{g2}2b$*;Lk4b)BlGYc8he zjf{EM*g&Kmo%3{VbJ^<@0F5?%-}~hI5GAn}t=9fiH^67SWBV8rSzv7Yjw+~f_0DBGcn_T2KxnMxSi%0h6r`E BXngxmNwCSp-QkcR^p#v<`L2(nniD;seb1hb>*CN6(Rmg42%vT4_& zZoD#FG3|wDHC`L8nRX-U#p}a$N;sWu@Xa|LZvC3DCTl$=ti`u4O2a#>%{q_C@HJ-b zk^bWO&+hZFADp>iB9$LSz6#UC%|se-Dc^F#0Ux-JBv+Gcklipn8r1&_`jZEJsuzL- zKN)jRq^atcw0%F6N;@B9D94Yqv&WAoJPA0kc78btBX%$OG!$tP^F+be;%{#4dryc| zz+h!BIN&iZsfP&zMlVXo*yD+u2=1{Exwc~ehGZ@)^N!8PXtP#Bgae#|{j*F7&z*(Abt!}E?OepJke zRgh&)e2c8$7^;txW;=(Pet?75&o(r$UxHWu3rv?+56QHpOmID+m;au&&;O#V!_v&o z+lSzUxi#&ma_;0bCwb=!lG}MJFXiRDmRFelWMR6fDy*E>|4RO5UC`;0s$P)G*D1*t zE|-8V<%@ZPRi0Rs{EqyTd`KRWPj0o$PEOvLQ~3{7o7Gtr+J^U<`|pG~d$1zu*+eZI z)x|$4!Jle;Mt@Hd>l31ydFO&&E=`y7&Yx z$hbRQ%~xk#*mKj!TFD_Ld`ZP9H~quapTkVPFbAqt#Op@`;nKLEFyLLIkj5EEJKuf?StCrw?#oHf9i_tUTe=j) z49E#P?>#iixOfWp4e2JS0;WmA-v3SxKu9kmtbYjP3#c4Nj_fLONM}|KrjorJvVkfA zgvkZuWy}qt4XhAzRw}if`RYKIL+S5JfzjHhq7R>^RJ;bCBGNF(bOTI~@r0Rt{0A73 z6(GdwQX2yN%8r9~qBQU$`R?F0_jzr=$KxH$LFbSEG<8|Xj7s3AFz^+3)q$_v5dKBV z=FIgI_ht?7gI6$@4%`ot=Tl_4;bkeBprCjY3ED*4hiRCI1?)GF)NruEPoXeLU4cq6=0cYl z-=Bcv@0|wRpvf08M}&U6)xDswhmj)KyT<0L=m0N~|cl0(gjhC8{XCER_f| z^blgMBzdMQeuj?FRly_UK3jrX0`C{Pd?Emb{cV9MPi!GEetaEUE|Tvfc>{>9NK*`T z(*V-T&O9T{31te^nltSPer(dRuI*!i^?35BUcW99o=hhqFg3IAj&37A<1&B~W0e-) z!)+V|tz4x0%-zJZ@r4?25uO=x;EzOzKKkMHxltICO9qVDiGxs+T&I{{ty#X$1fP literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9ceb6d5b99f2563bfc435d2275f15f9813337c6b GIT binary patch literal 20581 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 MFCkEQv|aLl0S> None + """Install a package in editable mode. Most arguments are pass-through + to setuptools. + """ + logger.info('Running setup.py develop for %s', name) + + args = make_setuptools_develop_args( + setup_py_path, + global_options=global_options, + install_options=install_options, + no_user_config=isolated, + prefix=prefix, + home=home, + use_user_site=use_user_site, + ) + + with indent_log(): + with build_env: + call_subprocess( + args, + cwd=unpacked_source_directory, + ) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/install/legacy.py b/venv/lib/python3.8/site-packages/pip/_internal/operations/install/legacy.py new file mode 100644 index 00000000..41d0c1f9 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/operations/install/legacy.py @@ -0,0 +1,125 @@ +"""Legacy installation process, i.e. `setup.py install`. +""" + +import logging +import os +import sys +from distutils.util import change_root +from typing import List, Optional, Sequence + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import InstallationError +from pip._internal.models.scheme import Scheme +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ensure_dir +from pip._internal.utils.setuptools_build import make_setuptools_install_args +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +class LegacyInstallFailure(Exception): + def __init__(self): + # type: () -> None + self.parent = sys.exc_info() + + +def install( + install_options, # type: List[str] + global_options, # type: Sequence[str] + root, # type: Optional[str] + home, # type: Optional[str] + prefix, # type: Optional[str] + use_user_site, # type: bool + pycompile, # type: bool + scheme, # type: Scheme + setup_py_path, # type: str + isolated, # type: bool + req_name, # type: str + build_env, # type: BuildEnvironment + unpacked_source_directory, # type: str + req_description, # type: str +): + # type: (...) -> bool + + header_dir = scheme.headers + + with TempDirectory(kind="record") as temp_dir: + try: + record_filename = os.path.join(temp_dir.path, 'install-record.txt') + install_args = make_setuptools_install_args( + setup_py_path, + global_options=global_options, + install_options=install_options, + record_filename=record_filename, + root=root, + prefix=prefix, + header_dir=header_dir, + home=home, + use_user_site=use_user_site, + no_user_config=isolated, + pycompile=pycompile, + ) + + runner = runner_with_spinner_message( + f"Running setup.py install for {req_name}" + ) + with indent_log(), build_env: + runner( + cmd=install_args, + cwd=unpacked_source_directory, + ) + + if not os.path.exists(record_filename): + logger.debug('Record file %s not found', record_filename) + # Signal to the caller that we didn't install the new package + return False + + except Exception: + # Signal to the caller that we didn't install the new package + raise LegacyInstallFailure + + # At this point, we have successfully installed the requirement. + + # We intentionally do not use any encoding to read the file because + # setuptools writes the file using distutils.file_util.write_file, + # which does not specify an encoding. + with open(record_filename) as f: + record_lines = f.read().splitlines() + + def prepend_root(path): + # type: (str) -> str + if root is None or not os.path.isabs(path): + return path + else: + return change_root(root, path) + + for line in record_lines: + directory = os.path.dirname(line) + if directory.endswith('.egg-info'): + egg_info_dir = prepend_root(directory) + break + else: + message = ( + "{} did not indicate that it installed an " + ".egg-info directory. Only setup.py projects " + "generating .egg-info directories are supported." + ).format(req_description) + raise InstallationError(message) + + new_lines = [] + for line in record_lines: + filename = line.strip() + if os.path.isdir(filename): + filename += os.path.sep + new_lines.append( + os.path.relpath(prepend_root(filename), egg_info_dir) + ) + new_lines.sort() + ensure_dir(egg_info_dir) + inst_files_path = os.path.join(egg_info_dir, 'installed-files.txt') + with open(inst_files_path, 'w') as f: + f.write('\n'.join(new_lines) + '\n') + + return True diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/install/wheel.py b/venv/lib/python3.8/site-packages/pip/_internal/operations/install/wheel.py new file mode 100644 index 00000000..10e5b15f --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/operations/install/wheel.py @@ -0,0 +1,819 @@ +"""Support for installing and building the "wheel" binary package format. +""" + +import collections +import compileall +import contextlib +import csv +import importlib +import logging +import os.path +import re +import shutil +import sys +import warnings +from base64 import urlsafe_b64encode +from email.message import Message +from itertools import chain, filterfalse, starmap +from typing import ( + IO, + TYPE_CHECKING, + Any, + BinaryIO, + Callable, + Dict, + Iterable, + Iterator, + List, + NewType, + Optional, + Sequence, + Set, + Tuple, + Union, + cast, +) +from zipfile import ZipFile, ZipInfo + +from pip._vendor import pkg_resources +from pip._vendor.distlib.scripts import ScriptMaker +from pip._vendor.distlib.util import get_export_entry +from pip._vendor.pkg_resources import Distribution +from pip._vendor.six import ensure_str, ensure_text, reraise + +from pip._internal.exceptions import InstallationError +from pip._internal.locations import get_major_minor_version +from pip._internal.models.direct_url import DIRECT_URL_METADATA_NAME, DirectUrl +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import captured_stdout, ensure_dir, hash_file, partition +from pip._internal.utils.unpacking import ( + current_umask, + is_within_directory, + set_extracted_file_to_default_mode_plus_executable, + zip_item_is_executable, +) +from pip._internal.utils.wheel import parse_wheel, pkg_resources_distribution_for_wheel + +if TYPE_CHECKING: + from typing import Protocol + + class File(Protocol): + src_record_path = None # type: RecordPath + dest_path = None # type: str + changed = None # type: bool + + def save(self): + # type: () -> None + pass + + +logger = logging.getLogger(__name__) + +RecordPath = NewType('RecordPath', str) +InstalledCSVRow = Tuple[RecordPath, str, Union[int, str]] + + +def rehash(path, blocksize=1 << 20): + # type: (str, int) -> Tuple[str, str] + """Return (encoded_digest, length) for path using hashlib.sha256()""" + h, length = hash_file(path, blocksize) + digest = 'sha256=' + urlsafe_b64encode( + h.digest() + ).decode('latin1').rstrip('=') + return (digest, str(length)) + + +def csv_io_kwargs(mode): + # type: (str) -> Dict[str, Any] + """Return keyword arguments to properly open a CSV file + in the given mode. + """ + return {'mode': mode, 'newline': '', 'encoding': 'utf-8'} + + +def fix_script(path): + # type: (str) -> bool + """Replace #!python with #!/path/to/python + Return True if file was changed. + """ + # XXX RECORD hashes will need to be updated + assert os.path.isfile(path) + + with open(path, 'rb') as script: + firstline = script.readline() + if not firstline.startswith(b'#!python'): + return False + exename = sys.executable.encode(sys.getfilesystemencoding()) + firstline = b'#!' + exename + os.linesep.encode("ascii") + rest = script.read() + with open(path, 'wb') as script: + script.write(firstline) + script.write(rest) + return True + + +def wheel_root_is_purelib(metadata): + # type: (Message) -> bool + return metadata.get("Root-Is-Purelib", "").lower() == "true" + + +def get_entrypoints(distribution): + # type: (Distribution) -> Tuple[Dict[str, str], Dict[str, str]] + # get the entry points and then the script names + try: + console = distribution.get_entry_map('console_scripts') + gui = distribution.get_entry_map('gui_scripts') + except KeyError: + # Our dict-based Distribution raises KeyError if entry_points.txt + # doesn't exist. + return {}, {} + + def _split_ep(s): + # type: (pkg_resources.EntryPoint) -> Tuple[str, str] + """get the string representation of EntryPoint, + remove space and split on '=' + """ + split_parts = str(s).replace(" ", "").split("=") + return split_parts[0], split_parts[1] + + # convert the EntryPoint objects into strings with module:function + console = dict(_split_ep(v) for v in console.values()) + gui = dict(_split_ep(v) for v in gui.values()) + return console, gui + + +def message_about_scripts_not_on_PATH(scripts): + # type: (Sequence[str]) -> Optional[str] + """Determine if any scripts are not on PATH and format a warning. + Returns a warning message if one or more scripts are not on PATH, + otherwise None. + """ + if not scripts: + return None + + # Group scripts by the path they were installed in + grouped_by_dir = collections.defaultdict(set) # type: Dict[str, Set[str]] + for destfile in scripts: + parent_dir = os.path.dirname(destfile) + script_name = os.path.basename(destfile) + grouped_by_dir[parent_dir].add(script_name) + + # We don't want to warn for directories that are on PATH. + not_warn_dirs = [ + os.path.normcase(i).rstrip(os.sep) for i in + os.environ.get("PATH", "").split(os.pathsep) + ] + # If an executable sits with sys.executable, we don't warn for it. + # This covers the case of venv invocations without activating the venv. + not_warn_dirs.append(os.path.normcase(os.path.dirname(sys.executable))) + warn_for = { + parent_dir: scripts for parent_dir, scripts in grouped_by_dir.items() + if os.path.normcase(parent_dir) not in not_warn_dirs + } # type: Dict[str, Set[str]] + if not warn_for: + return None + + # Format a message + msg_lines = [] + for parent_dir, dir_scripts in warn_for.items(): + sorted_scripts = sorted(dir_scripts) # type: List[str] + if len(sorted_scripts) == 1: + start_text = "script {} is".format(sorted_scripts[0]) + else: + start_text = "scripts {} are".format( + ", ".join(sorted_scripts[:-1]) + " and " + sorted_scripts[-1] + ) + + msg_lines.append( + "The {} installed in '{}' which is not on PATH." + .format(start_text, parent_dir) + ) + + last_line_fmt = ( + "Consider adding {} to PATH or, if you prefer " + "to suppress this warning, use --no-warn-script-location." + ) + if len(msg_lines) == 1: + msg_lines.append(last_line_fmt.format("this directory")) + else: + msg_lines.append(last_line_fmt.format("these directories")) + + # Add a note if any directory starts with ~ + warn_for_tilde = any( + i[0] == "~" for i in os.environ.get("PATH", "").split(os.pathsep) if i + ) + if warn_for_tilde: + tilde_warning_msg = ( + "NOTE: The current PATH contains path(s) starting with `~`, " + "which may not be expanded by all applications." + ) + msg_lines.append(tilde_warning_msg) + + # Returns the formatted multiline message + return "\n".join(msg_lines) + + +def _normalized_outrows(outrows): + # type: (Iterable[InstalledCSVRow]) -> List[Tuple[str, str, str]] + """Normalize the given rows of a RECORD file. + + Items in each row are converted into str. Rows are then sorted to make + the value more predictable for tests. + + Each row is a 3-tuple (path, hash, size) and corresponds to a record of + a RECORD file (see PEP 376 and PEP 427 for details). For the rows + passed to this function, the size can be an integer as an int or string, + or the empty string. + """ + # Normally, there should only be one row per path, in which case the + # second and third elements don't come into play when sorting. + # However, in cases in the wild where a path might happen to occur twice, + # we don't want the sort operation to trigger an error (but still want + # determinism). Since the third element can be an int or string, we + # coerce each element to a string to avoid a TypeError in this case. + # For additional background, see-- + # https://github.com/pypa/pip/issues/5868 + return sorted( + (ensure_str(record_path, encoding='utf-8'), hash_, str(size)) + for record_path, hash_, size in outrows + ) + + +def _record_to_fs_path(record_path): + # type: (RecordPath) -> str + return record_path + + +def _fs_to_record_path(path, relative_to=None): + # type: (str, Optional[str]) -> RecordPath + if relative_to is not None: + # On Windows, do not handle relative paths if they belong to different + # logical disks + if os.path.splitdrive(path)[0].lower() == \ + os.path.splitdrive(relative_to)[0].lower(): + path = os.path.relpath(path, relative_to) + path = path.replace(os.path.sep, '/') + return cast('RecordPath', path) + + +def _parse_record_path(record_column): + # type: (str) -> RecordPath + p = ensure_text(record_column, encoding='utf-8') + return cast('RecordPath', p) + + +def get_csv_rows_for_installed( + old_csv_rows, # type: List[List[str]] + installed, # type: Dict[RecordPath, RecordPath] + changed, # type: Set[RecordPath] + generated, # type: List[str] + lib_dir, # type: str +): + # type: (...) -> List[InstalledCSVRow] + """ + :param installed: A map from archive RECORD path to installation RECORD + path. + """ + installed_rows = [] # type: List[InstalledCSVRow] + for row in old_csv_rows: + if len(row) > 3: + logger.warning('RECORD line has more than three elements: %s', row) + old_record_path = _parse_record_path(row[0]) + new_record_path = installed.pop(old_record_path, old_record_path) + if new_record_path in changed: + digest, length = rehash(_record_to_fs_path(new_record_path)) + else: + digest = row[1] if len(row) > 1 else '' + length = row[2] if len(row) > 2 else '' + installed_rows.append((new_record_path, digest, length)) + for f in generated: + path = _fs_to_record_path(f, lib_dir) + digest, length = rehash(f) + installed_rows.append((path, digest, length)) + for installed_record_path in installed.values(): + installed_rows.append((installed_record_path, '', '')) + return installed_rows + + +def get_console_script_specs(console): + # type: (Dict[str, str]) -> List[str] + """ + Given the mapping from entrypoint name to callable, return the relevant + console script specs. + """ + # Don't mutate caller's version + console = console.copy() + + scripts_to_generate = [] + + # Special case pip and setuptools to generate versioned wrappers + # + # The issue is that some projects (specifically, pip and setuptools) use + # code in setup.py to create "versioned" entry points - pip2.7 on Python + # 2.7, pip3.3 on Python 3.3, etc. But these entry points are baked into + # the wheel metadata at build time, and so if the wheel is installed with + # a *different* version of Python the entry points will be wrong. The + # correct fix for this is to enhance the metadata to be able to describe + # such versioned entry points, but that won't happen till Metadata 2.0 is + # available. + # In the meantime, projects using versioned entry points will either have + # incorrect versioned entry points, or they will not be able to distribute + # "universal" wheels (i.e., they will need a wheel per Python version). + # + # Because setuptools and pip are bundled with _ensurepip and virtualenv, + # we need to use universal wheels. So, as a stopgap until Metadata 2.0, we + # override the versioned entry points in the wheel and generate the + # correct ones. This code is purely a short-term measure until Metadata 2.0 + # is available. + # + # To add the level of hack in this section of code, in order to support + # ensurepip this code will look for an ``ENSUREPIP_OPTIONS`` environment + # variable which will control which version scripts get installed. + # + # ENSUREPIP_OPTIONS=altinstall + # - Only pipX.Y and easy_install-X.Y will be generated and installed + # ENSUREPIP_OPTIONS=install + # - pipX.Y, pipX, easy_install-X.Y will be generated and installed. Note + # that this option is technically if ENSUREPIP_OPTIONS is set and is + # not altinstall + # DEFAULT + # - The default behavior is to install pip, pipX, pipX.Y, easy_install + # and easy_install-X.Y. + pip_script = console.pop('pip', None) + if pip_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append('pip = ' + pip_script) + + if os.environ.get("ENSUREPIP_OPTIONS", "") != "altinstall": + scripts_to_generate.append( + 'pip{} = {}'.format(sys.version_info[0], pip_script) + ) + + scripts_to_generate.append( + f'pip{get_major_minor_version()} = {pip_script}' + ) + # Delete any other versioned pip entry points + pip_ep = [k for k in console if re.match(r'pip(\d(\.\d)?)?$', k)] + for k in pip_ep: + del console[k] + easy_install_script = console.pop('easy_install', None) + if easy_install_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append( + 'easy_install = ' + easy_install_script + ) + + scripts_to_generate.append( + 'easy_install-{} = {}'.format( + get_major_minor_version(), easy_install_script + ) + ) + # Delete any other versioned easy_install entry points + easy_install_ep = [ + k for k in console if re.match(r'easy_install(-\d\.\d)?$', k) + ] + for k in easy_install_ep: + del console[k] + + # Generate the console entry points specified in the wheel + scripts_to_generate.extend(starmap('{} = {}'.format, console.items())) + + return scripts_to_generate + + +class ZipBackedFile: + def __init__(self, src_record_path, dest_path, zip_file): + # type: (RecordPath, str, ZipFile) -> None + self.src_record_path = src_record_path + self.dest_path = dest_path + self._zip_file = zip_file + self.changed = False + + def _getinfo(self): + # type: () -> ZipInfo + return self._zip_file.getinfo(self.src_record_path) + + def save(self): + # type: () -> None + # directory creation is lazy and after file filtering + # to ensure we don't install empty dirs; empty dirs can't be + # uninstalled. + parent_dir = os.path.dirname(self.dest_path) + ensure_dir(parent_dir) + + # When we open the output file below, any existing file is truncated + # before we start writing the new contents. This is fine in most + # cases, but can cause a segfault if pip has loaded a shared + # object (e.g. from pyopenssl through its vendored urllib3) + # Since the shared object is mmap'd an attempt to call a + # symbol in it will then cause a segfault. Unlinking the file + # allows writing of new contents while allowing the process to + # continue to use the old copy. + if os.path.exists(self.dest_path): + os.unlink(self.dest_path) + + zipinfo = self._getinfo() + + with self._zip_file.open(zipinfo) as f: + with open(self.dest_path, "wb") as dest: + shutil.copyfileobj(f, dest) + + if zip_item_is_executable(zipinfo): + set_extracted_file_to_default_mode_plus_executable(self.dest_path) + + +class ScriptFile: + def __init__(self, file): + # type: (File) -> None + self._file = file + self.src_record_path = self._file.src_record_path + self.dest_path = self._file.dest_path + self.changed = False + + def save(self): + # type: () -> None + self._file.save() + self.changed = fix_script(self.dest_path) + + +class MissingCallableSuffix(InstallationError): + def __init__(self, entry_point): + # type: (str) -> None + super().__init__( + "Invalid script entry point: {} - A callable " + "suffix is required. Cf https://packaging.python.org/" + "specifications/entry-points/#use-for-scripts for more " + "information.".format(entry_point) + ) + + +def _raise_for_invalid_entrypoint(specification): + # type: (str) -> None + entry = get_export_entry(specification) + if entry is not None and entry.suffix is None: + raise MissingCallableSuffix(str(entry)) + + +class PipScriptMaker(ScriptMaker): + def make(self, specification, options=None): + # type: (str, Dict[str, Any]) -> List[str] + _raise_for_invalid_entrypoint(specification) + return super().make(specification, options) + + +def _install_wheel( + name, # type: str + wheel_zip, # type: ZipFile + wheel_path, # type: str + scheme, # type: Scheme + pycompile=True, # type: bool + warn_script_location=True, # type: bool + direct_url=None, # type: Optional[DirectUrl] + requested=False, # type: bool +): + # type: (...) -> None + """Install a wheel. + + :param name: Name of the project to install + :param wheel_zip: open ZipFile for wheel being installed + :param scheme: Distutils scheme dictating the install directories + :param req_description: String used in place of the requirement, for + logging + :param pycompile: Whether to byte-compile installed Python files + :param warn_script_location: Whether to check that scripts are installed + into a directory on PATH + :raises UnsupportedWheel: + * when the directory holds an unpacked wheel with incompatible + Wheel-Version + * when the .dist-info dir does not match the wheel + """ + info_dir, metadata = parse_wheel(wheel_zip, name) + + if wheel_root_is_purelib(metadata): + lib_dir = scheme.purelib + else: + lib_dir = scheme.platlib + + # Record details of the files moved + # installed = files copied from the wheel to the destination + # changed = files changed while installing (scripts #! line typically) + # generated = files newly generated during the install (script wrappers) + installed = {} # type: Dict[RecordPath, RecordPath] + changed = set() # type: Set[RecordPath] + generated = [] # type: List[str] + + def record_installed(srcfile, destfile, modified=False): + # type: (RecordPath, str, bool) -> None + """Map archive RECORD paths to installation RECORD paths.""" + newpath = _fs_to_record_path(destfile, lib_dir) + installed[srcfile] = newpath + if modified: + changed.add(_fs_to_record_path(destfile)) + + def all_paths(): + # type: () -> Iterable[RecordPath] + names = wheel_zip.namelist() + # If a flag is set, names may be unicode in Python 2. We convert to + # text explicitly so these are valid for lookup in RECORD. + decoded_names = map(ensure_text, names) + for name in decoded_names: + yield cast("RecordPath", name) + + def is_dir_path(path): + # type: (RecordPath) -> bool + return path.endswith("/") + + def assert_no_path_traversal(dest_dir_path, target_path): + # type: (str, str) -> None + if not is_within_directory(dest_dir_path, target_path): + message = ( + "The wheel {!r} has a file {!r} trying to install" + " outside the target directory {!r}" + ) + raise InstallationError( + message.format(wheel_path, target_path, dest_dir_path) + ) + + def root_scheme_file_maker(zip_file, dest): + # type: (ZipFile, str) -> Callable[[RecordPath], File] + def make_root_scheme_file(record_path): + # type: (RecordPath) -> File + normed_path = os.path.normpath(record_path) + dest_path = os.path.join(dest, normed_path) + assert_no_path_traversal(dest, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_root_scheme_file + + def data_scheme_file_maker(zip_file, scheme): + # type: (ZipFile, Scheme) -> Callable[[RecordPath], File] + scheme_paths = {} + for key in SCHEME_KEYS: + encoded_key = ensure_text(key) + scheme_paths[encoded_key] = ensure_text( + getattr(scheme, key), encoding=sys.getfilesystemencoding() + ) + + def make_data_scheme_file(record_path): + # type: (RecordPath) -> File + normed_path = os.path.normpath(record_path) + try: + _, scheme_key, dest_subpath = normed_path.split(os.path.sep, 2) + except ValueError: + message = ( + "Unexpected file in {}: {!r}. .data directory contents" + " should be named like: '/'." + ).format(wheel_path, record_path) + raise InstallationError(message) + + try: + scheme_path = scheme_paths[scheme_key] + except KeyError: + valid_scheme_keys = ", ".join(sorted(scheme_paths)) + message = ( + "Unknown scheme key used in {}: {} (for file {!r}). .data" + " directory contents should be in subdirectories named" + " with a valid scheme key ({})" + ).format( + wheel_path, scheme_key, record_path, valid_scheme_keys + ) + raise InstallationError(message) + + dest_path = os.path.join(scheme_path, dest_subpath) + assert_no_path_traversal(scheme_path, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_data_scheme_file + + def is_data_scheme_path(path): + # type: (RecordPath) -> bool + return path.split("/", 1)[0].endswith(".data") + + paths = all_paths() + file_paths = filterfalse(is_dir_path, paths) + root_scheme_paths, data_scheme_paths = partition( + is_data_scheme_path, file_paths + ) + + make_root_scheme_file = root_scheme_file_maker( + wheel_zip, + ensure_text(lib_dir, encoding=sys.getfilesystemencoding()), + ) + files = map(make_root_scheme_file, root_scheme_paths) + + def is_script_scheme_path(path): + # type: (RecordPath) -> bool + parts = path.split("/", 2) + return ( + len(parts) > 2 and + parts[0].endswith(".data") and + parts[1] == "scripts" + ) + + other_scheme_paths, script_scheme_paths = partition( + is_script_scheme_path, data_scheme_paths + ) + + make_data_scheme_file = data_scheme_file_maker(wheel_zip, scheme) + other_scheme_files = map(make_data_scheme_file, other_scheme_paths) + files = chain(files, other_scheme_files) + + # Get the defined entry points + distribution = pkg_resources_distribution_for_wheel( + wheel_zip, name, wheel_path + ) + console, gui = get_entrypoints(distribution) + + def is_entrypoint_wrapper(file): + # type: (File) -> bool + # EP, EP.exe and EP-script.py are scripts generated for + # entry point EP by setuptools + path = file.dest_path + name = os.path.basename(path) + if name.lower().endswith('.exe'): + matchname = name[:-4] + elif name.lower().endswith('-script.py'): + matchname = name[:-10] + elif name.lower().endswith(".pya"): + matchname = name[:-4] + else: + matchname = name + # Ignore setuptools-generated scripts + return (matchname in console or matchname in gui) + + script_scheme_files = map(make_data_scheme_file, script_scheme_paths) + script_scheme_files = filterfalse( + is_entrypoint_wrapper, script_scheme_files + ) + script_scheme_files = map(ScriptFile, script_scheme_files) + files = chain(files, script_scheme_files) + + for file in files: + file.save() + record_installed(file.src_record_path, file.dest_path, file.changed) + + def pyc_source_file_paths(): + # type: () -> Iterator[str] + # We de-duplicate installation paths, since there can be overlap (e.g. + # file in .data maps to same location as file in wheel root). + # Sorting installation paths makes it easier to reproduce and debug + # issues related to permissions on existing files. + for installed_path in sorted(set(installed.values())): + full_installed_path = os.path.join(lib_dir, installed_path) + if not os.path.isfile(full_installed_path): + continue + if not full_installed_path.endswith('.py'): + continue + yield full_installed_path + + def pyc_output_path(path): + # type: (str) -> str + """Return the path the pyc file would have been written to. + """ + return importlib.util.cache_from_source(path) + + # Compile all of the pyc files for the installed files + if pycompile: + with captured_stdout() as stdout: + with warnings.catch_warnings(): + warnings.filterwarnings('ignore') + for path in pyc_source_file_paths(): + # Python 2's `compileall.compile_file` requires a str in + # error cases, so we must convert to the native type. + path_arg = ensure_str( + path, encoding=sys.getfilesystemencoding() + ) + success = compileall.compile_file( + path_arg, force=True, quiet=True + ) + if success: + pyc_path = pyc_output_path(path) + assert os.path.exists(pyc_path) + pyc_record_path = cast( + "RecordPath", pyc_path.replace(os.path.sep, "/") + ) + record_installed(pyc_record_path, pyc_path) + logger.debug(stdout.getvalue()) + + maker = PipScriptMaker(None, scheme.scripts) + + # Ensure old scripts are overwritten. + # See https://github.com/pypa/pip/issues/1800 + maker.clobber = True + + # Ensure we don't generate any variants for scripts because this is almost + # never what somebody wants. + # See https://bitbucket.org/pypa/distlib/issue/35/ + maker.variants = {''} + + # This is required because otherwise distlib creates scripts that are not + # executable. + # See https://bitbucket.org/pypa/distlib/issue/32/ + maker.set_mode = True + + # Generate the console and GUI entry points specified in the wheel + scripts_to_generate = get_console_script_specs(console) + + gui_scripts_to_generate = list(starmap('{} = {}'.format, gui.items())) + + generated_console_scripts = maker.make_multiple(scripts_to_generate) + generated.extend(generated_console_scripts) + + generated.extend( + maker.make_multiple(gui_scripts_to_generate, {'gui': True}) + ) + + if warn_script_location: + msg = message_about_scripts_not_on_PATH(generated_console_scripts) + if msg is not None: + logger.warning(msg) + + generated_file_mode = 0o666 & ~current_umask() + + @contextlib.contextmanager + def _generate_file(path, **kwargs): + # type: (str, **Any) -> Iterator[BinaryIO] + with adjacent_tmp_file(path, **kwargs) as f: + yield f + os.chmod(f.name, generated_file_mode) + replace(f.name, path) + + dest_info_dir = os.path.join(lib_dir, info_dir) + + # Record pip as the installer + installer_path = os.path.join(dest_info_dir, 'INSTALLER') + with _generate_file(installer_path) as installer_file: + installer_file.write(b'pip\n') + generated.append(installer_path) + + # Record the PEP 610 direct URL reference + if direct_url is not None: + direct_url_path = os.path.join(dest_info_dir, DIRECT_URL_METADATA_NAME) + with _generate_file(direct_url_path) as direct_url_file: + direct_url_file.write(direct_url.to_json().encode("utf-8")) + generated.append(direct_url_path) + + # Record the REQUESTED file + if requested: + requested_path = os.path.join(dest_info_dir, 'REQUESTED') + with open(requested_path, "wb"): + pass + generated.append(requested_path) + + record_text = distribution.get_metadata('RECORD') + record_rows = list(csv.reader(record_text.splitlines())) + + rows = get_csv_rows_for_installed( + record_rows, + installed=installed, + changed=changed, + generated=generated, + lib_dir=lib_dir) + + # Record details of all files installed + record_path = os.path.join(dest_info_dir, 'RECORD') + + with _generate_file(record_path, **csv_io_kwargs('w')) as record_file: + # The type mypy infers for record_file is different for Python 3 + # (typing.IO[Any]) and Python 2 (typing.BinaryIO). We explicitly + # cast to typing.IO[str] as a workaround. + writer = csv.writer(cast('IO[str]', record_file)) + writer.writerows(_normalized_outrows(rows)) + + +@contextlib.contextmanager +def req_error_context(req_description): + # type: (str) -> Iterator[None] + try: + yield + except InstallationError as e: + message = "For req: {}. {}".format(req_description, e.args[0]) + reraise( + InstallationError, InstallationError(message), sys.exc_info()[2] + ) + + +def install_wheel( + name, # type: str + wheel_path, # type: str + scheme, # type: Scheme + req_description, # type: str + pycompile=True, # type: bool + warn_script_location=True, # type: bool + direct_url=None, # type: Optional[DirectUrl] + requested=False, # type: bool +): + # type: (...) -> None + with ZipFile(wheel_path, allowZip64=True) as z: + with req_error_context(req_description): + _install_wheel( + name=name, + wheel_zip=z, + wheel_path=wheel_path, + scheme=scheme, + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=direct_url, + requested=requested, + ) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/operations/prepare.py b/venv/lib/python3.8/site-packages/pip/_internal/operations/prepare.py new file mode 100644 index 00000000..3d074f9f --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/operations/prepare.py @@ -0,0 +1,655 @@ +"""Prepares a distribution for installation +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import logging +import mimetypes +import os +import shutil +from typing import Dict, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.pkg_resources import Distribution + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.distributions.installed import InstalledDistribution +from pip._internal.exceptions import ( + DirectoryUrlHashUnsupported, + HashMismatch, + HashUnpinned, + InstallationError, + NetworkConnectionError, + PreviousBuildDirError, + VcsHashUnsupported, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.network.download import BatchDownloader, Downloader +from pip._internal.network.lazy_wheel import ( + HTTPRangeRequestUnsupported, + dist_from_wheel_url, +) +from pip._internal.network.session import PipSession +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import RequirementTracker +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filesystem import copy2_fixed +from pip._internal.utils.hashes import Hashes, MissingHashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import display_path, hide_url, rmtree +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.unpacking import unpack_file +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +def _get_prepared_distribution( + req, # type: InstallRequirement + req_tracker, # type: RequirementTracker + finder, # type: PackageFinder + build_isolation, # type: bool +): + # type: (...) -> Distribution + """Prepare a distribution for installation.""" + abstract_dist = make_distribution_for_install_requirement(req) + with req_tracker.track(req): + abstract_dist.prepare_distribution_metadata(finder, build_isolation) + return abstract_dist.get_pkg_resources_distribution() + + +def unpack_vcs_link(link, location): + # type: (Link, str) -> None + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend is not None + vcs_backend.unpack(location, url=hide_url(link.url)) + + +class File: + + def __init__(self, path, content_type): + # type: (str, Optional[str]) -> None + self.path = path + if content_type is None: + self.content_type = mimetypes.guess_type(path)[0] + else: + self.content_type = content_type + + +def get_http_url( + link, # type: Link + download, # type: Downloader + download_dir=None, # type: Optional[str] + hashes=None, # type: Optional[Hashes] +): + # type: (...) -> File + temp_dir = TempDirectory(kind="unpack", globally_managed=True) + # If a download dir is specified, is the file already downloaded there? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir( + link, download_dir, hashes + ) + + if already_downloaded_path: + from_path = already_downloaded_path + content_type = None + else: + # let's download to a tmp dir + from_path, content_type = download(link, temp_dir.path) + if hashes: + hashes.check_against_path(from_path) + + return File(from_path, content_type) + + +def _copy2_ignoring_special_files(src, dest): + # type: (str, str) -> None + """Copying special files is not supported, but as a convenience to users + we skip errors copying them. This supports tools that may create e.g. + socket files in the project source directory. + """ + try: + copy2_fixed(src, dest) + except shutil.SpecialFileError as e: + # SpecialFileError may be raised due to either the source or + # destination. If the destination was the cause then we would actually + # care, but since the destination directory is deleted prior to + # copy we ignore all of them assuming it is caused by the source. + logger.warning( + "Ignoring special file error '%s' encountered copying %s to %s.", + str(e), + src, + dest, + ) + + +def _copy_source_tree(source, target): + # type: (str, str) -> None + target_abspath = os.path.abspath(target) + target_basename = os.path.basename(target_abspath) + target_dirname = os.path.dirname(target_abspath) + + def ignore(d, names): + # type: (str, List[str]) -> List[str] + skipped = [] # type: List[str] + if d == source: + # Pulling in those directories can potentially be very slow, + # exclude the following directories if they appear in the top + # level dir (and only it). + # See discussion at https://github.com/pypa/pip/pull/6770 + skipped += ['.tox', '.nox'] + if os.path.abspath(d) == target_dirname: + # Prevent an infinite recursion if the target is in source. + # This can happen when TMPDIR is set to ${PWD}/... + # and we copy PWD to TMPDIR. + skipped += [target_basename] + return skipped + + shutil.copytree( + source, + target, + ignore=ignore, + symlinks=True, + copy_function=_copy2_ignoring_special_files, + ) + + +def get_file_url( + link, # type: Link + download_dir=None, # type: Optional[str] + hashes=None # type: Optional[Hashes] +): + # type: (...) -> File + """Get file and optionally check its hash. + """ + # If a download dir is specified, is the file already there and valid? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir( + link, download_dir, hashes + ) + + if already_downloaded_path: + from_path = already_downloaded_path + else: + from_path = link.file_path + + # If --require-hashes is off, `hashes` is either empty, the + # link's embedded hash, or MissingHashes; it is required to + # match. If --require-hashes is on, we are satisfied by any + # hash in `hashes` matching: a URL-based or an option-based + # one; no internet-sourced hash will be in `hashes`. + if hashes: + hashes.check_against_path(from_path) + return File(from_path, None) + + +def unpack_url( + link, # type: Link + location, # type: str + download, # type: Downloader + download_dir=None, # type: Optional[str] + hashes=None, # type: Optional[Hashes] +): + # type: (...) -> Optional[File] + """Unpack link into location, downloading if required. + + :param hashes: A Hashes object, one of whose embedded hashes must match, + or HashMismatch will be raised. If the Hashes is empty, no matches are + required, and unhashable types of requirements (like VCS ones, which + would ordinarily raise HashUnsupported) are allowed. + """ + # non-editable vcs urls + if link.is_vcs: + unpack_vcs_link(link, location) + return None + + # Once out-of-tree-builds are no longer supported, could potentially + # replace the below condition with `assert not link.is_existing_dir` + # - unpack_url does not need to be called for in-tree-builds. + # + # As further cleanup, _copy_source_tree and accompanying tests can + # be removed. + if link.is_existing_dir(): + deprecated( + "A future pip version will change local packages to be built " + "in-place without first copying to a temporary directory. " + "We recommend you use --use-feature=in-tree-build to test " + "your packages with this new behavior before it becomes the " + "default.\n", + replacement=None, + gone_in="21.3", + issue=7555 + ) + if os.path.isdir(location): + rmtree(location) + _copy_source_tree(link.file_path, location) + return None + + # file urls + if link.is_file: + file = get_file_url(link, download_dir, hashes=hashes) + + # http urls + else: + file = get_http_url( + link, + download, + download_dir, + hashes=hashes, + ) + + # unpack the archive to the build dir location. even when only downloading + # archives, they have to be unpacked to parse dependencies, except wheels + if not link.is_wheel: + unpack_file(file.path, location, file.content_type) + + return file + + +def _check_download_dir(link, download_dir, hashes): + # type: (Link, str, Optional[Hashes]) -> Optional[str] + """ Check download_dir for previously downloaded file with correct hash + If a correct file is found return its path else None + """ + download_path = os.path.join(download_dir, link.filename) + + if not os.path.exists(download_path): + return None + + # If already downloaded, does its hash match? + logger.info('File was already downloaded %s', download_path) + if hashes: + try: + hashes.check_against_path(download_path) + except HashMismatch: + logger.warning( + 'Previously-downloaded file %s has bad hash. ' + 'Re-downloading.', + download_path + ) + os.unlink(download_path) + return None + return download_path + + +class RequirementPreparer: + """Prepares a Requirement + """ + + def __init__( + self, + build_dir, # type: str + download_dir, # type: Optional[str] + src_dir, # type: str + build_isolation, # type: bool + req_tracker, # type: RequirementTracker + session, # type: PipSession + progress_bar, # type: str + finder, # type: PackageFinder + require_hashes, # type: bool + use_user_site, # type: bool + lazy_wheel, # type: bool + in_tree_build, # type: bool + ): + # type: (...) -> None + super().__init__() + + self.src_dir = src_dir + self.build_dir = build_dir + self.req_tracker = req_tracker + self._session = session + self._download = Downloader(session, progress_bar) + self._batch_download = BatchDownloader(session, progress_bar) + self.finder = finder + + # Where still-packed archives should be written to. If None, they are + # not saved, and are deleted immediately after unpacking. + self.download_dir = download_dir + + # Is build isolation allowed? + self.build_isolation = build_isolation + + # Should hash-checking be required? + self.require_hashes = require_hashes + + # Should install in user site-packages? + self.use_user_site = use_user_site + + # Should wheels be downloaded lazily? + self.use_lazy_wheel = lazy_wheel + + # Should in-tree builds be used for local paths? + self.in_tree_build = in_tree_build + + # Memoized downloaded files, as mapping of url: (path, mime type) + self._downloaded = {} # type: Dict[str, Tuple[str, str]] + + # Previous "header" printed for a link-based InstallRequirement + self._previous_requirement_header = ("", "") + + def _log_preparing_link(self, req): + # type: (InstallRequirement) -> None + """Provide context for the requirement being prepared.""" + if req.link.is_file and not req.original_link_is_in_wheel_cache: + message = "Processing %s" + information = str(display_path(req.link.file_path)) + else: + message = "Collecting %s" + information = str(req.req or req) + + if (message, information) != self._previous_requirement_header: + self._previous_requirement_header = (message, information) + logger.info(message, information) + + if req.original_link_is_in_wheel_cache: + with indent_log(): + logger.info("Using cached %s", req.link.filename) + + def _ensure_link_req_src_dir(self, req, parallel_builds): + # type: (InstallRequirement, bool) -> None + """Ensure source_dir of a linked InstallRequirement.""" + # Since source_dir is only set for editable requirements. + if req.link.is_wheel: + # We don't need to unpack wheels, so no need for a source + # directory. + return + assert req.source_dir is None + if req.link.is_existing_dir() and self.in_tree_build: + # build local directories in-tree + req.source_dir = req.link.file_path + return + + # We always delete unpacked sdists after pip runs. + req.ensure_has_source_dir( + self.build_dir, + autodelete=True, + parallel_builds=parallel_builds, + ) + + # If a checkout exists, it's unwise to keep going. version + # inconsistencies are logged later, but do not fail the + # installation. + # FIXME: this won't upgrade when there's an existing + # package unpacked in `req.source_dir` + if os.path.exists(os.path.join(req.source_dir, 'setup.py')): + raise PreviousBuildDirError( + "pip can't proceed with requirements '{}' due to a" + "pre-existing build directory ({}). This is likely " + "due to a previous installation that failed . pip is " + "being responsible and not assuming it can delete this. " + "Please delete it and try again.".format(req, req.source_dir) + ) + + def _get_linked_req_hashes(self, req): + # type: (InstallRequirement) -> Hashes + # By the time this is called, the requirement's link should have + # been checked so we can tell what kind of requirements req is + # and raise some more informative errors than otherwise. + # (For example, we can raise VcsHashUnsupported for a VCS URL + # rather than HashMissing.) + if not self.require_hashes: + return req.hashes(trust_internet=True) + + # We could check these first 2 conditions inside unpack_url + # and save repetition of conditions, but then we would + # report less-useful error messages for unhashable + # requirements, complaining that there's no hash provided. + if req.link.is_vcs: + raise VcsHashUnsupported() + if req.link.is_existing_dir(): + raise DirectoryUrlHashUnsupported() + + # Unpinned packages are asking for trouble when a new version + # is uploaded. This isn't a security check, but it saves users + # a surprising hash mismatch in the future. + # file:/// URLs aren't pinnable, so don't complain about them + # not being pinned. + if req.original_link is None and not req.is_pinned: + raise HashUnpinned() + + # If known-good hashes are missing for this requirement, + # shim it with a facade object that will provoke hash + # computation and then raise a HashMissing exception + # showing the user what the hash should be. + return req.hashes(trust_internet=False) or MissingHashes() + + def _fetch_metadata_using_lazy_wheel(self, link): + # type: (Link) -> Optional[Distribution] + """Fetch metadata using lazy wheel, if possible.""" + if not self.use_lazy_wheel: + return None + if self.require_hashes: + logger.debug('Lazy wheel is not used as hash checking is required') + return None + if link.is_file or not link.is_wheel: + logger.debug( + 'Lazy wheel is not used as ' + '%r does not points to a remote wheel', + link, + ) + return None + + wheel = Wheel(link.filename) + name = canonicalize_name(wheel.name) + logger.info( + 'Obtaining dependency information from %s %s', + name, wheel.version, + ) + url = link.url.split('#', 1)[0] + try: + return dist_from_wheel_url(name, url, self._session) + except HTTPRangeRequestUnsupported: + logger.debug('%s does not support range requests', url) + return None + + def _complete_partial_requirements( + self, + partially_downloaded_reqs, # type: Iterable[InstallRequirement] + parallel_builds=False, # type: bool + ): + # type: (...) -> None + """Download any requirements which were only fetched by metadata.""" + # Download to a temporary directory. These will be copied over as + # needed for downstream 'download', 'wheel', and 'install' commands. + temp_dir = TempDirectory(kind="unpack", globally_managed=True).path + + # Map each link to the requirement that owns it. This allows us to set + # `req.local_file_path` on the appropriate requirement after passing + # all the links at once into BatchDownloader. + links_to_fully_download = {} # type: Dict[Link, InstallRequirement] + for req in partially_downloaded_reqs: + assert req.link + links_to_fully_download[req.link] = req + + batch_download = self._batch_download( + links_to_fully_download.keys(), + temp_dir, + ) + for link, (filepath, _) in batch_download: + logger.debug("Downloading link %s to %s", link, filepath) + req = links_to_fully_download[link] + req.local_file_path = filepath + + # This step is necessary to ensure all lazy wheels are processed + # successfully by the 'download', 'wheel', and 'install' commands. + for req in partially_downloaded_reqs: + self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirement(self, req, parallel_builds=False): + # type: (InstallRequirement, bool) -> Distribution + """Prepare a requirement to be obtained from req.link.""" + assert req.link + link = req.link + self._log_preparing_link(req) + with indent_log(): + # Check if the relevant file is already available + # in the download directory + file_path = None + if self.download_dir is not None and link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir(req.link, self.download_dir, hashes) + + if file_path is not None: + # The file is already available, so mark it as downloaded + self._downloaded[req.link.url] = file_path, None + else: + # The file is not available, attempt to fetch only metadata + wheel_dist = self._fetch_metadata_using_lazy_wheel(link) + if wheel_dist is not None: + req.needs_more_preparation = True + return wheel_dist + + # None of the optimizations worked, fully prepare the requirement + return self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirements_more(self, reqs, parallel_builds=False): + # type: (Iterable[InstallRequirement], bool) -> None + """Prepare linked requirements more, if needed.""" + reqs = [req for req in reqs if req.needs_more_preparation] + for req in reqs: + # Determine if any of these requirements were already downloaded. + if self.download_dir is not None and req.link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir(req.link, self.download_dir, hashes) + if file_path is not None: + self._downloaded[req.link.url] = file_path, None + req.needs_more_preparation = False + + # Prepare requirements we found were already downloaded for some + # reason. The other downloads will be completed separately. + partially_downloaded_reqs = [] # type: List[InstallRequirement] + for req in reqs: + if req.needs_more_preparation: + partially_downloaded_reqs.append(req) + else: + self._prepare_linked_requirement(req, parallel_builds) + + # TODO: separate this part out from RequirementPreparer when the v1 + # resolver can be removed! + self._complete_partial_requirements( + partially_downloaded_reqs, parallel_builds=parallel_builds, + ) + + def _prepare_linked_requirement(self, req, parallel_builds): + # type: (InstallRequirement, bool) -> Distribution + assert req.link + link = req.link + + self._ensure_link_req_src_dir(req, parallel_builds) + hashes = self._get_linked_req_hashes(req) + + if link.is_existing_dir() and self.in_tree_build: + local_file = None + elif link.url not in self._downloaded: + try: + local_file = unpack_url( + link, req.source_dir, self._download, + self.download_dir, hashes + ) + except NetworkConnectionError as exc: + raise InstallationError( + 'Could not install requirement {} because of HTTP ' + 'error {} for URL {}'.format(req, exc, link) + ) + else: + file_path, content_type = self._downloaded[link.url] + if hashes: + hashes.check_against_path(file_path) + local_file = File(file_path, content_type) + + # For use in later processing, + # preserve the file path on the requirement. + if local_file: + req.local_file_path = local_file.path + + dist = _get_prepared_distribution( + req, self.req_tracker, self.finder, self.build_isolation, + ) + return dist + + def save_linked_requirement(self, req): + # type: (InstallRequirement) -> None + assert self.download_dir is not None + assert req.link is not None + link = req.link + if link.is_vcs or (link.is_existing_dir() and req.editable): + # Make a .zip of the source_dir we already created. + req.archive(self.download_dir) + return + + if link.is_existing_dir(): + logger.debug( + 'Not copying link to destination directory ' + 'since it is a directory: %s', link, + ) + return + if req.local_file_path is None: + # No distribution was downloaded for this requirement. + return + + download_location = os.path.join(self.download_dir, link.filename) + if not os.path.exists(download_location): + shutil.copy(req.local_file_path, download_location) + download_path = display_path(download_location) + logger.info('Saved %s', download_path) + + def prepare_editable_requirement( + self, + req, # type: InstallRequirement + ): + # type: (...) -> Distribution + """Prepare an editable requirement + """ + assert req.editable, "cannot prepare a non-editable req as editable" + + logger.info('Obtaining %s', req) + + with indent_log(): + if self.require_hashes: + raise InstallationError( + 'The editable requirement {} cannot be installed when ' + 'requiring hashes, because there is no single file to ' + 'hash.'.format(req) + ) + req.ensure_has_source_dir(self.src_dir) + req.update_editable() + + dist = _get_prepared_distribution( + req, self.req_tracker, self.finder, self.build_isolation, + ) + + req.check_if_exists(self.use_user_site) + + return dist + + def prepare_installed_requirement( + self, + req, # type: InstallRequirement + skip_reason # type: str + ): + # type: (...) -> Distribution + """Prepare an already-installed requirement + """ + assert req.satisfied_by, "req should have been satisfied but isn't" + assert skip_reason is not None, ( + "did not get skip reason skipped but req.satisfied_by " + "is set to {}".format(req.satisfied_by) + ) + logger.info( + 'Requirement %s: %s (%s)', + skip_reason, req, req.satisfied_by.version + ) + with indent_log(): + if self.require_hashes: + logger.debug( + 'Since it is already installed, we are trusting this ' + 'package without checking its hash. To ensure a ' + 'completely repeatable environment, install into an ' + 'empty virtualenv.' + ) + return InstalledDistribution(req).get_pkg_resources_distribution() diff --git a/venv/lib/python3.8/site-packages/pip/_internal/pyproject.py b/venv/lib/python3.8/site-packages/pip/_internal/pyproject.py new file mode 100644 index 00000000..9016d355 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/pyproject.py @@ -0,0 +1,183 @@ +import os +from collections import namedtuple +from typing import Any, List, Optional + +from pip._vendor import toml +from pip._vendor.packaging.requirements import InvalidRequirement, Requirement + +from pip._internal.exceptions import InstallationError + + +def _is_list_of_str(obj): + # type: (Any) -> bool + return ( + isinstance(obj, list) and + all(isinstance(item, str) for item in obj) + ) + + +def make_pyproject_path(unpacked_source_directory): + # type: (str) -> str + return os.path.join(unpacked_source_directory, 'pyproject.toml') + + +BuildSystemDetails = namedtuple('BuildSystemDetails', [ + 'requires', 'backend', 'check', 'backend_path' +]) + + +def load_pyproject_toml( + use_pep517, # type: Optional[bool] + pyproject_toml, # type: str + setup_py, # type: str + req_name # type: str +): + # type: (...) -> Optional[BuildSystemDetails] + """Load the pyproject.toml file. + + Parameters: + use_pep517 - Has the user requested PEP 517 processing? None + means the user hasn't explicitly specified. + pyproject_toml - Location of the project's pyproject.toml file + setup_py - Location of the project's setup.py file + req_name - The name of the requirement we're processing (for + error reporting) + + Returns: + None if we should use the legacy code path, otherwise a tuple + ( + requirements from pyproject.toml, + name of PEP 517 backend, + requirements we should check are installed after setting + up the build environment + directory paths to import the backend from (backend-path), + relative to the project root. + ) + """ + has_pyproject = os.path.isfile(pyproject_toml) + has_setup = os.path.isfile(setup_py) + + if has_pyproject: + with open(pyproject_toml, encoding="utf-8") as f: + pp_toml = toml.load(f) + build_system = pp_toml.get("build-system") + else: + build_system = None + + # The following cases must use PEP 517 + # We check for use_pep517 being non-None and falsey because that means + # the user explicitly requested --no-use-pep517. The value 0 as + # opposed to False can occur when the value is provided via an + # environment variable or config file option (due to the quirk of + # strtobool() returning an integer in pip's configuration code). + if has_pyproject and not has_setup: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project does not have a setup.py" + ) + use_pep517 = True + elif build_system and "build-backend" in build_system: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project specifies a build backend of {} " + "in pyproject.toml".format( + build_system["build-backend"] + ) + ) + use_pep517 = True + + # If we haven't worked out whether to use PEP 517 yet, + # and the user hasn't explicitly stated a preference, + # we do so if the project has a pyproject.toml file. + elif use_pep517 is None: + use_pep517 = has_pyproject + + # At this point, we know whether we're going to use PEP 517. + assert use_pep517 is not None + + # If we're using the legacy code path, there is nothing further + # for us to do here. + if not use_pep517: + return None + + if build_system is None: + # Either the user has a pyproject.toml with no build-system + # section, or the user has no pyproject.toml, but has opted in + # explicitly via --use-pep517. + # In the absence of any explicit backend specification, we + # assume the setuptools backend that most closely emulates the + # traditional direct setup.py execution, and require wheel and + # a version of setuptools that supports that backend. + + build_system = { + "requires": ["setuptools>=40.8.0", "wheel"], + "build-backend": "setuptools.build_meta:__legacy__", + } + + # If we're using PEP 517, we have build system information (either + # from pyproject.toml, or defaulted by the code above). + # Note that at this point, we do not know if the user has actually + # specified a backend, though. + assert build_system is not None + + # Ensure that the build-system section in pyproject.toml conforms + # to PEP 518. + error_template = ( + "{package} has a pyproject.toml file that does not comply " + "with PEP 518: {reason}" + ) + + # Specifying the build-system table but not the requires key is invalid + if "requires" not in build_system: + raise InstallationError( + error_template.format(package=req_name, reason=( + "it has a 'build-system' table but not " + "'build-system.requires' which is mandatory in the table" + )) + ) + + # Error out if requires is not a list of strings + requires = build_system["requires"] + if not _is_list_of_str(requires): + raise InstallationError(error_template.format( + package=req_name, + reason="'build-system.requires' is not a list of strings.", + )) + + # Each requirement must be valid as per PEP 508 + for requirement in requires: + try: + Requirement(requirement) + except InvalidRequirement: + raise InstallationError( + error_template.format( + package=req_name, + reason=( + "'build-system.requires' contains an invalid " + "requirement: {!r}".format(requirement) + ), + ) + ) + + backend = build_system.get("build-backend") + backend_path = build_system.get("backend-path", []) + check = [] # type: List[str] + if backend is None: + # If the user didn't specify a backend, we assume they want to use + # the setuptools backend. But we can't be sure they have included + # a version of setuptools which supplies the backend, or wheel + # (which is needed by the backend) in their requirements. So we + # make a note to check that those requirements are present once + # we have set up the environment. + # This is quite a lot of work to check for a very specific case. But + # the problem is, that case is potentially quite common - projects that + # adopted PEP 518 early for the ability to specify requirements to + # execute setup.py, but never considered needing to mention the build + # tools themselves. The original PEP 518 code had a similar check (but + # implemented in a different way). + backend = "setuptools.build_meta:__legacy__" + check = ["setuptools>=40.8.0", "wheel"] + + return BuildSystemDetails(requires, backend, check, backend_path) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/req/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/req/__init__.py new file mode 100644 index 00000000..06f0a082 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/req/__init__.py @@ -0,0 +1,98 @@ +import collections +import logging +from typing import Iterator, List, Optional, Sequence, Tuple + +from pip._internal.utils.logging import indent_log + +from .req_file import parse_requirements +from .req_install import InstallRequirement +from .req_set import RequirementSet + +__all__ = [ + "RequirementSet", "InstallRequirement", + "parse_requirements", "install_given_reqs", +] + +logger = logging.getLogger(__name__) + + +class InstallationResult: + def __init__(self, name): + # type: (str) -> None + self.name = name + + def __repr__(self): + # type: () -> str + return f"InstallationResult(name={self.name!r})" + + +def _validate_requirements( + requirements, # type: List[InstallRequirement] +): + # type: (...) -> Iterator[Tuple[str, InstallRequirement]] + for req in requirements: + assert req.name, f"invalid to-be-installed requirement: {req}" + yield req.name, req + + +def install_given_reqs( + requirements, # type: List[InstallRequirement] + install_options, # type: List[str] + global_options, # type: Sequence[str] + root, # type: Optional[str] + home, # type: Optional[str] + prefix, # type: Optional[str] + warn_script_location, # type: bool + use_user_site, # type: bool + pycompile, # type: bool +): + # type: (...) -> List[InstallationResult] + """ + Install everything in the given list. + + (to be called after having downloaded and unpacked the packages) + """ + to_install = collections.OrderedDict(_validate_requirements(requirements)) + + if to_install: + logger.info( + 'Installing collected packages: %s', + ', '.join(to_install.keys()), + ) + + installed = [] + + with indent_log(): + for req_name, requirement in to_install.items(): + if requirement.should_reinstall: + logger.info('Attempting uninstall: %s', req_name) + with indent_log(): + uninstalled_pathset = requirement.uninstall( + auto_confirm=True + ) + else: + uninstalled_pathset = None + + try: + requirement.install( + install_options, + global_options, + root=root, + home=home, + prefix=prefix, + warn_script_location=warn_script_location, + use_user_site=use_user_site, + pycompile=pycompile, + ) + except Exception: + # if install did not succeed, rollback previous uninstall + if uninstalled_pathset and not requirement.install_succeeded: + uninstalled_pathset.rollback() + raise + else: + if uninstalled_pathset and requirement.install_succeeded: + uninstalled_pathset.commit() + + installed.append(InstallationResult(req_name)) + + return installed diff --git a/venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d36c66c87acef358c6ce9753cff3474d95310714 GIT binary patch literal 2290 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 Jm&s)g{x3Gbq$B_U literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_install.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_install.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..06736d73e233097b6cb30e6949e3cdec263df1de GIT binary patch literal 20441 zcma)kd5|2}d0%%=&$+V)7K_CVGy#yrkk}yw9)d^!A_-tgP|%VDcxfzYFgxA5JA=9S zx(DD6XJv<=Wmz^QC2{^pRB|nnSScn-#i=MRr&38ODkn}Vsj{6oNu?`gCzY#|*g2Fq zb{LAx@Atj#ITl07yVbAXd;RYBz3+bW%Jg*3z@PIoKYjhmmki_IGco#?K;kJp{(@x~ zuHl*uqom(v$&|EJvgDm8CFE_FY zY1(94iN;KGwlv$EE6qvTZtQB#m*yp&Z0v3>lolkOYV2t)mKG(RZtQLDEA5kbrm??y zpmaduS;P;P4oN)MINUr^IwJ9@#?huzawMK_+|xW(I@Ua1Ixgwy#);;=rF$hl)3~pB zf9ZaS&o)jr3#Ed@=Nb<*A1pl>#ZMu=B=KF1V)LQW!xEowe4=@}bXwxO5r3rgsKgf< zk2N1JJudM*jZZeul+H9iRr-{q7aLDBpDaBo@x6_+&2y!565rQ2-~4px(-Pm`c&hny z>1l}{Xgt%rP`V)TgN=*LOQlQA<b-WyEWPeJ?mh1q zrO!QUxX0Y%?-=g!+g7RMo^bC)?oYVpHKTCf_X#g6g>;yBy0sbF7i-lZ%v=sURatF# zp?#(1BmF`rsI^;_Mwq$gz0vhrRWD4w(n40j3a2|a*2~KC+g(-l{4n9y-Yl45>a!Jf z!&8V&T}73e@|s>NKr(-=<5g>GHBVjhnBG;bwA!s&wbH2dymG73^pKf;)l)v3H^XG7 zqI~Afz36ow`@|=oYqxJ)s5BbVcK#xUr)sNR4i96Qd!}1!xR+WtYpUI1hvC9X`-RTV zTy}f8=R3_dwmfZdiip$*HK;-qjNa|7YmJ6x~frLQ|)HCp{I~~uHtWaK1$?j zEf?!jZnW16nQ*q^-zc;7viBxd(hqa1mFkUdr;K*Oyj$}-jmoAJ2=^crlxwZBU&Bgt zP^_|!?VgLXyFRxp@WMGRB6H(?2{Rit*W;MN1?9OFjIYu~moh-)VpMt78LTc~>SeFl zxhQjKtIcpaKoUbL-@xcOi+!rw!dk4CyO@nCW4nWHrQx-1;#=Zo)vua_>gX?xcM{J9 zJpPvv^o?yJFzePGbIZg#v2FLwJLc!DEo&zMNw@s9q+F5GbcI~))KZ%x8ecMgGo50aa^e? z87b(!8H6)W`+$bQ$qE-Zq01Q4=){0>=HuQ8Z-86wb%x^=_{*$Td{1K2ah~7@^@#K) zdDVs=W+leyyl1G3`1bzO4+YK6L!DY@soNr?dhU{(x1~4M>%pfwXV&=bApkSb9I)C$ z%6o$kG6W|SJDXv)9E0&$wCEo~U?lU2IWwQgnJIJLnn8HLvP}8^p<2fGDhrMNO(F3V z9{&vX!ZS#6L2gZu+KX<|O}%4+*rweKka5z@x;ea4?v$IyJMCrMX?NxwVWhTeI#V_b}db?h*GW-n$~Q zFt3S1X*X&MNkCrms{G?lu_#)yDxDQHvuY1Z}LOc81qWciu``w4#PvCt3 zWlp<~NSTA~qwZtKJLEp@eiHA)?z8S0_fr_v5%&rAN#q=LpL5T;=aA#L=iN^u=N|Vd z_i4P3xtHB%+za?}+~qlWKAgX-H)e#A^!}m1`&D8;9|+BN{5GIz14sdDW}~!C7(7bH~A6Aq$wmoTC1$KyMY5xQJxdDoi#70ZphhFUcAiIiV-@<-WDXA5nwI(nPBlY+uYL!w~2oL zH_G9u@7+oQSsLYi(!+k~?SRA&N_eQB`G%=H6H4n5lP?h(r&?-J0CM6*-po2?jDa@Yr z0ekIc=lq{!>o$UvX&JrZ-3Osq2HL6x<#O?CqYW;~KVKYFE<6Z&?+YA)Wm9=HqlnJJ z1mHN#p##qsGR!!Rm;w}o+lyJ6a8E-RniwyF%d7b9R+!Vgo}lJ*4K38bjXlQ3Kgq^3 zEgUK#9qG!dFOe*ZXg(qVim&#voK5B=oNlYydJR}uc$M(zSh9@P!Ey-lE>|ny%)(ij zrSz#AOvwrg$qK?$Q`pWht>1o__i?;^u$yjqbu*mvH`?8Xi-|;sGn_4xwQCa7e7F!s# zUv9P)vScKJ;0iOL?R$+iwSvCX3k+Uj@Hqz88MGPH8F&oV7_2jRk---j)EJP&j=*Xr z2EZ>O-)CU#IsoDr{ipfPNGktP%AU7!X5LICQs#`Avuu2^@y-4yXJ?pirfht(_&;aj z-$L3#{S!1@>pu6mvP7$J8y0E7S7&1)$_d+=oY`Gos&}V zeX~%=%eI1T3zY0=n9`I@J&0+m*BMk8+=n2{@CcDR(_rvf=4FK&=V5&>p*qYlef@dI zcBji_bW$$=6O{2C1P1npEYUtZGuY9bxrkWa%wVT&>|yV~-IKt6Nh4$1MSgX#UHg#0 zws6b9sRtlxBpG%44mkpArFZ!3TU$%Pe*^(Y*Wwn~ z46HcD*EjbYcdS$;g z@cd>+o&P=dL_%hhke!|Y6B=U6GV~E*7B|p4boMRo;K;VW^_EO|YisL#&pPEmy0Jy7 zNlJDh71}qUJP1>MTM_FLBvg;VTL?nC-mbL@5ws^+(O0+mRUrN+8N0-C`O$&>N96bv zcMKpbf_UnqRDvih^I`AkkD1ii4iMT28yE11c!6DqIt@(F4B3sq+$J0V67FFA-!oSV zw#M8dhh>G2;E>hZsIU4A#t*7|_yac1eKsJq*k*6 z>@;wCC`K$r>Wy>fK2bdF)cmNKC&xaXkG{3q!SIlMp9^=MQ+Pjd?%cWet#jvqi?|qJ z0{RKSC*@-sdJ+|8+Bm=!2)$TR!MM4>f<#A1c2r<63r0xK#Y7K2cf|l@&6{%{O5W!1^R6ud-MJ<}JQbQ?SGf{_&_IEmvQ8h7ni z5^e23C2VpV2&HeQ5lp%^7ppwqPrlp~gJ0_u1pdB_H`W#y*T8A7IhDcbc;)I9 z$89?T=7UV4+SPWup&7&p=qH>*SLIQ@ct00VpfTG!K4H;zmVbE+bY=gsUb1k{AVRFL zZ3-`CD$1Z%iyT~HE74D=C;A|u2rZD%L_M_*Vz!-T-W?pDAk(+>f>-_$#xu~taj;7i zy0E}hxj~6QsR%kZ=2r?~P^TX_Cp@m)X!)yAkL3?NV&wYqOQkT!tbmX-)1 zl}5Ae2TsT1=&7WWHl)I!p|wV3-7h+TmQAQ9C?{>+4J#*Ogj$1Y1khFko~%`CK?5tI z6&;*DXndR-gPmJ&zz#&PGX%z3P;{E^W3r6?M&N9rkpog`thX_r*SwLIZdEpY=Y^|SkH&D1z%hYDoN~OI zUTe56vM(bW_5>gSG$c@6(R@=`=z-gOEg~@3YWc)!8W^0D$1$^W#bU7#^)(m>*J$Uy zalf?=(hE-UAg^vZopz^78BwI+lZ7FXDrDuXg?6>w+0;^73CAF`33w36y}D&0m9 zW|3D3*Tm=0xf|khQ8rYw;iL6y()pmHsXwm?gwa zKOY!S+kr}m(D?vkb;~~%=hh(|AP?qStml=$h7}@3x#C?a1*INKh>!{q6>7YMYV~c1 zorxg3ox5Yyr@m=?E3st<`MR||O~sY}jbLVb7Q!j4AV8P-ZKwbRak9iNs2purMMj_FdG&Vt{TQD5Cp;_+jxd4TdNG=2Q zzjLp@3_ukdR=Mkk)4=Qq>?I za!xk@_2kIHSt1CSA{$zN)oYeNL`tPgr8CmhR(U5uSl(q_V- zz+VdyK$V`laQ*R|HtDeB(K^{`a zL|}xv07wytKo&T0$Hvi3QAz?Du!MO}tf;?&!OI$s;txS?iX=(P$7$=;7b>)mRm$yFxmojtF-LVN_|*aWg-vcwm~$(ELt@w;*s0!w6OO{i zwKT?XCeb|~ISqdq5iIRpG^-9qlFB^)7$LZiEg}2KbJ2c^gY0cXeHCg$=6*Gpg8nCu7N_yd+(F*k<{RJEWm^Z(_N?00 zDcxd=R%;r5c#@L6?<@oBQs%8`T`4w_R?^rcuesY;H4X_vk=0!T2Nw+4Oko;fQS(QS zB={6Gj5C0zu~v+mpmu$f9n>FpDBB%yBML{V2L7fI8LY_{flk0p1iEUP*}zo$y;onW zfn6ix8;ze-oa_=6>JHruz-3n}NIB$6S-1gJxZ`j7Md~mCz8-*=jw-AP{h+8!3v(JF z6bM>`#xNZt01?qMu_aF{OHZ=cDuag@+|OVS15qTMW~|GAdUP-j!d+42U*;&qPa>Qa zDnn4^@|PfU;>BdtZ)rY?ltu6eYVai4iE?H|=U=X^MNS%jjsSlKeHtm!fIJ>Mm9jGC z+=rGe+H_zZ(YSwP5f53mVSi|SluBiwsZAv^R`1w^L$RZiF?56up$d%70+nBcZ9gY4 zPbeqMSu4vp$mAbs=g=mb5oumdGY_)*9)e%z6o}vq7y_V|nxxW?8@X#FHmb>~q~0<> z@1iLq&uA+u?Q!Nh2jI6s9>iJ^dQeCW?NdV7H6@VI?(w^;1O5ZnFpa+^4L#f+yAza$ z7BKC$@Ee?vXk}zVb079jO<3cPtv)tK3)33RkuWH$y%0e8)i=Pa2`&hLYv8wH)PeND zjcMaSV&(n$6|lSFibdBDLE60xj%&9AuLdlGP(UGwkD+DFMUmvGUqcXMVqF0aNIOAs zT3W&fF}?lE;Vv!!^G;NSj8zz$CIKpeXRwu%r-@w9IlYztfMc{r=0FILkx$&N-9v*K z-Ku2Fzr!(ebqx^e-hC4`X+ov3aT9C@wE2rjXxfZ%3iYME2%1T-Jz(D{;yfT|8gZ!5 zXq!j==WV(gZP{R=Q5rUTLEV}~hy6b3+V8StRwMJu(-`v=$oql;2g56JPNE_h5m}!W zh6!e1*jDKXLF5gehFS}H1WLfr>=2C(b@jmQVv;19eDTtY4m|7z5)qI!Jo;ciUKcpp zNeUq1!iQqjg9wdXEnhY8Yb}``TP%Q*FLW1Xa!WP{E!%U>T@xyd%nN12_RsWdvFAf4hgzWo2 z5FAe+Vr0oN@;~)~ohJ6Sfvv?N3NDiD40NB9z;%NE;25~_m<_o4SCNoob_Sv8&(R@7 zq;0_@%)n6beFH0>NGg&JOU?rwa_C9mDb+df~I<1(G ziy3!p(OS0!WhAs|P~}h;MIek83v7y7?`ocLu+hDwXtqFAZ(zuJUj%j4kqpy-6?j+r zR3gjwe~R3~l-@|$Dq^^BUnDpT9XHDwR7M(Qd)kH~st<0lqU~`aLYaqC*bY}vYIDVW zW7sf*3fr%@aqj=6GBY~;Vej4vc;@c5?%KC31|sP3c|@?*pt&M#S+|X^!`T{sjEOr4 z%l2!=W5!FyRpWJ*O8SrEOX?0tb_-J1cA7D~Gkgn5v3h^wl1QA`2dGRUkHF!+0c%ul zVu9(`I)YqYp|fR-B~Ib|0-1KTU=@1W)0{a0hN59HWWqNuKEQHkU(f)jk|J$X%YQxG5^ z-eM<4J`VKKqC2kv^^K_SQG5(wA3?WT{GhBMaJX5baPx z)e4gaOdh_f%Cz7UFz`76wuDSPa3Pb{e9C+Nu$3p2xOzVkiOqw41`{DI`(>=R`s)Y~ z7fknE#v{FbZaCgy!5v^S&?Ev*W88%yaJ-w0VLAD=G6<=XxMS!?(#Zj2@fk_5Wa)BKC!Yv6#YfN2qzP8 zdho}17&+l0@mtJl0#u?)CE5||0hUO$SLrhxyPr(q(n4Gz%;CNSbQioav2%ZC^$Z8M zPAWr`KtbBF>>t`m+8}73wxNw&1P?h;-rvzsmHQh15djSLcpMSK@tC^-k&K!y>?+lc z!+ocv!3HwMH^M={{e_m7y07glkq2}8Huy!m@=IV%2jD-r+9F)Tn69eYRXnIXeA-4i z6m5py*dqw$MR?D3;1Is*VdV)7O%jeFog|PZVCd!iQT3eX7FT*lm)p3G152=0amA`TncWkl zhPe@S{6GaaB!qB_p+Ejn0AJ*eNHD;)6mFmwE7h4$9o(;h{Rqn4x(E#|2Mb98@Qo?FJRcC?+|U!C@&PAx?b;3~E|6r7sh~Xa?|4 z+@|3S$Hz_VHTucD+OK>}?~E}C0VaC!R}g?f1Y^VdN_A9%b?&~v7EKW3vcCCE>sz*5 z1TbKMfwG?syT(uReiCb@bUl|AJESS6t@Om#&FLM4LE01Y33oYoeTZNNMi#*8sGmpA z@0$U%yzozdg?t_>?+M=VSObx;JfbX{~H{-*7#+z@MSi8C;m9Y9@}fG76vljcYzLxTeXZA zDUTK@ufgdU7KEXe)3xcH$-8Rx6x><>R!E867uXgqF6y^~tef1nU`qgOz=IU_I9{l5 z)1bR`Hv@Zm9jPo*Ukh*z#LYz|iLsNg0gIbVYZ+yxQ09BV4BLT~mt}Ejgein6v<-GU zn1y}V?x%>^Tl1(hjXJ*_?Ao4pajgW{-tzwqXA$hKFW`Df7VkZ-<<7oqZ>9U`uYa3; zVjf`H5$?qb?7M?8Z)Gr&{r$`x^P=&EFMU3-mEFp1P4#m~J-&rYCG`WiT9WN&+_`rX zThqbr?SuVkcNfpc){HyfpD7>er?(IHXWZQ!*Eh^JPV}cx_u;KssXIHUI~T2Dwm*wi zoJFl8{n`FpRO>owE)Jz@tiVxsVYpf%P4DS#U4teJm{EhL7J>C;y&+dPf=^$e#)}N3 zUlGDI;uk`$V}#8WYzsIQm#ph#TH~_Uhpgqw%f0MdTT5?k6>+SzbaRHBE_oVpjTS?9 z(K%TwtmA41G=V2?6>1&6R|~M3bUTPu3aj9I97vmHEi`Y1=4xnG)PDznF0226us3y) z=4(v@)c<78?q^V$8Ql))0tEkief0x;`Tj@vgR(6L1ws2(sn&V?QQ(E&!x#1Y40u3m zhVlER=;nJFuAWN*;f%=l0Za1GYRm18)BIQX;RFK;PD2`^{vDI|A^=0S0mWw{v`IbS z8Nca=HfU22rm;+1n=p-`Ei;lYU4F5A@zU~@r(eEwQQu#w!VaaVE)&&XXy2+dZm9pp zc3F#e8EM<0OAw6w6wbrUEd{$2Y;0jtV(NEMy0A;sh3c=d=8P72-~k|LEXgGw1AUo?>y2ns?z@CJjJyo~qSFn+gdi>ix;P>fm2ex9Q`6COlo?JT!d{sjrqBq| zVJ0pJ2WM1?zwg9+>1dGK#CPJzgPEv0PI~0g1El`v+ zU~vLRI)fB%d$1NXnV^@jM?s$g4W}S|DJwe8RDu^P=XC8s&JkWfg{Q^ciWp4U3a*@|Za z-l7+U=$nJwLG^qll5(=@SMfFHw}Pp+;iI!fc_j}EE-stZiK%cI4j1SWTRB{%(=F!u z*#Ot*>hn-eWN^`pHFiUy$&9ufEYK2+FMIZ4bV!LQzrKi+**g>Lm2oC8&Ll>f0X`d! zl(l5EaWA+-FtauFn$fyy8^OLCyd3w8X>7r#wYTWMrK6q4}F!5M=C8$7NgMq0%D7ReuWe2Eo9TsTuog7%>yJA+M_B7Ij-apWM zMpD83)W>eLT_~p_Q+I`y5w8L32JWy4`wjC6)eeDB6F64(9t0L9|Hg)OVXaZA`F>Z+ z#Uk9|qU%lXJ)69>+~}K%*f;sfg!DSRO>ylmOiC?aJXh-LcX5r4sZZHv)a! zH1yuA?m(03Ae#GKqR4GTj697w`ffPh@29eJKx#T2=V~i~{eMz26%23riif*`~tNnU>lHZ@%R96$U5gFnmQn+*N}15zCIT?PZ?zWV!23P=$F z=u;@>JF({dCiDIogGU%p8?Ane!M|egI}H940}^w!i<`~88`;l`OkQH}EP~hY_&o%m zQ8__>8VL@=ALN>uJ(*-?&N6c;JXqvhE;lXVVrDM$K!)KG(rG*_!FMuq2>A<4!JBUp zEq{>Pms!m1N7-k_`uRf{$CwfhfHu^WQxVTg96+^(KgS!2two|;bx2(BNL(y+pDPw= z^+b^1PY(z>&JZ2Tt;4K#ljuG2N{gE}c2AvrttZ$<*g1TJ27r$7`ns^+d-PKD6DT`4 z*B@Q$$c14ORBupyCkADGEu#Xi-54#xK~MuiGqyN~1JecY)f7|*X1Xc27NFFXA12Wr zYH~w=ps$bbIjExZ0`Q|aM>L^|=57D@)-l=#R5oh?Re+c$Ow^TX73v(^{g1TJ^naHh zvk}FHHXTSCP=2(lV#tI#M0Cw9@0PgB4~xf*@b_{Wurgp>@v8wXIG{R_>Jf~zT;AZ6 z{9^Bv#>`~1iPMMcuEq7r=$aR6^A4c)AXX0Y@7n+ieZ}_+jNuE_%0#ZEG!7q3d(9D` zC%lJ;BPXC1uH@8Q>cOH-E(e<(?+R3ea#zq0FC%hq{1=|iveMuHP3wQ9=F}F-S9@j1BLwTBiu}9hO+hReC}D zrNblHaQx!dqrqZy6G%;=YU$YIGNV$KxFMEk6o~s6X>0&Cz9MfK9-Lf^vW71nkKxCR zDmFgOa#mzf)vw&$p4{s$-coejhZFKHlql^V>v8ngmh=y=?3M5FubC9JA%fS+ce9fP zcCv502nd)aj=ngwg*#e^IV4{wf2jK(w9m^!4ZleBp}xp}|9Ip2S{sf1dML%%%qWKS zu=vL;9rF{v!SO%*v6UjSRouyj?C0DafMWRZ!;9;VvJ*lKjA?o;0`c)ZJ^_Ao33%dGwGe(U7h5Fp`x!gQpupe(1`i^L4#kc>21iz# zwhv7jsQf+yICZtewu)@)$fR;ZCAYY1hP%cK!N8(zGg;VXu87aSFfdwou*|ke?ge{| z;Kczm5N6J5KIc44*4U;L5((VRpc9{T(rEp;*%rL9~db8zM-jrhO! F{{iqH*l7R& literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_set.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_set.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..16f1bd9f410e7f9b2e30e098d64c627d09348404 GIT binary patch literal 5694 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 Op5|3v#T$RzHU9^bmDzRx literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c143e4d691eea1cb55cffd381678d437b786e46e GIT binary patch literal 3875 zcmZ`+-EP~+6`mRXh@xf1aolW@Cc8q>>{dnXv}qSjgEUB*%`UPVxQX+#snCL@#j#DB zBIV&Iv9%IV)G79=2+${xd)2%_pJi@))mP}v_B%t{v9%6`84hO-hjY$%&UcQU&CZ4l zSL@rq{rQu#jQximj$aNQ?x2jj;lSMSt&VJGa(bY^;uPQ$Ld*=(=bY1*-uo$1YW=Iq$d&i3Xz^PEXBIVTtPdFKa` zZJtkRN${HO@y-YKsh))P>B1K*nMoS2S<=`Oor?*7!rHU{#cA1co159ED(=eFxV!aq zw=dhiaX(AD+5``@RIx6U34Y(#X_3d7ah^zRToN_aXNK`9-V7Yj~MjlDuV%rynVZxqc{cH9q z-aXiJ$?oZo{E^rS)N7LcE!)ntH}bW=C(3{5+Fv zA~$}qx(VfsmulH7P4Jc6y{{Ck7N%uN7RkHPIHgvmdABU3B1>9r$N|%v$J}<2ycg`5YH$P5eS3c<9XWfCr+<)rXKd0Xu~Y z!A_HpF$`Y#^n zPmaBn=1H5Yk8s9e>p`CCG|tkYOj@ghG)r1mGR@apv2I;0+YL1fLDfWO90D^uuvwO_ zn)>~nR6o%$t(gV1QXLvp&5*p?kM)K%mGQG;9R@aDB3B3NX8u?>QJeyrwqsmX6xujl zy<=(z2eznJ-4)vM0~{fOLWi+<2<%U>ST3MrPJ@R)$>qU!KJaRYkgK0z{sdZ95ZxWL zas{1aL~0;3o`}~BgytkJ?r!2GKJH#cK^;G_ZObngx><5UftcV|_L*Z_|CbKItnT8~IK_*e8h ztd{gmhAG=C`JAU;r9s`=C!Uv!V&aMy;F4I3M)eu04ebv>mDAuZfYBGxk1tBmmBf*>%TG!1C>RuQoT_ObhM`8bxK+|c-}1%aO{TM zNm9_Wt|I#?K4;v`BF!rRoJw^!L;f>9?JbjOZD*{f?M4*ek4Rx_X|ceEAD#vXKCdd_ z6IzqU)zK^@|Hc3svoh2i8H!B=J%K#Mu%(@m0R1(QJ1vopUCMcf1eh-%UwX)wUsm}N zdGZ4C8lND`ZL*QOFUFp(jl4bDm!d1!s+E2E3hhf249a!hEZE)aIvnvmOTh2GLGMgv zMinhLCbOVr+NZhiz#ACApHa7AOGRX;?w~Vn z(U&>M6`wF?KTk8cTL7r3@-CrwIFV<$}VNq-i`gT%XqZhqb3h7^+qp=ew$#ksx zm8&@5V-vmu*@(5i32d6kHEN2UEKAC+C+SB$z_!oO${(R)UMLzaQY=4@Wa|r;yG(rN zioj`t#4muxhv!dmEgb5EOHtr?Xx62O*50|4Mlivx+{&#e!vaE&oWy3^+9UvR5v+9! zD*~+T3~#Q;Uhz`C2iY}M^xltct9sW0H7$7nRd@_4O0&iv

)nw+aIvH78CmW%{?G zqRB7u(zIPEAgKT;19W89d9vQcQ><5QeS*=+fJaP3X;YJ#5D}5%eH|36ifWf*HnY~F zLdn)1H!&zFEe9g-123qfeH1i;n#=8a`;y&M-GGRxQH2J2u~`9XBI}ik+yQ0$Zl4y& zmWrH1QHUu*MA5$;MUG}JqVQfiD!iAVr_9PF>&-;+ohv8TmE2xJ!wZ%$71hq>@=2M2 zPO%04fb^pzRaH${M*;ZI){^Q8efwkTo>NB%+e**scA8O4aH}%^Z7N(!G8W2t`)lx) PXmI>Q=(s$*gm&itEIzpF literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..75fa23302cf1fe58b122e9ecf78b3a297d9aaf28 GIT binary patch literal 17350 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 ZF&Wc{_&WsY=d}BYLZ|S{#xEOF{}()RcF6z$ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/req/constructors.py b/venv/lib/python3.8/site-packages/pip/_internal/req/constructors.py new file mode 100644 index 00000000..3f9e7dd7 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/req/constructors.py @@ -0,0 +1,486 @@ +"""Backing implementation for InstallRequirement's various constructors + +The idea here is that these formed a major chunk of InstallRequirement's size +so, moving them and support code dedicated to them outside of that class +helps creates for better understandability for the rest of the code. + +These are meant to be used elsewhere within pip to create instances of +InstallRequirement. +""" + +import logging +import os +import re +from typing import Any, Dict, Optional, Set, Tuple, Union + +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import InvalidRequirement, Requirement +from pip._vendor.packaging.specifiers import Specifier +from pip._vendor.pkg_resources import RequirementParseError, parse_requirements + +from pip._internal.exceptions import InstallationError +from pip._internal.models.index import PyPI, TestPyPI +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.pyproject import make_pyproject_path +from pip._internal.req.req_file import ParsedRequirement +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.filetypes import is_archive_file +from pip._internal.utils.misc import is_installable_dir +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import is_url, vcs + +__all__ = [ + "install_req_from_editable", "install_req_from_line", + "parse_editable" +] + +logger = logging.getLogger(__name__) +operators = Specifier._operators.keys() + + +def _strip_extras(path): + # type: (str) -> Tuple[str, Optional[str]] + m = re.match(r'^(.+)(\[[^\]]+\])$', path) + extras = None + if m: + path_no_extras = m.group(1) + extras = m.group(2) + else: + path_no_extras = path + + return path_no_extras, extras + + +def convert_extras(extras): + # type: (Optional[str]) -> Set[str] + if not extras: + return set() + return Requirement("placeholder" + extras.lower()).extras + + +def parse_editable(editable_req): + # type: (str) -> Tuple[Optional[str], str, Set[str]] + """Parses an editable requirement into: + - a requirement name + - an URL + - extras + - editable options + Accepted requirements: + svn+http://blahblah@rev#egg=Foobar[baz]&subdirectory=version_subdir + .[some_extra] + """ + + url = editable_req + + # If a file path is specified with extras, strip off the extras. + url_no_extras, extras = _strip_extras(url) + + if os.path.isdir(url_no_extras): + setup_py = os.path.join(url_no_extras, 'setup.py') + setup_cfg = os.path.join(url_no_extras, 'setup.cfg') + if not os.path.exists(setup_py) and not os.path.exists(setup_cfg): + msg = ( + 'File "setup.py" or "setup.cfg" not found. Directory cannot be ' + 'installed in editable mode: {}' + .format(os.path.abspath(url_no_extras)) + ) + pyproject_path = make_pyproject_path(url_no_extras) + if os.path.isfile(pyproject_path): + msg += ( + '\n(A "pyproject.toml" file was found, but editable ' + 'mode currently requires a setuptools-based build.)' + ) + raise InstallationError(msg) + + # Treating it as code that has already been checked out + url_no_extras = path_to_url(url_no_extras) + + if url_no_extras.lower().startswith('file:'): + package_name = Link(url_no_extras).egg_fragment + if extras: + return ( + package_name, + url_no_extras, + Requirement("placeholder" + extras.lower()).extras, + ) + else: + return package_name, url_no_extras, set() + + for version_control in vcs: + if url.lower().startswith(f'{version_control}:'): + url = f'{version_control}+{url}' + break + + link = Link(url) + + if not link.is_vcs: + backends = ", ".join(vcs.all_schemes) + raise InstallationError( + f'{editable_req} is not a valid editable requirement. ' + f'It should either be a path to a local project or a VCS URL ' + f'(beginning with {backends}).' + ) + + package_name = link.egg_fragment + if not package_name: + raise InstallationError( + "Could not detect requirement name for '{}', please specify one " + "with #egg=your_package_name".format(editable_req) + ) + return package_name, url, set() + + +def deduce_helpful_msg(req): + # type: (str) -> str + """Returns helpful msg in case requirements file does not exist, + or cannot be parsed. + + :params req: Requirements file path + """ + msg = "" + if os.path.exists(req): + msg = " The path does exist. " + # Try to parse and check if it is a requirements file. + try: + with open(req) as fp: + # parse first line only + next(parse_requirements(fp.read())) + msg += ( + "The argument you provided " + "({}) appears to be a" + " requirements file. If that is the" + " case, use the '-r' flag to install" + " the packages specified within it." + ).format(req) + except RequirementParseError: + logger.debug( + "Cannot parse '%s' as requirements file", req, exc_info=True + ) + else: + msg += f" File '{req}' does not exist." + return msg + + +class RequirementParts: + def __init__( + self, + requirement, # type: Optional[Requirement] + link, # type: Optional[Link] + markers, # type: Optional[Marker] + extras, # type: Set[str] + ): + self.requirement = requirement + self.link = link + self.markers = markers + self.extras = extras + + +def parse_req_from_editable(editable_req): + # type: (str) -> RequirementParts + name, url, extras_override = parse_editable(editable_req) + + if name is not None: + try: + req = Requirement(name) # type: Optional[Requirement] + except InvalidRequirement: + raise InstallationError(f"Invalid requirement: '{name}'") + else: + req = None + + link = Link(url) + + return RequirementParts(req, link, None, extras_override) + + +# ---- The actual constructors follow ---- + + +def install_req_from_editable( + editable_req, # type: str + comes_from=None, # type: Optional[Union[InstallRequirement, str]] + use_pep517=None, # type: Optional[bool] + isolated=False, # type: bool + options=None, # type: Optional[Dict[str, Any]] + constraint=False, # type: bool + user_supplied=False, # type: bool +): + # type: (...) -> InstallRequirement + + parts = parse_req_from_editable(editable_req) + + return InstallRequirement( + parts.requirement, + comes_from=comes_from, + user_supplied=user_supplied, + editable=True, + link=parts.link, + constraint=constraint, + use_pep517=use_pep517, + isolated=isolated, + install_options=options.get("install_options", []) if options else [], + global_options=options.get("global_options", []) if options else [], + hash_options=options.get("hashes", {}) if options else {}, + extras=parts.extras, + ) + + +def _looks_like_path(name): + # type: (str) -> bool + """Checks whether the string "looks like" a path on the filesystem. + + This does not check whether the target actually exists, only judge from the + appearance. + + Returns true if any of the following conditions is true: + * a path separator is found (either os.path.sep or os.path.altsep); + * a dot is found (which represents the current directory). + """ + if os.path.sep in name: + return True + if os.path.altsep is not None and os.path.altsep in name: + return True + if name.startswith("."): + return True + return False + + +def _get_url_from_path(path, name): + # type: (str, str) -> Optional[str] + """ + First, it checks whether a provided path is an installable directory + (e.g. it has a setup.py). If it is, returns the path. + + If false, check if the path is an archive file (such as a .whl). + The function checks if the path is a file. If false, if the path has + an @, it will treat it as a PEP 440 URL requirement and return the path. + """ + if _looks_like_path(name) and os.path.isdir(path): + if is_installable_dir(path): + return path_to_url(path) + raise InstallationError( + f"Directory {name!r} is not installable. Neither 'setup.py' " + "nor 'pyproject.toml' found." + ) + if not is_archive_file(path): + return None + if os.path.isfile(path): + return path_to_url(path) + urlreq_parts = name.split('@', 1) + if len(urlreq_parts) >= 2 and not _looks_like_path(urlreq_parts[0]): + # If the path contains '@' and the part before it does not look + # like a path, try to treat it as a PEP 440 URL req instead. + return None + logger.warning( + 'Requirement %r looks like a filename, but the ' + 'file does not exist', + name + ) + return path_to_url(path) + + +def parse_req_from_line(name, line_source): + # type: (str, Optional[str]) -> RequirementParts + if is_url(name): + marker_sep = '; ' + else: + marker_sep = ';' + if marker_sep in name: + name, markers_as_string = name.split(marker_sep, 1) + markers_as_string = markers_as_string.strip() + if not markers_as_string: + markers = None + else: + markers = Marker(markers_as_string) + else: + markers = None + name = name.strip() + req_as_string = None + path = os.path.normpath(os.path.abspath(name)) + link = None + extras_as_string = None + + if is_url(name): + link = Link(name) + else: + p, extras_as_string = _strip_extras(path) + url = _get_url_from_path(p, name) + if url is not None: + link = Link(url) + + # it's a local file, dir, or url + if link: + # Handle relative file URLs + if link.scheme == 'file' and re.search(r'\.\./', link.url): + link = Link( + path_to_url(os.path.normpath(os.path.abspath(link.path)))) + # wheel file + if link.is_wheel: + wheel = Wheel(link.filename) # can raise InvalidWheelFilename + req_as_string = f"{wheel.name}=={wheel.version}" + else: + # set the req to the egg fragment. when it's not there, this + # will become an 'unnamed' requirement + req_as_string = link.egg_fragment + + # a requirement specifier + else: + req_as_string = name + + extras = convert_extras(extras_as_string) + + def with_source(text): + # type: (str) -> str + if not line_source: + return text + return f'{text} (from {line_source})' + + def _parse_req_string(req_as_string: str) -> Requirement: + try: + req = Requirement(req_as_string) + except InvalidRequirement: + if os.path.sep in req_as_string: + add_msg = "It looks like a path." + add_msg += deduce_helpful_msg(req_as_string) + elif ('=' in req_as_string and + not any(op in req_as_string for op in operators)): + add_msg = "= is not a valid operator. Did you mean == ?" + else: + add_msg = '' + msg = with_source( + f'Invalid requirement: {req_as_string!r}' + ) + if add_msg: + msg += f'\nHint: {add_msg}' + raise InstallationError(msg) + else: + # Deprecate extras after specifiers: "name>=1.0[extras]" + # This currently works by accident because _strip_extras() parses + # any extras in the end of the string and those are saved in + # RequirementParts + for spec in req.specifier: + spec_str = str(spec) + if spec_str.endswith(']'): + msg = f"Extras after version '{spec_str}'." + raise InstallationError(msg) + return req + + if req_as_string is not None: + req = _parse_req_string(req_as_string) # type: Optional[Requirement] + else: + req = None + + return RequirementParts(req, link, markers, extras) + + +def install_req_from_line( + name, # type: str + comes_from=None, # type: Optional[Union[str, InstallRequirement]] + use_pep517=None, # type: Optional[bool] + isolated=False, # type: bool + options=None, # type: Optional[Dict[str, Any]] + constraint=False, # type: bool + line_source=None, # type: Optional[str] + user_supplied=False, # type: bool +): + # type: (...) -> InstallRequirement + """Creates an InstallRequirement from a name, which might be a + requirement, directory containing 'setup.py', filename, or URL. + + :param line_source: An optional string describing where the line is from, + for logging purposes in case of an error. + """ + parts = parse_req_from_line(name, line_source) + + return InstallRequirement( + parts.requirement, comes_from, link=parts.link, markers=parts.markers, + use_pep517=use_pep517, isolated=isolated, + install_options=options.get("install_options", []) if options else [], + global_options=options.get("global_options", []) if options else [], + hash_options=options.get("hashes", {}) if options else {}, + constraint=constraint, + extras=parts.extras, + user_supplied=user_supplied, + ) + + +def install_req_from_req_string( + req_string, # type: str + comes_from=None, # type: Optional[InstallRequirement] + isolated=False, # type: bool + use_pep517=None, # type: Optional[bool] + user_supplied=False, # type: bool +): + # type: (...) -> InstallRequirement + try: + req = Requirement(req_string) + except InvalidRequirement: + raise InstallationError(f"Invalid requirement: '{req_string}'") + + domains_not_allowed = [ + PyPI.file_storage_domain, + TestPyPI.file_storage_domain, + ] + if (req.url and comes_from and comes_from.link and + comes_from.link.netloc in domains_not_allowed): + # Explicitly disallow pypi packages that depend on external urls + raise InstallationError( + "Packages installed from PyPI cannot depend on packages " + "which are not also hosted on PyPI.\n" + "{} depends on {} ".format(comes_from.name, req) + ) + + return InstallRequirement( + req, + comes_from, + isolated=isolated, + use_pep517=use_pep517, + user_supplied=user_supplied, + ) + + +def install_req_from_parsed_requirement( + parsed_req, # type: ParsedRequirement + isolated=False, # type: bool + use_pep517=None, # type: Optional[bool] + user_supplied=False, # type: bool +): + # type: (...) -> InstallRequirement + if parsed_req.is_editable: + req = install_req_from_editable( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + constraint=parsed_req.constraint, + isolated=isolated, + user_supplied=user_supplied, + ) + + else: + req = install_req_from_line( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + isolated=isolated, + options=parsed_req.options, + constraint=parsed_req.constraint, + line_source=parsed_req.line_source, + user_supplied=user_supplied, + ) + return req + + +def install_req_from_link_and_ireq(link, ireq): + # type: (Link, InstallRequirement) -> InstallRequirement + return InstallRequirement( + req=ireq.req, + comes_from=ireq.comes_from, + editable=ireq.editable, + link=link, + markers=ireq.markers, + use_pep517=ireq.use_pep517, + isolated=ireq.isolated, + install_options=ireq.install_options, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + ) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/req/req_file.py b/venv/lib/python3.8/site-packages/pip/_internal/req/req_file.py new file mode 100644 index 00000000..f6bdfd19 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/req/req_file.py @@ -0,0 +1,557 @@ +""" +Requirements file parsing +""" + +import optparse +import os +import re +import shlex +import urllib.parse +from optparse import Values +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Dict, + Iterator, + List, + NoReturn, + Optional, + Tuple, +) + +from pip._internal.cli import cmdoptions +from pip._internal.exceptions import InstallationError, RequirementsFileParseError +from pip._internal.models.search_scope import SearchScope +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status +from pip._internal.utils.encoding import auto_decode +from pip._internal.utils.urls import get_url_scheme, url_to_path + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + +__all__ = ['parse_requirements'] + +ReqFileLines = Iterator[Tuple[int, str]] + +LineParser = Callable[[str], Tuple[str, Values]] + +SCHEME_RE = re.compile(r'^(http|https|file):', re.I) +COMMENT_RE = re.compile(r'(^|\s+)#.*$') + +# Matches environment variable-style values in '${MY_VARIABLE_1}' with the +# variable name consisting of only uppercase letters, digits or the '_' +# (underscore). This follows the POSIX standard defined in IEEE Std 1003.1, +# 2013 Edition. +ENV_VAR_RE = re.compile(r'(?P\$\{(?P[A-Z0-9_]+)\})') + +SUPPORTED_OPTIONS = [ + cmdoptions.index_url, + cmdoptions.extra_index_url, + cmdoptions.no_index, + cmdoptions.constraints, + cmdoptions.requirements, + cmdoptions.editable, + cmdoptions.find_links, + cmdoptions.no_binary, + cmdoptions.only_binary, + cmdoptions.prefer_binary, + cmdoptions.require_hashes, + cmdoptions.pre, + cmdoptions.trusted_host, + cmdoptions.use_new_feature, +] # type: List[Callable[..., optparse.Option]] + +# options to be passed to requirements +SUPPORTED_OPTIONS_REQ = [ + cmdoptions.install_options, + cmdoptions.global_options, + cmdoptions.hash, +] # type: List[Callable[..., optparse.Option]] + +# the 'dest' string values +SUPPORTED_OPTIONS_REQ_DEST = [str(o().dest) for o in SUPPORTED_OPTIONS_REQ] + + +class ParsedRequirement: + def __init__( + self, + requirement, # type:str + is_editable, # type: bool + comes_from, # type: str + constraint, # type: bool + options=None, # type: Optional[Dict[str, Any]] + line_source=None, # type: Optional[str] + ): + # type: (...) -> None + self.requirement = requirement + self.is_editable = is_editable + self.comes_from = comes_from + self.options = options + self.constraint = constraint + self.line_source = line_source + + +class ParsedLine: + def __init__( + self, + filename, # type: str + lineno, # type: int + args, # type: str + opts, # type: Values + constraint, # type: bool + ): + # type: (...) -> None + self.filename = filename + self.lineno = lineno + self.opts = opts + self.constraint = constraint + + if args: + self.is_requirement = True + self.is_editable = False + self.requirement = args + elif opts.editables: + self.is_requirement = True + self.is_editable = True + # We don't support multiple -e on one line + self.requirement = opts.editables[0] + else: + self.is_requirement = False + + +def parse_requirements( + filename, # type: str + session, # type: PipSession + finder=None, # type: Optional[PackageFinder] + options=None, # type: Optional[optparse.Values] + constraint=False, # type: bool +): + # type: (...) -> Iterator[ParsedRequirement] + """Parse a requirements file and yield ParsedRequirement instances. + + :param filename: Path or url of requirements file. + :param session: PipSession instance. + :param finder: Instance of pip.index.PackageFinder. + :param options: cli options. + :param constraint: If true, parsing a constraint file rather than + requirements file. + """ + line_parser = get_line_parser(finder) + parser = RequirementsFileParser(session, line_parser) + + for parsed_line in parser.parse(filename, constraint): + parsed_req = handle_line( + parsed_line, + options=options, + finder=finder, + session=session + ) + if parsed_req is not None: + yield parsed_req + + +def preprocess(content): + # type: (str) -> ReqFileLines + """Split, filter, and join lines, and return a line iterator + + :param content: the content of the requirements file + """ + lines_enum = enumerate(content.splitlines(), start=1) # type: ReqFileLines + lines_enum = join_lines(lines_enum) + lines_enum = ignore_comments(lines_enum) + lines_enum = expand_env_variables(lines_enum) + return lines_enum + + +def handle_requirement_line( + line, # type: ParsedLine + options=None, # type: Optional[optparse.Values] +): + # type: (...) -> ParsedRequirement + + # preserve for the nested code path + line_comes_from = '{} {} (line {})'.format( + '-c' if line.constraint else '-r', line.filename, line.lineno, + ) + + assert line.is_requirement + + if line.is_editable: + # For editable requirements, we don't support per-requirement + # options, so just return the parsed requirement. + return ParsedRequirement( + requirement=line.requirement, + is_editable=line.is_editable, + comes_from=line_comes_from, + constraint=line.constraint, + ) + else: + if options: + # Disable wheels if the user has specified build options + cmdoptions.check_install_build_global(options, line.opts) + + # get the options that apply to requirements + req_options = {} + for dest in SUPPORTED_OPTIONS_REQ_DEST: + if dest in line.opts.__dict__ and line.opts.__dict__[dest]: + req_options[dest] = line.opts.__dict__[dest] + + line_source = f'line {line.lineno} of {line.filename}' + return ParsedRequirement( + requirement=line.requirement, + is_editable=line.is_editable, + comes_from=line_comes_from, + constraint=line.constraint, + options=req_options, + line_source=line_source, + ) + + +def handle_option_line( + opts, # type: Values + filename, # type: str + lineno, # type: int + finder=None, # type: Optional[PackageFinder] + options=None, # type: Optional[optparse.Values] + session=None, # type: Optional[PipSession] +): + # type: (...) -> None + + if options: + # percolate options upward + if opts.require_hashes: + options.require_hashes = opts.require_hashes + if opts.features_enabled: + options.features_enabled.extend( + f for f in opts.features_enabled + if f not in options.features_enabled + ) + + # set finder options + if finder: + find_links = finder.find_links + index_urls = finder.index_urls + if opts.index_url: + index_urls = [opts.index_url] + if opts.no_index is True: + index_urls = [] + if opts.extra_index_urls: + index_urls.extend(opts.extra_index_urls) + if opts.find_links: + # FIXME: it would be nice to keep track of the source + # of the find_links: support a find-links local path + # relative to a requirements file. + value = opts.find_links[0] + req_dir = os.path.dirname(os.path.abspath(filename)) + relative_to_reqs_file = os.path.join(req_dir, value) + if os.path.exists(relative_to_reqs_file): + value = relative_to_reqs_file + find_links.append(value) + + if session: + # We need to update the auth urls in session + session.update_index_urls(index_urls) + + search_scope = SearchScope( + find_links=find_links, + index_urls=index_urls, + ) + finder.search_scope = search_scope + + if opts.pre: + finder.set_allow_all_prereleases() + + if opts.prefer_binary: + finder.set_prefer_binary() + + if session: + for host in opts.trusted_hosts or []: + source = f'line {lineno} of {filename}' + session.add_trusted_host(host, source=source) + + +def handle_line( + line, # type: ParsedLine + options=None, # type: Optional[optparse.Values] + finder=None, # type: Optional[PackageFinder] + session=None, # type: Optional[PipSession] +): + # type: (...) -> Optional[ParsedRequirement] + """Handle a single parsed requirements line; This can result in + creating/yielding requirements, or updating the finder. + + :param line: The parsed line to be processed. + :param options: CLI options. + :param finder: The finder - updated by non-requirement lines. + :param session: The session - updated by non-requirement lines. + + Returns a ParsedRequirement object if the line is a requirement line, + otherwise returns None. + + For lines that contain requirements, the only options that have an effect + are from SUPPORTED_OPTIONS_REQ, and they are scoped to the + requirement. Other options from SUPPORTED_OPTIONS may be present, but are + ignored. + + For lines that do not contain requirements, the only options that have an + effect are from SUPPORTED_OPTIONS. Options from SUPPORTED_OPTIONS_REQ may + be present, but are ignored. These lines may contain multiple options + (although our docs imply only one is supported), and all our parsed and + affect the finder. + """ + + if line.is_requirement: + parsed_req = handle_requirement_line(line, options) + return parsed_req + else: + handle_option_line( + line.opts, + line.filename, + line.lineno, + finder, + options, + session, + ) + return None + + +class RequirementsFileParser: + def __init__( + self, + session, # type: PipSession + line_parser, # type: LineParser + ): + # type: (...) -> None + self._session = session + self._line_parser = line_parser + + def parse(self, filename, constraint): + # type: (str, bool) -> Iterator[ParsedLine] + """Parse a given file, yielding parsed lines. + """ + yield from self._parse_and_recurse(filename, constraint) + + def _parse_and_recurse(self, filename, constraint): + # type: (str, bool) -> Iterator[ParsedLine] + for line in self._parse_file(filename, constraint): + if ( + not line.is_requirement and + (line.opts.requirements or line.opts.constraints) + ): + # parse a nested requirements file + if line.opts.requirements: + req_path = line.opts.requirements[0] + nested_constraint = False + else: + req_path = line.opts.constraints[0] + nested_constraint = True + + # original file is over http + if SCHEME_RE.search(filename): + # do a url join so relative paths work + req_path = urllib.parse.urljoin(filename, req_path) + # original file and nested file are paths + elif not SCHEME_RE.search(req_path): + # do a join so relative paths work + req_path = os.path.join( + os.path.dirname(filename), req_path, + ) + + yield from self._parse_and_recurse(req_path, nested_constraint) + else: + yield line + + def _parse_file(self, filename, constraint): + # type: (str, bool) -> Iterator[ParsedLine] + _, content = get_file_content(filename, self._session) + + lines_enum = preprocess(content) + + for line_number, line in lines_enum: + try: + args_str, opts = self._line_parser(line) + except OptionParsingError as e: + # add offending line + msg = f'Invalid requirement: {line}\n{e.msg}' + raise RequirementsFileParseError(msg) + + yield ParsedLine( + filename, + line_number, + args_str, + opts, + constraint, + ) + + +def get_line_parser(finder): + # type: (Optional[PackageFinder]) -> LineParser + def parse_line(line): + # type: (str) -> Tuple[str, Values] + # Build new parser for each line since it accumulates appendable + # options. + parser = build_parser() + defaults = parser.get_default_values() + defaults.index_url = None + if finder: + defaults.format_control = finder.format_control + + args_str, options_str = break_args_options(line) + + opts, _ = parser.parse_args(shlex.split(options_str), defaults) + + return args_str, opts + + return parse_line + + +def break_args_options(line): + # type: (str) -> Tuple[str, str] + """Break up the line into an args and options string. We only want to shlex + (and then optparse) the options, not the args. args can contain markers + which are corrupted by shlex. + """ + tokens = line.split(' ') + args = [] + options = tokens[:] + for token in tokens: + if token.startswith('-') or token.startswith('--'): + break + else: + args.append(token) + options.pop(0) + return ' '.join(args), ' '.join(options) + + +class OptionParsingError(Exception): + def __init__(self, msg): + # type: (str) -> None + self.msg = msg + + +def build_parser(): + # type: () -> optparse.OptionParser + """ + Return a parser for parsing requirement lines + """ + parser = optparse.OptionParser(add_help_option=False) + + option_factories = SUPPORTED_OPTIONS + SUPPORTED_OPTIONS_REQ + for option_factory in option_factories: + option = option_factory() + parser.add_option(option) + + # By default optparse sys.exits on parsing errors. We want to wrap + # that in our own exception. + def parser_exit(self, msg): + # type: (Any, str) -> NoReturn + raise OptionParsingError(msg) + # NOTE: mypy disallows assigning to a method + # https://github.com/python/mypy/issues/2427 + parser.exit = parser_exit # type: ignore + + return parser + + +def join_lines(lines_enum): + # type: (ReqFileLines) -> ReqFileLines + """Joins a line ending in '\' with the previous line (except when following + comments). The joined line takes on the index of the first line. + """ + primary_line_number = None + new_line = [] # type: List[str] + for line_number, line in lines_enum: + if not line.endswith('\\') or COMMENT_RE.match(line): + if COMMENT_RE.match(line): + # this ensures comments are always matched later + line = ' ' + line + if new_line: + new_line.append(line) + assert primary_line_number is not None + yield primary_line_number, ''.join(new_line) + new_line = [] + else: + yield line_number, line + else: + if not new_line: + primary_line_number = line_number + new_line.append(line.strip('\\')) + + # last line contains \ + if new_line: + assert primary_line_number is not None + yield primary_line_number, ''.join(new_line) + + # TODO: handle space after '\'. + + +def ignore_comments(lines_enum): + # type: (ReqFileLines) -> ReqFileLines + """ + Strips comments and filter empty lines. + """ + for line_number, line in lines_enum: + line = COMMENT_RE.sub('', line) + line = line.strip() + if line: + yield line_number, line + + +def expand_env_variables(lines_enum): + # type: (ReqFileLines) -> ReqFileLines + """Replace all environment variables that can be retrieved via `os.getenv`. + + The only allowed format for environment variables defined in the + requirement file is `${MY_VARIABLE_1}` to ensure two things: + + 1. Strings that contain a `$` aren't accidentally (partially) expanded. + 2. Ensure consistency across platforms for requirement files. + + These points are the result of a discussion on the `github pull + request #3514 `_. + + Valid characters in variable names follow the `POSIX standard + `_ and are limited + to uppercase letter, digits and the `_` (underscore). + """ + for line_number, line in lines_enum: + for env_var, var_name in ENV_VAR_RE.findall(line): + value = os.getenv(var_name) + if not value: + continue + + line = line.replace(env_var, value) + + yield line_number, line + + +def get_file_content(url, session): + # type: (str, PipSession) -> Tuple[str, str] + """Gets the content of a file; it may be a filename, file: URL, or + http: URL. Returns (location, content). Content is unicode. + Respects # -*- coding: declarations on the retrieved files. + + :param url: File path or url. + :param session: PipSession instance. + """ + scheme = get_url_scheme(url) + + if scheme in ['http', 'https']: + # FIXME: catch some errors + resp = session.get(url) + raise_for_status(resp) + return resp.url, resp.text + + elif scheme == 'file': + url = url_to_path(url) + + try: + with open(url, 'rb') as f: + content = auto_decode(f.read()) + except OSError as exc: + raise InstallationError( + f'Could not open requirements file: {exc}' + ) + return url, content diff --git a/venv/lib/python3.8/site-packages/pip/_internal/req/req_install.py b/venv/lib/python3.8/site-packages/pip/_internal/req/req_install.py new file mode 100644 index 00000000..55c17ac8 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/req/req_install.py @@ -0,0 +1,873 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import logging +import os +import shutil +import sys +import uuid +import zipfile +from typing import Any, Dict, Iterable, List, Optional, Sequence, Union + +from pip._vendor import pkg_resources, six +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.pep517.wrappers import Pep517HookCaller +from pip._vendor.pkg_resources import Distribution + +from pip._internal.build_env import BuildEnvironment, NoOpBuildEnvironment +from pip._internal.exceptions import InstallationError +from pip._internal.locations import get_scheme +from pip._internal.models.link import Link +from pip._internal.operations.build.metadata import generate_metadata +from pip._internal.operations.build.metadata_legacy import ( + generate_metadata as generate_metadata_legacy, +) +from pip._internal.operations.install.editable_legacy import ( + install_editable as install_editable_legacy, +) +from pip._internal.operations.install.legacy import LegacyInstallFailure +from pip._internal.operations.install.legacy import install as install_legacy +from pip._internal.operations.install.wheel import install_wheel +from pip._internal.pyproject import load_pyproject_toml, make_pyproject_path +from pip._internal.req.req_uninstall import UninstallPathSet +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.direct_url_helpers import direct_url_from_link +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ( + ask_path_exists, + backup_dir, + display_path, + dist_in_site_packages, + dist_in_usersite, + get_distribution, + hide_url, + redact_auth_from_url, +) +from pip._internal.utils.packaging import get_metadata +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.virtualenv import running_under_virtualenv +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +def _get_dist(metadata_directory): + # type: (str) -> Distribution + """Return a pkg_resources.Distribution for the provided + metadata directory. + """ + dist_dir = metadata_directory.rstrip(os.sep) + + # Build a PathMetadata object, from path to metadata. :wink: + base_dir, dist_dir_name = os.path.split(dist_dir) + metadata = pkg_resources.PathMetadata(base_dir, dist_dir) + + # Determine the correct Distribution object type. + if dist_dir.endswith(".egg-info"): + dist_cls = pkg_resources.Distribution + dist_name = os.path.splitext(dist_dir_name)[0] + else: + assert dist_dir.endswith(".dist-info") + dist_cls = pkg_resources.DistInfoDistribution + dist_name = os.path.splitext(dist_dir_name)[0].split("-")[0] + + return dist_cls( + base_dir, + project_name=dist_name, + metadata=metadata, + ) + + +class InstallRequirement: + """ + Represents something that may be installed later on, may have information + about where to fetch the relevant requirement and also contains logic for + installing the said requirement. + """ + + def __init__( + self, + req, # type: Optional[Requirement] + comes_from, # type: Optional[Union[str, InstallRequirement]] + editable=False, # type: bool + link=None, # type: Optional[Link] + markers=None, # type: Optional[Marker] + use_pep517=None, # type: Optional[bool] + isolated=False, # type: bool + install_options=None, # type: Optional[List[str]] + global_options=None, # type: Optional[List[str]] + hash_options=None, # type: Optional[Dict[str, List[str]]] + constraint=False, # type: bool + extras=(), # type: Iterable[str] + user_supplied=False, # type: bool + ): + # type: (...) -> None + assert req is None or isinstance(req, Requirement), req + self.req = req + self.comes_from = comes_from + self.constraint = constraint + self.editable = editable + self.legacy_install_reason = None # type: Optional[int] + + # source_dir is the local directory where the linked requirement is + # located, or unpacked. In case unpacking is needed, creating and + # populating source_dir is done by the RequirementPreparer. Note this + # is not necessarily the directory where pyproject.toml or setup.py is + # located - that one is obtained via unpacked_source_directory. + self.source_dir = None # type: Optional[str] + if self.editable: + assert link + if link.is_file: + self.source_dir = os.path.normpath( + os.path.abspath(link.file_path) + ) + + if link is None and req and req.url: + # PEP 508 URL requirement + link = Link(req.url) + self.link = self.original_link = link + self.original_link_is_in_wheel_cache = False + + # Path to any downloaded or already-existing package. + self.local_file_path = None # type: Optional[str] + if self.link and self.link.is_file: + self.local_file_path = self.link.file_path + + if extras: + self.extras = extras + elif req: + self.extras = { + pkg_resources.safe_extra(extra) for extra in req.extras + } + else: + self.extras = set() + if markers is None and req: + markers = req.marker + self.markers = markers + + # This holds the pkg_resources.Distribution object if this requirement + # is already available: + self.satisfied_by = None # type: Optional[Distribution] + # Whether the installation process should try to uninstall an existing + # distribution before installing this requirement. + self.should_reinstall = False + # Temporary build location + self._temp_build_dir = None # type: Optional[TempDirectory] + # Set to True after successful installation + self.install_succeeded = None # type: Optional[bool] + # Supplied options + self.install_options = install_options if install_options else [] + self.global_options = global_options if global_options else [] + self.hash_options = hash_options if hash_options else {} + # Set to True after successful preparation of this requirement + self.prepared = False + # User supplied requirement are explicitly requested for installation + # by the user via CLI arguments or requirements files, as opposed to, + # e.g. dependencies, extras or constraints. + self.user_supplied = user_supplied + + self.isolated = isolated + self.build_env = NoOpBuildEnvironment() # type: BuildEnvironment + + # For PEP 517, the directory where we request the project metadata + # gets stored. We need this to pass to build_wheel, so the backend + # can ensure that the wheel matches the metadata (see the PEP for + # details). + self.metadata_directory = None # type: Optional[str] + + # The static build requirements (from pyproject.toml) + self.pyproject_requires = None # type: Optional[List[str]] + + # Build requirements that we will check are available + self.requirements_to_check = [] # type: List[str] + + # The PEP 517 backend we should use to build the project + self.pep517_backend = None # type: Optional[Pep517HookCaller] + + # Are we using PEP 517 for this requirement? + # After pyproject.toml has been loaded, the only valid values are True + # and False. Before loading, None is valid (meaning "use the default"). + # Setting an explicit value before loading pyproject.toml is supported, + # but after loading this flag should be treated as read only. + self.use_pep517 = use_pep517 + + # This requirement needs more preparation before it can be built + self.needs_more_preparation = False + + def __str__(self): + # type: () -> str + if self.req: + s = str(self.req) + if self.link: + s += ' from {}'.format(redact_auth_from_url(self.link.url)) + elif self.link: + s = redact_auth_from_url(self.link.url) + else: + s = '' + if self.satisfied_by is not None: + s += ' in {}'.format(display_path(self.satisfied_by.location)) + if self.comes_from: + if isinstance(self.comes_from, str): + comes_from = self.comes_from # type: Optional[str] + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += f' (from {comes_from})' + return s + + def __repr__(self): + # type: () -> str + return '<{} object: {} editable={!r}>'.format( + self.__class__.__name__, str(self), self.editable) + + def format_debug(self): + # type: () -> str + """An un-tested helper for getting state, for debugging. + """ + attributes = vars(self) + names = sorted(attributes) + + state = ( + "{}={!r}".format(attr, attributes[attr]) for attr in sorted(names) + ) + return '<{name} object: {{{state}}}>'.format( + name=self.__class__.__name__, + state=", ".join(state), + ) + + # Things that are valid for all kinds of requirements? + @property + def name(self): + # type: () -> Optional[str] + if self.req is None: + return None + return pkg_resources.safe_name(self.req.name) + + @property + def specifier(self): + # type: () -> SpecifierSet + return self.req.specifier + + @property + def is_pinned(self): + # type: () -> bool + """Return whether I am pinned to an exact version. + + For example, some-package==1.2 is pinned; some-package>1.2 is not. + """ + specifiers = self.specifier + return (len(specifiers) == 1 and + next(iter(specifiers)).operator in {'==', '==='}) + + def match_markers(self, extras_requested=None): + # type: (Optional[Iterable[str]]) -> bool + if not extras_requested: + # Provide an extra to safely evaluate the markers + # without matching any extra + extras_requested = ('',) + if self.markers is not None: + return any( + self.markers.evaluate({'extra': extra}) + for extra in extras_requested) + else: + return True + + @property + def has_hash_options(self): + # type: () -> bool + """Return whether any known-good hashes are specified as options. + + These activate --require-hashes mode; hashes specified as part of a + URL do not. + + """ + return bool(self.hash_options) + + def hashes(self, trust_internet=True): + # type: (bool) -> Hashes + """Return a hash-comparer that considers my option- and URL-based + hashes to be known-good. + + Hashes in URLs--ones embedded in the requirements file, not ones + downloaded from an index server--are almost peers with ones from + flags. They satisfy --require-hashes (whether it was implicitly or + explicitly activated) but do not activate it. md5 and sha224 are not + allowed in flags, which should nudge people toward good algos. We + always OR all hashes together, even ones from URLs. + + :param trust_internet: Whether to trust URL-based (#md5=...) hashes + downloaded from the internet, as by populate_link() + + """ + good_hashes = self.hash_options.copy() + link = self.link if trust_internet else self.original_link + if link and link.hash: + good_hashes.setdefault(link.hash_name, []).append(link.hash) + return Hashes(good_hashes) + + def from_path(self): + # type: () -> Optional[str] + """Format a nice indicator to show where this "comes from" + """ + if self.req is None: + return None + s = str(self.req) + if self.comes_from: + if isinstance(self.comes_from, str): + comes_from = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += '->' + comes_from + return s + + def ensure_build_location(self, build_dir, autodelete, parallel_builds): + # type: (str, bool, bool) -> str + assert build_dir is not None + if self._temp_build_dir is not None: + assert self._temp_build_dir.path + return self._temp_build_dir.path + if self.req is None: + # Some systems have /tmp as a symlink which confuses custom + # builds (such as numpy). Thus, we ensure that the real path + # is returned. + self._temp_build_dir = TempDirectory( + kind=tempdir_kinds.REQ_BUILD, globally_managed=True + ) + + return self._temp_build_dir.path + + # This is the only remaining place where we manually determine the path + # for the temporary directory. It is only needed for editables where + # it is the value of the --src option. + + # When parallel builds are enabled, add a UUID to the build directory + # name so multiple builds do not interfere with each other. + dir_name = canonicalize_name(self.name) # type: str + if parallel_builds: + dir_name = f"{dir_name}_{uuid.uuid4().hex}" + + # FIXME: Is there a better place to create the build_dir? (hg and bzr + # need this) + if not os.path.exists(build_dir): + logger.debug('Creating directory %s', build_dir) + os.makedirs(build_dir) + actual_build_dir = os.path.join(build_dir, dir_name) + # `None` indicates that we respect the globally-configured deletion + # settings, which is what we actually want when auto-deleting. + delete_arg = None if autodelete else False + return TempDirectory( + path=actual_build_dir, + delete=delete_arg, + kind=tempdir_kinds.REQ_BUILD, + globally_managed=True, + ).path + + def _set_requirement(self): + # type: () -> None + """Set requirement after generating metadata. + """ + assert self.req is None + assert self.metadata is not None + assert self.source_dir is not None + + # Construct a Requirement object from the generated metadata + if isinstance(parse_version(self.metadata["Version"]), Version): + op = "==" + else: + op = "===" + + self.req = Requirement( + "".join([ + self.metadata["Name"], + op, + self.metadata["Version"], + ]) + ) + + def warn_on_mismatching_name(self): + # type: () -> None + metadata_name = canonicalize_name(self.metadata["Name"]) + if canonicalize_name(self.req.name) == metadata_name: + # Everything is fine. + return + + # If we're here, there's a mismatch. Log a warning about it. + logger.warning( + 'Generating metadata for package %s ' + 'produced metadata for project name %s. Fix your ' + '#egg=%s fragments.', + self.name, metadata_name, self.name + ) + self.req = Requirement(metadata_name) + + def check_if_exists(self, use_user_site): + # type: (bool) -> None + """Find an installed distribution that satisfies or conflicts + with this requirement, and set self.satisfied_by or + self.should_reinstall appropriately. + """ + if self.req is None: + return + existing_dist = get_distribution(self.req.name) + if not existing_dist: + return + + # pkg_resouces may contain a different copy of packaging.version from + # pip in if the downstream distributor does a poor job debundling pip. + # We avoid existing_dist.parsed_version and let SpecifierSet.contains + # parses the version instead. + existing_version = existing_dist.version + version_compatible = ( + existing_version is not None and + self.req.specifier.contains(existing_version, prereleases=True) + ) + if not version_compatible: + self.satisfied_by = None + if use_user_site: + if dist_in_usersite(existing_dist): + self.should_reinstall = True + elif (running_under_virtualenv() and + dist_in_site_packages(existing_dist)): + raise InstallationError( + "Will not install to the user site because it will " + "lack sys.path precedence to {} in {}".format( + existing_dist.project_name, existing_dist.location) + ) + else: + self.should_reinstall = True + else: + if self.editable: + self.should_reinstall = True + # when installing editables, nothing pre-existing should ever + # satisfy + self.satisfied_by = None + else: + self.satisfied_by = existing_dist + + # Things valid for wheels + @property + def is_wheel(self): + # type: () -> bool + if not self.link: + return False + return self.link.is_wheel + + # Things valid for sdists + @property + def unpacked_source_directory(self): + # type: () -> str + return os.path.join( + self.source_dir, + self.link and self.link.subdirectory_fragment or '') + + @property + def setup_py_path(self): + # type: () -> str + assert self.source_dir, f"No source dir for {self}" + setup_py = os.path.join(self.unpacked_source_directory, 'setup.py') + + return setup_py + + @property + def pyproject_toml_path(self): + # type: () -> str + assert self.source_dir, f"No source dir for {self}" + return make_pyproject_path(self.unpacked_source_directory) + + def load_pyproject_toml(self): + # type: () -> None + """Load the pyproject.toml file. + + After calling this routine, all of the attributes related to PEP 517 + processing for this requirement have been set. In particular, the + use_pep517 attribute can be used to determine whether we should + follow the PEP 517 or legacy (setup.py) code path. + """ + pyproject_toml_data = load_pyproject_toml( + self.use_pep517, + self.pyproject_toml_path, + self.setup_py_path, + str(self) + ) + + if pyproject_toml_data is None: + self.use_pep517 = False + return + + self.use_pep517 = True + requires, backend, check, backend_path = pyproject_toml_data + self.requirements_to_check = check + self.pyproject_requires = requires + self.pep517_backend = Pep517HookCaller( + self.unpacked_source_directory, backend, backend_path=backend_path, + ) + + def _generate_metadata(self): + # type: () -> str + """Invokes metadata generator functions, with the required arguments. + """ + if not self.use_pep517: + assert self.unpacked_source_directory + + return generate_metadata_legacy( + build_env=self.build_env, + setup_py_path=self.setup_py_path, + source_dir=self.unpacked_source_directory, + isolated=self.isolated, + details=self.name or f"from {self.link}" + ) + + assert self.pep517_backend is not None + + return generate_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + ) + + def prepare_metadata(self): + # type: () -> None + """Ensure that project metadata is available. + + Under PEP 517, call the backend hook to prepare the metadata. + Under legacy processing, call setup.py egg-info. + """ + assert self.source_dir + + with indent_log(): + self.metadata_directory = self._generate_metadata() + + # Act on the newly generated metadata, based on the name and version. + if not self.name: + self._set_requirement() + else: + self.warn_on_mismatching_name() + + self.assert_source_matches_version() + + @property + def metadata(self): + # type: () -> Any + if not hasattr(self, '_metadata'): + self._metadata = get_metadata(self.get_dist()) + + return self._metadata + + def get_dist(self): + # type: () -> Distribution + return _get_dist(self.metadata_directory) + + def assert_source_matches_version(self): + # type: () -> None + assert self.source_dir + version = self.metadata['version'] + if self.req.specifier and version not in self.req.specifier: + logger.warning( + 'Requested %s, but installing version %s', + self, + version, + ) + else: + logger.debug( + 'Source in %s has version %s, which satisfies requirement %s', + display_path(self.source_dir), + version, + self, + ) + + # For both source distributions and editables + def ensure_has_source_dir( + self, + parent_dir, + autodelete=False, + parallel_builds=False, + ): + # type: (str, bool, bool) -> None + """Ensure that a source_dir is set. + + This will create a temporary build dir if the name of the requirement + isn't known yet. + + :param parent_dir: The ideal pip parent_dir for the source_dir. + Generally src_dir for editables and build_dir for sdists. + :return: self.source_dir + """ + if self.source_dir is None: + self.source_dir = self.ensure_build_location( + parent_dir, + autodelete=autodelete, + parallel_builds=parallel_builds, + ) + + # For editable installations + def update_editable(self): + # type: () -> None + if not self.link: + logger.debug( + "Cannot update repository at %s; repository location is " + "unknown", + self.source_dir, + ) + return + assert self.editable + assert self.source_dir + if self.link.scheme == 'file': + # Static paths don't get updated + return + vcs_backend = vcs.get_backend_for_scheme(self.link.scheme) + # Editable requirements are validated in Requirement constructors. + # So here, if it's neither a path nor a valid VCS URL, it's a bug. + assert vcs_backend, f"Unsupported VCS URL {self.link.url}" + hidden_url = hide_url(self.link.url) + vcs_backend.obtain(self.source_dir, url=hidden_url) + + # Top-level Actions + def uninstall(self, auto_confirm=False, verbose=False): + # type: (bool, bool) -> Optional[UninstallPathSet] + """ + Uninstall the distribution currently satisfying this requirement. + + Prompts before removing or modifying files unless + ``auto_confirm`` is True. + + Refuses to delete or modify files outside of ``sys.prefix`` - + thus uninstallation within a virtual environment can only + modify that virtual environment, even if the virtualenv is + linked to global site-packages. + + """ + assert self.req + dist = get_distribution(self.req.name) + if not dist: + logger.warning("Skipping %s as it is not installed.", self.name) + return None + logger.info('Found existing installation: %s', dist) + + uninstalled_pathset = UninstallPathSet.from_dist(dist) + uninstalled_pathset.remove(auto_confirm, verbose) + return uninstalled_pathset + + def _get_archive_name(self, path, parentdir, rootdir): + # type: (str, str, str) -> str + + def _clean_zip_name(name, prefix): + # type: (str, str) -> str + assert name.startswith(prefix + os.path.sep), ( + f"name {name!r} doesn't start with prefix {prefix!r}" + ) + name = name[len(prefix) + 1:] + name = name.replace(os.path.sep, '/') + return name + + path = os.path.join(parentdir, path) + name = _clean_zip_name(path, rootdir) + return self.name + '/' + name + + def archive(self, build_dir): + # type: (Optional[str]) -> None + """Saves archive to provided build_dir. + + Used for saving downloaded VCS requirements as part of `pip download`. + """ + assert self.source_dir + if build_dir is None: + return + + create_archive = True + archive_name = '{}-{}.zip'.format(self.name, self.metadata["version"]) + archive_path = os.path.join(build_dir, archive_name) + + if os.path.exists(archive_path): + response = ask_path_exists( + 'The file {} exists. (i)gnore, (w)ipe, ' + '(b)ackup, (a)bort '.format( + display_path(archive_path)), + ('i', 'w', 'b', 'a')) + if response == 'i': + create_archive = False + elif response == 'w': + logger.warning('Deleting %s', display_path(archive_path)) + os.remove(archive_path) + elif response == 'b': + dest_file = backup_dir(archive_path) + logger.warning( + 'Backing up %s to %s', + display_path(archive_path), + display_path(dest_file), + ) + shutil.move(archive_path, dest_file) + elif response == 'a': + sys.exit(-1) + + if not create_archive: + return + + zip_output = zipfile.ZipFile( + archive_path, 'w', zipfile.ZIP_DEFLATED, allowZip64=True, + ) + with zip_output: + dir = os.path.normcase( + os.path.abspath(self.unpacked_source_directory) + ) + for dirpath, dirnames, filenames in os.walk(dir): + for dirname in dirnames: + dir_arcname = self._get_archive_name( + dirname, parentdir=dirpath, rootdir=dir, + ) + zipdir = zipfile.ZipInfo(dir_arcname + '/') + zipdir.external_attr = 0x1ED << 16 # 0o755 + zip_output.writestr(zipdir, '') + for filename in filenames: + file_arcname = self._get_archive_name( + filename, parentdir=dirpath, rootdir=dir, + ) + filename = os.path.join(dirpath, filename) + zip_output.write(filename, file_arcname) + + logger.info('Saved %s', display_path(archive_path)) + + def install( + self, + install_options, # type: List[str] + global_options=None, # type: Optional[Sequence[str]] + root=None, # type: Optional[str] + home=None, # type: Optional[str] + prefix=None, # type: Optional[str] + warn_script_location=True, # type: bool + use_user_site=False, # type: bool + pycompile=True # type: bool + ): + # type: (...) -> None + scheme = get_scheme( + self.name, + user=use_user_site, + home=home, + root=root, + isolated=self.isolated, + prefix=prefix, + ) + + global_options = global_options if global_options is not None else [] + if self.editable: + install_editable_legacy( + install_options, + global_options, + prefix=prefix, + home=home, + use_user_site=use_user_site, + name=self.name, + setup_py_path=self.setup_py_path, + isolated=self.isolated, + build_env=self.build_env, + unpacked_source_directory=self.unpacked_source_directory, + ) + self.install_succeeded = True + return + + if self.is_wheel: + assert self.local_file_path + direct_url = None + if self.original_link: + direct_url = direct_url_from_link( + self.original_link, + self.source_dir, + self.original_link_is_in_wheel_cache, + ) + install_wheel( + self.name, + self.local_file_path, + scheme=scheme, + req_description=str(self.req), + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=direct_url, + requested=self.user_supplied, + ) + self.install_succeeded = True + return + + # TODO: Why don't we do this for editable installs? + + # Extend the list of global and install options passed on to + # the setup.py call with the ones from the requirements file. + # Options specified in requirements file override those + # specified on the command line, since the last option given + # to setup.py is the one that is used. + global_options = list(global_options) + self.global_options + install_options = list(install_options) + self.install_options + + try: + success = install_legacy( + install_options=install_options, + global_options=global_options, + root=root, + home=home, + prefix=prefix, + use_user_site=use_user_site, + pycompile=pycompile, + scheme=scheme, + setup_py_path=self.setup_py_path, + isolated=self.isolated, + req_name=self.name, + build_env=self.build_env, + unpacked_source_directory=self.unpacked_source_directory, + req_description=str(self.req), + ) + except LegacyInstallFailure as exc: + self.install_succeeded = False + six.reraise(*exc.parent) + except Exception: + self.install_succeeded = True + raise + + self.install_succeeded = success + + if success and self.legacy_install_reason == 8368: + deprecated( + reason=( + "{} was installed using the legacy 'setup.py install' " + "method, because a wheel could not be built for it.". + format(self.name) + ), + replacement="to fix the wheel build issue reported above", + gone_in=None, + issue=8368, + ) + + +def check_invalid_constraint_type(req): + # type: (InstallRequirement) -> str + + # Check for unsupported forms + problem = "" + if not req.name: + problem = "Unnamed requirements are not allowed as constraints" + elif req.editable: + problem = "Editable requirements are not allowed as constraints" + elif req.extras: + problem = "Constraints cannot have extras" + + if problem: + deprecated( + reason=( + "Constraints are only allowed to take the form of a package " + "name and a version specifier. Other forms were originally " + "permitted as an accident of the implementation, but were " + "undocumented. The new implementation of the resolver no " + "longer supports these forms." + ), + replacement=( + "replacing the constraint with a requirement." + ), + # No plan yet for when the new resolver becomes default + gone_in=None, + issue=8210 + ) + + return problem diff --git a/venv/lib/python3.8/site-packages/pip/_internal/req/req_set.py b/venv/lib/python3.8/site-packages/pip/_internal/req/req_set.py new file mode 100644 index 00000000..59c58435 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/req/req_set.py @@ -0,0 +1,199 @@ +import logging +from collections import OrderedDict +from typing import Dict, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InstallationError +from pip._internal.models.wheel import Wheel +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils import compatibility_tags + +logger = logging.getLogger(__name__) + + +class RequirementSet: + + def __init__(self, check_supported_wheels=True): + # type: (bool) -> None + """Create a RequirementSet. + """ + + self.requirements = OrderedDict() # type: Dict[str, InstallRequirement] + self.check_supported_wheels = check_supported_wheels + + self.unnamed_requirements = [] # type: List[InstallRequirement] + + def __str__(self): + # type: () -> str + requirements = sorted( + (req for req in self.requirements.values() if not req.comes_from), + key=lambda req: canonicalize_name(req.name or ""), + ) + return ' '.join(str(req.req) for req in requirements) + + def __repr__(self): + # type: () -> str + requirements = sorted( + self.requirements.values(), + key=lambda req: canonicalize_name(req.name or ""), + ) + + format_string = '<{classname} object; {count} requirement(s): {reqs}>' + return format_string.format( + classname=self.__class__.__name__, + count=len(requirements), + reqs=', '.join(str(req.req) for req in requirements), + ) + + def add_unnamed_requirement(self, install_req): + # type: (InstallRequirement) -> None + assert not install_req.name + self.unnamed_requirements.append(install_req) + + def add_named_requirement(self, install_req): + # type: (InstallRequirement) -> None + assert install_req.name + + project_name = canonicalize_name(install_req.name) + self.requirements[project_name] = install_req + + def add_requirement( + self, + install_req, # type: InstallRequirement + parent_req_name=None, # type: Optional[str] + extras_requested=None # type: Optional[Iterable[str]] + ): + # type: (...) -> Tuple[List[InstallRequirement], Optional[InstallRequirement]] + """Add install_req as a requirement to install. + + :param parent_req_name: The name of the requirement that needed this + added. The name is used because when multiple unnamed requirements + resolve to the same name, we could otherwise end up with dependency + links that point outside the Requirements set. parent_req must + already be added. Note that None implies that this is a user + supplied requirement, vs an inferred one. + :param extras_requested: an iterable of extras used to evaluate the + environment markers. + :return: Additional requirements to scan. That is either [] if + the requirement is not applicable, or [install_req] if the + requirement is applicable and has just been added. + """ + # If the markers do not match, ignore this requirement. + if not install_req.match_markers(extras_requested): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + install_req.name, install_req.markers, + ) + return [], None + + # If the wheel is not supported, raise an error. + # Should check this after filtering out based on environment markers to + # allow specifying different wheels based on the environment/OS, in a + # single requirements file. + if install_req.link and install_req.link.is_wheel: + wheel = Wheel(install_req.link.filename) + tags = compatibility_tags.get_supported() + if (self.check_supported_wheels and not wheel.supported(tags)): + raise InstallationError( + "{} is not a supported wheel on this platform.".format( + wheel.filename) + ) + + # This next bit is really a sanity check. + assert not install_req.user_supplied or parent_req_name is None, ( + "a user supplied req shouldn't have a parent" + ) + + # Unnamed requirements are scanned again and the requirement won't be + # added as a dependency until after scanning. + if not install_req.name: + self.add_unnamed_requirement(install_req) + return [install_req], None + + try: + existing_req = self.get_requirement( + install_req.name) # type: Optional[InstallRequirement] + except KeyError: + existing_req = None + + has_conflicting_requirement = ( + parent_req_name is None and + existing_req and + not existing_req.constraint and + existing_req.extras == install_req.extras and + existing_req.req and + install_req.req and + existing_req.req.specifier != install_req.req.specifier + ) + if has_conflicting_requirement: + raise InstallationError( + "Double requirement given: {} (already in {}, name={!r})" + .format(install_req, existing_req, install_req.name) + ) + + # When no existing requirement exists, add the requirement as a + # dependency and it will be scanned again after. + if not existing_req: + self.add_named_requirement(install_req) + # We'd want to rescan this requirement later + return [install_req], install_req + + # Assume there's no need to scan, and that we've already + # encountered this for scanning. + if install_req.constraint or not existing_req.constraint: + return [], existing_req + + does_not_satisfy_constraint = ( + install_req.link and + not ( + existing_req.link and + install_req.link.path == existing_req.link.path + ) + ) + if does_not_satisfy_constraint: + raise InstallationError( + "Could not satisfy constraints for '{}': " + "installation from path or url cannot be " + "constrained to a version".format(install_req.name) + ) + # If we're now installing a constraint, mark the existing + # object for real installation. + existing_req.constraint = False + # If we're now installing a user supplied requirement, + # mark the existing object as such. + if install_req.user_supplied: + existing_req.user_supplied = True + existing_req.extras = tuple(sorted( + set(existing_req.extras) | set(install_req.extras) + )) + logger.debug( + "Setting %s extras to: %s", + existing_req, existing_req.extras, + ) + # Return the existing requirement for addition to the parent and + # scanning again. + return [existing_req], existing_req + + def has_requirement(self, name): + # type: (str) -> bool + project_name = canonicalize_name(name) + + return ( + project_name in self.requirements and + not self.requirements[project_name].constraint + ) + + def get_requirement(self, name): + # type: (str) -> InstallRequirement + project_name = canonicalize_name(name) + + if project_name in self.requirements: + return self.requirements[project_name] + + raise KeyError(f"No project with the name {name!r}") + + @property + def all_requirements(self): + # type: () -> List[InstallRequirement] + return self.unnamed_requirements + list(self.requirements.values()) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/req/req_tracker.py b/venv/lib/python3.8/site-packages/pip/_internal/req/req_tracker.py new file mode 100644 index 00000000..542e0d94 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/req/req_tracker.py @@ -0,0 +1,140 @@ +import contextlib +import hashlib +import logging +import os +from types import TracebackType +from typing import Dict, Iterator, Optional, Set, Type, Union + +from pip._internal.models.link import Link +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +@contextlib.contextmanager +def update_env_context_manager(**changes): + # type: (str) -> Iterator[None] + target = os.environ + + # Save values from the target and change them. + non_existent_marker = object() + saved_values = {} # type: Dict[str, Union[object, str]] + for name, new_value in changes.items(): + try: + saved_values[name] = target[name] + except KeyError: + saved_values[name] = non_existent_marker + target[name] = new_value + + try: + yield + finally: + # Restore original values in the target. + for name, original_value in saved_values.items(): + if original_value is non_existent_marker: + del target[name] + else: + assert isinstance(original_value, str) # for mypy + target[name] = original_value + + +@contextlib.contextmanager +def get_requirement_tracker(): + # type: () -> Iterator[RequirementTracker] + root = os.environ.get('PIP_REQ_TRACKER') + with contextlib.ExitStack() as ctx: + if root is None: + root = ctx.enter_context( + TempDirectory(kind='req-tracker') + ).path + ctx.enter_context(update_env_context_manager(PIP_REQ_TRACKER=root)) + logger.debug("Initialized build tracking at %s", root) + + with RequirementTracker(root) as tracker: + yield tracker + + +class RequirementTracker: + + def __init__(self, root): + # type: (str) -> None + self._root = root + self._entries = set() # type: Set[InstallRequirement] + logger.debug("Created build tracker: %s", self._root) + + def __enter__(self): + # type: () -> RequirementTracker + logger.debug("Entered build tracker: %s", self._root) + return self + + def __exit__( + self, + exc_type, # type: Optional[Type[BaseException]] + exc_val, # type: Optional[BaseException] + exc_tb # type: Optional[TracebackType] + ): + # type: (...) -> None + self.cleanup() + + def _entry_path(self, link): + # type: (Link) -> str + hashed = hashlib.sha224(link.url_without_fragment.encode()).hexdigest() + return os.path.join(self._root, hashed) + + def add(self, req): + # type: (InstallRequirement) -> None + """Add an InstallRequirement to build tracking. + """ + + assert req.link + # Get the file to write information about this requirement. + entry_path = self._entry_path(req.link) + + # Try reading from the file. If it exists and can be read from, a build + # is already in progress, so a LookupError is raised. + try: + with open(entry_path) as fp: + contents = fp.read() + except FileNotFoundError: + pass + else: + message = '{} is already being built: {}'.format( + req.link, contents) + raise LookupError(message) + + # If we're here, req should really not be building already. + assert req not in self._entries + + # Start tracking this requirement. + with open(entry_path, 'w', encoding="utf-8") as fp: + fp.write(str(req)) + self._entries.add(req) + + logger.debug('Added %s to build tracker %r', req, self._root) + + def remove(self, req): + # type: (InstallRequirement) -> None + """Remove an InstallRequirement from build tracking. + """ + + assert req.link + # Delete the created file and the corresponding entries. + os.unlink(self._entry_path(req.link)) + self._entries.remove(req) + + logger.debug('Removed %s from build tracker %r', req, self._root) + + def cleanup(self): + # type: () -> None + for req in set(self._entries): + self.remove(req) + + logger.debug("Removed build tracker: %r", self._root) + + @contextlib.contextmanager + def track(self, req): + # type: (InstallRequirement) -> Iterator[None] + self.add(req) + yield + self.remove(req) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/req/req_uninstall.py b/venv/lib/python3.8/site-packages/pip/_internal/req/req_uninstall.py new file mode 100644 index 00000000..b7223417 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/req/req_uninstall.py @@ -0,0 +1,640 @@ +import csv +import functools +import logging +import os +import sys +import sysconfig +from importlib.util import cache_from_source +from typing import Any, Callable, Dict, Iterable, Iterator, List, Optional, Set, Tuple + +from pip._vendor import pkg_resources +from pip._vendor.pkg_resources import Distribution + +from pip._internal.exceptions import UninstallationError +from pip._internal.locations import get_bin_prefix, get_bin_user +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ( + ask, + dist_in_usersite, + dist_is_local, + egg_link_path, + is_local, + normalize_path, + renames, + rmtree, +) +from pip._internal.utils.temp_dir import AdjacentTempDirectory, TempDirectory + +logger = logging.getLogger(__name__) + + +def _script_names(dist, script_name, is_gui): + # type: (Distribution, str, bool) -> List[str] + """Create the fully qualified name of the files created by + {console,gui}_scripts for the given ``dist``. + Returns the list of file names + """ + if dist_in_usersite(dist): + bin_dir = get_bin_user() + else: + bin_dir = get_bin_prefix() + exe_name = os.path.join(bin_dir, script_name) + paths_to_remove = [exe_name] + if WINDOWS: + paths_to_remove.append(exe_name + '.exe') + paths_to_remove.append(exe_name + '.exe.manifest') + if is_gui: + paths_to_remove.append(exe_name + '-script.pyw') + else: + paths_to_remove.append(exe_name + '-script.py') + return paths_to_remove + + +def _unique(fn): + # type: (Callable[..., Iterator[Any]]) -> Callable[..., Iterator[Any]] + @functools.wraps(fn) + def unique(*args, **kw): + # type: (Any, Any) -> Iterator[Any] + seen = set() # type: Set[Any] + for item in fn(*args, **kw): + if item not in seen: + seen.add(item) + yield item + return unique + + +@_unique +def uninstallation_paths(dist): + # type: (Distribution) -> Iterator[str] + """ + Yield all the uninstallation paths for dist based on RECORD-without-.py[co] + + Yield paths to all the files in RECORD. For each .py file in RECORD, add + the .pyc and .pyo in the same directory. + + UninstallPathSet.add() takes care of the __pycache__ .py[co]. + """ + r = csv.reader(dist.get_metadata_lines('RECORD')) + for row in r: + path = os.path.join(dist.location, row[0]) + yield path + if path.endswith('.py'): + dn, fn = os.path.split(path) + base = fn[:-3] + path = os.path.join(dn, base + '.pyc') + yield path + path = os.path.join(dn, base + '.pyo') + yield path + + +def compact(paths): + # type: (Iterable[str]) -> Set[str] + """Compact a path set to contain the minimal number of paths + necessary to contain all paths in the set. If /a/path/ and + /a/path/to/a/file.txt are both in the set, leave only the + shorter path.""" + + sep = os.path.sep + short_paths = set() # type: Set[str] + for path in sorted(paths, key=len): + should_skip = any( + path.startswith(shortpath.rstrip("*")) and + path[len(shortpath.rstrip("*").rstrip(sep))] == sep + for shortpath in short_paths + ) + if not should_skip: + short_paths.add(path) + return short_paths + + +def compress_for_rename(paths): + # type: (Iterable[str]) -> Set[str] + """Returns a set containing the paths that need to be renamed. + + This set may include directories when the original sequence of paths + included every file on disk. + """ + case_map = {os.path.normcase(p): p for p in paths} + remaining = set(case_map) + unchecked = sorted({os.path.split(p)[0] for p in case_map.values()}, key=len) + wildcards = set() # type: Set[str] + + def norm_join(*a): + # type: (str) -> str + return os.path.normcase(os.path.join(*a)) + + for root in unchecked: + if any(os.path.normcase(root).startswith(w) + for w in wildcards): + # This directory has already been handled. + continue + + all_files = set() # type: Set[str] + all_subdirs = set() # type: Set[str] + for dirname, subdirs, files in os.walk(root): + all_subdirs.update(norm_join(root, dirname, d) + for d in subdirs) + all_files.update(norm_join(root, dirname, f) + for f in files) + # If all the files we found are in our remaining set of files to + # remove, then remove them from the latter set and add a wildcard + # for the directory. + if not (all_files - remaining): + remaining.difference_update(all_files) + wildcards.add(root + os.sep) + + return set(map(case_map.__getitem__, remaining)) | wildcards + + +def compress_for_output_listing(paths): + # type: (Iterable[str]) -> Tuple[Set[str], Set[str]] + """Returns a tuple of 2 sets of which paths to display to user + + The first set contains paths that would be deleted. Files of a package + are not added and the top-level directory of the package has a '*' added + at the end - to signify that all it's contents are removed. + + The second set contains files that would have been skipped in the above + folders. + """ + + will_remove = set(paths) + will_skip = set() + + # Determine folders and files + folders = set() + files = set() + for path in will_remove: + if path.endswith(".pyc"): + continue + if path.endswith("__init__.py") or ".dist-info" in path: + folders.add(os.path.dirname(path)) + files.add(path) + + # probably this one https://github.com/python/mypy/issues/390 + _normcased_files = set(map(os.path.normcase, files)) # type: ignore + + folders = compact(folders) + + # This walks the tree using os.walk to not miss extra folders + # that might get added. + for folder in folders: + for dirpath, _, dirfiles in os.walk(folder): + for fname in dirfiles: + if fname.endswith(".pyc"): + continue + + file_ = os.path.join(dirpath, fname) + if (os.path.isfile(file_) and + os.path.normcase(file_) not in _normcased_files): + # We are skipping this file. Add it to the set. + will_skip.add(file_) + + will_remove = files | { + os.path.join(folder, "*") for folder in folders + } + + return will_remove, will_skip + + +class StashedUninstallPathSet: + """A set of file rename operations to stash files while + tentatively uninstalling them.""" + def __init__(self): + # type: () -> None + # Mapping from source file root to [Adjacent]TempDirectory + # for files under that directory. + self._save_dirs = {} # type: Dict[str, TempDirectory] + # (old path, new path) tuples for each move that may need + # to be undone. + self._moves = [] # type: List[Tuple[str, str]] + + def _get_directory_stash(self, path): + # type: (str) -> str + """Stashes a directory. + + Directories are stashed adjacent to their original location if + possible, or else moved/copied into the user's temp dir.""" + + try: + save_dir = AdjacentTempDirectory(path) # type: TempDirectory + except OSError: + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[os.path.normcase(path)] = save_dir + + return save_dir.path + + def _get_file_stash(self, path): + # type: (str) -> str + """Stashes a file. + + If no root has been provided, one will be created for the directory + in the user's temp directory.""" + path = os.path.normcase(path) + head, old_head = os.path.dirname(path), None + save_dir = None + + while head != old_head: + try: + save_dir = self._save_dirs[head] + break + except KeyError: + pass + head, old_head = os.path.dirname(head), head + else: + # Did not find any suitable root + head = os.path.dirname(path) + save_dir = TempDirectory(kind='uninstall') + self._save_dirs[head] = save_dir + + relpath = os.path.relpath(path, head) + if relpath and relpath != os.path.curdir: + return os.path.join(save_dir.path, relpath) + return save_dir.path + + def stash(self, path): + # type: (str) -> str + """Stashes the directory or file and returns its new location. + Handle symlinks as files to avoid modifying the symlink targets. + """ + path_is_dir = os.path.isdir(path) and not os.path.islink(path) + if path_is_dir: + new_path = self._get_directory_stash(path) + else: + new_path = self._get_file_stash(path) + + self._moves.append((path, new_path)) + if (path_is_dir and os.path.isdir(new_path)): + # If we're moving a directory, we need to + # remove the destination first or else it will be + # moved to inside the existing directory. + # We just created new_path ourselves, so it will + # be removable. + os.rmdir(new_path) + renames(path, new_path) + return new_path + + def commit(self): + # type: () -> None + """Commits the uninstall by removing stashed files.""" + for _, save_dir in self._save_dirs.items(): + save_dir.cleanup() + self._moves = [] + self._save_dirs = {} + + def rollback(self): + # type: () -> None + """Undoes the uninstall by moving stashed files back.""" + for p in self._moves: + logger.info("Moving to %s\n from %s", *p) + + for new_path, path in self._moves: + try: + logger.debug('Replacing %s from %s', new_path, path) + if os.path.isfile(new_path) or os.path.islink(new_path): + os.unlink(new_path) + elif os.path.isdir(new_path): + rmtree(new_path) + renames(path, new_path) + except OSError as ex: + logger.error("Failed to restore %s", new_path) + logger.debug("Exception: %s", ex) + + self.commit() + + @property + def can_rollback(self): + # type: () -> bool + return bool(self._moves) + + +class UninstallPathSet: + """A set of file paths to be removed in the uninstallation of a + requirement.""" + def __init__(self, dist): + # type: (Distribution) -> None + self.paths = set() # type: Set[str] + self._refuse = set() # type: Set[str] + self.pth = {} # type: Dict[str, UninstallPthEntries] + self.dist = dist + self._moved_paths = StashedUninstallPathSet() + + def _permitted(self, path): + # type: (str) -> bool + """ + Return True if the given path is one we are permitted to + remove/modify, False otherwise. + + """ + return is_local(path) + + def add(self, path): + # type: (str) -> None + head, tail = os.path.split(path) + + # we normalize the head to resolve parent directory symlinks, but not + # the tail, since we only want to uninstall symlinks, not their targets + path = os.path.join(normalize_path(head), os.path.normcase(tail)) + + if not os.path.exists(path): + return + if self._permitted(path): + self.paths.add(path) + else: + self._refuse.add(path) + + # __pycache__ files can show up after 'installed-files.txt' is created, + # due to imports + if os.path.splitext(path)[1] == '.py': + self.add(cache_from_source(path)) + + def add_pth(self, pth_file, entry): + # type: (str, str) -> None + pth_file = normalize_path(pth_file) + if self._permitted(pth_file): + if pth_file not in self.pth: + self.pth[pth_file] = UninstallPthEntries(pth_file) + self.pth[pth_file].add(entry) + else: + self._refuse.add(pth_file) + + def remove(self, auto_confirm=False, verbose=False): + # type: (bool, bool) -> None + """Remove paths in ``self.paths`` with confirmation (unless + ``auto_confirm`` is True).""" + + if not self.paths: + logger.info( + "Can't uninstall '%s'. No files were found to uninstall.", + self.dist.project_name, + ) + return + + dist_name_version = ( + self.dist.project_name + "-" + self.dist.version + ) + logger.info('Uninstalling %s:', dist_name_version) + + with indent_log(): + if auto_confirm or self._allowed_to_proceed(verbose): + moved = self._moved_paths + + for_rename = compress_for_rename(self.paths) + + for path in sorted(compact(for_rename)): + moved.stash(path) + logger.debug('Removing file or directory %s', path) + + for pth in self.pth.values(): + pth.remove() + + logger.info('Successfully uninstalled %s', dist_name_version) + + def _allowed_to_proceed(self, verbose): + # type: (bool) -> bool + """Display which files would be deleted and prompt for confirmation + """ + + def _display(msg, paths): + # type: (str, Iterable[str]) -> None + if not paths: + return + + logger.info(msg) + with indent_log(): + for path in sorted(compact(paths)): + logger.info(path) + + if not verbose: + will_remove, will_skip = compress_for_output_listing(self.paths) + else: + # In verbose mode, display all the files that are going to be + # deleted. + will_remove = set(self.paths) + will_skip = set() + + _display('Would remove:', will_remove) + _display('Would not remove (might be manually added):', will_skip) + _display('Would not remove (outside of prefix):', self._refuse) + if verbose: + _display('Will actually move:', compress_for_rename(self.paths)) + + return ask('Proceed (y/n)? ', ('y', 'n')) == 'y' + + def rollback(self): + # type: () -> None + """Rollback the changes previously made by remove().""" + if not self._moved_paths.can_rollback: + logger.error( + "Can't roll back %s; was not uninstalled", + self.dist.project_name, + ) + return + logger.info('Rolling back uninstall of %s', self.dist.project_name) + self._moved_paths.rollback() + for pth in self.pth.values(): + pth.rollback() + + def commit(self): + # type: () -> None + """Remove temporary save dir: rollback will no longer be possible.""" + self._moved_paths.commit() + + @classmethod + def from_dist(cls, dist): + # type: (Distribution) -> UninstallPathSet + dist_path = normalize_path(dist.location) + if not dist_is_local(dist): + logger.info( + "Not uninstalling %s at %s, outside environment %s", + dist.key, + dist_path, + sys.prefix, + ) + return cls(dist) + + if dist_path in {p for p in {sysconfig.get_path("stdlib"), + sysconfig.get_path("platstdlib")} + if p}: + logger.info( + "Not uninstalling %s at %s, as it is in the standard library.", + dist.key, + dist_path, + ) + return cls(dist) + + paths_to_remove = cls(dist) + develop_egg_link = egg_link_path(dist) + develop_egg_link_egg_info = '{}.egg-info'.format( + pkg_resources.to_filename(dist.project_name)) + egg_info_exists = dist.egg_info and os.path.exists(dist.egg_info) + # Special case for distutils installed package + distutils_egg_info = getattr(dist._provider, 'path', None) + + # Uninstall cases order do matter as in the case of 2 installs of the + # same package, pip needs to uninstall the currently detected version + if (egg_info_exists and dist.egg_info.endswith('.egg-info') and + not dist.egg_info.endswith(develop_egg_link_egg_info)): + # if dist.egg_info.endswith(develop_egg_link_egg_info), we + # are in fact in the develop_egg_link case + paths_to_remove.add(dist.egg_info) + if dist.has_metadata('installed-files.txt'): + for installed_file in dist.get_metadata( + 'installed-files.txt').splitlines(): + path = os.path.normpath( + os.path.join(dist.egg_info, installed_file) + ) + paths_to_remove.add(path) + # FIXME: need a test for this elif block + # occurs with --single-version-externally-managed/--record outside + # of pip + elif dist.has_metadata('top_level.txt'): + if dist.has_metadata('namespace_packages.txt'): + namespaces = dist.get_metadata('namespace_packages.txt') + else: + namespaces = [] + for top_level_pkg in [ + p for p + in dist.get_metadata('top_level.txt').splitlines() + if p and p not in namespaces]: + path = os.path.join(dist.location, top_level_pkg) + paths_to_remove.add(path) + paths_to_remove.add(path + '.py') + paths_to_remove.add(path + '.pyc') + paths_to_remove.add(path + '.pyo') + + elif distutils_egg_info: + raise UninstallationError( + "Cannot uninstall {!r}. It is a distutils installed project " + "and thus we cannot accurately determine which files belong " + "to it which would lead to only a partial uninstall.".format( + dist.project_name, + ) + ) + + elif dist.location.endswith('.egg'): + # package installed by easy_install + # We cannot match on dist.egg_name because it can slightly vary + # i.e. setuptools-0.6c11-py2.6.egg vs setuptools-0.6rc11-py2.6.egg + paths_to_remove.add(dist.location) + easy_install_egg = os.path.split(dist.location)[1] + easy_install_pth = os.path.join(os.path.dirname(dist.location), + 'easy-install.pth') + paths_to_remove.add_pth(easy_install_pth, './' + easy_install_egg) + + elif egg_info_exists and dist.egg_info.endswith('.dist-info'): + for path in uninstallation_paths(dist): + paths_to_remove.add(path) + + elif develop_egg_link: + # develop egg + with open(develop_egg_link) as fh: + link_pointer = os.path.normcase(fh.readline().strip()) + assert (link_pointer == dist.location), ( + 'Egg-link {} does not match installed location of {} ' + '(at {})'.format( + link_pointer, dist.project_name, dist.location) + ) + paths_to_remove.add(develop_egg_link) + easy_install_pth = os.path.join(os.path.dirname(develop_egg_link), + 'easy-install.pth') + paths_to_remove.add_pth(easy_install_pth, dist.location) + + else: + logger.debug( + 'Not sure how to uninstall: %s - Check: %s', + dist, dist.location, + ) + + # find distutils scripts= scripts + if dist.has_metadata('scripts') and dist.metadata_isdir('scripts'): + for script in dist.metadata_listdir('scripts'): + if dist_in_usersite(dist): + bin_dir = get_bin_user() + else: + bin_dir = get_bin_prefix() + paths_to_remove.add(os.path.join(bin_dir, script)) + if WINDOWS: + paths_to_remove.add(os.path.join(bin_dir, script) + '.bat') + + # find console_scripts + _scripts_to_remove = [] + console_scripts = dist.get_entry_map(group='console_scripts') + for name in console_scripts.keys(): + _scripts_to_remove.extend(_script_names(dist, name, False)) + # find gui_scripts + gui_scripts = dist.get_entry_map(group='gui_scripts') + for name in gui_scripts.keys(): + _scripts_to_remove.extend(_script_names(dist, name, True)) + + for s in _scripts_to_remove: + paths_to_remove.add(s) + + return paths_to_remove + + +class UninstallPthEntries: + def __init__(self, pth_file): + # type: (str) -> None + self.file = pth_file + self.entries = set() # type: Set[str] + self._saved_lines = None # type: Optional[List[bytes]] + + def add(self, entry): + # type: (str) -> None + entry = os.path.normcase(entry) + # On Windows, os.path.normcase converts the entry to use + # backslashes. This is correct for entries that describe absolute + # paths outside of site-packages, but all the others use forward + # slashes. + # os.path.splitdrive is used instead of os.path.isabs because isabs + # treats non-absolute paths with drive letter markings like c:foo\bar + # as absolute paths. It also does not recognize UNC paths if they don't + # have more than "\\sever\share". Valid examples: "\\server\share\" or + # "\\server\share\folder". + if WINDOWS and not os.path.splitdrive(entry)[0]: + entry = entry.replace('\\', '/') + self.entries.add(entry) + + def remove(self): + # type: () -> None + logger.debug('Removing pth entries from %s:', self.file) + + # If the file doesn't exist, log a warning and return + if not os.path.isfile(self.file): + logger.warning( + "Cannot remove entries from nonexistent file %s", self.file + ) + return + with open(self.file, 'rb') as fh: + # windows uses '\r\n' with py3k, but uses '\n' with py2.x + lines = fh.readlines() + self._saved_lines = lines + if any(b'\r\n' in line for line in lines): + endline = '\r\n' + else: + endline = '\n' + # handle missing trailing newline + if lines and not lines[-1].endswith(endline.encode("utf-8")): + lines[-1] = lines[-1] + endline.encode("utf-8") + for entry in self.entries: + try: + logger.debug('Removing entry: %s', entry) + lines.remove((entry + endline).encode("utf-8")) + except ValueError: + pass + with open(self.file, 'wb') as fh: + fh.writelines(lines) + + def rollback(self): + # type: () -> bool + if self._saved_lines is None: + logger.error( + 'Cannot roll back changes to %s, none were made', self.file + ) + return False + logger.debug('Rolling %s back to previous state', self.file) + with open(self.file, 'wb') as fh: + fh.writelines(self._saved_lines) + return True diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/resolution/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a8047ffa6e51da19c0198cbbc3b79d057592f31c GIT binary patch literal 160 zcmWIL<>g`k0)_V01Q7igL?8o3AjbiSi&=m~3PUi1CZpdw|?A1;NuCk{rA!h^ULmiUiro}u2>SN zK!x~=AaHft_g|(KPQaFW1!hJkZiRe~dW33;8OJW!7o0U^Yd%?Xe|u88XJrker>>f7y-7ss4 z)PO?%e-1PqteFT+EDTMh6}7bB8q6EBNBM&VIKPa0RaPtv z-E8P(ll#c(=ntz%P))i$#n6Q0@cJI2p@nrHSZ9*E|9+$IOu5RCg=YN@$OdymTl92u R;4^vvOGNLBKJSbD;1{S< RequirementSet + raise NotImplementedError() + + def get_installation_order(self, req_set): + # type: (RequirementSet) -> List[InstallRequirement] + raise NotImplementedError() diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..87bd0275f1c40607631c7a3fa1e86da7012bb5d3 GIT binary patch literal 167 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/resolver.py b/venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/resolver.py new file mode 100644 index 00000000..17de7f09 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/resolver.py @@ -0,0 +1,462 @@ +"""Dependency Resolution + +The dependency resolution in pip is performed as follows: + +for top-level requirements: + a. only one spec allowed per project, regardless of conflicts or not. + otherwise a "double requirement" exception is raised + b. they override sub-dependency requirements. +for sub-dependencies + a. "first found, wins" (where the order is breadth first) +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import logging +import sys +from collections import defaultdict +from itertools import chain +from typing import DefaultDict, Iterable, List, Optional, Set, Tuple + +from pip._vendor.packaging import specifiers +from pip._vendor.pkg_resources import Distribution + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + HashError, + HashErrors, + UnsupportedPythonVersion, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.link import Link +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import dist_in_usersite, normalize_version_info +from pip._internal.utils.packaging import check_requires_python, get_requires_python + +logger = logging.getLogger(__name__) + +DiscoveredDependencies = DefaultDict[str, List[InstallRequirement]] + + +def _check_dist_requires_python( + dist, # type: Distribution + version_info, # type: Tuple[int, int, int] + ignore_requires_python=False, # type: bool +): + # type: (...) -> None + """ + Check whether the given Python version is compatible with a distribution's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + + :raises UnsupportedPythonVersion: When the given Python version isn't + compatible. + """ + requires_python = get_requires_python(dist) + try: + is_compatible = check_requires_python( + requires_python, version_info=version_info + ) + except specifiers.InvalidSpecifier as exc: + logger.warning( + "Package %r has an invalid Requires-Python: %s", dist.project_name, exc + ) + return + + if is_compatible: + return + + version = ".".join(map(str, version_info)) + if ignore_requires_python: + logger.debug( + "Ignoring failed Requires-Python check for package %r: " "%s not in %r", + dist.project_name, + version, + requires_python, + ) + return + + raise UnsupportedPythonVersion( + "Package {!r} requires a different Python: {} not in {!r}".format( + dist.project_name, version, requires_python + ) + ) + + +class Resolver(BaseResolver): + """Resolves which packages need to be installed/uninstalled to perform \ + the requested operation without breaking the requirements of any package. + """ + + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer, # type: RequirementPreparer + finder, # type: PackageFinder + wheel_cache, # type: Optional[WheelCache] + make_install_req, # type: InstallRequirementProvider + use_user_site, # type: bool + ignore_dependencies, # type: bool + ignore_installed, # type: bool + ignore_requires_python, # type: bool + force_reinstall, # type: bool + upgrade_strategy, # type: str + py_version_info=None, # type: Optional[Tuple[int, ...]] + ): + # type: (...) -> None + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + self._py_version_info = py_version_info + + self.preparer = preparer + self.finder = finder + self.wheel_cache = wheel_cache + + self.upgrade_strategy = upgrade_strategy + self.force_reinstall = force_reinstall + self.ignore_dependencies = ignore_dependencies + self.ignore_installed = ignore_installed + self.ignore_requires_python = ignore_requires_python + self.use_user_site = use_user_site + self._make_install_req = make_install_req + + self._discovered_dependencies = defaultdict( + list + ) # type: DiscoveredDependencies + + def resolve(self, root_reqs, check_supported_wheels): + # type: (List[InstallRequirement], bool) -> RequirementSet + """Resolve what operations need to be done + + As a side-effect of this method, the packages (and their dependencies) + are downloaded, unpacked and prepared for installation. This + preparation is done by ``pip.operations.prepare``. + + Once PyPI has static dependency metadata available, it would be + possible to move the preparation to become a step separated from + dependency resolution. + """ + requirement_set = RequirementSet(check_supported_wheels=check_supported_wheels) + for req in root_reqs: + if req.constraint: + check_invalid_constraint_type(req) + requirement_set.add_requirement(req) + + # Actually prepare the files, and collect any exceptions. Most hash + # exceptions cannot be checked ahead of time, because + # _populate_link() needs to be called before we can make decisions + # based on link type. + discovered_reqs = [] # type: List[InstallRequirement] + hash_errors = HashErrors() + for req in chain(requirement_set.all_requirements, discovered_reqs): + try: + discovered_reqs.extend(self._resolve_one(requirement_set, req)) + except HashError as exc: + exc.req = req + hash_errors.append(exc) + + if hash_errors: + raise hash_errors + + return requirement_set + + def _is_upgrade_allowed(self, req): + # type: (InstallRequirement) -> bool + if self.upgrade_strategy == "to-satisfy-only": + return False + elif self.upgrade_strategy == "eager": + return True + else: + assert self.upgrade_strategy == "only-if-needed" + return req.user_supplied or req.constraint + + def _set_req_to_reinstall(self, req): + # type: (InstallRequirement) -> None + """ + Set a requirement to be installed. + """ + # Don't uninstall the conflict if doing a user install and the + # conflict is not a user install. + if not self.use_user_site or dist_in_usersite(req.satisfied_by): + req.should_reinstall = True + req.satisfied_by = None + + def _check_skip_installed(self, req_to_install): + # type: (InstallRequirement) -> Optional[str] + """Check if req_to_install should be skipped. + + This will check if the req is installed, and whether we should upgrade + or reinstall it, taking into account all the relevant user options. + + After calling this req_to_install will only have satisfied_by set to + None if the req_to_install is to be upgraded/reinstalled etc. Any + other value will be a dist recording the current thing installed that + satisfies the requirement. + + Note that for vcs urls and the like we can't assess skipping in this + routine - we simply identify that we need to pull the thing down, + then later on it is pulled down and introspected to assess upgrade/ + reinstalls etc. + + :return: A text reason for why it was skipped, or None. + """ + if self.ignore_installed: + return None + + req_to_install.check_if_exists(self.use_user_site) + if not req_to_install.satisfied_by: + return None + + if self.force_reinstall: + self._set_req_to_reinstall(req_to_install) + return None + + if not self._is_upgrade_allowed(req_to_install): + if self.upgrade_strategy == "only-if-needed": + return "already satisfied, skipping upgrade" + return "already satisfied" + + # Check for the possibility of an upgrade. For link-based + # requirements we have to pull the tree down and inspect to assess + # the version #, so it's handled way down. + if not req_to_install.link: + try: + self.finder.find_requirement(req_to_install, upgrade=True) + except BestVersionAlreadyInstalled: + # Then the best version is installed. + return "already up-to-date" + except DistributionNotFound: + # No distribution found, so we squash the error. It will + # be raised later when we re-try later to do the install. + # Why don't we just raise here? + pass + + self._set_req_to_reinstall(req_to_install) + return None + + def _find_requirement_link(self, req): + # type: (InstallRequirement) -> Optional[Link] + upgrade = self._is_upgrade_allowed(req) + best_candidate = self.finder.find_requirement(req, upgrade) + if not best_candidate: + return None + + # Log a warning per PEP 592 if necessary before returning. + link = best_candidate.link + if link.is_yanked: + reason = link.yanked_reason or "" + msg = ( + # Mark this as a unicode string to prevent + # "UnicodeEncodeError: 'ascii' codec can't encode character" + # in Python 2 when the reason contains non-ascii characters. + "The candidate selected for download or install is a " + "yanked version: {candidate}\n" + "Reason for being yanked: {reason}" + ).format(candidate=best_candidate, reason=reason) + logger.warning(msg) + + return link + + def _populate_link(self, req): + # type: (InstallRequirement) -> None + """Ensure that if a link can be found for this, that it is found. + + Note that req.link may still be None - if the requirement is already + installed and not needed to be upgraded based on the return value of + _is_upgrade_allowed(). + + If preparer.require_hashes is True, don't use the wheel cache, because + cached wheels, always built locally, have different hashes than the + files downloaded from the index server and thus throw false hash + mismatches. Furthermore, cached wheels at present have undeterministic + contents due to file modification times. + """ + if req.link is None: + req.link = self._find_requirement_link(req) + + if self.wheel_cache is None or self.preparer.require_hashes: + return + cache_entry = self.wheel_cache.get_cache_entry( + link=req.link, + package_name=req.name, + supported_tags=get_supported(), + ) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + if req.link is req.original_link and cache_entry.persistent: + req.original_link_is_in_wheel_cache = True + req.link = cache_entry.link + + def _get_dist_for(self, req): + # type: (InstallRequirement) -> Distribution + """Takes a InstallRequirement and returns a single AbstractDist \ + representing a prepared variant of the same. + """ + if req.editable: + return self.preparer.prepare_editable_requirement(req) + + # satisfied_by is only evaluated by calling _check_skip_installed, + # so it must be None here. + assert req.satisfied_by is None + skip_reason = self._check_skip_installed(req) + + if req.satisfied_by: + return self.preparer.prepare_installed_requirement(req, skip_reason) + + # We eagerly populate the link, since that's our "legacy" behavior. + self._populate_link(req) + dist = self.preparer.prepare_linked_requirement(req) + + # NOTE + # The following portion is for determining if a certain package is + # going to be re-installed/upgraded or not and reporting to the user. + # This should probably get cleaned up in a future refactor. + + # req.req is only avail after unpack for URL + # pkgs repeat check_if_exists to uninstall-on-upgrade + # (#14) + if not self.ignore_installed: + req.check_if_exists(self.use_user_site) + + if req.satisfied_by: + should_modify = ( + self.upgrade_strategy != "to-satisfy-only" + or self.force_reinstall + or self.ignore_installed + or req.link.scheme == "file" + ) + if should_modify: + self._set_req_to_reinstall(req) + else: + logger.info( + "Requirement already satisfied (use --upgrade to upgrade):" " %s", + req, + ) + return dist + + def _resolve_one( + self, + requirement_set, # type: RequirementSet + req_to_install, # type: InstallRequirement + ): + # type: (...) -> List[InstallRequirement] + """Prepare a single requirements file. + + :return: A list of additional InstallRequirements to also install. + """ + # Tell user what we are doing for this requirement: + # obtain (editable), skipping, processing (local url), collecting + # (remote url or package name) + if req_to_install.constraint or req_to_install.prepared: + return [] + + req_to_install.prepared = True + + # Parse and return dependencies + dist = self._get_dist_for(req_to_install) + # This will raise UnsupportedPythonVersion if the given Python + # version isn't compatible with the distribution's Requires-Python. + _check_dist_requires_python( + dist, + version_info=self._py_version_info, + ignore_requires_python=self.ignore_requires_python, + ) + + more_reqs = [] # type: List[InstallRequirement] + + def add_req(subreq, extras_requested): + # type: (Distribution, Iterable[str]) -> None + sub_install_req = self._make_install_req( + str(subreq), + req_to_install, + ) + parent_req_name = req_to_install.name + to_scan_again, add_to_parent = requirement_set.add_requirement( + sub_install_req, + parent_req_name=parent_req_name, + extras_requested=extras_requested, + ) + if parent_req_name and add_to_parent: + self._discovered_dependencies[parent_req_name].append(add_to_parent) + more_reqs.extend(to_scan_again) + + with indent_log(): + # We add req_to_install before its dependencies, so that we + # can refer to it when adding dependencies. + if not requirement_set.has_requirement(req_to_install.name): + # 'unnamed' requirements will get added here + # 'unnamed' requirements can only come from being directly + # provided by the user. + assert req_to_install.user_supplied + requirement_set.add_requirement(req_to_install, parent_req_name=None) + + if not self.ignore_dependencies: + if req_to_install.extras: + logger.debug( + "Installing extra requirements: %r", + ",".join(req_to_install.extras), + ) + missing_requested = sorted( + set(req_to_install.extras) - set(dist.extras) + ) + for missing in missing_requested: + logger.warning("%s does not provide the extra '%s'", dist, missing) + + available_requested = sorted( + set(dist.extras) & set(req_to_install.extras) + ) + for subreq in dist.requires(available_requested): + add_req(subreq, extras_requested=available_requested) + + return more_reqs + + def get_installation_order(self, req_set): + # type: (RequirementSet) -> List[InstallRequirement] + """Create the installation order. + + The installation order is topological - requirements are installed + before the requiring thing. We break cycles at an arbitrary point, + and make no other guarantees. + """ + # The current implementation, which we may change at any point + # installs the user specified things in the order given, except when + # dependencies must come earlier to achieve topological order. + order = [] + ordered_reqs = set() # type: Set[InstallRequirement] + + def schedule(req): + # type: (InstallRequirement) -> None + if req.satisfied_by or req in ordered_reqs: + return + if req.constraint: + return + ordered_reqs.add(req) + for dep in self._discovered_dependencies[req.name]: + schedule(dep) + order.append(req) + + for install_req in req_set.requirements.values(): + schedule(install_req) + return order diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..020597385e4b2abac6fa5960cd6a2b58102b4646 GIT binary patch literal 171 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 MW7GSmUqsISZ+QXSrvLx| literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9de9711bdee772122386b97dd11ccaf250ce0663 GIT binary patch literal 15979 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 Hrf2>yyz}oE literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a6b7a1e1daae272654b268d27ab90d51edd2d12a GIT binary patch literal 4625 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 E0FV#o1ONa4 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5e005fa41713e814017a2b779bb3be88917eb458 GIT binary patch literal 8049 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 if{#o!4ZNv-0Z$Q6U9akmUnn1!TmK7C&|sSY literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/base.py b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/base.py new file mode 100644 index 00000000..26821a1f --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/base.py @@ -0,0 +1,165 @@ +from typing import FrozenSet, Iterable, Optional, Tuple, Union + +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import LegacyVersion, Version + +from pip._internal.models.link import Link, links_equivalent +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.hashes import Hashes + +CandidateLookup = Tuple[Optional["Candidate"], Optional[InstallRequirement]] +CandidateVersion = Union[LegacyVersion, Version] + + +def format_name(project, extras): + # type: (str, FrozenSet[str]) -> str + if not extras: + return project + canonical_extras = sorted(canonicalize_name(e) for e in extras) + return "{}[{}]".format(project, ",".join(canonical_extras)) + + +class Constraint: + def __init__(self, specifier, hashes, links): + # type: (SpecifierSet, Hashes, FrozenSet[Link]) -> None + self.specifier = specifier + self.hashes = hashes + self.links = links + + @classmethod + def empty(cls): + # type: () -> Constraint + return Constraint(SpecifierSet(), Hashes(), frozenset()) + + @classmethod + def from_ireq(cls, ireq): + # type: (InstallRequirement) -> Constraint + links = frozenset([ireq.link]) if ireq.link else frozenset() + return Constraint(ireq.specifier, ireq.hashes(trust_internet=False), links) + + def __nonzero__(self): + # type: () -> bool + return bool(self.specifier) or bool(self.hashes) or bool(self.links) + + def __bool__(self): + # type: () -> bool + return self.__nonzero__() + + def __and__(self, other): + # type: (InstallRequirement) -> Constraint + if not isinstance(other, InstallRequirement): + return NotImplemented + specifier = self.specifier & other.specifier + hashes = self.hashes & other.hashes(trust_internet=False) + links = self.links + if other.link: + links = links.union([other.link]) + return Constraint(specifier, hashes, links) + + def is_satisfied_by(self, candidate): + # type: (Candidate) -> bool + # Reject if there are any mismatched URL constraints on this package. + if self.links and not all(_match_link(link, candidate) for link in self.links): + return False + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class Requirement: + @property + def project_name(self): + # type: () -> NormalizedName + """The "project name" of a requirement. + + This is different from ``name`` if this requirement contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Subclass should override") + + @property + def name(self): + # type: () -> str + """The name identifying this requirement in the resolver. + + This is different from ``project_name`` if this requirement contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Subclass should override") + + def is_satisfied_by(self, candidate): + # type: (Candidate) -> bool + return False + + def get_candidate_lookup(self): + # type: () -> CandidateLookup + raise NotImplementedError("Subclass should override") + + def format_for_error(self): + # type: () -> str + raise NotImplementedError("Subclass should override") + + +def _match_link(link, candidate): + # type: (Link, Candidate) -> bool + if candidate.source_link: + return links_equivalent(link, candidate.source_link) + return False + + +class Candidate: + @property + def project_name(self): + # type: () -> NormalizedName + """The "project name" of the candidate. + + This is different from ``name`` if this candidate contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Override in subclass") + + @property + def name(self): + # type: () -> str + """The name identifying this candidate in the resolver. + + This is different from ``project_name`` if this candidate contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Override in subclass") + + @property + def version(self): + # type: () -> CandidateVersion + raise NotImplementedError("Override in subclass") + + @property + def is_installed(self): + # type: () -> bool + raise NotImplementedError("Override in subclass") + + @property + def is_editable(self): + # type: () -> bool + raise NotImplementedError("Override in subclass") + + @property + def source_link(self): + # type: () -> Optional[Link] + raise NotImplementedError("Override in subclass") + + def iter_dependencies(self, with_requires): + # type: (bool) -> Iterable[Optional[Requirement]] + raise NotImplementedError("Override in subclass") + + def get_install_requirement(self): + # type: () -> Optional[InstallRequirement] + raise NotImplementedError("Override in subclass") + + def format_for_error(self): + # type: () -> str + raise NotImplementedError("Subclass should override") diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/candidates.py new file mode 100644 index 00000000..da516ad3 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/candidates.py @@ -0,0 +1,604 @@ +import logging +import sys +from typing import TYPE_CHECKING, Any, FrozenSet, Iterable, Optional, Tuple, Union, cast + +from pip._vendor.packaging.specifiers import InvalidSpecifier, SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.pkg_resources import Distribution + +from pip._internal.exceptions import HashError, MetadataInconsistent +from pip._internal.models.link import Link, links_equivalent +from pip._internal.models.wheel import Wheel +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.misc import dist_is_editable, normalize_version_info +from pip._internal.utils.packaging import get_requires_python + +from .base import Candidate, CandidateVersion, Requirement, format_name + +if TYPE_CHECKING: + from .factory import Factory + +logger = logging.getLogger(__name__) + +BaseCandidate = Union[ + "AlreadyInstalledCandidate", + "EditableCandidate", + "LinkCandidate", +] + + +def as_base_candidate(candidate: Candidate) -> Optional[BaseCandidate]: + """The runtime version of BaseCandidate.""" + base_candidate_classes = ( + AlreadyInstalledCandidate, + EditableCandidate, + LinkCandidate, + ) + if isinstance(candidate, base_candidate_classes): + return candidate + return None + + +def make_install_req_from_link(link, template): + # type: (Link, InstallRequirement) -> InstallRequirement + assert not template.editable, "template is editable" + if template.req: + line = str(template.req) + else: + line = link.url + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + ireq.original_link = template.original_link + ireq.link = link + return ireq + + +def make_install_req_from_editable(link, template): + # type: (Link, InstallRequirement) -> InstallRequirement + assert template.editable, "template not editable" + return install_req_from_editable( + link.url, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + + +def make_install_req_from_dist(dist, template): + # type: (Distribution, InstallRequirement) -> InstallRequirement + project_name = canonicalize_name(dist.project_name) + if template.req: + line = str(template.req) + elif template.link: + line = f"{project_name} @ {template.link.url}" + else: + line = f"{project_name}=={dist.parsed_version}" + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + ireq.satisfied_by = dist + return ireq + + +class _InstallRequirementBackedCandidate(Candidate): + """A candidate backed by an ``InstallRequirement``. + + This represents a package request with the target not being already + in the environment, and needs to be fetched and installed. The backing + ``InstallRequirement`` is responsible for most of the leg work; this + class exposes appropriate information to the resolver. + + :param link: The link passed to the ``InstallRequirement``. The backing + ``InstallRequirement`` will use this link to fetch the distribution. + :param source_link: The link this candidate "originates" from. This is + different from ``link`` when the link is found in the wheel cache. + ``link`` would point to the wheel cache, while this points to the + found remote link (e.g. from pypi.org). + """ + + is_installed = False + + def __init__( + self, + link, # type: Link + source_link, # type: Link + ireq, # type: InstallRequirement + factory, # type: Factory + name=None, # type: Optional[NormalizedName] + version=None, # type: Optional[CandidateVersion] + ): + # type: (...) -> None + self._link = link + self._source_link = source_link + self._factory = factory + self._ireq = ireq + self._name = name + self._version = version + self.dist = self._prepare() + + def __str__(self): + # type: () -> str + return f"{self.name} {self.version}" + + def __repr__(self): + # type: () -> str + return "{class_name}({link!r})".format( + class_name=self.__class__.__name__, + link=str(self._link), + ) + + def __hash__(self): + # type: () -> int + return hash((self.__class__, self._link)) + + def __eq__(self, other): + # type: (Any) -> bool + if isinstance(other, self.__class__): + return links_equivalent(self._link, other._link) + return False + + @property + def source_link(self): + # type: () -> Optional[Link] + return self._source_link + + @property + def project_name(self): + # type: () -> NormalizedName + """The normalised name of the project the candidate refers to""" + if self._name is None: + self._name = canonicalize_name(self.dist.project_name) + return self._name + + @property + def name(self): + # type: () -> str + return self.project_name + + @property + def version(self): + # type: () -> CandidateVersion + if self._version is None: + self._version = parse_version(self.dist.version) + return self._version + + def format_for_error(self): + # type: () -> str + return "{} {} (from {})".format( + self.name, + self.version, + self._link.file_path if self._link.is_file else self._link, + ) + + def _prepare_distribution(self): + # type: () -> Distribution + raise NotImplementedError("Override in subclass") + + def _check_metadata_consistency(self, dist): + # type: (Distribution) -> None + """Check for consistency of project name and version of dist.""" + canonical_name = canonicalize_name(dist.project_name) + if self._name is not None and self._name != canonical_name: + raise MetadataInconsistent( + self._ireq, + "name", + self._name, + dist.project_name, + ) + parsed_version = parse_version(dist.version) + if self._version is not None and self._version != parsed_version: + raise MetadataInconsistent( + self._ireq, + "version", + str(self._version), + dist.version, + ) + + def _prepare(self): + # type: () -> Distribution + try: + dist = self._prepare_distribution() + except HashError as e: + # Provide HashError the underlying ireq that caused it. This + # provides context for the resulting error message to show the + # offending line to the user. + e.req = self._ireq + raise + self._check_metadata_consistency(dist) + return dist + + def _get_requires_python_dependency(self): + # type: () -> Optional[Requirement] + requires_python = get_requires_python(self.dist) + if requires_python is None: + return None + try: + spec = SpecifierSet(requires_python) + except InvalidSpecifier as e: + message = "Package %r has an invalid Requires-Python: %s" + logger.warning(message, self.name, e) + return None + return self._factory.make_requires_python_requirement(spec) + + def iter_dependencies(self, with_requires): + # type: (bool) -> Iterable[Optional[Requirement]] + requires = self.dist.requires() if with_requires else () + for r in requires: + yield self._factory.make_requirement_from_spec(str(r), self._ireq) + yield self._get_requires_python_dependency() + + def get_install_requirement(self): + # type: () -> Optional[InstallRequirement] + return self._ireq + + +class LinkCandidate(_InstallRequirementBackedCandidate): + is_editable = False + + def __init__( + self, + link, # type: Link + template, # type: InstallRequirement + factory, # type: Factory + name=None, # type: Optional[NormalizedName] + version=None, # type: Optional[CandidateVersion] + ): + # type: (...) -> None + source_link = link + cache_entry = factory.get_wheel_cache_entry(link, name) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + link = cache_entry.link + ireq = make_install_req_from_link(link, template) + assert ireq.link == link + if ireq.link.is_wheel and not ireq.link.is_file: + wheel = Wheel(ireq.link.filename) + wheel_name = canonicalize_name(wheel.name) + assert name == wheel_name, f"{name!r} != {wheel_name!r} for wheel" + # Version may not be present for PEP 508 direct URLs + if version is not None: + wheel_version = Version(wheel.version) + assert version == wheel_version, "{!r} != {!r} for wheel {}".format( + version, wheel_version, name + ) + + if ( + cache_entry is not None + and cache_entry.persistent + and template.link is template.original_link + ): + ireq.original_link_is_in_wheel_cache = True + + super().__init__( + link=link, + source_link=source_link, + ireq=ireq, + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self): + # type: () -> Distribution + return self._factory.preparer.prepare_linked_requirement( + self._ireq, parallel_builds=True + ) + + +class EditableCandidate(_InstallRequirementBackedCandidate): + is_editable = True + + def __init__( + self, + link, # type: Link + template, # type: InstallRequirement + factory, # type: Factory + name=None, # type: Optional[NormalizedName] + version=None, # type: Optional[CandidateVersion] + ): + # type: (...) -> None + super().__init__( + link=link, + source_link=link, + ireq=make_install_req_from_editable(link, template), + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self): + # type: () -> Distribution + return self._factory.preparer.prepare_editable_requirement(self._ireq) + + +class AlreadyInstalledCandidate(Candidate): + is_installed = True + source_link = None + + def __init__( + self, + dist, # type: Distribution + template, # type: InstallRequirement + factory, # type: Factory + ): + # type: (...) -> None + self.dist = dist + self._ireq = make_install_req_from_dist(dist, template) + self._factory = factory + + # This is just logging some messages, so we can do it eagerly. + # The returned dist would be exactly the same as self.dist because we + # set satisfied_by in make_install_req_from_dist. + # TODO: Supply reason based on force_reinstall and upgrade_strategy. + skip_reason = "already satisfied" + factory.preparer.prepare_installed_requirement(self._ireq, skip_reason) + + def __str__(self): + # type: () -> str + return str(self.dist) + + def __repr__(self): + # type: () -> str + return "{class_name}({distribution!r})".format( + class_name=self.__class__.__name__, + distribution=self.dist, + ) + + def __hash__(self): + # type: () -> int + return hash((self.__class__, self.name, self.version)) + + def __eq__(self, other): + # type: (Any) -> bool + if isinstance(other, self.__class__): + return self.name == other.name and self.version == other.version + return False + + @property + def project_name(self): + # type: () -> NormalizedName + return canonicalize_name(self.dist.project_name) + + @property + def name(self): + # type: () -> str + return self.project_name + + @property + def version(self): + # type: () -> CandidateVersion + return parse_version(self.dist.version) + + @property + def is_editable(self): + # type: () -> bool + return dist_is_editable(self.dist) + + def format_for_error(self): + # type: () -> str + return f"{self.name} {self.version} (Installed)" + + def iter_dependencies(self, with_requires): + # type: (bool) -> Iterable[Optional[Requirement]] + if not with_requires: + return + for r in self.dist.requires(): + yield self._factory.make_requirement_from_spec(str(r), self._ireq) + + def get_install_requirement(self): + # type: () -> Optional[InstallRequirement] + return None + + +class ExtrasCandidate(Candidate): + """A candidate that has 'extras', indicating additional dependencies. + + Requirements can be for a project with dependencies, something like + foo[extra]. The extras don't affect the project/version being installed + directly, but indicate that we need additional dependencies. We model that + by having an artificial ExtrasCandidate that wraps the "base" candidate. + + The ExtrasCandidate differs from the base in the following ways: + + 1. It has a unique name, of the form foo[extra]. This causes the resolver + to treat it as a separate node in the dependency graph. + 2. When we're getting the candidate's dependencies, + a) We specify that we want the extra dependencies as well. + b) We add a dependency on the base candidate. + See below for why this is needed. + 3. We return None for the underlying InstallRequirement, as the base + candidate will provide it, and we don't want to end up with duplicates. + + The dependency on the base candidate is needed so that the resolver can't + decide that it should recommend foo[extra1] version 1.0 and foo[extra2] + version 2.0. Having those candidates depend on foo=1.0 and foo=2.0 + respectively forces the resolver to recognise that this is a conflict. + """ + + def __init__( + self, + base, # type: BaseCandidate + extras, # type: FrozenSet[str] + ): + # type: (...) -> None + self.base = base + self.extras = extras + + def __str__(self): + # type: () -> str + name, rest = str(self.base).split(" ", 1) + return "{}[{}] {}".format(name, ",".join(self.extras), rest) + + def __repr__(self): + # type: () -> str + return "{class_name}(base={base!r}, extras={extras!r})".format( + class_name=self.__class__.__name__, + base=self.base, + extras=self.extras, + ) + + def __hash__(self): + # type: () -> int + return hash((self.base, self.extras)) + + def __eq__(self, other): + # type: (Any) -> bool + if isinstance(other, self.__class__): + return self.base == other.base and self.extras == other.extras + return False + + @property + def project_name(self): + # type: () -> NormalizedName + return self.base.project_name + + @property + def name(self): + # type: () -> str + """The normalised name of the project the candidate refers to""" + return format_name(self.base.project_name, self.extras) + + @property + def version(self): + # type: () -> CandidateVersion + return self.base.version + + def format_for_error(self): + # type: () -> str + return "{} [{}]".format( + self.base.format_for_error(), ", ".join(sorted(self.extras)) + ) + + @property + def is_installed(self): + # type: () -> bool + return self.base.is_installed + + @property + def is_editable(self): + # type: () -> bool + return self.base.is_editable + + @property + def source_link(self): + # type: () -> Optional[Link] + return self.base.source_link + + def iter_dependencies(self, with_requires): + # type: (bool) -> Iterable[Optional[Requirement]] + factory = self.base._factory + + # Add a dependency on the exact base + # (See note 2b in the class docstring) + yield factory.make_requirement_from_candidate(self.base) + if not with_requires: + return + + # The user may have specified extras that the candidate doesn't + # support. We ignore any unsupported extras here. + valid_extras = self.extras.intersection(self.base.dist.extras) + invalid_extras = self.extras.difference(self.base.dist.extras) + for extra in sorted(invalid_extras): + logger.warning( + "%s %s does not provide the extra '%s'", + self.base.name, + self.version, + extra, + ) + + for r in self.base.dist.requires(valid_extras): + requirement = factory.make_requirement_from_spec( + str(r), self.base._ireq, valid_extras + ) + if requirement: + yield requirement + + def get_install_requirement(self): + # type: () -> Optional[InstallRequirement] + # We don't return anything here, because we always + # depend on the base candidate, and we'll get the + # install requirement from that. + return None + + +class RequiresPythonCandidate(Candidate): + is_installed = False + source_link = None + + def __init__(self, py_version_info): + # type: (Optional[Tuple[int, ...]]) -> None + if py_version_info is not None: + version_info = normalize_version_info(py_version_info) + else: + version_info = sys.version_info[:3] + self._version = Version(".".join(str(c) for c in version_info)) + + # We don't need to implement __eq__() and __ne__() since there is always + # only one RequiresPythonCandidate in a resolution, i.e. the host Python. + # The built-in object.__eq__() and object.__ne__() do exactly what we want. + + def __str__(self): + # type: () -> str + return f"Python {self._version}" + + @property + def project_name(self): + # type: () -> NormalizedName + # Avoid conflicting with the PyPI package "Python". + return cast(NormalizedName, "") + + @property + def name(self): + # type: () -> str + return self.project_name + + @property + def version(self): + # type: () -> CandidateVersion + return self._version + + def format_for_error(self): + # type: () -> str + return f"Python {self.version}" + + def iter_dependencies(self, with_requires): + # type: (bool) -> Iterable[Optional[Requirement]] + return () + + def get_install_requirement(self): + # type: () -> Optional[InstallRequirement] + return None diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/factory.py b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/factory.py new file mode 100644 index 00000000..6e3f1951 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -0,0 +1,650 @@ +import contextlib +import functools +import logging +from typing import ( + TYPE_CHECKING, + Dict, + FrozenSet, + Iterable, + Iterator, + List, + Mapping, + Optional, + Sequence, + Set, + Tuple, + TypeVar, + cast, +) + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.requirements import Requirement as PackagingRequirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.pkg_resources import Distribution +from pip._vendor.resolvelib import ResolutionImpossible + +from pip._internal.cache import CacheEntry, WheelCache +from pip._internal.exceptions import ( + DistributionNotFound, + InstallationError, + InstallationSubprocessError, + MetadataInconsistent, + UnsupportedPythonVersion, + UnsupportedWheel, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import install_req_from_link_and_ireq +from pip._internal.req.req_install import InstallRequirement +from pip._internal.resolution.base import InstallRequirementProvider +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + dist_in_site_packages, + dist_in_usersite, + get_installed_distributions, +) +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import Candidate, CandidateVersion, Constraint, Requirement +from .candidates import ( + AlreadyInstalledCandidate, + BaseCandidate, + EditableCandidate, + ExtrasCandidate, + LinkCandidate, + RequiresPythonCandidate, + as_base_candidate, +) +from .found_candidates import FoundCandidates, IndexCandidateInfo +from .requirements import ( + ExplicitRequirement, + RequiresPythonRequirement, + SpecifierRequirement, + UnsatisfiableRequirement, +) + +if TYPE_CHECKING: + from typing import Protocol + + class ConflictCause(Protocol): + requirement: RequiresPythonRequirement + parent: Candidate + + +logger = logging.getLogger(__name__) + +C = TypeVar("C") +Cache = Dict[Link, C] + + +class Factory: + def __init__( + self, + finder, # type: PackageFinder + preparer, # type: RequirementPreparer + make_install_req, # type: InstallRequirementProvider + wheel_cache, # type: Optional[WheelCache] + use_user_site, # type: bool + force_reinstall, # type: bool + ignore_installed, # type: bool + ignore_requires_python, # type: bool + py_version_info=None, # type: Optional[Tuple[int, ...]] + ): + # type: (...) -> None + self._finder = finder + self.preparer = preparer + self._wheel_cache = wheel_cache + self._python_candidate = RequiresPythonCandidate(py_version_info) + self._make_install_req_from_spec = make_install_req + self._use_user_site = use_user_site + self._force_reinstall = force_reinstall + self._ignore_requires_python = ignore_requires_python + + self._build_failures = {} # type: Cache[InstallationError] + self._link_candidate_cache = {} # type: Cache[LinkCandidate] + self._editable_candidate_cache = {} # type: Cache[EditableCandidate] + self._installed_candidate_cache = ( + {} + ) # type: Dict[str, AlreadyInstalledCandidate] + self._extras_candidate_cache = ( + {} + ) # type: Dict[Tuple[int, FrozenSet[str]], ExtrasCandidate] + + if not ignore_installed: + self._installed_dists = { + canonicalize_name(dist.project_name): dist + for dist in get_installed_distributions(local_only=False) + } + else: + self._installed_dists = {} + + @property + def force_reinstall(self): + # type: () -> bool + return self._force_reinstall + + def _fail_if_link_is_unsupported_wheel(self, link: Link) -> None: + if not link.is_wheel: + return + wheel = Wheel(link.filename) + if wheel.supported(self._finder.target_python.get_tags()): + return + msg = f"{link.filename} is not a supported wheel on this platform." + raise UnsupportedWheel(msg) + + def _make_extras_candidate(self, base, extras): + # type: (BaseCandidate, FrozenSet[str]) -> ExtrasCandidate + cache_key = (id(base), extras) + try: + candidate = self._extras_candidate_cache[cache_key] + except KeyError: + candidate = ExtrasCandidate(base, extras) + self._extras_candidate_cache[cache_key] = candidate + return candidate + + def _make_candidate_from_dist( + self, + dist, # type: Distribution + extras, # type: FrozenSet[str] + template, # type: InstallRequirement + ): + # type: (...) -> Candidate + try: + base = self._installed_candidate_cache[dist.key] + except KeyError: + base = AlreadyInstalledCandidate(dist, template, factory=self) + self._installed_candidate_cache[dist.key] = base + if not extras: + return base + return self._make_extras_candidate(base, extras) + + def _make_candidate_from_link( + self, + link, # type: Link + extras, # type: FrozenSet[str] + template, # type: InstallRequirement + name, # type: Optional[NormalizedName] + version, # type: Optional[CandidateVersion] + ): + # type: (...) -> Optional[Candidate] + # TODO: Check already installed candidate, and use it if the link and + # editable flag match. + + if link in self._build_failures: + # We already tried this candidate before, and it does not build. + # Don't bother trying again. + return None + + if template.editable: + if link not in self._editable_candidate_cache: + try: + self._editable_candidate_cache[link] = EditableCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except (InstallationSubprocessError, MetadataInconsistent) as e: + logger.warning("Discarding %s. %s", link, e) + self._build_failures[link] = e + return None + base = self._editable_candidate_cache[link] # type: BaseCandidate + else: + if link not in self._link_candidate_cache: + try: + self._link_candidate_cache[link] = LinkCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except (InstallationSubprocessError, MetadataInconsistent) as e: + logger.warning("Discarding %s. %s", link, e) + self._build_failures[link] = e + return None + base = self._link_candidate_cache[link] + + if not extras: + return base + return self._make_extras_candidate(base, extras) + + def _iter_found_candidates( + self, + ireqs: Sequence[InstallRequirement], + specifier: SpecifierSet, + hashes: Hashes, + prefers_installed: bool, + incompatible_ids: Set[int], + ) -> Iterable[Candidate]: + if not ireqs: + return () + + # The InstallRequirement implementation requires us to give it a + # "template". Here we just choose the first requirement to represent + # all of them. + # Hopefully the Project model can correct this mismatch in the future. + template = ireqs[0] + assert template.req, "Candidates found on index must be PEP 508" + name = canonicalize_name(template.req.name) + + extras = frozenset() # type: FrozenSet[str] + for ireq in ireqs: + assert ireq.req, "Candidates found on index must be PEP 508" + specifier &= ireq.req.specifier + hashes &= ireq.hashes(trust_internet=False) + extras |= frozenset(ireq.extras) + + # Get the installed version, if it matches, unless the user + # specified `--force-reinstall`, when we want the version from + # the index instead. + installed_candidate = None + if not self._force_reinstall and name in self._installed_dists: + installed_dist = self._installed_dists[name] + if specifier.contains(installed_dist.version, prereleases=True): + installed_candidate = self._make_candidate_from_dist( + dist=installed_dist, + extras=extras, + template=template, + ) + + def iter_index_candidate_infos(): + # type: () -> Iterator[IndexCandidateInfo] + result = self._finder.find_best_candidate( + project_name=name, + specifier=specifier, + hashes=hashes, + ) + icans = list(result.iter_applicable()) + + # PEP 592: Yanked releases must be ignored unless only yanked + # releases can satisfy the version range. So if this is false, + # all yanked icans need to be skipped. + all_yanked = all(ican.link.is_yanked for ican in icans) + + # PackageFinder returns earlier versions first, so we reverse. + for ican in reversed(icans): + if not all_yanked and ican.link.is_yanked: + continue + func = functools.partial( + self._make_candidate_from_link, + link=ican.link, + extras=extras, + template=template, + name=name, + version=ican.version, + ) + yield ican.version, func + + return FoundCandidates( + iter_index_candidate_infos, + installed_candidate, + prefers_installed, + incompatible_ids, + ) + + def _iter_explicit_candidates_from_base( + self, + base_requirements: Iterable[Requirement], + extras: FrozenSet[str], + ) -> Iterator[Candidate]: + """Produce explicit candidates from the base given an extra-ed package. + + :param base_requirements: Requirements known to the resolver. The + requirements are guaranteed to not have extras. + :param extras: The extras to inject into the explicit requirements' + candidates. + """ + for req in base_requirements: + lookup_cand, _ = req.get_candidate_lookup() + if lookup_cand is None: # Not explicit. + continue + # We've stripped extras from the identifier, and should always + # get a BaseCandidate here, unless there's a bug elsewhere. + base_cand = as_base_candidate(lookup_cand) + assert base_cand is not None, "no extras here" + yield self._make_extras_candidate(base_cand, extras) + + def _iter_candidates_from_constraints( + self, + identifier: str, + constraint: Constraint, + template: InstallRequirement, + ) -> Iterator[Candidate]: + """Produce explicit candidates from constraints. + + This creates "fake" InstallRequirement objects that are basically clones + of what "should" be the template, but with original_link set to link. + """ + for link in constraint.links: + self._fail_if_link_is_unsupported_wheel(link) + candidate = self._make_candidate_from_link( + link, + extras=frozenset(), + template=install_req_from_link_and_ireq(link, template), + name=canonicalize_name(identifier), + version=None, + ) + if candidate: + yield candidate + + def find_candidates( + self, + identifier: str, + requirements: Mapping[str, Iterator[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + constraint: Constraint, + prefers_installed: bool, + ) -> Iterable[Candidate]: + # Collect basic lookup information from the requirements. + explicit_candidates = set() # type: Set[Candidate] + ireqs = [] # type: List[InstallRequirement] + for req in requirements[identifier]: + cand, ireq = req.get_candidate_lookup() + if cand is not None: + explicit_candidates.add(cand) + if ireq is not None: + ireqs.append(ireq) + + # If the current identifier contains extras, add explicit candidates + # from entries from extra-less identifier. + with contextlib.suppress(InvalidRequirement): + parsed_requirement = PackagingRequirement(identifier) + explicit_candidates.update( + self._iter_explicit_candidates_from_base( + requirements.get(parsed_requirement.name, ()), + frozenset(parsed_requirement.extras), + ), + ) + + # Add explicit candidates from constraints. We only do this if there are + # kown ireqs, which represent requirements not already explicit. If + # there are no ireqs, we're constraining already-explicit requirements, + # which is handled later when we return the explicit candidates. + if ireqs: + try: + explicit_candidates.update( + self._iter_candidates_from_constraints( + identifier, + constraint, + template=ireqs[0], + ), + ) + except UnsupportedWheel: + # If we're constrained to install a wheel incompatible with the + # target architecture, no candidates will ever be valid. + return () + + # Since we cache all the candidates, incompatibility identification + # can be made quicker by comparing only the id() values. + incompat_ids = {id(c) for c in incompatibilities.get(identifier, ())} + + # If none of the requirements want an explicit candidate, we can ask + # the finder for candidates. + if not explicit_candidates: + return self._iter_found_candidates( + ireqs, + constraint.specifier, + constraint.hashes, + prefers_installed, + incompat_ids, + ) + + return ( + c + for c in explicit_candidates + if id(c) not in incompat_ids + and constraint.is_satisfied_by(c) + and all(req.is_satisfied_by(c) for req in requirements[identifier]) + ) + + def make_requirement_from_install_req(self, ireq, requested_extras): + # type: (InstallRequirement, Iterable[str]) -> Optional[Requirement] + if not ireq.match_markers(requested_extras): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + ireq.name, + ireq.markers, + ) + return None + if not ireq.link: + return SpecifierRequirement(ireq) + self._fail_if_link_is_unsupported_wheel(ireq.link) + cand = self._make_candidate_from_link( + ireq.link, + extras=frozenset(ireq.extras), + template=ireq, + name=canonicalize_name(ireq.name) if ireq.name else None, + version=None, + ) + if cand is None: + # There's no way we can satisfy a URL requirement if the underlying + # candidate fails to build. An unnamed URL must be user-supplied, so + # we fail eagerly. If the URL is named, an unsatisfiable requirement + # can make the resolver do the right thing, either backtrack (and + # maybe find some other requirement that's buildable) or raise a + # ResolutionImpossible eventually. + if not ireq.name: + raise self._build_failures[ireq.link] + return UnsatisfiableRequirement(canonicalize_name(ireq.name)) + return self.make_requirement_from_candidate(cand) + + def make_requirement_from_candidate(self, candidate): + # type: (Candidate) -> ExplicitRequirement + return ExplicitRequirement(candidate) + + def make_requirement_from_spec( + self, + specifier, # type: str + comes_from, # type: InstallRequirement + requested_extras=(), # type: Iterable[str] + ): + # type: (...) -> Optional[Requirement] + ireq = self._make_install_req_from_spec(specifier, comes_from) + return self.make_requirement_from_install_req(ireq, requested_extras) + + def make_requires_python_requirement(self, specifier): + # type: (Optional[SpecifierSet]) -> Optional[Requirement] + if self._ignore_requires_python or specifier is None: + return None + return RequiresPythonRequirement(specifier, self._python_candidate) + + def get_wheel_cache_entry(self, link, name): + # type: (Link, Optional[str]) -> Optional[CacheEntry] + """Look up the link in the wheel cache. + + If ``preparer.require_hashes`` is True, don't use the wheel cache, + because cached wheels, always built locally, have different hashes + than the files downloaded from the index server and thus throw false + hash mismatches. Furthermore, cached wheels at present have + nondeterministic contents due to file modification times. + """ + if self._wheel_cache is None or self.preparer.require_hashes: + return None + return self._wheel_cache.get_cache_entry( + link=link, + package_name=name, + supported_tags=get_supported(), + ) + + def get_dist_to_uninstall(self, candidate): + # type: (Candidate) -> Optional[Distribution] + # TODO: Are there more cases this needs to return True? Editable? + dist = self._installed_dists.get(candidate.project_name) + if dist is None: # Not installed, no uninstallation required. + return None + + # We're installing into global site. The current installation must + # be uninstalled, no matter it's in global or user site, because the + # user site installation has precedence over global. + if not self._use_user_site: + return dist + + # We're installing into user site. Remove the user site installation. + if dist_in_usersite(dist): + return dist + + # We're installing into user site, but the installed incompatible + # package is in global site. We can't uninstall that, and would let + # the new user installation to "shadow" it. But shadowing won't work + # in virtual environments, so we error out. + if running_under_virtualenv() and dist_in_site_packages(dist): + raise InstallationError( + "Will not install to the user site because it will " + "lack sys.path precedence to {} in {}".format( + dist.project_name, + dist.location, + ) + ) + return None + + def _report_requires_python_error(self, causes): + # type: (Sequence[ConflictCause]) -> UnsupportedPythonVersion + assert causes, "Requires-Python error reported with no cause" + + version = self._python_candidate.version + + if len(causes) == 1: + specifier = str(causes[0].requirement.specifier) + message = ( + f"Package {causes[0].parent.name!r} requires a different " + f"Python: {version} not in {specifier!r}" + ) + return UnsupportedPythonVersion(message) + + message = f"Packages require a different Python. {version} not in:" + for cause in causes: + package = cause.parent.format_for_error() + specifier = str(cause.requirement.specifier) + message += f"\n{specifier!r} (required by {package})" + return UnsupportedPythonVersion(message) + + def _report_single_requirement_conflict(self, req, parent): + # type: (Requirement, Optional[Candidate]) -> DistributionNotFound + if parent is None: + req_disp = str(req) + else: + req_disp = f"{req} (from {parent.name})" + + cands = self._finder.find_all_candidates(req.project_name) + versions = [str(v) for v in sorted({c.version for c in cands})] + + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req_disp, + ", ".join(versions) or "none", + ) + + return DistributionNotFound(f"No matching distribution found for {req}") + + def get_installation_error( + self, + e, # type: ResolutionImpossible[Requirement, Candidate] + constraints, # type: Dict[str, Constraint] + ): + # type: (...) -> InstallationError + + assert e.causes, "Installation error reported with no cause" + + # If one of the things we can't solve is "we need Python X.Y", + # that is what we report. + requires_python_causes = [ + cause + for cause in e.causes + if isinstance(cause.requirement, RequiresPythonRequirement) + and not cause.requirement.is_satisfied_by(self._python_candidate) + ] + if requires_python_causes: + # The comprehension above makes sure all Requirement instances are + # RequiresPythonRequirement, so let's cast for convinience. + return self._report_requires_python_error( + cast("Sequence[ConflictCause]", requires_python_causes), + ) + + # Otherwise, we have a set of causes which can't all be satisfied + # at once. + + # The simplest case is when we have *one* cause that can't be + # satisfied. We just report that case. + if len(e.causes) == 1: + req, parent = e.causes[0] + if req.name not in constraints: + return self._report_single_requirement_conflict(req, parent) + + # OK, we now have a list of requirements that can't all be + # satisfied at once. + + # A couple of formatting helpers + def text_join(parts): + # type: (List[str]) -> str + if len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def describe_trigger(parent): + # type: (Candidate) -> str + ireq = parent.get_install_requirement() + if not ireq or not ireq.comes_from: + return f"{parent.name}=={parent.version}" + if isinstance(ireq.comes_from, InstallRequirement): + return str(ireq.comes_from.name) + return str(ireq.comes_from) + + triggers = set() + for req, parent in e.causes: + if parent is None: + # This is a root requirement, so we can report it directly + trigger = req.format_for_error() + else: + trigger = describe_trigger(parent) + triggers.add(trigger) + + if triggers: + info = text_join(sorted(triggers)) + else: + info = "the requested packages" + + msg = ( + "Cannot install {} because these package versions " + "have conflicting dependencies.".format(info) + ) + logger.critical(msg) + msg = "\nThe conflict is caused by:" + + relevant_constraints = set() + for req, parent in e.causes: + if req.name in constraints: + relevant_constraints.add(req.name) + msg = msg + "\n " + if parent: + msg = msg + f"{parent.name} {parent.version} depends on " + else: + msg = msg + "The user requested " + msg = msg + req.format_for_error() + for key in relevant_constraints: + spec = constraints[key].specifier + msg += f"\n The user requested (constraint) {key}{spec}" + + msg = ( + msg + + "\n\n" + + "To fix this you could try to:\n" + + "1. loosen the range of package versions you've specified\n" + + "2. remove package versions to allow pip attempt to solve " + + "the dependency conflict\n" + ) + + logger.info(msg) + + return DistributionNotFound( + "ResolutionImpossible: for help visit " + "https://pip.pypa.io/en/latest/user_guide/" + "#fixing-conflicting-dependencies" + ) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py new file mode 100644 index 00000000..21fa08ec --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py @@ -0,0 +1,145 @@ +"""Utilities to lazily create and visit candidates found. + +Creating and visiting a candidate is a *very* costly operation. It involves +fetching, extracting, potentially building modules from source, and verifying +distribution metadata. It is therefore crucial for performance to keep +everything here lazy all the way down, so we only touch candidates that we +absolutely need, and not "download the world" when we only need one version of +something. +""" + +import functools +from typing import Callable, Iterator, Optional, Set, Tuple + +from pip._vendor.packaging.version import _BaseVersion +from pip._vendor.six.moves import collections_abc # type: ignore + +from .base import Candidate + +IndexCandidateInfo = Tuple[_BaseVersion, Callable[[], Optional[Candidate]]] + + +def _iter_built(infos): + # type: (Iterator[IndexCandidateInfo]) -> Iterator[Candidate] + """Iterator for ``FoundCandidates``. + + This iterator is used when the package is not already installed. Candidates + from index come later in their normal ordering. + """ + versions_found = set() # type: Set[_BaseVersion] + for version, func in infos: + if version in versions_found: + continue + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_prepended(installed, infos): + # type: (Candidate, Iterator[IndexCandidateInfo]) -> Iterator[Candidate] + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers the already-installed + candidate and NOT to upgrade. The installed candidate is therefore + always yielded first, and candidates from index come later in their + normal ordering, except skipped when the version is already installed. + """ + yield installed + versions_found = {installed.version} # type: Set[_BaseVersion] + for version, func in infos: + if version in versions_found: + continue + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_inserted(installed, infos): + # type: (Candidate, Iterator[IndexCandidateInfo]) -> Iterator[Candidate] + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers to upgrade an + already-installed package. Candidates from index are returned in their + normal ordering, except replaced when the version is already installed. + + The implementation iterates through and yields other candidates, inserting + the installed candidate exactly once before we start yielding older or + equivalent candidates, or after all other candidates if they are all newer. + """ + versions_found = set() # type: Set[_BaseVersion] + for version, func in infos: + if version in versions_found: + continue + # If the installed candidate is better, yield it first. + if installed.version >= version: + yield installed + versions_found.add(installed.version) + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + # If the installed candidate is older than all other candidates. + if installed.version not in versions_found: + yield installed + + +class FoundCandidates(collections_abc.Sequence): + """A lazy sequence to provide candidates to the resolver. + + The intended usage is to return this from `find_matches()` so the resolver + can iterate through the sequence multiple times, but only access the index + page when remote packages are actually needed. This improve performances + when suitable candidates are already installed on disk. + """ + + def __init__( + self, + get_infos: Callable[[], Iterator[IndexCandidateInfo]], + installed: Optional[Candidate], + prefers_installed: bool, + incompatible_ids: Set[int], + ): + self._get_infos = get_infos + self._installed = installed + self._prefers_installed = prefers_installed + self._incompatible_ids = incompatible_ids + + def __getitem__(self, index): + # type: (int) -> Candidate + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + def __iter__(self): + # type: () -> Iterator[Candidate] + infos = self._get_infos() + if not self._installed: + iterator = _iter_built(infos) + elif self._prefers_installed: + iterator = _iter_built_with_prepended(self._installed, infos) + else: + iterator = _iter_built_with_inserted(self._installed, infos) + return (c for c in iterator if id(c) not in self._incompatible_ids) + + def __len__(self): + # type: () -> int + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + @functools.lru_cache(maxsize=1) + def __bool__(self): + # type: () -> bool + if self._prefers_installed and self._installed: + return True + return any(self) + + __nonzero__ = __bool__ # XXX: Python 2. diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/provider.py b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/provider.py new file mode 100644 index 00000000..0be58fd3 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/provider.py @@ -0,0 +1,175 @@ +from typing import TYPE_CHECKING, Dict, Iterable, Iterator, Mapping, Sequence, Union + +from pip._vendor.resolvelib.providers import AbstractProvider + +from .base import Candidate, Constraint, Requirement +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.providers import Preference + from pip._vendor.resolvelib.resolvers import RequirementInformation + + PreferenceInformation = RequirementInformation[Requirement, Candidate] + + _ProviderBase = AbstractProvider[Requirement, Candidate, str] +else: + _ProviderBase = AbstractProvider + +# Notes on the relationship between the provider, the factory, and the +# candidate and requirement classes. +# +# The provider is a direct implementation of the resolvelib class. Its role +# is to deliver the API that resolvelib expects. +# +# Rather than work with completely abstract "requirement" and "candidate" +# concepts as resolvelib does, pip has concrete classes implementing these two +# ideas. The API of Requirement and Candidate objects are defined in the base +# classes, but essentially map fairly directly to the equivalent provider +# methods. In particular, `find_matches` and `is_satisfied_by` are +# requirement methods, and `get_dependencies` is a candidate method. +# +# The factory is the interface to pip's internal mechanisms. It is stateless, +# and is created by the resolver and held as a property of the provider. It is +# responsible for creating Requirement and Candidate objects, and provides +# services to those objects (access to pip's finder and preparer). + + +class PipProvider(_ProviderBase): + """Pip's provider implementation for resolvelib. + + :params constraints: A mapping of constraints specified by the user. Keys + are canonicalized project names. + :params ignore_dependencies: Whether the user specified ``--no-deps``. + :params upgrade_strategy: The user-specified upgrade strategy. + :params user_requested: A set of canonicalized package names that the user + supplied for pip to install/upgrade. + """ + + def __init__( + self, + factory, # type: Factory + constraints, # type: Dict[str, Constraint] + ignore_dependencies, # type: bool + upgrade_strategy, # type: str + user_requested, # type: Dict[str, int] + ): + # type: (...) -> None + self._factory = factory + self._constraints = constraints + self._ignore_dependencies = ignore_dependencies + self._upgrade_strategy = upgrade_strategy + self._user_requested = user_requested + + def identify(self, requirement_or_candidate): + # type: (Union[Requirement, Candidate]) -> str + return requirement_or_candidate.name + + def get_preference( + self, + identifier: str, + resolutions: Mapping[str, Candidate], + candidates: Mapping[str, Iterator[Candidate]], + information: Mapping[str, Iterator["PreferenceInformation"]], + ) -> "Preference": + """Produce a sort key for given requirement based on preference. + + The lower the return value is, the more preferred this group of + arguments is. + + Currently pip considers the followings in order: + + * Prefer if any of the known requirements points to an explicit URL. + * If equal, prefer if any requirements contain ``===`` and ``==``. + * If equal, prefer if requirements include version constraints, e.g. + ``>=`` and ``<``. + * If equal, prefer user-specified (non-transitive) requirements, and + order user-specified requirements by the order they are specified. + * If equal, order alphabetically for consistency (helps debuggability). + """ + + def _get_restrictive_rating(requirements): + # type: (Iterable[Requirement]) -> int + """Rate how restrictive a set of requirements are. + + ``Requirement.get_candidate_lookup()`` returns a 2-tuple for + lookup. The first element is ``Optional[Candidate]`` and the + second ``Optional[InstallRequirement]``. + + * If the requirement is an explicit one, the explicitly-required + candidate is returned as the first element. + * If the requirement is based on a PEP 508 specifier, the backing + ``InstallRequirement`` is returned as the second element. + + We use the first element to check whether there is an explicit + requirement, and the second for equality operator. + """ + lookups = (r.get_candidate_lookup() for r in requirements) + cands, ireqs = zip(*lookups) + if any(cand is not None for cand in cands): + return 0 + spec_sets = (ireq.specifier for ireq in ireqs if ireq) + operators = [ + specifier.operator for spec_set in spec_sets for specifier in spec_set + ] + if any(op in ("==", "===") for op in operators): + return 1 + if operators: + return 2 + # A "bare" requirement without any version requirements. + return 3 + + rating = _get_restrictive_rating(r for r, _ in information[identifier]) + order = self._user_requested.get(identifier, float("inf")) + + # HACK: Setuptools have a very long and solid backward compatibility + # track record, and extremely few projects would request a narrow, + # non-recent version range of it since that would break a lot things. + # (Most projects specify it only to request for an installer feature, + # which does not work, but that's another topic.) Intentionally + # delaying Setuptools helps reduce branches the resolver has to check. + # This serves as a temporary fix for issues like "apache-airlfow[all]" + # while we work on "proper" branch pruning techniques. + delay_this = identifier == "setuptools" + + return (delay_this, rating, order, identifier) + + def find_matches( + self, + identifier: str, + requirements: Mapping[str, Iterator[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + ) -> Iterable[Candidate]: + def _eligible_for_upgrade(name): + # type: (str) -> bool + """Are upgrades allowed for this project? + + This checks the upgrade strategy, and whether the project was one + that the user specified in the command line, in order to decide + whether we should upgrade if there's a newer version available. + + (Note that we don't need access to the `--upgrade` flag, because + an upgrade strategy of "to-satisfy-only" means that `--upgrade` + was not specified). + """ + if self._upgrade_strategy == "eager": + return True + elif self._upgrade_strategy == "only-if-needed": + return name in self._user_requested + return False + + return self._factory.find_candidates( + identifier=identifier, + requirements=requirements, + constraint=self._constraints.get(identifier, Constraint.empty()), + prefers_installed=(not _eligible_for_upgrade(identifier)), + incompatibilities=incompatibilities, + ) + + def is_satisfied_by(self, requirement, candidate): + # type: (Requirement, Candidate) -> bool + return requirement.is_satisfied_by(candidate) + + def get_dependencies(self, candidate): + # type: (Candidate) -> Sequence[Requirement] + with_requires = not self._ignore_dependencies + return [r for r in candidate.iter_dependencies(with_requires) if r is not None] diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/reporter.py new file mode 100644 index 00000000..074583de --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/reporter.py @@ -0,0 +1,78 @@ +from collections import defaultdict +from logging import getLogger +from typing import Any, DefaultDict + +from pip._vendor.resolvelib.reporters import BaseReporter + +from .base import Candidate, Requirement + +logger = getLogger(__name__) + + +class PipReporter(BaseReporter): + def __init__(self): + # type: () -> None + self.backtracks_by_package = defaultdict(int) # type: DefaultDict[str, int] + + self._messages_at_backtrack = { + 1: ( + "pip is looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 8: ( + "pip is looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 13: ( + "This is taking longer than usual. You might need to provide " + "the dependency resolver with stricter constraints to reduce " + "runtime. If you want to abort this run, you can press " + "Ctrl + C to do so. To improve how pip performs, tell us what " + "happened here: https://pip.pypa.io/surveys/backtracking" + ), + } + + def backtracking(self, candidate): + # type: (Candidate) -> None + self.backtracks_by_package[candidate.name] += 1 + + count = self.backtracks_by_package[candidate.name] + if count not in self._messages_at_backtrack: + return + + message = self._messages_at_backtrack[count] + logger.info("INFO: %s", message.format(package_name=candidate.name)) + + +class PipDebuggingReporter(BaseReporter): + """A reporter that does an info log for every event it sees.""" + + def starting(self): + # type: () -> None + logger.info("Reporter.starting()") + + def starting_round(self, index): + # type: (int) -> None + logger.info("Reporter.starting_round(%r)", index) + + def ending_round(self, index, state): + # type: (int, Any) -> None + logger.info("Reporter.ending_round(%r, state)", index) + + def ending(self, state): + # type: (Any) -> None + logger.info("Reporter.ending(%r)", state) + + def adding_requirement(self, requirement, parent): + # type: (Requirement, Candidate) -> None + logger.info("Reporter.adding_requirement(%r, %r)", requirement, parent) + + def backtracking(self, candidate): + # type: (Candidate) -> None + logger.info("Reporter.backtracking(%r)", candidate) + + def pinning(self, candidate): + # type: (Candidate) -> None + logger.info("Reporter.pinning(%r)", candidate) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/requirements.py new file mode 100644 index 00000000..a7fcdd1e --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/requirements.py @@ -0,0 +1,198 @@ +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.req.req_install import InstallRequirement + +from .base import Candidate, CandidateLookup, Requirement, format_name + + +class ExplicitRequirement(Requirement): + def __init__(self, candidate): + # type: (Candidate) -> None + self.candidate = candidate + + def __str__(self): + # type: () -> str + return str(self.candidate) + + def __repr__(self): + # type: () -> str + return "{class_name}({candidate!r})".format( + class_name=self.__class__.__name__, + candidate=self.candidate, + ) + + @property + def project_name(self): + # type: () -> NormalizedName + # No need to canonicalise - the candidate did this + return self.candidate.project_name + + @property + def name(self): + # type: () -> str + # No need to canonicalise - the candidate did this + return self.candidate.name + + def format_for_error(self): + # type: () -> str + return self.candidate.format_for_error() + + def get_candidate_lookup(self): + # type: () -> CandidateLookup + return self.candidate, None + + def is_satisfied_by(self, candidate): + # type: (Candidate) -> bool + return candidate == self.candidate + + +class SpecifierRequirement(Requirement): + def __init__(self, ireq): + # type: (InstallRequirement) -> None + assert ireq.link is None, "This is a link, not a specifier" + self._ireq = ireq + self._extras = frozenset(ireq.extras) + + def __str__(self): + # type: () -> str + return str(self._ireq.req) + + def __repr__(self): + # type: () -> str + return "{class_name}({requirement!r})".format( + class_name=self.__class__.__name__, + requirement=str(self._ireq.req), + ) + + @property + def project_name(self): + # type: () -> NormalizedName + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + return canonicalize_name(self._ireq.req.name) + + @property + def name(self): + # type: () -> str + return format_name(self.project_name, self._extras) + + def format_for_error(self): + # type: () -> str + + # Convert comma-separated specifiers into "A, B, ..., F and G" + # This makes the specifier a bit more "human readable", without + # risking a change in meaning. (Hopefully! Not all edge cases have + # been checked) + parts = [s.strip() for s in str(self).split(",")] + if len(parts) == 0: + return "" + elif len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def get_candidate_lookup(self): + # type: () -> CandidateLookup + return None, self._ireq + + def is_satisfied_by(self, candidate): + # type: (Candidate) -> bool + assert candidate.name == self.name, ( + f"Internal issue: Candidate is not for this requirement " + f"{candidate.name} vs {self.name}" + ) + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + spec = self._ireq.req.specifier + return spec.contains(candidate.version, prereleases=True) + + +class RequiresPythonRequirement(Requirement): + """A requirement representing Requires-Python metadata.""" + + def __init__(self, specifier, match): + # type: (SpecifierSet, Candidate) -> None + self.specifier = specifier + self._candidate = match + + def __str__(self): + # type: () -> str + return f"Python {self.specifier}" + + def __repr__(self): + # type: () -> str + return "{class_name}({specifier!r})".format( + class_name=self.__class__.__name__, + specifier=str(self.specifier), + ) + + @property + def project_name(self): + # type: () -> NormalizedName + return self._candidate.project_name + + @property + def name(self): + # type: () -> str + return self._candidate.name + + def format_for_error(self): + # type: () -> str + return str(self) + + def get_candidate_lookup(self): + # type: () -> CandidateLookup + if self.specifier.contains(self._candidate.version, prereleases=True): + return self._candidate, None + return None, None + + def is_satisfied_by(self, candidate): + # type: (Candidate) -> bool + assert candidate.name == self._candidate.name, "Not Python candidate" + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class UnsatisfiableRequirement(Requirement): + """A requirement that cannot be satisfied.""" + + def __init__(self, name): + # type: (NormalizedName) -> None + self._name = name + + def __str__(self): + # type: () -> str + return f"{self._name} (unavailable)" + + def __repr__(self): + # type: () -> str + return "{class_name}({name!r})".format( + class_name=self.__class__.__name__, + name=str(self._name), + ) + + @property + def project_name(self): + # type: () -> NormalizedName + return self._name + + @property + def name(self): + # type: () -> str + return self._name + + def format_for_error(self): + # type: () -> str + return str(self) + + def get_candidate_lookup(self): + # type: () -> CandidateLookup + return None, None + + def is_satisfied_by(self, candidate): + # type: (Candidate) -> bool + return False diff --git a/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py new file mode 100644 index 00000000..b90f82cf --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py @@ -0,0 +1,305 @@ +import functools +import logging +import os +from typing import TYPE_CHECKING, Dict, List, Optional, Set, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.resolvelib import BaseReporter, ResolutionImpossible +from pip._vendor.resolvelib import Resolver as RLResolver +from pip._vendor.resolvelib.structs import DirectedGraph + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import InstallationError +from pip._internal.index.package_finder import PackageFinder +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.resolution.resolvelib.provider import PipProvider +from pip._internal.resolution.resolvelib.reporter import ( + PipDebuggingReporter, + PipReporter, +) +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filetypes import is_archive_file +from pip._internal.utils.misc import dist_is_editable + +from .base import Candidate, Constraint, Requirement +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.resolvers import Result as RLResult + + Result = RLResult[Requirement, Candidate, str] + + +logger = logging.getLogger(__name__) + + +class Resolver(BaseResolver): + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer, # type: RequirementPreparer + finder, # type: PackageFinder + wheel_cache, # type: Optional[WheelCache] + make_install_req, # type: InstallRequirementProvider + use_user_site, # type: bool + ignore_dependencies, # type: bool + ignore_installed, # type: bool + ignore_requires_python, # type: bool + force_reinstall, # type: bool + upgrade_strategy, # type: str + py_version_info=None, # type: Optional[Tuple[int, ...]] + ): + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + self.factory = Factory( + finder=finder, + preparer=preparer, + make_install_req=make_install_req, + wheel_cache=wheel_cache, + use_user_site=use_user_site, + force_reinstall=force_reinstall, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + py_version_info=py_version_info, + ) + self.ignore_dependencies = ignore_dependencies + self.upgrade_strategy = upgrade_strategy + self._result = None # type: Optional[Result] + + def resolve(self, root_reqs, check_supported_wheels): + # type: (List[InstallRequirement], bool) -> RequirementSet + + constraints = {} # type: Dict[str, Constraint] + user_requested = {} # type: Dict[str, int] + requirements = [] + for i, req in enumerate(root_reqs): + if req.constraint: + # Ensure we only accept valid constraints + problem = check_invalid_constraint_type(req) + if problem: + raise InstallationError(problem) + if not req.match_markers(): + continue + assert req.name, "Constraint must be named" + name = canonicalize_name(req.name) + if name in constraints: + constraints[name] &= req + else: + constraints[name] = Constraint.from_ireq(req) + else: + if req.user_supplied and req.name: + canonical_name = canonicalize_name(req.name) + if canonical_name not in user_requested: + user_requested[canonical_name] = i + r = self.factory.make_requirement_from_install_req( + req, requested_extras=() + ) + if r is not None: + requirements.append(r) + + provider = PipProvider( + factory=self.factory, + constraints=constraints, + ignore_dependencies=self.ignore_dependencies, + upgrade_strategy=self.upgrade_strategy, + user_requested=user_requested, + ) + if "PIP_RESOLVER_DEBUG" in os.environ: + reporter = PipDebuggingReporter() # type: BaseReporter + else: + reporter = PipReporter() + resolver = RLResolver( + provider, + reporter, + ) # type: RLResolver[Requirement, Candidate, str] + + try: + try_to_avoid_resolution_too_deep = 2000000 + result = self._result = resolver.resolve( + requirements, max_rounds=try_to_avoid_resolution_too_deep + ) + + except ResolutionImpossible as e: + error = self.factory.get_installation_error( + cast("ResolutionImpossible[Requirement, Candidate]", e), + constraints, + ) + raise error from e + + req_set = RequirementSet(check_supported_wheels=check_supported_wheels) + for candidate in result.mapping.values(): + ireq = candidate.get_install_requirement() + if ireq is None: + continue + + # Check if there is already an installation under the same name, + # and set a flag for later stages to uninstall it, if needed. + installed_dist = self.factory.get_dist_to_uninstall(candidate) + if installed_dist is None: + # There is no existing installation -- nothing to uninstall. + ireq.should_reinstall = False + elif self.factory.force_reinstall: + # The --force-reinstall flag is set -- reinstall. + ireq.should_reinstall = True + elif parse_version(installed_dist.version) != candidate.version: + # The installation is different in version -- reinstall. + ireq.should_reinstall = True + elif candidate.is_editable or dist_is_editable(installed_dist): + # The incoming distribution is editable, or different in + # editable-ness to installation -- reinstall. + ireq.should_reinstall = True + elif candidate.source_link and candidate.source_link.is_file: + # The incoming distribution is under file:// + if candidate.source_link.is_wheel: + # is a local wheel -- do nothing. + logger.info( + "%s is already installed with the same version as the " + "provided wheel. Use --force-reinstall to force an " + "installation of the wheel.", + ireq.name, + ) + continue + + looks_like_sdist = ( + is_archive_file(candidate.source_link.file_path) + and candidate.source_link.ext != ".zip" + ) + if looks_like_sdist: + # is a local sdist -- show a deprecation warning! + reason = ( + "Source distribution is being reinstalled despite an " + "installed package having the same name and version as " + "the installed package." + ) + replacement = "use --force-reinstall" + deprecated( + reason=reason, + replacement=replacement, + gone_in="21.2", + issue=8711, + ) + + # is a local sdist or path -- reinstall + ireq.should_reinstall = True + else: + continue + + link = candidate.source_link + if link and link.is_yanked: + # The reason can contain non-ASCII characters, Unicode + # is required for Python 2. + msg = ( + "The candidate selected for download or install is a " + "yanked version: {name!r} candidate (version {version} " + "at {link})\nReason for being yanked: {reason}" + ).format( + name=candidate.name, + version=candidate.version, + link=link, + reason=link.yanked_reason or "", + ) + logger.warning(msg) + + req_set.add_named_requirement(ireq) + + reqs = req_set.all_requirements + self.factory.preparer.prepare_linked_requirements_more(reqs) + return req_set + + def get_installation_order(self, req_set): + # type: (RequirementSet) -> List[InstallRequirement] + """Get order for installation of requirements in RequirementSet. + + The returned list contains a requirement before another that depends on + it. This helps ensure that the environment is kept consistent as they + get installed one-by-one. + + The current implementation creates a topological ordering of the + dependency graph, while breaking any cycles in the graph at arbitrary + points. We make no guarantees about where the cycle would be broken, + other than they would be broken. + """ + assert self._result is not None, "must call resolve() first" + + graph = self._result.graph + weights = get_topological_weights( + graph, + expected_node_count=len(self._result.mapping) + 1, + ) + + sorted_items = sorted( + req_set.requirements.items(), + key=functools.partial(_req_set_item_sorter, weights=weights), + reverse=True, + ) + return [ireq for _, ireq in sorted_items] + + +def get_topological_weights(graph, expected_node_count): + # type: (DirectedGraph[Optional[str]], int) -> Dict[Optional[str], int] + """Assign weights to each node based on how "deep" they are. + + This implementation may change at any point in the future without prior + notice. + + We take the length for the longest path to any node from root, ignoring any + paths that contain a single node twice (i.e. cycles). This is done through + a depth-first search through the graph, while keeping track of the path to + the node. + + Cycles in the graph result would result in node being revisited while also + being it's own path. In this case, take no action. This helps ensure we + don't get stuck in a cycle. + + When assigning weight, the longer path (i.e. larger length) is preferred. + """ + path = set() # type: Set[Optional[str]] + weights = {} # type: Dict[Optional[str], int] + + def visit(node): + # type: (Optional[str]) -> None + if node in path: + # We hit a cycle, so we'll break it here. + return + + # Time to visit the children! + path.add(node) + for child in graph.iter_children(node): + visit(child) + path.remove(node) + + last_known_parent_count = weights.get(node, 0) + weights[node] = max(last_known_parent_count, len(path)) + + # `None` is guaranteed to be the root node by resolvelib. + visit(None) + + # Sanity checks + assert weights[None] == 0 + assert len(weights) == expected_node_count + + return weights + + +def _req_set_item_sorter( + item, # type: Tuple[str, InstallRequirement] + weights, # type: Dict[Optional[str], int] +): + # type: (...) -> Tuple[int, str] + """Key function used to sort install requirements for installation. + + Based on the "weight" mapping calculated in ``get_installation_order()``. + The canonical package name is returned as the second member as a tie- + breaker to ensure the result is predictable, which is useful in tests. + """ + name = canonicalize_name(item[0]) + return weights[name], name diff --git a/venv/lib/python3.8/site-packages/pip/_internal/self_outdated_check.py b/venv/lib/python3.8/site-packages/pip/_internal/self_outdated_check.py new file mode 100644 index 00000000..6b24965b --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/self_outdated_check.py @@ -0,0 +1,187 @@ +import datetime +import hashlib +import json +import logging +import optparse +import os.path +import sys +from typing import Any, Dict + +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import get_default_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.filesystem import adjacent_tmp_file, check_path_owner, replace +from pip._internal.utils.misc import ensure_dir + +SELFCHECK_DATE_FMT = "%Y-%m-%dT%H:%M:%SZ" + + +logger = logging.getLogger(__name__) + + +def _get_statefile_name(key): + # type: (str) -> str + key_bytes = key.encode() + name = hashlib.sha224(key_bytes).hexdigest() + return name + + +class SelfCheckState: + def __init__(self, cache_dir): + # type: (str) -> None + self.state = {} # type: Dict[str, Any] + self.statefile_path = None + + # Try to load the existing state + if cache_dir: + self.statefile_path = os.path.join( + cache_dir, "selfcheck", _get_statefile_name(self.key) + ) + try: + with open(self.statefile_path, encoding="utf-8") as statefile: + self.state = json.load(statefile) + except (OSError, ValueError, KeyError): + # Explicitly suppressing exceptions, since we don't want to + # error out if the cache file is invalid. + pass + + @property + def key(self): + # type: () -> str + return sys.prefix + + def save(self, pypi_version, current_time): + # type: (str, datetime.datetime) -> None + # If we do not have a path to cache in, don't bother saving. + if not self.statefile_path: + return + + # Check to make sure that we own the directory + if not check_path_owner(os.path.dirname(self.statefile_path)): + return + + # Now that we've ensured the directory is owned by this user, we'll go + # ahead and make sure that all our directories are created. + ensure_dir(os.path.dirname(self.statefile_path)) + + state = { + # Include the key so it's easy to tell which pip wrote the + # file. + "key": self.key, + "last_check": current_time.strftime(SELFCHECK_DATE_FMT), + "pypi_version": pypi_version, + } + + text = json.dumps(state, sort_keys=True, separators=(",", ":")) + + with adjacent_tmp_file(self.statefile_path) as f: + f.write(text.encode()) + + try: + # Since we have a prefix-specific state file, we can just + # overwrite whatever is there, no need to check. + replace(f.name, self.statefile_path) + except OSError: + # Best effort. + pass + + +def was_installed_by_pip(pkg): + # type: (str) -> bool + """Checks whether pkg was installed by pip + + This is used not to display the upgrade message when pip is in fact + installed by system package manager, such as dnf on Fedora. + """ + dist = get_default_environment().get_distribution(pkg) + return dist is not None and "pip" == dist.installer + + +def pip_self_version_check(session, options): + # type: (PipSession, optparse.Values) -> None + """Check for an update for pip. + + Limit the frequency of checks to once per week. State is stored either in + the active virtualenv or in the user's USER_CACHE_DIR keyed off the prefix + of the pip script path. + """ + installed_dist = get_default_environment().get_distribution("pip") + if not installed_dist: + return + + pip_version = installed_dist.version + pypi_version = None + + try: + state = SelfCheckState(cache_dir=options.cache_dir) + + current_time = datetime.datetime.utcnow() + # Determine if we need to refresh the state + if "last_check" in state.state and "pypi_version" in state.state: + last_check = datetime.datetime.strptime( + state.state["last_check"], + SELFCHECK_DATE_FMT + ) + if (current_time - last_check).total_seconds() < 7 * 24 * 60 * 60: + pypi_version = state.state["pypi_version"] + + # Refresh the version if we need to or just see if we need to warn + if pypi_version is None: + # Lets use PackageFinder to see what the latest pip version is + link_collector = LinkCollector.create( + session, + options=options, + suppress_no_index=True, + ) + + # Pass allow_yanked=False so we don't suggest upgrading to a + # yanked version. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=False, # Explicitly set to False + ) + + finder = PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + best_candidate = finder.find_best_candidate("pip").best_candidate + if best_candidate is None: + return + pypi_version = str(best_candidate.version) + + # save that we've performed a check + state.save(pypi_version, current_time) + + remote_version = parse_version(pypi_version) + + local_version_is_older = ( + pip_version < remote_version and + pip_version.base_version != remote_version.base_version and + was_installed_by_pip('pip') + ) + + # Determine if our pypi_version is older + if not local_version_is_older: + return + + # We cannot tell how the current pip is available in the current + # command context, so be pragmatic here and suggest the command + # that's always available. This does not accommodate spaces in + # `sys.executable`. + pip_cmd = f"{sys.executable} -m pip" + logger.warning( + "You are using pip version %s; however, version %s is " + "available.\nYou should consider upgrading via the " + "'%s install --upgrade pip' command.", + pip_version, pypi_version, pip_cmd + ) + except Exception: + logger.debug( + "There was an error checking the latest version of pip", + exc_info=True, + ) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5ac586949dc6584f9d17cc6014cfea080d32e25 GIT binary patch literal 155 zcmWIL<>g`k0)_V01Q7igL?8o3AjbiSi&=m~3PUi1CZpdih_W%F@ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aa5743d0f09df7cce37ef2ed1404a337bb660a32 GIT binary patch literal 1220 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 LU@n?wv`c>hUq5N% literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..34213d856349fc4066355ae815cec7f587f30632 GIT binary patch literal 2725 zcmaJ@TaVku73T0JimUY{@uqR(ANxc4*gwG6KIJbME!yvpTCGwS8G*x@A$jI}-#POgeYw3IT4?+) zfBwTi2A1_tnrt=~lTUEzKcW-X#1c%{8Jn>7Zcl97oy^JIiJN;9FZU;Y-kbFDU=lET z*UkEQI0@Uamu=;P$u`FR;sd-PW4+)fu_~~v zd3;dTh6`CKnZzb73q1_K11f90>ov|^v1o!v6|Kiv$rR2r*Mbh`cE)5o8GdVg>K;iK^#o{-7S#xVH=mj=I^x4Z z2bUgw-T6A+b($cGia3{1)PzygA;x$RMNjHD>z@40Qrj@ucCYS_OkRzuw7OjvRh%42 zar5p-4K{|=LiJ(p8o6qt3s^f(e2gzz4+FaH zm|eUH(vinSj5iw^d@{Bu6-VEc&m5)W+y6DI!l2j()03U73d~RwXP46EY`XO(Dbr$ zhSz3IeEnEG71?&b3osbP|^<%8OmLVP%TSkA1fw2y8xQs1q;r!KMmT|yr zKnx$cv12@AMc^F#xZ|cL zX#-1}QZ1mj(n6a!%c7ONsKb357Ic8la;~`n^O<@VK8hV)@t7fE-_Q?nR`AxBe?in6%Vj%iNE zALnef&WWyq%$d35wT9_VOitztET#JUHu*f(YfA@G7MEU#;cB}oi<4HjUf)yK$WXXi z7C*2rq%WqR7ErQdx!&!2*vQ)jPvU}H?lzv4g~WN<*c5(8`HBV}#AkXVfK-LUw!*%Qd*Gk1DNgCK) zqoB<@!*rD8rMC}h%8NQbz~|tH!eJDtU2Dzolh#E9=veX?l26E|b;et|`LtB)Jt&G) zGx#(u1OR1lNpO+sq}HVCJjQaR%Hvc>K9y1&V4GF8>}4nMLh}j=gD=;i{D80MZNF_@ zCnt{N;-pl9$7)u0l?r}v=#xVJwf-QOge1XP<2p5~Se@F>&Q3p~h&(&vCn=tFv~yio zRjCZY`9E~eAP5p6K&?u~IdATq_|LJs z7s}!5L!m7%d;(hO(uYdzV;}kf`Z4_4r+$P+jp)oemmG90@6OK7%+AjKW_EpI!Y0t1 zAHI9wO%n1KPR5%KlPmCx=gG4k-8M-TBOCgt5f9Zkr9{NlA?{sjLU90wp=T& zxRuy;?YQbz!oNSuDf+bo6%%E$h)sH<#}$ zE-l_!^i~&dF6Y%n-s*%q>{_y!=9Q(8vzA=v5onCayM7b~J{nr)Jmq;AR+M!4Zc88m z`x!UFWE)0(rzKh%dUVhX7)|)E!Y}@SE+a#-ODM@`Kl%dF?4P}wCOeEv$9E1x&V76k#Hy zpR`zRgb-L>fq>;E5V0?L6(@QR?xxa8<2aOF81ND@jgBumx#@SiED5-Utoou5;Oyb0 z)y6l^jjc3H8b)px{&;BANc@=P)v<%*l}+xq@kruV!ruk6d)F6a++BbJ&-aq9-`Zxu z{G$$I(fq^qmi(-HVH4LDyfBfB0}>Yif00-?+QsXzsLQx$b|2?w#@N2_x~zNd+*$8{ z$=N333?gv?wiO>jM|6u?)SxwLQj-|Od}Zl1Y6EXdn}X4#Q?NQs`Du_{X<@dG8s>Ew zeg(omfq*L~Jd$*X(1D8{=$S4~Ndq9F4;Aco=~w!|7?cKPhM+8o3u?7AC@0ey6)Oj_ z<&1)MSz4JPE1AA!XXUIE&=&}*YM{N)*AVcvUBaJ(48T=RJjLA))&ep>ZhcV6D*TtM z@)9Zs%qL%xpY(xspfQzMf$;)U22VBCV>ZV^F*rySkBF21vl_~ z5cGSplg}XMQ7AiUPkJM~Oohzt$n?b3T>4N^gt zq`3tk+|;*izCpQJaBVUrA4YU)`0sV&Fhk2sihZz7$@Bemd zL;7I?6>Vu$`yD(vFuL1qxXvQl&GEOTY1Bs^*w7o<=J*OJ6k!FAL+t=30X zx*5aSBGEkZrwACnEk*8Pa8x=LFH&LtO?Au9-n%v9jiH;S-Xo{E#_@$+aK rYqm-Tb-=NZsiai-Xk7$1dl9>g=_0U-;d@ZiYMNu!V6=7Xr2XlCyo|3< literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b3f3c52540180b162e99e78088f37cf1653f5d6b GIT binary patch literal 1064 zcmZ`&&2Q5%6u0x$tV>6`O_R7q+#=EThK95uCdQBunvf7;M4;luUYag(GTUKm)p7yE ziT?qP{7b%a;=+j&Ctk93?O{C2&-VL0zYo9Xm#tP40r_7(zx!<=^s_oFlLv=~Fy#?2 ziYQJ|hC__2y^$K38JhLpOs&ig?aT=sI9t@F4sB4EuFxi3r5&|{6RjHCx?uq!Z5V-*1>H*==_z6>ap#no&`$?p<^$auv zbKL zNSYikq}TdIO4NUlQm~s58HuD&OFkO&MCQTUBG1*eH*J-YiOb9)T)o*9*|4s_d<0WI z1(u*0o}zv9c4uZxwiFuSsS#s}zv4H>%$!-T5Z|Ic*0|!a6dmDu}Jx9NR&S$5;m;q z17$=-!{vLuW-Z_2W5495JU{0Po3LYk67yUz+N;%|1uSqW16y|nblxC?xNZpTT&}`^ zthG}XP)?@Z0VqalFbHhn)_`ELOqDjlkj4XT*D?J-q66sPgTBg&evuU2k{2X8Wwd)f zWGwBT#UpjU*gmPS{vhFs2~N^}-J$(OC{=X5Vyrid>Ygkh}xT!yay%284FQ_+xck^B*+w8!-R? literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4f0ad57c0d08f586e5efe3e642aec8fc645476a8 GIT binary patch literal 1201 zcmZuuO>Y}F5GA=El2(%I7(vjcDX>5;R$5uG1q4pf7HMp`DBw6j>|8cB)b)~*)~0qh zBn4N-`jRv#&|e{43iQ%Le-5ub`J7X7NrtOP&>^$nym>Rjnc?j7dfh`H{-1At``bq7 ze?yj~4CEmk`3e+86mt~J5C^#6Bp?M^fdxpoJ#+$R=msuE44svz)gypqY8P0cPJteE z3#`&ofi+q#uudyI(k}%oj7+|u-V_I`v`TA#px_3@hp17%hB?qdgJ^p{mP$KEql~jl zXQX<~?Mv6d=Kagc44bEHVM0<7ZEww7?X5)=OwQyjs2im;PWmst|MBEl-dlgsJigdC z`L+>Z)AN%!fadJLk^g~GXcwJ)cTBGE70J;A=Xi>Rog+nZ{2EjIhJ1x4R!*jvAdC*t zONdQu3Y=nUnJC;py0UVM+SDogte^4zU$9w$t@f=NjJ2Z^uY74ILm)G%vh zan>9q8ElHt=EZ<9-hA0VQxCH3o{6=(aiW+=Lf#swn9J6@=0-Nw)o`TJ?(CH}p``p0 z6mn|V!*|Fnd>gQa*YGN~@#+Wh4a6F2+BG|gq*w#0iD1Iq)UFz5@S8=kY0G%Zu+;AJ zqrGii`DAV0*R_S&ebiZI`<+EvdutJBZ!M<*+wX{qDPD@wVHR^HR)7_g6+2l{cZwN) b7^ZZ@*-z%TOXDiz*|%!VtpeZKo@ado4Xa0N literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e9b95276cd59e9f7fb1f6c8a4318857d02891371 GIT binary patch literal 1224 zcmZ8h&x_nP7_~h=b~?#I4k4!=zFU|wYeOKA4IwnyLsKZ*rQH&kOQN;pu@YHQC3&WX z-rACXBR%$C^0lX2bL^#kvZrB)K(b^@?|a|(p8V74=`um1cYnP8YMLZ}$Hj4*VDUA& ze}I7}JXOgiJ~Ndz*(Pfyn@Jki6E$sSn;GVFKIOCD)6JZxKPIb_4>*@xuCjjmo%Eq! zd~bs^nyFRVPa7t6nZ^x=7UwbI1-ieBAtZ0o_Zd(BOw%MxeocOhm>K(sjTb@(#}w@y zvsO5&j3cHL8O14n>a3AE_tJvM!FpZ*$99fv8JsEBfZA#z2d)9YnoxOX ztQ*j+Vx<@WYN70!_JXw8A8I)&Q;q4i?sJg{VjOhz0|a7F**XVR$Y_y|b^j8wzkK$? z<+qpLJRXbW=|)6OQt!-L!Re-pw4w!k>7)(+qvmuSliy1iq+(Lx0P?Qd&^ke=sD~_3 zWjG^WUMayKx)*}#5UhV(6k8eU_9ib)Q`pY30{e>55yiuY=jWsO_)ek%0IK9KheA=S zxp1l*I7SEM%P7gtNPdvRnHvS|JJV7L>SH1Y^MG%t>Hb+0dELi19|SB5p03q{M$yTm zGOEj$t7$)h6Z^Rji0b;;-buI)_d1E!jk&G=D{)_7`OifW8XMC%Yqe!1YInA;g-~Zd zZ{LJ-`=}aHd^NZhx3y@4RK7U6B)RSS#jAs8C-J^6FeIn*H2ZhDaJMjDrI)J{H^Z!- zht8q~F2ll2;+uPjoqxj5OC|I8I~d3grw5)#L;O$mizkiYtrAb;pTf^EEYdsK?a6;M CI(CHs literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..99742a00de61af8c4a0325e0aca086b0ee1d80f2 GIT binary patch literal 4882 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 JF!aOne*r8%zWV?G literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..75982edb26c272a5052c42ffd540287d7b724d1f GIT binary patch literal 767 zcmY*XO>fgc5Z(1xoUgX(p#_P9uRg?)dZH3Sgep}dp-?3Os=YXFc9Sk$J7&EhtyNBd z_#1HKFYT36e*&DCO(Ggbnx{82-hKN-e{Y&@WSL2lUVj$l@G;B7!KU zmcXe+ENr+f?9?F+aEG|mB_8!ig;tn5wTMrBQe{5#4iT$DRt^!V(JHNdL8MOWLlid3 zgHtY;y3JX@v*}!>iQ@Ats@;Pc3bA%ai(D`uevu2V*o`WkXn7?f{wZ@ zL$|D~Iya?htWlJkCXniCD#|p0dCBw8-pppJ18Yp=1RLp1822VmAd3J%p*!>$Q~Vfx z$3M^~e20~F?a3$98X{_gBd0tbFtw0bFp>)}H4VmDlCp8Yiy#Rm^Q_>MNk)SN>MQ`g zEB=uMQ`kauZ=^@3p)GA7+7<=WgU1wZ0JfH)A=NhwFifJHj`#c`VlBZ{}iH?LX`4ivNp8) z?yTE=_25JAyd*~t-$ac9ydguSuqt0NfmL6!XUbI@k7MNdJ`_IxjT?qEvY_-@2 RaO{TFupIE=RE(QF`!9dc$!-7u literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f8f3f7b90667fe0dff982ef791929b4f568c8631 GIT binary patch literal 1583 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 H>TmxG01<#t literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4b3619460127bca60769942dc60f29ba15ecf244 GIT binary patch literal 932 zcmZuwOK;Oa5Z<+&)-`=ZAQh=dXpa~*36Bd%2o+Ecm5PJv^6JHGyqm_!X4lVE zX-cK-Hc^rkGv{`r=wQqj0Wo7$2}XvTFeN#mhH$FInR7~IOfeLEn^;A-G=N8_5JdCi ziW}%bC5sG)Bqa^Gqck}M2KgHHVN9I+oc;He@7(*WNwkb|8Z?4>97yAQh2AJ{5N za%V4&+xQCH7jVr-FcwWP!&6_cGnArFtIT6ac<1OXlA8gt{xs6}Fld0$dr&Av@6cy7 z379`^>7Ayc4HbcC&6dtFc2!%h$}W#QsGMA>#6QBHPEWvzTS>jds6H*E23=9H(MIhU z*Bho0(O!rcuhhOdGj&)BYDY@XAT*-Bw%h31*IMa%bMUI4z&f%w{rz-zkYvg0m(TnA z^{uifyV(hsOzCc=g(!v(ySb897efu-BdV7N=^Wz5eCt^ut;!auv8R_Hsmc6>^eXs& zlb)TGJ;3c$vZOg^(E)9^=o}wS?Bnv$$i4L(4A+v1US$hmdJFI?qjk%(dh`EJYtYMV zfkA$R1JA>&cpZlezm2cs(9`Si8vFHfmNAuQnGPUser%XtG7hW`pUnR;Pu;SOn=4oe H{qW{Lfc*iq literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/logging.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/logging.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4e9bf9093b8e465fab1e9a87af19c9f8e9eb773f GIT binary patch literal 8869 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

y;*u<4xOm842AN6zV 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5da3d0f4a9bab0d0bbc2edb9e33a0ef01d3aad49 GIT binary patch literal 2483 zcmaJ@TW=dh6yBL#+v{6yP1CgEGOD1eQSBhg14IZl^nxN*qRL*pV|$amb!Oa> z$dQ16_zOHC=aIiOuRQS=c!6_fZOcg|Hk!-M9G^LJ&i8$rZ|n7n1rPh}*IuV;S%2Zn z@?*ox18DLO=mIMsk>%k?BN9`O5}ezS9Xp<5=1x?Ii(WAgGr3)W%08IVJ(vGF&=Xtf(em!5Gc{UL{G3@=v;%uSR`}@ys3v#uBuL(B!AkO(2=auBZj{&{EcvOsorXMirgffjxCpK@}(D zoL&%EwI}w39v9(?j{iHctO|qY;fVK-SvX*7#Mv->%@g+GM2*sf&0=P;ulge{na^$? z@K@syF4@dYZnMQ5TNUGNH}i!b&wtttlR>)6_SpTV!ZfjTz`{gHCU^#3c%s5&2!3;K z#sP*D`$ws0#$jUmzDVc(m`WLh0`cDEtznDx`wDt=-Y2)hG$9v#u>19dadHTq;14CD+bT z8YbF~{Y={csfMFhubiT5%gNCOzIilxO+?iNYdjiNdGY4m9H2D};13ID1{3ud(o z3wTpJ{V9jJ$ZP!;cX#I~0|GBtj&M%}z`h4X@5VE(-);03*g}9ZkObBna2pzp zJnBspp?x6dvKZ;wa(KG79EvVR>2Sz}F1_(Z0;Lt8@|Jd^v=7Wl6M?l9Hm*4XP)c3s zN2%n1Ne45b>+|5ci63+A&R=yEtwH8cSPka#?gqMh54t0S|gX;G6@1CS*zi0~IJdJuZve3LpSG&_jvs)2=DYLC$eh z#kXZ|9zN2R`E0q^_ZTc;wTu_g)g)DHrgnJ&Pgf5v%V@h{oA|X2DHrPyD=d5fL;g`g z5$y(HUx^J^yOJb*4a;W)Jj9yq`6A}j_wFofb)h2##8g^Tk_uGe^y{AtfABbDv1R{SI2EDP2o^BK-T`(f0I^Dni)Tj^T9 zHbWI&QWw=phOk9V5hyCU3ewdA!ApWv7*=@KmsVN}5i>Gugx9-y$zb_=FUsh0+w9NP zu*HAqbMt?KH1xQ-ZN#z_hq9lOsSJ02nzPL98lH5!;(d%4mC+!?RMDhhDRHRO0tutt iFXA*9NBm1vQHkYnNe%wiC^TRU%xT4Tx7>H!_5T3yleazq literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/parallel.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/parallel.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c2d77e8967579702231735cb508a991309a54169 GIT binary patch literal 2948 zcmds3%WfP+6s_**@r>tX=V8asP^=E?rMlZ@ zEF&Q~h$UN=iP(@|>IEBC@Bu7X0O!{9I1{4~*wUlERa4Jf=iGa$ck1;D!^6M*=8NxZ zjQvc1MxQeN+`=3G1|yiwgdxmb(>6pwSf1$@?1I5iFM5_=w8wOP4E2&-%G=9mAJ_Gg zSMjTM)vwt#zi!w4hTZTd>+}wO>&`8jOCTW>0_4g0at-sN2(`VPBF3F(D?OGR&M2Gvd6s@YJwp z#jLm}rcj#`b7ERtLTz47t6$};#q0%pF(}J9dqK|Ii=w*4mgb$d$=GTb9LT_xLBb

WG__%6895#ib9p} zZm7@~bb2Zbh7S6&({lnh_T!H#m1XWbQOi%g#Kl$}8ONhdNl!^fkl!+vxsx$J4AnmO z+ycDbe;K2&+k>njG01yC% zj8cigX^US=JGcFrHFlQ4Af##dpED#z>*67Vs5 zpB=Mj>^bTvjl49eL{b_^CiCd#Lz$#103-P!fS*1E;W&t7HGq?j!aH6VBV{Nni23G& zr9xKJjhVFiMAVQ8vv3%H*(p!GAyO(?z zebA-8l@`K7s=)D9(!}-Rm0@Z(qkdMRUEolYj;UqRGL4E=Hp+&YLfbEdL#F^Ue5g+E zDqcM!0Sw2+iHU<7M?c-CI6)Zb2m=k2?1NY)#o$TErGuEsa{!Th8jBDTjz^2hP+d5L zg@P`YPg10e>v*Sv!6l@GVm%n<>vcUJ003Hwl%|Wwx{CaiF=Z%nzLSsxcV)jFI!de) zEGmr>JrAy8Dl|v>EzkhJkQ{+?;J7-(ntBj|sDMR5k3}wKIPebp|Rg#CHUs@XSRMx5*r)}Q_3_a-+7S2#&w6^3F+yNG^)e1~`vr=fV{z)z1 zz#FwfFEUId2uq-E9w}bNRxY4Q#?TquL=->B9UZw@b#tKn6be~`Vxe`q#0yK!0A4jq zW{ymW3?7!VUnY`kWuw@|*Gzw78F{u1-VIAyT#FBtseKQcISIs88e zv<3v?ex`ex_)~R&sTRpxCUb_U$(KY8z}Uv1oTrAN-p0QrLrwp^xSW+*EfIEFEvn!) zL8X#Qw&%7LQH={~Jp)9Dw4Svk?aU3f;h#4b2n)81dX0QyVc9DAemLyefm0DQz}$;{od`> zyREIY`>l=5wFkHi*YB@w>}+dfweaZZ)zB!?ctx5tf~!VY>sR^4;M49V4T~wNt@CBG jW(NC}43w@*%qt5&|StRiXuoU{w)SP+tb)H`zGxzmB~{ zS#3GcB0dB{qQ`utxpLwwaN<3Co!UwSW6hiAnV;X^-}uq)?wH~5e*5)@Z*9i@qL=Ql z@Z~Pf@&gpWfF~^F0Z&CBQY)}H?TN%r2f=`|FBn*0zhGcL7l8wVL*_ew<9E!rjD0VT zD&sz=ln#GPl(D~#%gX0w=PXtU$Ry5G84H^v48^$1n|HD0oDr^*kHo| z*8w;%#MJ>8Mz{`P3_G~GFo9iMN3aLia2>-GW4dl86wEiO3L&h*^_>T;`cUUjV^G?w zj>F2+DumKYw=nN0PE_d~={)s9570oIXQ4iuMHFQ_NT>N3&XP*I;TtBgN{8&6FV49c z$=0ARj9sea$hhs!InxvT)d2zawT9x@qN2;6^XU3HXi7P2b6igkZSijy)ebyrWKZg@`>KrmXL{r*D zaV|8aXY4FYRULLCc4>2R9F`Y((oXArzvsP+>P0}TBkOe)AEL6JZrBOda-aRlU$XD8 znl`J%=~#co*)ze}`u0ZH?8E}T;lCpz|FAy7Hc0Ci#D0j?e=qQ>c0B6rXm>!RFs1j#)kW&p5mU2( z3Bjj)DsJ+1zXV-$uLRUCypT-^_E4$V29w|Lm;5>3Ho_NrfG7GUiEAW?KAk??=$dct z*qexGyYX(X8<(+{0^;~_-4luoFbrQTK5zV8<$kXvwv0=N^*bHcZ}nXFasTahiS27> zSSNdx-|2!aEr7z zNbHliP2v?jYK?BDc2LkPiO?>$g=^z8s-<0@F8rZ!sURPF literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..15c2f5a0daffe1c5a4859bb4052f0e0be0b48d15 GIT binary patch literal 2951 zcmZ`*TW{P%6!vYs&fbz1sLI`?QnNSLvu(4u z5<(ze;2-b+kNpGi&d=~GPyB_d2);A+CficR^30qwXJ*djJIB7>?{_pb_lNJl{QU_{ z`;&;}W`cMdZ}BNQrZGLy_GvT{eQN9*Q*+;(TKkr+F>}AgPO%oVzti_^)@IIk+J2j@ zuntCtby*MN3hT20#tvI$YZ$vs-_^X+f8lIx+cPWcT3pD=*~w*`rD0MzyZq*irx6d= zbxn(>c_ySAXB%!-Y`Db{bzIJJnPmy)GP}Xkc+R(IX%vddt-E6k@1aVs~}9P>z;QdvdEuJYhk4KJ-o#gbW;0DpXhh3(iCS( zi(&qn2FhZFG=4El?N@zbD2^^(Ev>R%HN?A+Fc-22niXaUNykO|fXiiLq2Dx2nTr6- zraYB}dpnkgZgCh--P8&gZDd3}yI_^>)im-8CkRJu)^h@sEA$Mtp zDA&73`4P~SWhq4Zi+Umi&nD za++`EaqiF3JdAE|=HEW#Jn?T%zLIa`ua9YMGl)~k1zfi|lW|gPo@8!tFpCq0cveqO z!y7zUS|QK`bk|b^-_z){HAlDfj(!?_Jrir-{y*l2Se06-l{(Xz@sp{rZZhD1V%Eqn zYrI=Pb!&U?o*}3tiXOVEdw|HxK$!!_vwOO_&1;Djk|DvWuhd^aty*Qgka4OY5wKW@ zK1q_J>TZ?xxQ`mTbdR$4BBTm3OzRrDq2c+*HV3d+oB=N~Xr*aXqK`BD1rQHeYm^3q zwJN7EuWb~kAXc@agoo+8<@;fh2vmQ~Gf(V#tlrN&s<%2qX{-tinW?o-H16r*EI3h{ z_)T*#9_u>>QQD$cTB0YlZ*{3tq)L@T!#VL_wb~r9z=lv4+w}>Rb(l?g)khN7MW=|7 zACCjebB{W`(OkKG2euRxb*Ktr7kXj!l+z{6)OJQo?aW{@W}+3JMbNx zGLQ!zYvl8f8hN~p(m%(xLj9@0vQBN$1@Iy|Z_y}YZM@2&KQJjB0IO943-hyp&e?)u`4|sa8y@#Y!1xdM1Ri$==t2yv0c$5h? zKkxemem)ZJ-@+FPko5VTy4)s5K0e3cgtIwNEV4|BXW$zm2!P^Q5aK!F0Nl;L#k{9- zVnLlcNrprGsNe$eJT`c}6Re9D!KhYiZPbre8Uo#xy3eJxPQ6v3;2ap@CF)d0tmH?{ zRgZFa#sk|P=p6(2ryNi(qN#im1VMGmQhisIUKM%g&1uGF34aSeN?Jj6 a(9xeSC!+!@g-4}k&Q1&SO}Z(bW0j(c4pl( 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e8f39e944fab59dcb947ecc5699c14a284bf2413 GIT binary patch literal 6340 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/urls.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/urls.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dd1171fc56ae9b10440332cc3920299620e31c87 GIT binary patch literal 1327 zcmZ8hTaOzx6t+FrWV72MpcR!s7QA#GHWAB9S*;LIA%TR7L}?|WmBMW7-AvZ8XKhcz zMw1sV;zyuL$s>Qsue{K|un&}D&n{}~XwJ>{@$vaS=gIDFAHkr1{QlEFF+zWP=hZ>L z`5Zp;H3)_n7HHgQJjTH%<0$AjXd;qDI!-ZS5sQCA)~yv20et&P!J5a=seQ{h9099ZNO(_OIY+C+Tbn3iulnLK78T# zX)g-m5>t!Hx@)Im})ijqIWx)m6RU$hw@KbGE;naW3{R&gS;h`oXE6 z8%-){xrW+Cjje{l02!=&- zydgnGE!yHOULzaNlTFGn=xmdRC|TpycZ;lMeG22DlFzudw4`-uXVfaNPAkC=>67oj z9a8$kjCV83N(g$w>7rzumM2Du#)2Ukot4jc$aT>u%UQR)F10no5WY%6!lLJhGA{P# zxLhi|2v!EUf|0`QMRnp5*lM`Tz@4i~x=iznh8yb!ewi#6`~ap3qIcoeI`hJJs}nu2 z+>T#3vC8-J76iIRrtjc8SicMYYmM}jNZ<>N{27dn3R`UMSs+A<{sc-qkAB6!U`yuF zCiZPSPS$u$))7eD5`EMX7M~OSB}>*serS_<%2M#3vaBU{5ybW^P}S#pPOdZMn_f%W z=q_YiM{VQ@yt@AeB>w}^;o`5=wN&pwp{tL7R1KY$k}4@Kscp2ph7Rs+C=g8r-?z-r z`%+nYg$vgcYFdh!f{r4WEGzlR!HOIouO3Jx_rqM+1^9nsXsJ2%8%il-NQ4ChD-qgYLK8gCyny5GaW;d6|;_zj1tr3`mOm zq)!OWU&irmtUrPkMPCm<>Gwf|gMoy@z`;@7h)(OJaAG zG$y$!9k>BrAsMcC5MDyJTrtBFZ~>gNYsXF-kjL5|t+eNS=ljmtds9<20vG%K(fXfL zg#3O156VkLTZBjFKnvQARrfXWS=|Srxm7d@9d(~!@5y$n zHQ^kb;x6(Wlc@^4e9`FfhPxBf-1?>!<*y7qK;5ss#o5H|I6>M zyt5r8g?LZPLhQApM2UI}zc_wXV6X^(bq;QtY*OuL@E>~*-7OcaaQf+DSG2Yii`xwL zYivYHgt-*$_yLPjZsrEVUZh*yMy)^- z5hYBd(96=ENVRI17t2#)JJj9Mg-uJ}?od`cLPuK5Ux^IBVsrcJ#)9tU3wfN+7b&73 z`20>+h-Cho&Zd4Vzt+ZQ3t^mUApyRHLdS_(7+3%XH1gf@sZbVa8mFDGNV$;VHq1{W zFb>>^FOfh`pohFM=;2dMH0AW6V=(I-$4rVS8Da*oD4|b6=_E{83*Oa&vz=IXS-zV` zvuX$)nm&MRYy;p+wHql!Nn&_MK-t~|%#|-Z=B^Z-B8k9l8y5KTGqB7$UzMPlC!MD- zX`G*gjwTODUeoj;0rzSD#$BNcnX)yY9`a^K%u2xq2(vgDeR7O*4BUpTVdl^DVn{EsdSCq~Oy{xx)v>IaT?H$6@doqf`OU03!% z+T8uo`T62L-J=KoAvvfXlFx}lu9DBlUGfX`S55Ce^wRSl(ZNhoy(|}L>EYMQngRuDV^LZCbahF}OakRj+s}vKQi!{jv^^Fz z!?~wJ5N|lP&U|DRHc&_*;?GdWou)6+X)2$E@v*qMFyX=9#BBvS$hdt1k)m6Hyr?0D z+&QF_a7bEvWVatG{8~2i8`jCQ#bw zmaYFswANWWlbG=!>#}267f1~$SwVibaT;bkm5Wx~jv)u?ZloFHrS#VTuO zBdcc_7b=HBcCv?n1%5bc>3CZ-*mb3f9!_+UYy-;3W3f;M%7HxyoxuSzFQ{%~f3sm{ZVO!_o%J?i}9 zRXiu4HF}-~R9=B6Eqpw@FsU6?^4DN6NNSkcToziOLvCV8G`SD&-)}J@-Gx*8@2N;K(y@E2}()!$41z)o4T6 ztcTl{L1^+<7|OG_%(wnRhMUC4VK3t$yjflx16i)$0+eSJDRI~Mo#s}{}jEh9PhcGJ!w*W+Ee=|;vS~&(2K`rouncz}z`d_;m Bb*2CS literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8350cbf06d0f928238bc370dbcfc37515283c91d GIT binary patch literal 5941 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 str + return _appdirs.user_cache_dir(appname, appauthor=False) + + +def user_config_dir(appname, roaming=True): + # type: (str, bool) -> str + path = _appdirs.user_config_dir(appname, appauthor=False, roaming=roaming) + if _appdirs.system == "darwin" and not os.path.isdir(path): + path = os.path.expanduser("~/.config/") + if appname: + path = os.path.join(path, appname) + return path + + +# for the discussion regarding site_config_dir locations +# see +def site_config_dirs(appname): + # type: (str) -> List[str] + dirval = _appdirs.site_config_dir(appname, appauthor=False, multipath=True) + if _appdirs.system not in ["win32", "darwin"]: + # always look in /etc directly as well + return dirval.split(os.pathsep) + ["/etc"] + return [dirval] diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/compat.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/compat.py new file mode 100644 index 00000000..1fb2dc72 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/compat.py @@ -0,0 +1,65 @@ +"""Stuff that differs in different Python versions and platform +distributions.""" + +import logging +import os +import sys + +__all__ = ["get_path_uid", "stdlib_pkgs", "WINDOWS"] + + +logger = logging.getLogger(__name__) + + +def has_tls(): + # type: () -> bool + try: + import _ssl # noqa: F401 # ignore unused + + return True + except ImportError: + pass + + from pip._vendor.urllib3.util import IS_PYOPENSSL + + return IS_PYOPENSSL + + +def get_path_uid(path): + # type: (str) -> int + """ + Return path's uid. + + Does not follow symlinks: + https://github.com/pypa/pip/pull/935#discussion_r5307003 + + Placed this function in compat due to differences on AIX and + Jython, that should eventually go away. + + :raises OSError: When path is a symlink or can't be read. + """ + if hasattr(os, "O_NOFOLLOW"): + fd = os.open(path, os.O_RDONLY | os.O_NOFOLLOW) + file_uid = os.fstat(fd).st_uid + os.close(fd) + else: # AIX and Jython + # WARNING: time of check vulnerability, but best we can do w/o NOFOLLOW + if not os.path.islink(path): + # older versions of Jython don't have `os.fstat` + file_uid = os.stat(path).st_uid + else: + # raise OSError for parity with os.O_NOFOLLOW above + raise OSError(f"{path} is a symlink; Will not return uid for symlinks") + return file_uid + + +# packages in the stdlib that may have installation metadata, but should not be +# considered 'installed'. this theoretically could be determined based on +# dist.location (py27:`sysconfig.get_paths()['stdlib']`, +# py26:sysconfig.get_config_vars('LIBDEST')), but fear platform variation may +# make this ineffective, so hard-coding +stdlib_pkgs = {"python", "wsgiref", "argparse"} + + +# windows detection, covers cpython and ironpython +WINDOWS = sys.platform.startswith("win") or (sys.platform == "cli" and os.name == "nt") diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/compatibility_tags.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/compatibility_tags.py new file mode 100644 index 00000000..14fe51c1 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/compatibility_tags.py @@ -0,0 +1,174 @@ +"""Generate and work with PEP 425 Compatibility Tags. +""" + +import re +from typing import TYPE_CHECKING, List, Optional, Tuple + +from pip._vendor.packaging.tags import ( + Tag, + compatible_tags, + cpython_tags, + generic_tags, + interpreter_name, + interpreter_version, + mac_platforms, +) + +if TYPE_CHECKING: + from pip._vendor.packaging.tags import PythonVersion + + +_osx_arch_pat = re.compile(r"(.+)_(\d+)_(\d+)_(.+)") + + +def version_info_to_nodot(version_info): + # type: (Tuple[int, ...]) -> str + # Only use up to the first two numbers. + return "".join(map(str, version_info[:2])) + + +def _mac_platforms(arch): + # type: (str) -> List[str] + match = _osx_arch_pat.match(arch) + if match: + name, major, minor, actual_arch = match.groups() + mac_version = (int(major), int(minor)) + arches = [ + # Since we have always only checked that the platform starts + # with "macosx", for backwards-compatibility we extract the + # actual prefix provided by the user in case they provided + # something like "macosxcustom_". It may be good to remove + # this as undocumented or deprecate it in the future. + "{}_{}".format(name, arch[len("macosx_") :]) + for arch in mac_platforms(mac_version, actual_arch) + ] + else: + # arch pattern didn't match (?!) + arches = [arch] + return arches + + +def _custom_manylinux_platforms(arch): + # type: (str) -> List[str] + arches = [arch] + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch_prefix == "manylinux2014": + # manylinux1/manylinux2010 wheels run on most manylinux2014 systems + # with the exception of wheels depending on ncurses. PEP 599 states + # manylinux1/manylinux2010 wheels should be considered + # manylinux2014 wheels: + # https://www.python.org/dev/peps/pep-0599/#backwards-compatibility-with-manylinux2010-wheels + if arch_suffix in {"i686", "x86_64"}: + arches.append("manylinux2010" + arch_sep + arch_suffix) + arches.append("manylinux1" + arch_sep + arch_suffix) + elif arch_prefix == "manylinux2010": + # manylinux1 wheels run on most manylinux2010 systems with the + # exception of wheels depending on ncurses. PEP 571 states + # manylinux1 wheels should be considered manylinux2010 wheels: + # https://www.python.org/dev/peps/pep-0571/#backwards-compatibility-with-manylinux1-wheels + arches.append("manylinux1" + arch_sep + arch_suffix) + return arches + + +def _get_custom_platforms(arch): + # type: (str) -> List[str] + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch.startswith("macosx"): + arches = _mac_platforms(arch) + elif arch_prefix in ["manylinux2014", "manylinux2010"]: + arches = _custom_manylinux_platforms(arch) + else: + arches = [arch] + return arches + + +def _expand_allowed_platforms(platforms): + # type: (Optional[List[str]]) -> Optional[List[str]] + if not platforms: + return None + + seen = set() + result = [] + + for p in platforms: + if p in seen: + continue + additions = [c for c in _get_custom_platforms(p) if c not in seen] + seen.update(additions) + result.extend(additions) + + return result + + +def _get_python_version(version): + # type: (str) -> PythonVersion + if len(version) > 1: + return int(version[0]), int(version[1:]) + else: + return (int(version[0]),) + + +def _get_custom_interpreter(implementation=None, version=None): + # type: (Optional[str], Optional[str]) -> str + if implementation is None: + implementation = interpreter_name() + if version is None: + version = interpreter_version() + return f"{implementation}{version}" + + +def get_supported( + version=None, # type: Optional[str] + platforms=None, # type: Optional[List[str]] + impl=None, # type: Optional[str] + abis=None, # type: Optional[List[str]] +): + # type: (...) -> List[Tag] + """Return a list of supported tags for each version specified in + `versions`. + + :param version: a string version, of the form "33" or "32", + or None. The version will be assumed to support our ABI. + :param platform: specify a list of platforms you want valid + tags for, or None. If None, use the local system platform. + :param impl: specify the exact implementation you want valid + tags for, or None. If None, use the local interpreter impl. + :param abis: specify a list of abis you want valid + tags for, or None. If None, use the local interpreter abi. + """ + supported = [] # type: List[Tag] + + python_version = None # type: Optional[PythonVersion] + if version is not None: + python_version = _get_python_version(version) + + interpreter = _get_custom_interpreter(impl, version) + + platforms = _expand_allowed_platforms(platforms) + + is_cpython = (impl or interpreter_name()) == "cp" + if is_cpython: + supported.extend( + cpython_tags( + python_version=python_version, + abis=abis, + platforms=platforms, + ) + ) + else: + supported.extend( + generic_tags( + interpreter=interpreter, + abis=abis, + platforms=platforms, + ) + ) + supported.extend( + compatible_tags( + python_version=python_version, + interpreter=interpreter, + platforms=platforms, + ) + ) + + return supported diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/datetime.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/datetime.py new file mode 100644 index 00000000..b638646c --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/datetime.py @@ -0,0 +1,12 @@ +"""For when pip wants to check the date or time. +""" + +import datetime + + +def today_is_later_than(year, month, day): + # type: (int, int, int) -> bool + today = datetime.date.today() + given = datetime.date(year, month, day) + + return today > given diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/deprecation.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/deprecation.py new file mode 100644 index 00000000..b62b3fb6 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/deprecation.py @@ -0,0 +1,102 @@ +""" +A module that implements tooling to enable easy warnings about deprecations. +""" + +import logging +import warnings +from typing import Any, Optional, TextIO, Type, Union + +from pip._vendor.packaging.version import parse + +from pip import __version__ as current_version + +DEPRECATION_MSG_PREFIX = "DEPRECATION: " + + +class PipDeprecationWarning(Warning): + pass + + +_original_showwarning = None # type: Any + + +# Warnings <-> Logging Integration +def _showwarning( + message, # type: Union[Warning, str] + category, # type: Type[Warning] + filename, # type: str + lineno, # type: int + file=None, # type: Optional[TextIO] + line=None, # type: Optional[str] +): + # type: (...) -> None + if file is not None: + if _original_showwarning is not None: + _original_showwarning(message, category, filename, lineno, file, line) + elif issubclass(category, PipDeprecationWarning): + # We use a specially named logger which will handle all of the + # deprecation messages for pip. + logger = logging.getLogger("pip._internal.deprecations") + logger.warning(message) + else: + _original_showwarning(message, category, filename, lineno, file, line) + + +def install_warning_logger(): + # type: () -> None + # Enable our Deprecation Warnings + warnings.simplefilter("default", PipDeprecationWarning, append=True) + + global _original_showwarning + + if _original_showwarning is None: + _original_showwarning = warnings.showwarning + warnings.showwarning = _showwarning + + +def deprecated(reason, replacement, gone_in, issue=None): + # type: (str, Optional[str], Optional[str], Optional[int]) -> None + """Helper to deprecate existing functionality. + + reason: + Textual reason shown to the user about why this functionality has + been deprecated. + replacement: + Textual suggestion shown to the user about what alternative + functionality they can use. + gone_in: + The version of pip does this functionality should get removed in. + Raises errors if pip's current version is greater than or equal to + this. + issue: + Issue number on the tracker that would serve as a useful place for + users to find related discussion and provide feedback. + + Always pass replacement, gone_in and issue as keyword arguments for clarity + at the call site. + """ + + # Construct a nice message. + # This is eagerly formatted as we want it to get logged as if someone + # typed this entire message out. + sentences = [ + (reason, DEPRECATION_MSG_PREFIX + "{}"), + (gone_in, "pip {} will remove support for this functionality."), + (replacement, "A possible replacement is {}."), + ( + issue, + ( + "You can find discussion regarding this at " + "https://github.com/pypa/pip/issues/{}." + ), + ), + ] + message = " ".join( + template.format(val) for val, template in sentences if val is not None + ) + + # Raise as an error if it has to be removed. + if gone_in is not None and parse(current_version) >= parse(gone_in): + raise PipDeprecationWarning(message) + + warnings.warn(message, category=PipDeprecationWarning, stacklevel=2) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/direct_url_helpers.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/direct_url_helpers.py new file mode 100644 index 00000000..eb50ac42 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/direct_url_helpers.py @@ -0,0 +1,117 @@ +import json +import logging +from typing import Optional + +from pip._vendor.pkg_resources import Distribution + +from pip._internal.models.direct_url import ( + DIRECT_URL_METADATA_NAME, + ArchiveInfo, + DirectUrl, + DirectUrlValidationError, + DirInfo, + VcsInfo, +) +from pip._internal.models.link import Link +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +def direct_url_as_pep440_direct_reference(direct_url, name): + # type: (DirectUrl, str) -> str + """Convert a DirectUrl to a pip requirement string.""" + direct_url.validate() # if invalid, this is a pip bug + requirement = name + " @ " + fragments = [] + if isinstance(direct_url.info, VcsInfo): + requirement += "{}+{}@{}".format( + direct_url.info.vcs, direct_url.url, direct_url.info.commit_id + ) + elif isinstance(direct_url.info, ArchiveInfo): + requirement += direct_url.url + if direct_url.info.hash: + fragments.append(direct_url.info.hash) + else: + assert isinstance(direct_url.info, DirInfo) + requirement += direct_url.url + if direct_url.subdirectory: + fragments.append("subdirectory=" + direct_url.subdirectory) + if fragments: + requirement += "#" + "&".join(fragments) + return requirement + + +def direct_url_from_link(link, source_dir=None, link_is_in_wheel_cache=False): + # type: (Link, Optional[str], bool) -> DirectUrl + if link.is_vcs: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend + url, requested_revision, _ = vcs_backend.get_url_rev_and_auth( + link.url_without_fragment + ) + # For VCS links, we need to find out and add commit_id. + if link_is_in_wheel_cache: + # If the requested VCS link corresponds to a cached + # wheel, it means the requested revision was an + # immutable commit hash, otherwise it would not have + # been cached. In that case we don't have a source_dir + # with the VCS checkout. + assert requested_revision + commit_id = requested_revision + else: + # If the wheel was not in cache, it means we have + # had to checkout from VCS to build and we have a source_dir + # which we can inspect to find out the commit id. + assert source_dir + commit_id = vcs_backend.get_revision(source_dir) + return DirectUrl( + url=url, + info=VcsInfo( + vcs=vcs_backend.name, + commit_id=commit_id, + requested_revision=requested_revision, + ), + subdirectory=link.subdirectory_fragment, + ) + elif link.is_existing_dir(): + return DirectUrl( + url=link.url_without_fragment, + info=DirInfo(), + subdirectory=link.subdirectory_fragment, + ) + else: + hash = None + hash_name = link.hash_name + if hash_name: + hash = f"{hash_name}={link.hash}" + return DirectUrl( + url=link.url_without_fragment, + info=ArchiveInfo(hash=hash), + subdirectory=link.subdirectory_fragment, + ) + + +def dist_get_direct_url(dist): + # type: (Distribution) -> Optional[DirectUrl] + """Obtain a DirectUrl from a pkg_resource.Distribution. + + Returns None if the distribution has no `direct_url.json` metadata, + or if `direct_url.json` is invalid. + """ + if not dist.has_metadata(DIRECT_URL_METADATA_NAME): + return None + try: + return DirectUrl.from_json(dist.get_metadata(DIRECT_URL_METADATA_NAME)) + except ( + DirectUrlValidationError, + json.JSONDecodeError, + UnicodeDecodeError, + ) as e: + logger.warning( + "Error parsing %s for %s: %s", + DIRECT_URL_METADATA_NAME, + dist.project_name, + e, + ) + return None diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/distutils_args.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/distutils_args.py new file mode 100644 index 00000000..e886c888 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/distutils_args.py @@ -0,0 +1,43 @@ +from distutils.errors import DistutilsArgError +from distutils.fancy_getopt import FancyGetopt +from typing import Dict, List + +_options = [ + ("exec-prefix=", None, ""), + ("home=", None, ""), + ("install-base=", None, ""), + ("install-data=", None, ""), + ("install-headers=", None, ""), + ("install-lib=", None, ""), + ("install-platlib=", None, ""), + ("install-purelib=", None, ""), + ("install-scripts=", None, ""), + ("prefix=", None, ""), + ("root=", None, ""), + ("user", None, ""), +] + + +# typeshed doesn't permit Tuple[str, None, str], see python/typeshed#3469. +_distutils_getopt = FancyGetopt(_options) # type: ignore + + +def parse_distutils_args(args): + # type: (List[str]) -> Dict[str, str] + """Parse provided arguments, returning an object that has the + matched arguments. + + Any unknown arguments are ignored. + """ + result = {} + for arg in args: + try: + _, match = _distutils_getopt.getopt(args=[arg]) + except DistutilsArgError: + # We don't care about any other options, which here may be + # considered unrecognized since our option list is not + # exhaustive. + pass + else: + result.update(match.__dict__) + return result diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/encoding.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/encoding.py new file mode 100644 index 00000000..7c8893d5 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/encoding.py @@ -0,0 +1,37 @@ +import codecs +import locale +import re +import sys +from typing import List, Tuple + +BOMS = [ + (codecs.BOM_UTF8, "utf-8"), + (codecs.BOM_UTF16, "utf-16"), + (codecs.BOM_UTF16_BE, "utf-16-be"), + (codecs.BOM_UTF16_LE, "utf-16-le"), + (codecs.BOM_UTF32, "utf-32"), + (codecs.BOM_UTF32_BE, "utf-32-be"), + (codecs.BOM_UTF32_LE, "utf-32-le"), +] # type: List[Tuple[bytes, str]] + +ENCODING_RE = re.compile(br"coding[:=]\s*([-\w.]+)") + + +def auto_decode(data): + # type: (bytes) -> str + """Check a bytes string for a BOM to correctly detect the encoding + + Fallback to locale.getpreferredencoding(False) like open() on Python3""" + for bom, encoding in BOMS: + if data.startswith(bom): + return data[len(bom) :].decode(encoding) + # Lets check the first two lines as in PEP263 + for line in data.split(b"\n")[:2]: + if line[0:1] == b"#" and ENCODING_RE.search(line): + result = ENCODING_RE.search(line) + assert result is not None + encoding = result.groups()[0].decode("ascii") + return data.decode(encoding) + return data.decode( + locale.getpreferredencoding(False) or sys.getdefaultencoding(), + ) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/entrypoints.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/entrypoints.py new file mode 100644 index 00000000..879bf21a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/entrypoints.py @@ -0,0 +1,28 @@ +import sys +from typing import List, Optional + +from pip._internal.cli.main import main + + +def _wrapper(args=None): + # type: (Optional[List[str]]) -> int + """Central wrapper for all old entrypoints. + + Historically pip has had several entrypoints defined. Because of issues + arising from PATH, sys.path, multiple Pythons, their interactions, and most + of them having a pip installed, users suffer every time an entrypoint gets + moved. + + To alleviate this pain, and provide a mechanism for warning users and + directing them to an appropriate place for help, we now define all of + our old entrypoints as wrappers for the current one. + """ + sys.stderr.write( + "WARNING: pip is being invoked by an old script wrapper. This will " + "fail in a future version of pip.\n" + "Please see https://github.com/pypa/pip/issues/5599 for advice on " + "fixing the underlying issue.\n" + "To avoid this problem you can invoke Python with '-m pip' instead of " + "running pip directly.\n" + ) + return main(args) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/filesystem.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/filesystem.py new file mode 100644 index 00000000..3db97dc4 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/filesystem.py @@ -0,0 +1,193 @@ +import fnmatch +import os +import os.path +import random +import shutil +import stat +import sys +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, BinaryIO, Iterator, List, Union, cast + +from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed + +from pip._internal.utils.compat import get_path_uid +from pip._internal.utils.misc import format_size + + +def check_path_owner(path): + # type: (str) -> bool + # If we don't have a way to check the effective uid of this process, then + # we'll just assume that we own the directory. + if sys.platform == "win32" or not hasattr(os, "geteuid"): + return True + + assert os.path.isabs(path) + + previous = None + while path != previous: + if os.path.lexists(path): + # Check if path is writable by current user. + if os.geteuid() == 0: + # Special handling for root user in order to handle properly + # cases where users use sudo without -H flag. + try: + path_uid = get_path_uid(path) + except OSError: + return False + return path_uid == 0 + else: + return os.access(path, os.W_OK) + else: + previous, path = path, os.path.dirname(path) + return False # assume we don't own the path + + +def copy2_fixed(src, dest): + # type: (str, str) -> None + """Wrap shutil.copy2() but map errors copying socket files to + SpecialFileError as expected. + + See also https://bugs.python.org/issue37700. + """ + try: + shutil.copy2(src, dest) + except OSError: + for f in [src, dest]: + try: + is_socket_file = is_socket(f) + except OSError: + # An error has already occurred. Another error here is not + # a problem and we can ignore it. + pass + else: + if is_socket_file: + raise shutil.SpecialFileError(f"`{f}` is a socket") + + raise + + +def is_socket(path): + # type: (str) -> bool + return stat.S_ISSOCK(os.lstat(path).st_mode) + + +@contextmanager +def adjacent_tmp_file(path, **kwargs): + # type: (str, **Any) -> Iterator[BinaryIO] + """Return a file-like object pointing to a tmp file next to path. + + The file is created securely and is ensured to be written to disk + after the context reaches its end. + + kwargs will be passed to tempfile.NamedTemporaryFile to control + the way the temporary file will be opened. + """ + with NamedTemporaryFile( + delete=False, + dir=os.path.dirname(path), + prefix=os.path.basename(path), + suffix=".tmp", + **kwargs, + ) as f: + result = cast(BinaryIO, f) + try: + yield result + finally: + result.flush() + os.fsync(result.fileno()) + + +# Tenacity raises RetryError by default, explictly raise the original exception +_replace_retry = retry(reraise=True, stop=stop_after_delay(1), wait=wait_fixed(0.25)) + +replace = _replace_retry(os.replace) + + +# test_writable_dir and _test_writable_dir_win are copied from Flit, +# with the author's agreement to also place them under pip's license. +def test_writable_dir(path): + # type: (str) -> bool + """Check if a directory is writable. + + Uses os.access() on POSIX, tries creating files on Windows. + """ + # If the directory doesn't exist, find the closest parent that does. + while not os.path.isdir(path): + parent = os.path.dirname(path) + if parent == path: + break # Should never get here, but infinite loops are bad + path = parent + + if os.name == "posix": + return os.access(path, os.W_OK) + + return _test_writable_dir_win(path) + + +def _test_writable_dir_win(path): + # type: (str) -> bool + # os.access doesn't work on Windows: http://bugs.python.org/issue2528 + # and we can't use tempfile: http://bugs.python.org/issue22107 + basename = "accesstest_deleteme_fishfingers_custard_" + alphabet = "abcdefghijklmnopqrstuvwxyz0123456789" + for _ in range(10): + name = basename + "".join(random.choice(alphabet) for _ in range(6)) + file = os.path.join(path, name) + try: + fd = os.open(file, os.O_RDWR | os.O_CREAT | os.O_EXCL) + except FileExistsError: + pass + except PermissionError: + # This could be because there's a directory with the same name. + # But it's highly unlikely there's a directory called that, + # so we'll assume it's because the parent dir is not writable. + # This could as well be because the parent dir is not readable, + # due to non-privileged user access. + return False + else: + os.close(fd) + os.unlink(file) + return True + + # This should never be reached + raise OSError("Unexpected condition testing for writable directory") + + +def find_files(path, pattern): + # type: (str, str) -> List[str] + """Returns a list of absolute paths of files beneath path, recursively, + with filenames which match the UNIX-style shell glob pattern.""" + result = [] # type: List[str] + for root, _, files in os.walk(path): + matches = fnmatch.filter(files, pattern) + result.extend(os.path.join(root, f) for f in matches) + return result + + +def file_size(path): + # type: (str) -> Union[int, float] + # If it's a symlink, return 0. + if os.path.islink(path): + return 0 + return os.path.getsize(path) + + +def format_file_size(path): + # type: (str) -> str + return format_size(file_size(path)) + + +def directory_size(path): + # type: (str) -> Union[int, float] + size = 0.0 + for root, _dirs, files in os.walk(path): + for filename in files: + file_path = os.path.join(root, filename) + size += file_size(file_path) + return size + + +def format_directory_size(path): + # type: (str) -> str + return format_size(directory_size(path)) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/filetypes.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/filetypes.py new file mode 100644 index 00000000..da935846 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/filetypes.py @@ -0,0 +1,28 @@ +"""Filetype information. +""" + +from typing import Tuple + +from pip._internal.utils.misc import splitext + +WHEEL_EXTENSION = ".whl" +BZ2_EXTENSIONS = (".tar.bz2", ".tbz") # type: Tuple[str, ...] +XZ_EXTENSIONS = ( + ".tar.xz", + ".txz", + ".tlz", + ".tar.lz", + ".tar.lzma", +) # type: Tuple[str, ...] +ZIP_EXTENSIONS = (".zip", WHEEL_EXTENSION) # type: Tuple[str, ...] +TAR_EXTENSIONS = (".tar.gz", ".tgz", ".tar") # type: Tuple[str, ...] +ARCHIVE_EXTENSIONS = ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS + + +def is_archive_file(name): + # type: (str) -> bool + """Return True if `name` is a considered as an archive file.""" + ext = splitext(name)[1].lower() + if ext in ARCHIVE_EXTENSIONS: + return True + return False diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/glibc.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/glibc.py new file mode 100644 index 00000000..1c9ff354 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/glibc.py @@ -0,0 +1,92 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import os +import sys +from typing import Optional, Tuple + + +def glibc_version_string(): + # type: () -> Optional[str] + "Returns glibc version string, or None if not using glibc." + return glibc_version_string_confstr() or glibc_version_string_ctypes() + + +def glibc_version_string_confstr(): + # type: () -> Optional[str] + "Primary implementation of glibc_version_string using os.confstr." + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module: + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c9d0921ff3d70e1127ca1b71/Lib/platform.py#L175-L183 + if sys.platform == "win32": + return None + try: + # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17": + _, version = os.confstr("CS_GNU_LIBC_VERSION").split() + except (AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def glibc_version_string_ctypes(): + # type: () -> Optional[str] + "Fallback implementation of glibc_version_string using ctypes." + + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + process_namespace = ctypes.CDLL(None) + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +# platform.libc_ver regularly returns completely nonsensical glibc +# versions. E.g. on my computer, platform says: +# +# ~$ python2.7 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.7') +# ~$ python3.5 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.9') +# +# But the truth is: +# +# ~$ ldd --version +# ldd (Debian GLIBC 2.22-11) 2.22 +# +# This is unfortunate, because it means that the linehaul data on libc +# versions that was generated by pip 8.1.2 and earlier is useless and +# misleading. Solution: instead of using platform, use our code that actually +# works. +def libc_ver(): + # type: () -> Tuple[str, str] + """Try to determine the glibc version + + Returns a tuple of strings (lib, version) which default to empty strings + in case the lookup fails. + """ + glibc_version = glibc_version_string() + if glibc_version is None: + return ("", "") + else: + return ("glibc", glibc_version) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/hashes.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/hashes.py new file mode 100644 index 00000000..e0ecf6ee --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/hashes.py @@ -0,0 +1,161 @@ +import hashlib +from typing import TYPE_CHECKING, BinaryIO, Dict, Iterator, List, NoReturn + +from pip._internal.exceptions import HashMismatch, HashMissing, InstallationError +from pip._internal.utils.misc import read_chunks + +if TYPE_CHECKING: + from hashlib import _Hash + + +# The recommended hash algo of the moment. Change this whenever the state of +# the art changes; it won't hurt backward compatibility. +FAVORITE_HASH = "sha256" + + +# Names of hashlib algorithms allowed by the --hash option and ``pip hash`` +# Currently, those are the ones at least as collision-resistant as sha256. +STRONG_HASHES = ["sha256", "sha384", "sha512"] + + +class Hashes: + """A wrapper that builds multiple hashes at once and checks them against + known-good values + + """ + + def __init__(self, hashes=None): + # type: (Dict[str, List[str]]) -> None + """ + :param hashes: A dict of algorithm names pointing to lists of allowed + hex digests + """ + allowed = {} + if hashes is not None: + for alg, keys in hashes.items(): + # Make sure values are always sorted (to ease equality checks) + allowed[alg] = sorted(keys) + self._allowed = allowed + + def __and__(self, other): + # type: (Hashes) -> Hashes + if not isinstance(other, Hashes): + return NotImplemented + + # If either of the Hashes object is entirely empty (i.e. no hash + # specified at all), all hashes from the other object are allowed. + if not other: + return self + if not self: + return other + + # Otherwise only hashes that present in both objects are allowed. + new = {} + for alg, values in other._allowed.items(): + if alg not in self._allowed: + continue + new[alg] = [v for v in values if v in self._allowed[alg]] + return Hashes(new) + + @property + def digest_count(self): + # type: () -> int + return sum(len(digests) for digests in self._allowed.values()) + + def is_hash_allowed( + self, + hash_name, # type: str + hex_digest, # type: str + ): + # type: (...) -> bool + """Return whether the given hex digest is allowed.""" + return hex_digest in self._allowed.get(hash_name, []) + + def check_against_chunks(self, chunks): + # type: (Iterator[bytes]) -> None + """Check good hashes against ones built from iterable of chunks of + data. + + Raise HashMismatch if none match. + + """ + gots = {} + for hash_name in self._allowed.keys(): + try: + gots[hash_name] = hashlib.new(hash_name) + except (ValueError, TypeError): + raise InstallationError(f"Unknown hash name: {hash_name}") + + for chunk in chunks: + for hash in gots.values(): + hash.update(chunk) + + for hash_name, got in gots.items(): + if got.hexdigest() in self._allowed[hash_name]: + return + self._raise(gots) + + def _raise(self, gots): + # type: (Dict[str, _Hash]) -> NoReturn + raise HashMismatch(self._allowed, gots) + + def check_against_file(self, file): + # type: (BinaryIO) -> None + """Check good hashes against a file-like object + + Raise HashMismatch if none match. + + """ + return self.check_against_chunks(read_chunks(file)) + + def check_against_path(self, path): + # type: (str) -> None + with open(path, "rb") as file: + return self.check_against_file(file) + + def __nonzero__(self): + # type: () -> bool + """Return whether I know any known-good hashes.""" + return bool(self._allowed) + + def __bool__(self): + # type: () -> bool + return self.__nonzero__() + + def __eq__(self, other): + # type: (object) -> bool + if not isinstance(other, Hashes): + return NotImplemented + return self._allowed == other._allowed + + def __hash__(self): + # type: () -> int + return hash( + ",".join( + sorted( + ":".join((alg, digest)) + for alg, digest_list in self._allowed.items() + for digest in digest_list + ) + ) + ) + + +class MissingHashes(Hashes): + """A workalike for Hashes used when we're missing a hash for a requirement + + It computes the actual hash of the requirement and raises a HashMissing + exception showing it to the user. + + """ + + def __init__(self): + # type: () -> None + """Don't offer the ``hashes`` kwarg.""" + # Pass our favorite hash in to generate a "gotten hash". With the + # empty list, it will never match, so an error will always raise. + super().__init__(hashes={FAVORITE_HASH: []}) + + def _raise(self, gots): + # type: (Dict[str, _Hash]) -> NoReturn + raise HashMissing(gots[FAVORITE_HASH].hexdigest()) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/inject_securetransport.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/inject_securetransport.py new file mode 100644 index 00000000..b6863d93 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/inject_securetransport.py @@ -0,0 +1,36 @@ +"""A helper module that injects SecureTransport, on import. + +The import should be done as early as possible, to ensure all requests and +sessions (or whatever) are created after injecting SecureTransport. + +Note that we only do the injection on macOS, when the linked OpenSSL is too +old to handle TLSv1.2. +""" + +import sys + + +def inject_securetransport(): + # type: () -> None + # Only relevant on macOS + if sys.platform != "darwin": + return + + try: + import ssl + except ImportError: + return + + # Checks for OpenSSL 1.0.1 + if ssl.OPENSSL_VERSION_NUMBER >= 0x1000100F: + return + + try: + from pip._vendor.urllib3.contrib import securetransport + except (ImportError, OSError): + return + + securetransport.inject_into_urllib3() + + +inject_securetransport() diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/logging.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/logging.py new file mode 100644 index 00000000..45798d54 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/logging.py @@ -0,0 +1,387 @@ +import contextlib +import errno +import logging +import logging.handlers +import os +import sys +from logging import Filter, getLogger +from typing import IO, Any, Callable, Iterator, Optional, TextIO, Type, cast + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import DEPRECATION_MSG_PREFIX +from pip._internal.utils.misc import ensure_dir + +try: + import threading +except ImportError: + import dummy_threading as threading # type: ignore + + +try: + from pip._vendor import colorama +# Lots of different errors can come from this, including SystemError and +# ImportError. +except Exception: + colorama = None + + +_log_state = threading.local() +subprocess_logger = getLogger("pip.subprocessor") + + +class BrokenStdoutLoggingError(Exception): + """ + Raised if BrokenPipeError occurs for the stdout stream while logging. + """ + + pass + + +# BrokenPipeError manifests differently in Windows and non-Windows. +if WINDOWS: + # In Windows, a broken pipe can show up as EINVAL rather than EPIPE: + # https://bugs.python.org/issue19612 + # https://bugs.python.org/issue30418 + def _is_broken_pipe_error(exc_class, exc): + # type: (Type[BaseException], BaseException) -> bool + """See the docstring for non-Windows below.""" + return (exc_class is BrokenPipeError) or ( + isinstance(exc, OSError) and exc.errno in (errno.EINVAL, errno.EPIPE) + ) + + +else: + # Then we are in the non-Windows case. + def _is_broken_pipe_error(exc_class, exc): + # type: (Type[BaseException], BaseException) -> bool + """ + Return whether an exception is a broken pipe error. + + Args: + exc_class: an exception class. + exc: an exception instance. + """ + return exc_class is BrokenPipeError + + +@contextlib.contextmanager +def indent_log(num=2): + # type: (int) -> Iterator[None] + """ + A context manager which will cause the log output to be indented for any + log messages emitted inside it. + """ + # For thread-safety + _log_state.indentation = get_indentation() + _log_state.indentation += num + try: + yield + finally: + _log_state.indentation -= num + + +def get_indentation(): + # type: () -> int + return getattr(_log_state, "indentation", 0) + + +class IndentingFormatter(logging.Formatter): + default_time_format = "%Y-%m-%dT%H:%M:%S" + + def __init__( + self, + *args, # type: Any + add_timestamp=False, # type: bool + **kwargs, # type: Any + ): + # type: (...) -> None + """ + A logging.Formatter that obeys the indent_log() context manager. + + :param add_timestamp: A bool indicating output lines should be prefixed + with their record's timestamp. + """ + self.add_timestamp = add_timestamp + super().__init__(*args, **kwargs) + + def get_message_start(self, formatted, levelno): + # type: (str, int) -> str + """ + Return the start of the formatted log message (not counting the + prefix to add to each line). + """ + if levelno < logging.WARNING: + return "" + if formatted.startswith(DEPRECATION_MSG_PREFIX): + # Then the message already has a prefix. We don't want it to + # look like "WARNING: DEPRECATION: ...." + return "" + if levelno < logging.ERROR: + return "WARNING: " + + return "ERROR: " + + def format(self, record): + # type: (logging.LogRecord) -> str + """ + Calls the standard formatter, but will indent all of the log message + lines by our current indentation level. + """ + formatted = super().format(record) + message_start = self.get_message_start(formatted, record.levelno) + formatted = message_start + formatted + + prefix = "" + if self.add_timestamp: + prefix = f"{self.formatTime(record)} " + prefix += " " * get_indentation() + formatted = "".join([prefix + line for line in formatted.splitlines(True)]) + return formatted + + +def _color_wrap(*colors): + # type: (*str) -> Callable[[str], str] + def wrapped(inp): + # type: (str) -> str + return "".join(list(colors) + [inp, colorama.Style.RESET_ALL]) + + return wrapped + + +class ColorizedStreamHandler(logging.StreamHandler): + + # Don't build up a list of colors if we don't have colorama + if colorama: + COLORS = [ + # This needs to be in order from highest logging level to lowest. + (logging.ERROR, _color_wrap(colorama.Fore.RED)), + (logging.WARNING, _color_wrap(colorama.Fore.YELLOW)), + ] + else: + COLORS = [] + + def __init__(self, stream=None, no_color=None): + # type: (Optional[TextIO], bool) -> None + super().__init__(stream) + self._no_color = no_color + + if WINDOWS and colorama: + self.stream = colorama.AnsiToWin32(self.stream) + + def _using_stdout(self): + # type: () -> bool + """ + Return whether the handler is using sys.stdout. + """ + if WINDOWS and colorama: + # Then self.stream is an AnsiToWin32 object. + stream = cast(colorama.AnsiToWin32, self.stream) + return stream.wrapped is sys.stdout + + return self.stream is sys.stdout + + def should_color(self): + # type: () -> bool + # Don't colorize things if we do not have colorama or if told not to + if not colorama or self._no_color: + return False + + real_stream = ( + self.stream + if not isinstance(self.stream, colorama.AnsiToWin32) + else self.stream.wrapped + ) + + # If the stream is a tty we should color it + if hasattr(real_stream, "isatty") and real_stream.isatty(): + return True + + # If we have an ANSI term we should color it + if os.environ.get("TERM") == "ANSI": + return True + + # If anything else we should not color it + return False + + def format(self, record): + # type: (logging.LogRecord) -> str + msg = super().format(record) + + if self.should_color(): + for level, color in self.COLORS: + if record.levelno >= level: + msg = color(msg) + break + + return msg + + # The logging module says handleError() can be customized. + def handleError(self, record): + # type: (logging.LogRecord) -> None + exc_class, exc = sys.exc_info()[:2] + # If a broken pipe occurred while calling write() or flush() on the + # stdout stream in logging's Handler.emit(), then raise our special + # exception so we can handle it in main() instead of logging the + # broken pipe error and continuing. + if ( + exc_class + and exc + and self._using_stdout() + and _is_broken_pipe_error(exc_class, exc) + ): + raise BrokenStdoutLoggingError() + + return super().handleError(record) + + +class BetterRotatingFileHandler(logging.handlers.RotatingFileHandler): + def _open(self): + # type: () -> IO[Any] + ensure_dir(os.path.dirname(self.baseFilename)) + return super()._open() + + +class MaxLevelFilter(Filter): + def __init__(self, level): + # type: (int) -> None + self.level = level + + def filter(self, record): + # type: (logging.LogRecord) -> bool + return record.levelno < self.level + + +class ExcludeLoggerFilter(Filter): + + """ + A logging Filter that excludes records from a logger (or its children). + """ + + def filter(self, record): + # type: (logging.LogRecord) -> bool + # The base Filter class allows only records from a logger (or its + # children). + return not super().filter(record) + + +def setup_logging(verbosity, no_color, user_log_file): + # type: (int, bool, Optional[str]) -> int + """Configures and sets up all of the logging + + Returns the requested logging level, as its integer value. + """ + + # Determine the level to be logging at. + if verbosity >= 1: + level = "DEBUG" + elif verbosity == -1: + level = "WARNING" + elif verbosity == -2: + level = "ERROR" + elif verbosity <= -3: + level = "CRITICAL" + else: + level = "INFO" + + level_number = getattr(logging, level) + + # The "root" logger should match the "console" level *unless* we also need + # to log to a user log file. + include_user_log = user_log_file is not None + if include_user_log: + additional_log_file = user_log_file + root_level = "DEBUG" + else: + additional_log_file = "/dev/null" + root_level = level + + # Disable any logging besides WARNING unless we have DEBUG level logging + # enabled for vendored libraries. + vendored_log_level = "WARNING" if level in ["INFO", "ERROR"] else "DEBUG" + + # Shorthands for clarity + log_streams = { + "stdout": "ext://sys.stdout", + "stderr": "ext://sys.stderr", + } + handler_classes = { + "stream": "pip._internal.utils.logging.ColorizedStreamHandler", + "file": "pip._internal.utils.logging.BetterRotatingFileHandler", + } + handlers = ["console", "console_errors", "console_subprocess"] + ( + ["user_log"] if include_user_log else [] + ) + + logging.config.dictConfig( + { + "version": 1, + "disable_existing_loggers": False, + "filters": { + "exclude_warnings": { + "()": "pip._internal.utils.logging.MaxLevelFilter", + "level": logging.WARNING, + }, + "restrict_to_subprocess": { + "()": "logging.Filter", + "name": subprocess_logger.name, + }, + "exclude_subprocess": { + "()": "pip._internal.utils.logging.ExcludeLoggerFilter", + "name": subprocess_logger.name, + }, + }, + "formatters": { + "indent": { + "()": IndentingFormatter, + "format": "%(message)s", + }, + "indent_with_timestamp": { + "()": IndentingFormatter, + "format": "%(message)s", + "add_timestamp": True, + }, + }, + "handlers": { + "console": { + "level": level, + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stdout"], + "filters": ["exclude_subprocess", "exclude_warnings"], + "formatter": "indent", + }, + "console_errors": { + "level": "WARNING", + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stderr"], + "filters": ["exclude_subprocess"], + "formatter": "indent", + }, + # A handler responsible for logging to the console messages + # from the "subprocessor" logger. + "console_subprocess": { + "level": level, + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stderr"], + "filters": ["restrict_to_subprocess"], + "formatter": "indent", + }, + "user_log": { + "level": "DEBUG", + "class": handler_classes["file"], + "filename": additional_log_file, + "delay": True, + "formatter": "indent_with_timestamp", + }, + }, + "root": { + "level": root_level, + "handlers": handlers, + }, + "loggers": {"pip._vendor": {"level": vendored_log_level}}, + } + ) + + return level_number diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/misc.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/misc.py new file mode 100644 index 00000000..26037dbd --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/misc.py @@ -0,0 +1,825 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import contextlib +import errno +import getpass +import hashlib +import io +import logging +import os +import posixpath +import shutil +import stat +import sys +import urllib.parse +from io import StringIO +from itertools import filterfalse, tee, zip_longest +from types import TracebackType +from typing import ( + Any, + AnyStr, + BinaryIO, + Callable, + Container, + ContextManager, + Iterable, + Iterator, + List, + Optional, + TextIO, + Tuple, + Type, + TypeVar, + cast, +) + +from pip._vendor.pkg_resources import Distribution +from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed + +from pip import __version__ +from pip._internal.exceptions import CommandError +from pip._internal.locations import get_major_minor_version, site_packages, user_site +from pip._internal.utils.compat import WINDOWS, stdlib_pkgs +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) + +__all__ = [ + "rmtree", + "display_path", + "backup_dir", + "ask", + "splitext", + "format_size", + "is_installable_dir", + "normalize_path", + "renames", + "get_prog", + "captured_stdout", + "ensure_dir", + "remove_auth_from_url", +] + + +logger = logging.getLogger(__name__) + +T = TypeVar("T") +ExcInfo = Tuple[Type[BaseException], BaseException, TracebackType] +VersionInfo = Tuple[int, int, int] +NetlocTuple = Tuple[str, Tuple[Optional[str], Optional[str]]] + + +def get_pip_version(): + # type: () -> str + pip_pkg_dir = os.path.join(os.path.dirname(__file__), "..", "..") + pip_pkg_dir = os.path.abspath(pip_pkg_dir) + + return "pip {} from {} (python {})".format( + __version__, + pip_pkg_dir, + get_major_minor_version(), + ) + + +def normalize_version_info(py_version_info): + # type: (Tuple[int, ...]) -> Tuple[int, int, int] + """ + Convert a tuple of ints representing a Python version to one of length + three. + + :param py_version_info: a tuple of ints representing a Python version, + or None to specify no version. The tuple can have any length. + + :return: a tuple of length three if `py_version_info` is non-None. + Otherwise, return `py_version_info` unchanged (i.e. None). + """ + if len(py_version_info) < 3: + py_version_info += (3 - len(py_version_info)) * (0,) + elif len(py_version_info) > 3: + py_version_info = py_version_info[:3] + + return cast("VersionInfo", py_version_info) + + +def ensure_dir(path): + # type: (AnyStr) -> None + """os.path.makedirs without EEXIST.""" + try: + os.makedirs(path) + except OSError as e: + # Windows can raise spurious ENOTEMPTY errors. See #6426. + if e.errno != errno.EEXIST and e.errno != errno.ENOTEMPTY: + raise + + +def get_prog(): + # type: () -> str + try: + prog = os.path.basename(sys.argv[0]) + if prog in ("__main__.py", "-c"): + return f"{sys.executable} -m pip" + else: + return prog + except (AttributeError, TypeError, IndexError): + pass + return "pip" + + +# Retry every half second for up to 3 seconds +# Tenacity raises RetryError by default, explictly raise the original exception +@retry(reraise=True, stop=stop_after_delay(3), wait=wait_fixed(0.5)) +def rmtree(dir, ignore_errors=False): + # type: (AnyStr, bool) -> None + shutil.rmtree(dir, ignore_errors=ignore_errors, onerror=rmtree_errorhandler) + + +def rmtree_errorhandler(func, path, exc_info): + # type: (Callable[..., Any], str, ExcInfo) -> None + """On Windows, the files in .svn are read-only, so when rmtree() tries to + remove them, an exception is thrown. We catch that here, remove the + read-only attribute, and hopefully continue without problems.""" + try: + has_attr_readonly = not (os.stat(path).st_mode & stat.S_IWRITE) + except OSError: + # it's equivalent to os.path.exists + return + + if has_attr_readonly: + # convert to read/write + os.chmod(path, stat.S_IWRITE) + # use the original function to repeat the operation + func(path) + return + else: + raise + + +def display_path(path): + # type: (str) -> str + """Gives the display value for a given path, making it relative to cwd + if possible.""" + path = os.path.normcase(os.path.abspath(path)) + if path.startswith(os.getcwd() + os.path.sep): + path = "." + path[len(os.getcwd()) :] + return path + + +def backup_dir(dir, ext=".bak"): + # type: (str, str) -> str + """Figure out the name of a directory to back up the given dir to + (adding .bak, .bak2, etc)""" + n = 1 + extension = ext + while os.path.exists(dir + extension): + n += 1 + extension = ext + str(n) + return dir + extension + + +def ask_path_exists(message, options): + # type: (str, Iterable[str]) -> str + for action in os.environ.get("PIP_EXISTS_ACTION", "").split(): + if action in options: + return action + return ask(message, options) + + +def _check_no_input(message): + # type: (str) -> None + """Raise an error if no input is allowed.""" + if os.environ.get("PIP_NO_INPUT"): + raise Exception( + f"No input was expected ($PIP_NO_INPUT set); question: {message}" + ) + + +def ask(message, options): + # type: (str, Iterable[str]) -> str + """Ask the message interactively, with the given possible responses""" + while 1: + _check_no_input(message) + response = input(message) + response = response.strip().lower() + if response not in options: + print( + "Your response ({!r}) was not one of the expected responses: " + "{}".format(response, ", ".join(options)) + ) + else: + return response + + +def ask_input(message): + # type: (str) -> str + """Ask for input interactively.""" + _check_no_input(message) + return input(message) + + +def ask_password(message): + # type: (str) -> str + """Ask for a password interactively.""" + _check_no_input(message) + return getpass.getpass(message) + + +def strtobool(val): + # type: (str) -> int + """Convert a string representation of truth to true (1) or false (0). + + True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values + are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if + 'val' is anything else. + """ + val = val.lower() + if val in ("y", "yes", "t", "true", "on", "1"): + return 1 + elif val in ("n", "no", "f", "false", "off", "0"): + return 0 + else: + raise ValueError(f"invalid truth value {val!r}") + + +def format_size(bytes): + # type: (float) -> str + if bytes > 1000 * 1000: + return "{:.1f} MB".format(bytes / 1000.0 / 1000) + elif bytes > 10 * 1000: + return "{} kB".format(int(bytes / 1000)) + elif bytes > 1000: + return "{:.1f} kB".format(bytes / 1000.0) + else: + return "{} bytes".format(int(bytes)) + + +def tabulate(rows): + # type: (Iterable[Iterable[Any]]) -> Tuple[List[str], List[int]] + """Return a list of formatted rows and a list of column sizes. + + For example:: + + >>> tabulate([['foobar', 2000], [0xdeadbeef]]) + (['foobar 2000', '3735928559'], [10, 4]) + """ + rows = [tuple(map(str, row)) for row in rows] + sizes = [max(map(len, col)) for col in zip_longest(*rows, fillvalue="")] + table = [" ".join(map(str.ljust, row, sizes)).rstrip() for row in rows] + return table, sizes + + +def is_installable_dir(path): + # type: (str) -> bool + """Is path is a directory containing setup.py or pyproject.toml?""" + if not os.path.isdir(path): + return False + setup_py = os.path.join(path, "setup.py") + if os.path.isfile(setup_py): + return True + pyproject_toml = os.path.join(path, "pyproject.toml") + if os.path.isfile(pyproject_toml): + return True + return False + + +def read_chunks(file, size=io.DEFAULT_BUFFER_SIZE): + # type: (BinaryIO, int) -> Iterator[bytes] + """Yield pieces of data from a file-like object until EOF.""" + while True: + chunk = file.read(size) + if not chunk: + break + yield chunk + + +def normalize_path(path, resolve_symlinks=True): + # type: (str, bool) -> str + """ + Convert a path to its canonical, case-normalized, absolute version. + + """ + path = os.path.expanduser(path) + if resolve_symlinks: + path = os.path.realpath(path) + else: + path = os.path.abspath(path) + return os.path.normcase(path) + + +def splitext(path): + # type: (str) -> Tuple[str, str] + """Like os.path.splitext, but take off .tar too""" + base, ext = posixpath.splitext(path) + if base.lower().endswith(".tar"): + ext = base[-4:] + ext + base = base[:-4] + return base, ext + + +def renames(old, new): + # type: (str, str) -> None + """Like os.renames(), but handles renaming across devices.""" + # Implementation borrowed from os.renames(). + head, tail = os.path.split(new) + if head and tail and not os.path.exists(head): + os.makedirs(head) + + shutil.move(old, new) + + head, tail = os.path.split(old) + if head and tail: + try: + os.removedirs(head) + except OSError: + pass + + +def is_local(path): + # type: (str) -> bool + """ + Return True if path is within sys.prefix, if we're running in a virtualenv. + + If we're not in a virtualenv, all paths are considered "local." + + Caution: this function assumes the head of path has been normalized + with normalize_path. + """ + if not running_under_virtualenv(): + return True + return path.startswith(normalize_path(sys.prefix)) + + +def dist_is_local(dist): + # type: (Distribution) -> bool + """ + Return True if given Distribution object is installed locally + (i.e. within current virtualenv). + + Always True if we're not in a virtualenv. + + """ + return is_local(dist_location(dist)) + + +def dist_in_usersite(dist): + # type: (Distribution) -> bool + """ + Return True if given Distribution is installed in user site. + """ + return dist_location(dist).startswith(normalize_path(user_site)) + + +def dist_in_site_packages(dist): + # type: (Distribution) -> bool + """ + Return True if given Distribution is installed in + sysconfig.get_python_lib(). + """ + return dist_location(dist).startswith(normalize_path(site_packages)) + + +def dist_is_editable(dist): + # type: (Distribution) -> bool + """ + Return True if given Distribution is an editable install. + """ + for path_item in sys.path: + egg_link = os.path.join(path_item, dist.project_name + ".egg-link") + if os.path.isfile(egg_link): + return True + return False + + +def get_installed_distributions( + local_only=True, # type: bool + skip=stdlib_pkgs, # type: Container[str] + include_editables=True, # type: bool + editables_only=False, # type: bool + user_only=False, # type: bool + paths=None, # type: Optional[List[str]] +): + # type: (...) -> List[Distribution] + """Return a list of installed Distribution objects. + + Left for compatibility until direct pkg_resources uses are refactored out. + """ + from pip._internal.metadata import get_default_environment, get_environment + from pip._internal.metadata.pkg_resources import Distribution as _Dist + + if paths is None: + env = get_default_environment() + else: + env = get_environment(paths) + dists = env.iter_installed_distributions( + local_only=local_only, + skip=skip, + include_editables=include_editables, + editables_only=editables_only, + user_only=user_only, + ) + return [cast(_Dist, dist)._dist for dist in dists] + + +def get_distribution(req_name): + # type: (str) -> Optional[Distribution] + """Given a requirement name, return the installed Distribution object. + + This searches from *all* distributions available in the environment, to + match the behavior of ``pkg_resources.get_distribution()``. + + Left for compatibility until direct pkg_resources uses are refactored out. + """ + from pip._internal.metadata import get_default_environment + from pip._internal.metadata.pkg_resources import Distribution as _Dist + + dist = get_default_environment().get_distribution(req_name) + if dist is None: + return None + return cast(_Dist, dist)._dist + + +def egg_link_path(dist): + # type: (Distribution) -> Optional[str] + """ + Return the path for the .egg-link file if it exists, otherwise, None. + + There's 3 scenarios: + 1) not in a virtualenv + try to find in site.USER_SITE, then site_packages + 2) in a no-global virtualenv + try to find in site_packages + 3) in a yes-global virtualenv + try to find in site_packages, then site.USER_SITE + (don't look in global location) + + For #1 and #3, there could be odd cases, where there's an egg-link in 2 + locations. + + This method will just return the first one found. + """ + sites = [] + if running_under_virtualenv(): + sites.append(site_packages) + if not virtualenv_no_global() and user_site: + sites.append(user_site) + else: + if user_site: + sites.append(user_site) + sites.append(site_packages) + + for site in sites: + egglink = os.path.join(site, dist.project_name) + ".egg-link" + if os.path.isfile(egglink): + return egglink + return None + + +def dist_location(dist): + # type: (Distribution) -> str + """ + Get the site-packages location of this distribution. Generally + this is dist.location, except in the case of develop-installed + packages, where dist.location is the source code location, and we + want to know where the egg-link file is. + + The returned location is normalized (in particular, with symlinks removed). + """ + egg_link = egg_link_path(dist) + if egg_link: + return normalize_path(egg_link) + return normalize_path(dist.location) + + +def write_output(msg, *args): + # type: (Any, Any) -> None + logger.info(msg, *args) + + +class StreamWrapper(StringIO): + orig_stream = None # type: TextIO + + @classmethod + def from_stream(cls, orig_stream): + # type: (TextIO) -> StreamWrapper + cls.orig_stream = orig_stream + return cls() + + # compileall.compile_dir() needs stdout.encoding to print to stdout + # https://github.com/python/mypy/issues/4125 + @property + def encoding(self): # type: ignore + return self.orig_stream.encoding + + +@contextlib.contextmanager +def captured_output(stream_name): + # type: (str) -> Iterator[StreamWrapper] + """Return a context manager used by captured_stdout/stdin/stderr + that temporarily replaces the sys stream *stream_name* with a StringIO. + + Taken from Lib/support/__init__.py in the CPython repo. + """ + orig_stdout = getattr(sys, stream_name) + setattr(sys, stream_name, StreamWrapper.from_stream(orig_stdout)) + try: + yield getattr(sys, stream_name) + finally: + setattr(sys, stream_name, orig_stdout) + + +def captured_stdout(): + # type: () -> ContextManager[StreamWrapper] + """Capture the output of sys.stdout: + + with captured_stdout() as stdout: + print('hello') + self.assertEqual(stdout.getvalue(), 'hello\n') + + Taken from Lib/support/__init__.py in the CPython repo. + """ + return captured_output("stdout") + + +def captured_stderr(): + # type: () -> ContextManager[StreamWrapper] + """ + See captured_stdout(). + """ + return captured_output("stderr") + + +# Simulates an enum +def enum(*sequential, **named): + # type: (*Any, **Any) -> Type[Any] + enums = dict(zip(sequential, range(len(sequential))), **named) + reverse = {value: key for key, value in enums.items()} + enums["reverse_mapping"] = reverse + return type("Enum", (), enums) + + +def build_netloc(host, port): + # type: (str, Optional[int]) -> str + """ + Build a netloc from a host-port pair + """ + if port is None: + return host + if ":" in host: + # Only wrap host with square brackets when it is IPv6 + host = f"[{host}]" + return f"{host}:{port}" + + +def build_url_from_netloc(netloc, scheme="https"): + # type: (str, str) -> str + """ + Build a full URL from a netloc. + """ + if netloc.count(":") >= 2 and "@" not in netloc and "[" not in netloc: + # It must be a bare IPv6 address, so wrap it with brackets. + netloc = f"[{netloc}]" + return f"{scheme}://{netloc}" + + +def parse_netloc(netloc): + # type: (str) -> Tuple[str, Optional[int]] + """ + Return the host-port pair from a netloc. + """ + url = build_url_from_netloc(netloc) + parsed = urllib.parse.urlparse(url) + return parsed.hostname, parsed.port + + +def split_auth_from_netloc(netloc): + # type: (str) -> NetlocTuple + """ + Parse out and remove the auth information from a netloc. + + Returns: (netloc, (username, password)). + """ + if "@" not in netloc: + return netloc, (None, None) + + # Split from the right because that's how urllib.parse.urlsplit() + # behaves if more than one @ is present (which can be checked using + # the password attribute of urlsplit()'s return value). + auth, netloc = netloc.rsplit("@", 1) + pw = None # type: Optional[str] + if ":" in auth: + # Split from the left because that's how urllib.parse.urlsplit() + # behaves if more than one : is present (which again can be checked + # using the password attribute of the return value) + user, pw = auth.split(":", 1) + else: + user, pw = auth, None + + user = urllib.parse.unquote(user) + if pw is not None: + pw = urllib.parse.unquote(pw) + + return netloc, (user, pw) + + +def redact_netloc(netloc): + # type: (str) -> str + """ + Replace the sensitive data in a netloc with "****", if it exists. + + For example: + - "user:pass@example.com" returns "user:****@example.com" + - "accesstoken@example.com" returns "****@example.com" + """ + netloc, (user, password) = split_auth_from_netloc(netloc) + if user is None: + return netloc + if password is None: + user = "****" + password = "" + else: + user = urllib.parse.quote(user) + password = ":****" + return "{user}{password}@{netloc}".format( + user=user, password=password, netloc=netloc + ) + + +def _transform_url(url, transform_netloc): + # type: (str, Callable[[str], Tuple[Any, ...]]) -> Tuple[str, NetlocTuple] + """Transform and replace netloc in a url. + + transform_netloc is a function taking the netloc and returning a + tuple. The first element of this tuple is the new netloc. The + entire tuple is returned. + + Returns a tuple containing the transformed url as item 0 and the + original tuple returned by transform_netloc as item 1. + """ + purl = urllib.parse.urlsplit(url) + netloc_tuple = transform_netloc(purl.netloc) + # stripped url + url_pieces = (purl.scheme, netloc_tuple[0], purl.path, purl.query, purl.fragment) + surl = urllib.parse.urlunsplit(url_pieces) + return surl, cast("NetlocTuple", netloc_tuple) + + +def _get_netloc(netloc): + # type: (str) -> NetlocTuple + return split_auth_from_netloc(netloc) + + +def _redact_netloc(netloc): + # type: (str) -> Tuple[str,] + return (redact_netloc(netloc),) + + +def split_auth_netloc_from_url(url): + # type: (str) -> Tuple[str, str, Tuple[str, str]] + """ + Parse a url into separate netloc, auth, and url with no auth. + + Returns: (url_without_auth, netloc, (username, password)) + """ + url_without_auth, (netloc, auth) = _transform_url(url, _get_netloc) + return url_without_auth, netloc, auth + + +def remove_auth_from_url(url): + # type: (str) -> str + """Return a copy of url with 'username:password@' removed.""" + # username/pass params are passed to subversion through flags + # and are not recognized in the url. + return _transform_url(url, _get_netloc)[0] + + +def redact_auth_from_url(url): + # type: (str) -> str + """Replace the password in a given url with ****.""" + return _transform_url(url, _redact_netloc)[0] + + +class HiddenText: + def __init__( + self, + secret, # type: str + redacted, # type: str + ): + # type: (...) -> None + self.secret = secret + self.redacted = redacted + + def __repr__(self): + # type: (...) -> str + return "".format(str(self)) + + def __str__(self): + # type: (...) -> str + return self.redacted + + # This is useful for testing. + def __eq__(self, other): + # type: (Any) -> bool + if type(self) != type(other): + return False + + # The string being used for redaction doesn't also have to match, + # just the raw, original string. + return self.secret == other.secret + + +def hide_value(value): + # type: (str) -> HiddenText + return HiddenText(value, redacted="****") + + +def hide_url(url): + # type: (str) -> HiddenText + redacted = redact_auth_from_url(url) + return HiddenText(url, redacted=redacted) + + +def protect_pip_from_modification_on_windows(modifying_pip): + # type: (bool) -> None + """Protection of pip.exe from modification on Windows + + On Windows, any operation modifying pip should be run as: + python -m pip ... + """ + pip_names = [ + "pip.exe", + "pip{}.exe".format(sys.version_info[0]), + "pip{}.{}.exe".format(*sys.version_info[:2]), + ] + + # See https://github.com/pypa/pip/issues/1299 for more discussion + should_show_use_python_msg = ( + modifying_pip and WINDOWS and os.path.basename(sys.argv[0]) in pip_names + ) + + if should_show_use_python_msg: + new_command = [sys.executable, "-m", "pip"] + sys.argv[1:] + raise CommandError( + "To modify pip, please run the following command:\n{}".format( + " ".join(new_command) + ) + ) + + +def is_console_interactive(): + # type: () -> bool + """Is this console interactive?""" + return sys.stdin is not None and sys.stdin.isatty() + + +def hash_file(path, blocksize=1 << 20): + # type: (str, int) -> Tuple[Any, int] + """Return (hash, length) for path using hashlib.sha256()""" + + h = hashlib.sha256() + length = 0 + with open(path, "rb") as f: + for block in read_chunks(f, size=blocksize): + length += len(block) + h.update(block) + return h, length + + +def is_wheel_installed(): + # type: () -> bool + """ + Return whether the wheel package is installed. + """ + try: + import wheel # noqa: F401 + except ImportError: + return False + + return True + + +def pairwise(iterable): + # type: (Iterable[Any]) -> Iterator[Tuple[Any, Any]] + """ + Return paired elements. + + For example: + s -> (s0, s1), (s2, s3), (s4, s5), ... + """ + iterable = iter(iterable) + return zip_longest(iterable, iterable) + + +def partition( + pred, # type: Callable[[T], bool] + iterable, # type: Iterable[T] +): + # type: (...) -> Tuple[Iterable[T], Iterable[T]] + """ + Use a predicate to partition entries into false entries and true entries, + like + + partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9 + """ + t1, t2 = tee(iterable) + return filterfalse(pred, t1), filter(pred, t2) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/models.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/models.py new file mode 100644 index 00000000..0e02bc7a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/models.py @@ -0,0 +1,47 @@ +"""Utilities for defining models +""" + +import operator +from typing import Any, Callable, Type + + +class KeyBasedCompareMixin: + """Provides comparison capabilities that is based on a key""" + + __slots__ = ["_compare_key", "_defining_class"] + + def __init__(self, key, defining_class): + # type: (Any, Type[KeyBasedCompareMixin]) -> None + self._compare_key = key + self._defining_class = defining_class + + def __hash__(self): + # type: () -> int + return hash(self._compare_key) + + def __lt__(self, other): + # type: (Any) -> bool + return self._compare(other, operator.__lt__) + + def __le__(self, other): + # type: (Any) -> bool + return self._compare(other, operator.__le__) + + def __gt__(self, other): + # type: (Any) -> bool + return self._compare(other, operator.__gt__) + + def __ge__(self, other): + # type: (Any) -> bool + return self._compare(other, operator.__ge__) + + def __eq__(self, other): + # type: (Any) -> bool + return self._compare(other, operator.__eq__) + + def _compare(self, other, method): + # type: (Any, Callable[[Any, Any], bool]) -> bool + if not isinstance(other, self._defining_class): + return NotImplemented + + return method(self._compare_key, other._compare_key) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/packaging.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/packaging.py new file mode 100644 index 00000000..3f9dbd3b --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/packaging.py @@ -0,0 +1,89 @@ +import logging +from email.message import Message +from email.parser import FeedParser +from typing import Optional, Tuple + +from pip._vendor import pkg_resources +from pip._vendor.packaging import specifiers, version +from pip._vendor.pkg_resources import Distribution + +from pip._internal.exceptions import NoneMetadataError +from pip._internal.utils.misc import display_path + +logger = logging.getLogger(__name__) + + +def check_requires_python(requires_python, version_info): + # type: (Optional[str], Tuple[int, ...]) -> bool + """ + Check if the given Python version matches a "Requires-Python" specifier. + + :param version_info: A 3-tuple of ints representing a Python + major-minor-micro version to check (e.g. `sys.version_info[:3]`). + + :return: `True` if the given Python version satisfies the requirement. + Otherwise, return `False`. + + :raises InvalidSpecifier: If `requires_python` has an invalid format. + """ + if requires_python is None: + # The package provides no information + return True + requires_python_specifier = specifiers.SpecifierSet(requires_python) + + python_version = version.parse(".".join(map(str, version_info))) + return python_version in requires_python_specifier + + +def get_metadata(dist): + # type: (Distribution) -> Message + """ + :raises NoneMetadataError: if the distribution reports `has_metadata()` + True but `get_metadata()` returns None. + """ + metadata_name = "METADATA" + if isinstance(dist, pkg_resources.DistInfoDistribution) and dist.has_metadata( + metadata_name + ): + metadata = dist.get_metadata(metadata_name) + elif dist.has_metadata("PKG-INFO"): + metadata_name = "PKG-INFO" + metadata = dist.get_metadata(metadata_name) + else: + logger.warning("No metadata found in %s", display_path(dist.location)) + metadata = "" + + if metadata is None: + raise NoneMetadataError(dist, metadata_name) + + feed_parser = FeedParser() + # The following line errors out if with a "NoneType" TypeError if + # passed metadata=None. + feed_parser.feed(metadata) + return feed_parser.close() + + +def get_requires_python(dist): + # type: (pkg_resources.Distribution) -> Optional[str] + """ + Return the "Requires-Python" metadata for a distribution, or None + if not present. + """ + pkg_info_dict = get_metadata(dist) + requires_python = pkg_info_dict.get("Requires-Python") + + if requires_python is not None: + # Convert to a str to satisfy the type checker, since requires_python + # can be a Header object. + requires_python = str(requires_python) + + return requires_python + + +def get_installer(dist): + # type: (Distribution) -> str + if dist.has_metadata("INSTALLER"): + for line in dist.get_metadata_lines("INSTALLER"): + if line.strip(): + return line.strip() + return "" diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/parallel.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/parallel.py new file mode 100644 index 00000000..de91dc8a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/parallel.py @@ -0,0 +1,101 @@ +"""Convenient parallelization of higher order functions. + +This module provides two helper functions, with appropriate fallbacks on +Python 2 and on systems lacking support for synchronization mechanisms: + +- map_multiprocess +- map_multithread + +These helpers work like Python 3's map, with two differences: + +- They don't guarantee the order of processing of + the elements of the iterable. +- The underlying process/thread pools chop the iterable into + a number of chunks, so that for very long iterables using + a large value for chunksize can make the job complete much faster + than using the default value of 1. +""" + +__all__ = ["map_multiprocess", "map_multithread"] + +from contextlib import contextmanager +from multiprocessing import Pool as ProcessPool +from multiprocessing import pool +from multiprocessing.dummy import Pool as ThreadPool +from typing import Callable, Iterable, Iterator, TypeVar, Union + +from pip._vendor.requests.adapters import DEFAULT_POOLSIZE + +Pool = Union[pool.Pool, pool.ThreadPool] +S = TypeVar("S") +T = TypeVar("T") + +# On platforms without sem_open, multiprocessing[.dummy] Pool +# cannot be created. +try: + import multiprocessing.synchronize # noqa +except ImportError: + LACK_SEM_OPEN = True +else: + LACK_SEM_OPEN = False + +# Incredibly large timeout to work around bpo-8296 on Python 2. +TIMEOUT = 2000000 + + +@contextmanager +def closing(pool): + # type: (Pool) -> Iterator[Pool] + """Return a context manager making sure the pool closes properly.""" + try: + yield pool + finally: + # For Pool.imap*, close and join are needed + # for the returned iterator to begin yielding. + pool.close() + pool.join() + pool.terminate() + + +def _map_fallback(func, iterable, chunksize=1): + # type: (Callable[[S], T], Iterable[S], int) -> Iterator[T] + """Make an iterator applying func to each element in iterable. + + This function is the sequential fallback either on Python 2 + where Pool.imap* doesn't react to KeyboardInterrupt + or when sem_open is unavailable. + """ + return map(func, iterable) + + +def _map_multiprocess(func, iterable, chunksize=1): + # type: (Callable[[S], T], Iterable[S], int) -> Iterator[T] + """Chop iterable into chunks and submit them to a process pool. + + For very long iterables using a large value for chunksize can make + the job complete much faster than using the default value of 1. + + Return an unordered iterator of the results. + """ + with closing(ProcessPool()) as pool: + return pool.imap_unordered(func, iterable, chunksize) + + +def _map_multithread(func, iterable, chunksize=1): + # type: (Callable[[S], T], Iterable[S], int) -> Iterator[T] + """Chop iterable into chunks and submit them to a thread pool. + + For very long iterables using a large value for chunksize can make + the job complete much faster than using the default value of 1. + + Return an unordered iterator of the results. + """ + with closing(ThreadPool(DEFAULT_POOLSIZE)) as pool: + return pool.imap_unordered(func, iterable, chunksize) + + +if LACK_SEM_OPEN: + map_multiprocess = map_multithread = _map_fallback +else: + map_multiprocess = _map_multiprocess + map_multithread = _map_multithread diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/pkg_resources.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/pkg_resources.py new file mode 100644 index 00000000..ee1eca30 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/pkg_resources.py @@ -0,0 +1,40 @@ +from typing import Dict, Iterable, List + +from pip._vendor.pkg_resources import yield_lines + + +class DictMetadata: + """IMetadataProvider that reads metadata files from a dictionary.""" + + def __init__(self, metadata): + # type: (Dict[str, bytes]) -> None + self._metadata = metadata + + def has_metadata(self, name): + # type: (str) -> bool + return name in self._metadata + + def get_metadata(self, name): + # type: (str) -> str + try: + return self._metadata[name].decode() + except UnicodeDecodeError as e: + # Mirrors handling done in pkg_resources.NullProvider. + e.reason += f" in {name} file" + raise + + def get_metadata_lines(self, name): + # type: (str) -> Iterable[str] + return yield_lines(self.get_metadata(name)) + + def metadata_isdir(self, name): + # type: (str) -> bool + return False + + def metadata_listdir(self, name): + # type: (str) -> List[str] + return [] + + def run_script(self, script_name, namespace): + # type: (str, str) -> None + pass diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/setuptools_build.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/setuptools_build.py new file mode 100644 index 00000000..4b8e4b35 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/setuptools_build.py @@ -0,0 +1,173 @@ +import sys +from typing import List, Optional, Sequence + +# Shim to wrap setup.py invocation with setuptools +# +# We set sys.argv[0] to the path to the underlying setup.py file so +# setuptools / distutils don't take the path to the setup.py to be "-c" when +# invoking via the shim. This avoids e.g. the following manifest_maker +# warning: "warning: manifest_maker: standard file '-c' not found". +_SETUPTOOLS_SHIM = ( + "import io, os, sys, setuptools, tokenize; sys.argv[0] = {0!r}; __file__={0!r};" + "f = getattr(tokenize, 'open', open)(__file__) " + "if os.path.exists(__file__) " + "else io.StringIO('from setuptools import setup; setup()');" + "code = f.read().replace('\\r\\n', '\\n');" + "f.close();" + "exec(compile(code, __file__, 'exec'))" +) + + +def make_setuptools_shim_args( + setup_py_path, # type: str + global_options=None, # type: Sequence[str] + no_user_config=False, # type: bool + unbuffered_output=False, # type: bool +): + # type: (...) -> List[str] + """ + Get setuptools command arguments with shim wrapped setup file invocation. + + :param setup_py_path: The path to setup.py to be wrapped. + :param global_options: Additional global options. + :param no_user_config: If True, disables personal user configuration. + :param unbuffered_output: If True, adds the unbuffered switch to the + argument list. + """ + args = [sys.executable] + if unbuffered_output: + args += ["-u"] + args += ["-c", _SETUPTOOLS_SHIM.format(setup_py_path)] + if global_options: + args += global_options + if no_user_config: + args += ["--no-user-cfg"] + return args + + +def make_setuptools_bdist_wheel_args( + setup_py_path, # type: str + global_options, # type: Sequence[str] + build_options, # type: Sequence[str] + destination_dir, # type: str +): + # type: (...) -> List[str] + # NOTE: Eventually, we'd want to also -S to the flags here, when we're + # isolating. Currently, it breaks Python in virtualenvs, because it + # relies on site.py to find parts of the standard library outside the + # virtualenv. + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["bdist_wheel", "-d", destination_dir] + args += build_options + return args + + +def make_setuptools_clean_args( + setup_py_path, # type: str + global_options, # type: Sequence[str] +): + # type: (...) -> List[str] + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["clean", "--all"] + return args + + +def make_setuptools_develop_args( + setup_py_path, # type: str + global_options, # type: Sequence[str] + install_options, # type: Sequence[str] + no_user_config, # type: bool + prefix, # type: Optional[str] + home, # type: Optional[str] + use_user_site, # type: bool +): + # type: (...) -> List[str] + assert not (use_user_site and prefix) + + args = make_setuptools_shim_args( + setup_py_path, + global_options=global_options, + no_user_config=no_user_config, + ) + + args += ["develop", "--no-deps"] + + args += install_options + + if prefix: + args += ["--prefix", prefix] + if home is not None: + args += ["--install-dir", home] + + if use_user_site: + args += ["--user", "--prefix="] + + return args + + +def make_setuptools_egg_info_args( + setup_py_path, # type: str + egg_info_dir, # type: Optional[str] + no_user_config, # type: bool +): + # type: (...) -> List[str] + args = make_setuptools_shim_args(setup_py_path, no_user_config=no_user_config) + + args += ["egg_info"] + + if egg_info_dir: + args += ["--egg-base", egg_info_dir] + + return args + + +def make_setuptools_install_args( + setup_py_path, # type: str + global_options, # type: Sequence[str] + install_options, # type: Sequence[str] + record_filename, # type: str + root, # type: Optional[str] + prefix, # type: Optional[str] + header_dir, # type: Optional[str] + home, # type: Optional[str] + use_user_site, # type: bool + no_user_config, # type: bool + pycompile, # type: bool +): + # type: (...) -> List[str] + assert not (use_user_site and prefix) + assert not (use_user_site and root) + + args = make_setuptools_shim_args( + setup_py_path, + global_options=global_options, + no_user_config=no_user_config, + unbuffered_output=True, + ) + args += ["install", "--record", record_filename] + args += ["--single-version-externally-managed"] + + if root is not None: + args += ["--root", root] + if prefix is not None: + args += ["--prefix", prefix] + if home is not None: + args += ["--home", home] + if use_user_site: + args += ["--user", "--prefix="] + + if pycompile: + args += ["--compile"] + else: + args += ["--no-compile"] + + if header_dir: + args += ["--install-headers", header_dir] + + args += install_options + + return args diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/subprocess.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/subprocess.py new file mode 100644 index 00000000..2c8cf212 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/subprocess.py @@ -0,0 +1,281 @@ +import logging +import os +import shlex +import subprocess +from typing import Any, Callable, Iterable, List, Mapping, Optional, Union + +from pip._internal.cli.spinners import SpinnerInterface, open_spinner +from pip._internal.exceptions import InstallationSubprocessError +from pip._internal.utils.logging import subprocess_logger +from pip._internal.utils.misc import HiddenText + +CommandArgs = List[Union[str, HiddenText]] + + +LOG_DIVIDER = "----------------------------------------" + + +def make_command(*args): + # type: (Union[str, HiddenText, CommandArgs]) -> CommandArgs + """ + Create a CommandArgs object. + """ + command_args = [] # type: CommandArgs + for arg in args: + # Check for list instead of CommandArgs since CommandArgs is + # only known during type-checking. + if isinstance(arg, list): + command_args.extend(arg) + else: + # Otherwise, arg is str or HiddenText. + command_args.append(arg) + + return command_args + + +def format_command_args(args): + # type: (Union[List[str], CommandArgs]) -> str + """ + Format command arguments for display. + """ + # For HiddenText arguments, display the redacted form by calling str(). + # Also, we don't apply str() to arguments that aren't HiddenText since + # this can trigger a UnicodeDecodeError in Python 2 if the argument + # has type unicode and includes a non-ascii character. (The type + # checker doesn't ensure the annotations are correct in all cases.) + return " ".join( + shlex.quote(str(arg)) if isinstance(arg, HiddenText) else shlex.quote(arg) + for arg in args + ) + + +def reveal_command_args(args): + # type: (Union[List[str], CommandArgs]) -> List[str] + """ + Return the arguments in their raw, unredacted form. + """ + return [arg.secret if isinstance(arg, HiddenText) else arg for arg in args] + + +def make_subprocess_output_error( + cmd_args, # type: Union[List[str], CommandArgs] + cwd, # type: Optional[str] + lines, # type: List[str] + exit_status, # type: int +): + # type: (...) -> str + """ + Create and return the error message to use to log a subprocess error + with command output. + + :param lines: A list of lines, each ending with a newline. + """ + command = format_command_args(cmd_args) + + # We know the joined output value ends in a newline. + output = "".join(lines) + msg = ( + # Use a unicode string to avoid "UnicodeEncodeError: 'ascii' + # codec can't encode character ..." in Python 2 when a format + # argument (e.g. `output`) has a non-ascii character. + "Command errored out with exit status {exit_status}:\n" + " command: {command_display}\n" + " cwd: {cwd_display}\n" + "Complete output ({line_count} lines):\n{output}{divider}" + ).format( + exit_status=exit_status, + command_display=command, + cwd_display=cwd, + line_count=len(lines), + output=output, + divider=LOG_DIVIDER, + ) + return msg + + +def call_subprocess( + cmd, # type: Union[List[str], CommandArgs] + show_stdout=False, # type: bool + cwd=None, # type: Optional[str] + on_returncode="raise", # type: str + extra_ok_returncodes=None, # type: Optional[Iterable[int]] + command_desc=None, # type: Optional[str] + extra_environ=None, # type: Optional[Mapping[str, Any]] + unset_environ=None, # type: Optional[Iterable[str]] + spinner=None, # type: Optional[SpinnerInterface] + log_failed_cmd=True, # type: Optional[bool] + stdout_only=False, # type: Optional[bool] +): + # type: (...) -> str + """ + Args: + show_stdout: if true, use INFO to log the subprocess's stderr and + stdout streams. Otherwise, use DEBUG. Defaults to False. + extra_ok_returncodes: an iterable of integer return codes that are + acceptable, in addition to 0. Defaults to None, which means []. + unset_environ: an iterable of environment variable names to unset + prior to calling subprocess.Popen(). + log_failed_cmd: if false, failed commands are not logged, only raised. + stdout_only: if true, return only stdout, else return both. When true, + logging of both stdout and stderr occurs when the subprocess has + terminated, else logging occurs as subprocess output is produced. + """ + if extra_ok_returncodes is None: + extra_ok_returncodes = [] + if unset_environ is None: + unset_environ = [] + # Most places in pip use show_stdout=False. What this means is-- + # + # - We connect the child's output (combined stderr and stdout) to a + # single pipe, which we read. + # - We log this output to stderr at DEBUG level as it is received. + # - If DEBUG logging isn't enabled (e.g. if --verbose logging wasn't + # requested), then we show a spinner so the user can still see the + # subprocess is in progress. + # - If the subprocess exits with an error, we log the output to stderr + # at ERROR level if it hasn't already been displayed to the console + # (e.g. if --verbose logging wasn't enabled). This way we don't log + # the output to the console twice. + # + # If show_stdout=True, then the above is still done, but with DEBUG + # replaced by INFO. + if show_stdout: + # Then log the subprocess output at INFO level. + log_subprocess = subprocess_logger.info + used_level = logging.INFO + else: + # Then log the subprocess output using DEBUG. This also ensures + # it will be logged to the log file (aka user_log), if enabled. + log_subprocess = subprocess_logger.debug + used_level = logging.DEBUG + + # Whether the subprocess will be visible in the console. + showing_subprocess = subprocess_logger.getEffectiveLevel() <= used_level + + # Only use the spinner if we're not showing the subprocess output + # and we have a spinner. + use_spinner = not showing_subprocess and spinner is not None + + if command_desc is None: + command_desc = format_command_args(cmd) + + log_subprocess("Running command %s", command_desc) + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + for name in unset_environ: + env.pop(name, None) + try: + proc = subprocess.Popen( + # Convert HiddenText objects to the underlying str. + reveal_command_args(cmd), + stdin=subprocess.PIPE, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT if not stdout_only else subprocess.PIPE, + cwd=cwd, + env=env, + errors="backslashreplace", + ) + except Exception as exc: + if log_failed_cmd: + subprocess_logger.critical( + "Error %s while executing command %s", + exc, + command_desc, + ) + raise + all_output = [] + if not stdout_only: + assert proc.stdout + assert proc.stdin + proc.stdin.close() + # In this mode, stdout and stderr are in the same pipe. + while True: + line = proc.stdout.readline() # type: str + if not line: + break + line = line.rstrip() + all_output.append(line + "\n") + + # Show the line immediately. + log_subprocess(line) + # Update the spinner. + if use_spinner: + assert spinner + spinner.spin() + try: + proc.wait() + finally: + if proc.stdout: + proc.stdout.close() + output = "".join(all_output) + else: + # In this mode, stdout and stderr are in different pipes. + # We must use communicate() which is the only safe way to read both. + out, err = proc.communicate() + # log line by line to preserve pip log indenting + for out_line in out.splitlines(): + log_subprocess(out_line) + all_output.append(out) + for err_line in err.splitlines(): + log_subprocess(err_line) + all_output.append(err) + output = out + + proc_had_error = proc.returncode and proc.returncode not in extra_ok_returncodes + if use_spinner: + assert spinner + if proc_had_error: + spinner.finish("error") + else: + spinner.finish("done") + if proc_had_error: + if on_returncode == "raise": + if not showing_subprocess and log_failed_cmd: + # Then the subprocess streams haven't been logged to the + # console yet. + msg = make_subprocess_output_error( + cmd_args=cmd, + cwd=cwd, + lines=all_output, + exit_status=proc.returncode, + ) + subprocess_logger.error(msg) + raise InstallationSubprocessError(proc.returncode, command_desc) + elif on_returncode == "warn": + subprocess_logger.warning( + 'Command "%s" had error code %s in %s', + command_desc, + proc.returncode, + cwd, + ) + elif on_returncode == "ignore": + pass + else: + raise ValueError(f"Invalid value: on_returncode={on_returncode!r}") + return output + + +def runner_with_spinner_message(message): + # type: (str) -> Callable[..., None] + """Provide a subprocess_runner that shows a spinner message. + + Intended for use with for pep517's Pep517HookCaller. Thus, the runner has + an API that matches what's expected by Pep517HookCaller.subprocess_runner. + """ + + def runner( + cmd, # type: List[str] + cwd=None, # type: Optional[str] + extra_environ=None, # type: Optional[Mapping[str, Any]] + ): + # type: (...) -> None + with open_spinner(message) as spinner: + call_subprocess( + cmd, + cwd=cwd, + extra_environ=extra_environ, + spinner=spinner, + ) + + return runner diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/temp_dir.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/temp_dir.py new file mode 100644 index 00000000..477cbe6b --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/temp_dir.py @@ -0,0 +1,260 @@ +import errno +import itertools +import logging +import os.path +import tempfile +from contextlib import ExitStack, contextmanager +from typing import Any, Dict, Iterator, Optional, TypeVar, Union + +from pip._internal.utils.misc import enum, rmtree + +logger = logging.getLogger(__name__) + +_T = TypeVar("_T", bound="TempDirectory") + + +# Kinds of temporary directories. Only needed for ones that are +# globally-managed. +tempdir_kinds = enum( + BUILD_ENV="build-env", + EPHEM_WHEEL_CACHE="ephem-wheel-cache", + REQ_BUILD="req-build", +) + + +_tempdir_manager = None # type: Optional[ExitStack] + + +@contextmanager +def global_tempdir_manager(): + # type: () -> Iterator[None] + global _tempdir_manager + with ExitStack() as stack: + old_tempdir_manager, _tempdir_manager = _tempdir_manager, stack + try: + yield + finally: + _tempdir_manager = old_tempdir_manager + + +class TempDirectoryTypeRegistry: + """Manages temp directory behavior""" + + def __init__(self): + # type: () -> None + self._should_delete = {} # type: Dict[str, bool] + + def set_delete(self, kind, value): + # type: (str, bool) -> None + """Indicate whether a TempDirectory of the given kind should be + auto-deleted. + """ + self._should_delete[kind] = value + + def get_delete(self, kind): + # type: (str) -> bool + """Get configured auto-delete flag for a given TempDirectory type, + default True. + """ + return self._should_delete.get(kind, True) + + +_tempdir_registry = None # type: Optional[TempDirectoryTypeRegistry] + + +@contextmanager +def tempdir_registry(): + # type: () -> Iterator[TempDirectoryTypeRegistry] + """Provides a scoped global tempdir registry that can be used to dictate + whether directories should be deleted. + """ + global _tempdir_registry + old_tempdir_registry = _tempdir_registry + _tempdir_registry = TempDirectoryTypeRegistry() + try: + yield _tempdir_registry + finally: + _tempdir_registry = old_tempdir_registry + + +class _Default: + pass + + +_default = _Default() + + +class TempDirectory: + """Helper class that owns and cleans up a temporary directory. + + This class can be used as a context manager or as an OO representation of a + temporary directory. + + Attributes: + path + Location to the created temporary directory + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + Methods: + cleanup() + Deletes the temporary directory + + When used as a context manager, if the delete attribute is True, on + exiting the context the temporary directory is deleted. + """ + + def __init__( + self, + path=None, # type: Optional[str] + delete=_default, # type: Union[bool, None, _Default] + kind="temp", # type: str + globally_managed=False, # type: bool + ): + super().__init__() + + if delete is _default: + if path is not None: + # If we were given an explicit directory, resolve delete option + # now. + delete = False + else: + # Otherwise, we wait until cleanup and see what + # tempdir_registry says. + delete = None + + # The only time we specify path is in for editables where it + # is the value of the --src option. + if path is None: + path = self._create(kind) + + self._path = path + self._deleted = False + self.delete = delete + self.kind = kind + + if globally_managed: + assert _tempdir_manager is not None + _tempdir_manager.enter_context(self) + + @property + def path(self): + # type: () -> str + assert not self._deleted, f"Attempted to access deleted path: {self._path}" + return self._path + + def __repr__(self): + # type: () -> str + return f"<{self.__class__.__name__} {self.path!r}>" + + def __enter__(self): + # type: (_T) -> _T + return self + + def __exit__(self, exc, value, tb): + # type: (Any, Any, Any) -> None + if self.delete is not None: + delete = self.delete + elif _tempdir_registry: + delete = _tempdir_registry.get_delete(self.kind) + else: + delete = True + + if delete: + self.cleanup() + + def _create(self, kind): + # type: (str) -> str + """Create a temporary directory and store its path in self.path""" + # We realpath here because some systems have their default tmpdir + # symlinked to another directory. This tends to confuse build + # scripts, so we canonicalize the path by traversing potential + # symlinks here. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + logger.debug("Created temporary directory: %s", path) + return path + + def cleanup(self): + # type: () -> None + """Remove the temporary directory created and reset state""" + self._deleted = True + if not os.path.exists(self._path): + return + rmtree(self._path) + + +class AdjacentTempDirectory(TempDirectory): + """Helper class that creates a temporary directory adjacent to a real one. + + Attributes: + original + The original directory to create a temp directory for. + path + After calling create() or entering, contains the full + path to the temporary directory. + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + """ + + # The characters that may be used to name the temp directory + # We always prepend a ~ and then rotate through these until + # a usable name is found. + # pkg_resources raises a different error for .dist-info folder + # with leading '-' and invalid metadata + LEADING_CHARS = "-~.=%0123456789" + + def __init__(self, original, delete=None): + # type: (str, Optional[bool]) -> None + self.original = original.rstrip("/\\") + super().__init__(delete=delete) + + @classmethod + def _generate_names(cls, name): + # type: (str) -> Iterator[str] + """Generates a series of temporary names. + + The algorithm replaces the leading characters in the name + with ones that are valid filesystem characters, but are not + valid package names (for both Python and pip definitions of + package). + """ + for i in range(1, len(name)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i - 1 + ): + new_name = "~" + "".join(candidate) + name[i:] + if new_name != name: + yield new_name + + # If we make it this far, we will have to make a longer name + for i in range(len(cls.LEADING_CHARS)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i + ): + new_name = "~" + "".join(candidate) + name + if new_name != name: + yield new_name + + def _create(self, kind): + # type: (str) -> str + root, name = os.path.split(self.original) + for candidate in self._generate_names(name): + path = os.path.join(root, candidate) + try: + os.mkdir(path) + except OSError as ex: + # Continue if the name exists already + if ex.errno != errno.EEXIST: + raise + else: + path = os.path.realpath(path) + break + else: + # Final fallback on the default behavior. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + + logger.debug("Created temporary directory: %s", path) + return path diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/unpacking.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/unpacking.py new file mode 100644 index 00000000..44ac4753 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/unpacking.py @@ -0,0 +1,267 @@ +"""Utilities related archives. +""" + +import logging +import os +import shutil +import stat +import tarfile +import zipfile +from typing import Iterable, List, Optional +from zipfile import ZipInfo + +from pip._internal.exceptions import InstallationError +from pip._internal.utils.filetypes import ( + BZ2_EXTENSIONS, + TAR_EXTENSIONS, + XZ_EXTENSIONS, + ZIP_EXTENSIONS, +) +from pip._internal.utils.misc import ensure_dir + +logger = logging.getLogger(__name__) + + +SUPPORTED_EXTENSIONS = ZIP_EXTENSIONS + TAR_EXTENSIONS + +try: + import bz2 # noqa + + SUPPORTED_EXTENSIONS += BZ2_EXTENSIONS +except ImportError: + logger.debug("bz2 module is not available") + +try: + # Only for Python 3.3+ + import lzma # noqa + + SUPPORTED_EXTENSIONS += XZ_EXTENSIONS +except ImportError: + logger.debug("lzma module is not available") + + +def current_umask(): + # type: () -> int + """Get the current umask which involves having to set it temporarily.""" + mask = os.umask(0) + os.umask(mask) + return mask + + +def split_leading_dir(path): + # type: (str) -> List[str] + path = path.lstrip("/").lstrip("\\") + if "/" in path and ( + ("\\" in path and path.find("/") < path.find("\\")) or "\\" not in path + ): + return path.split("/", 1) + elif "\\" in path: + return path.split("\\", 1) + else: + return [path, ""] + + +def has_leading_dir(paths): + # type: (Iterable[str]) -> bool + """Returns true if all the paths have the same leading path name + (i.e., everything is in one subdirectory in an archive)""" + common_prefix = None + for path in paths: + prefix, rest = split_leading_dir(path) + if not prefix: + return False + elif common_prefix is None: + common_prefix = prefix + elif prefix != common_prefix: + return False + return True + + +def is_within_directory(directory, target): + # type: (str, str) -> bool + """ + Return true if the absolute path of target is within the directory + """ + abs_directory = os.path.abspath(directory) + abs_target = os.path.abspath(target) + + prefix = os.path.commonprefix([abs_directory, abs_target]) + return prefix == abs_directory + + +def set_extracted_file_to_default_mode_plus_executable(path): + # type: (str) -> None + """ + Make file present at path have execute for user/group/world + (chmod +x) is no-op on windows per python docs + """ + os.chmod(path, (0o777 & ~current_umask() | 0o111)) + + +def zip_item_is_executable(info): + # type: (ZipInfo) -> bool + mode = info.external_attr >> 16 + # if mode and regular file and any execute permissions for + # user/group/world? + return bool(mode and stat.S_ISREG(mode) and mode & 0o111) + + +def unzip_file(filename, location, flatten=True): + # type: (str, str, bool) -> None + """ + Unzip the file (with path `filename`) to the destination `location`. All + files are written based on system defaults and umask (i.e. permissions are + not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + zipfp = open(filename, "rb") + try: + zip = zipfile.ZipFile(zipfp, allowZip64=True) + leading = has_leading_dir(zip.namelist()) and flatten + for info in zip.infolist(): + name = info.filename + fn = name + if leading: + fn = split_leading_dir(name)[1] + fn = os.path.join(location, fn) + dir = os.path.dirname(fn) + if not is_within_directory(location, fn): + message = ( + "The zip file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, fn, location)) + if fn.endswith("/") or fn.endswith("\\"): + # A directory + ensure_dir(fn) + else: + ensure_dir(dir) + # Don't use read() to avoid allocating an arbitrarily large + # chunk of memory for the file's content + fp = zip.open(name) + try: + with open(fn, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + finally: + fp.close() + if zip_item_is_executable(info): + set_extracted_file_to_default_mode_plus_executable(fn) + finally: + zipfp.close() + + +def untar_file(filename, location): + # type: (str, str) -> None + """ + Untar the file (with path `filename`) to the destination `location`. + All files are written based on system defaults and umask (i.e. permissions + are not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + if filename.lower().endswith(".gz") or filename.lower().endswith(".tgz"): + mode = "r:gz" + elif filename.lower().endswith(BZ2_EXTENSIONS): + mode = "r:bz2" + elif filename.lower().endswith(XZ_EXTENSIONS): + mode = "r:xz" + elif filename.lower().endswith(".tar"): + mode = "r" + else: + logger.warning( + "Cannot determine compression type for file %s", + filename, + ) + mode = "r:*" + tar = tarfile.open(filename, mode) + try: + leading = has_leading_dir([member.name for member in tar.getmembers()]) + for member in tar.getmembers(): + fn = member.name + if leading: + fn = split_leading_dir(fn)[1] + path = os.path.join(location, fn) + if not is_within_directory(location, path): + message = ( + "The tar file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, path, location)) + if member.isdir(): + ensure_dir(path) + elif member.issym(): + try: + # https://github.com/python/typeshed/issues/2673 + tar._extract_member(member, path) # type: ignore + except Exception as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + else: + try: + fp = tar.extractfile(member) + except (KeyError, AttributeError) as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + ensure_dir(os.path.dirname(path)) + assert fp is not None + with open(path, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + fp.close() + # Update the timestamp (useful for cython compiled files) + tar.utime(member, path) + # member have any execute permissions for user/group/world? + if member.mode & 0o111: + set_extracted_file_to_default_mode_plus_executable(path) + finally: + tar.close() + + +def unpack_file( + filename, # type: str + location, # type: str + content_type=None, # type: Optional[str] +): + # type: (...) -> None + filename = os.path.realpath(filename) + if ( + content_type == "application/zip" + or filename.lower().endswith(ZIP_EXTENSIONS) + or zipfile.is_zipfile(filename) + ): + unzip_file(filename, location, flatten=not filename.endswith(".whl")) + elif ( + content_type == "application/x-gzip" + or tarfile.is_tarfile(filename) + or filename.lower().endswith(TAR_EXTENSIONS + BZ2_EXTENSIONS + XZ_EXTENSIONS) + ): + untar_file(filename, location) + else: + # FIXME: handle? + # FIXME: magic signatures? + logger.critical( + "Cannot unpack file %s (downloaded from %s, content-type: %s); " + "cannot detect archive format", + filename, + location, + content_type, + ) + raise InstallationError(f"Cannot determine archive format of {location}") diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/urls.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/urls.py new file mode 100644 index 00000000..50a04d86 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/urls.py @@ -0,0 +1,49 @@ +import os +import sys +import urllib.parse +import urllib.request +from typing import Optional + + +def get_url_scheme(url): + # type: (str) -> Optional[str] + if ":" not in url: + return None + return url.split(":", 1)[0].lower() + + +def path_to_url(path): + # type: (str) -> str + """ + Convert a path to a file: URL. The path will be made absolute and have + quoted path parts. + """ + path = os.path.normpath(os.path.abspath(path)) + url = urllib.parse.urljoin("file:", urllib.request.pathname2url(path)) + return url + + +def url_to_path(url): + # type: (str) -> str + """ + Convert a file: URL to a path. + """ + assert url.startswith( + "file:" + ), f"You can only turn file: urls into filenames (not {url!r})" + + _, netloc, path, _, _ = urllib.parse.urlsplit(url) + + if not netloc or netloc == "localhost": + # According to RFC 8089, same as empty authority. + netloc = "" + elif sys.platform == "win32": + # If we have a UNC path, prepend UNC share notation. + netloc = "\\\\" + netloc + else: + raise ValueError( + f"non-local file URIs are not supported on this platform: {url!r}" + ) + + path = urllib.request.url2pathname(netloc + path) + return path diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/virtualenv.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/virtualenv.py new file mode 100644 index 00000000..51cacb55 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/virtualenv.py @@ -0,0 +1,111 @@ +import logging +import os +import re +import site +import sys +from typing import List, Optional + +logger = logging.getLogger(__name__) +_INCLUDE_SYSTEM_SITE_PACKAGES_REGEX = re.compile( + r"include-system-site-packages\s*=\s*(?Ptrue|false)" +) + + +def _running_under_venv(): + # type: () -> bool + """Checks if sys.base_prefix and sys.prefix match. + + This handles PEP 405 compliant virtual environments. + """ + return sys.prefix != getattr(sys, "base_prefix", sys.prefix) + + +def _running_under_regular_virtualenv(): + # type: () -> bool + """Checks if sys.real_prefix is set. + + This handles virtual environments created with pypa's virtualenv. + """ + # pypa/virtualenv case + return hasattr(sys, "real_prefix") + + +def running_under_virtualenv(): + # type: () -> bool + """Return True if we're running inside a virtualenv, False otherwise.""" + return _running_under_venv() or _running_under_regular_virtualenv() + + +def _get_pyvenv_cfg_lines(): + # type: () -> Optional[List[str]] + """Reads {sys.prefix}/pyvenv.cfg and returns its contents as list of lines + + Returns None, if it could not read/access the file. + """ + pyvenv_cfg_file = os.path.join(sys.prefix, "pyvenv.cfg") + try: + # Although PEP 405 does not specify, the built-in venv module always + # writes with UTF-8. (pypa/pip#8717) + with open(pyvenv_cfg_file, encoding="utf-8") as f: + return f.read().splitlines() # avoids trailing newlines + except OSError: + return None + + +def _no_global_under_venv(): + # type: () -> bool + """Check `{sys.prefix}/pyvenv.cfg` for system site-packages inclusion + + PEP 405 specifies that when system site-packages are not supposed to be + visible from a virtual environment, `pyvenv.cfg` must contain the following + line: + + include-system-site-packages = false + + Additionally, log a warning if accessing the file fails. + """ + cfg_lines = _get_pyvenv_cfg_lines() + if cfg_lines is None: + # We're not in a "sane" venv, so assume there is no system + # site-packages access (since that's PEP 405's default state). + logger.warning( + "Could not access 'pyvenv.cfg' despite a virtual environment " + "being active. Assuming global site-packages is not accessible " + "in this environment." + ) + return True + + for line in cfg_lines: + match = _INCLUDE_SYSTEM_SITE_PACKAGES_REGEX.match(line) + if match is not None and match.group("value") == "false": + return True + return False + + +def _no_global_under_regular_virtualenv(): + # type: () -> bool + """Check if "no-global-site-packages.txt" exists beside site.py + + This mirrors logic in pypa/virtualenv for determining whether system + site-packages are visible in the virtual environment. + """ + site_mod_dir = os.path.dirname(os.path.abspath(site.__file__)) + no_global_site_packages_file = os.path.join( + site_mod_dir, + "no-global-site-packages.txt", + ) + return os.path.exists(no_global_site_packages_file) + + +def virtualenv_no_global(): + # type: () -> bool + """Returns a boolean, whether running in venv with no system site-packages.""" + # PEP 405 compliance needs to be checked first since virtualenv >=20 would + # return True for both checks, but is only able to use the PEP 405 config. + if _running_under_venv(): + return _no_global_under_venv() + + if _running_under_regular_virtualenv(): + return _no_global_under_regular_virtualenv() + + return False diff --git a/venv/lib/python3.8/site-packages/pip/_internal/utils/wheel.py b/venv/lib/python3.8/site-packages/pip/_internal/utils/wheel.py new file mode 100644 index 00000000..42f08084 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/utils/wheel.py @@ -0,0 +1,189 @@ +"""Support functions for working with wheel files. +""" + +import logging +from email.message import Message +from email.parser import Parser +from typing import Dict, Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.pkg_resources import DistInfoDistribution, Distribution + +from pip._internal.exceptions import UnsupportedWheel +from pip._internal.utils.pkg_resources import DictMetadata + +VERSION_COMPATIBLE = (1, 0) + + +logger = logging.getLogger(__name__) + + +class WheelMetadata(DictMetadata): + """Metadata provider that maps metadata decoding exceptions to our + internal exception type. + """ + + def __init__(self, metadata, wheel_name): + # type: (Dict[str, bytes], str) -> None + super().__init__(metadata) + self._wheel_name = wheel_name + + def get_metadata(self, name): + # type: (str) -> str + try: + return super().get_metadata(name) + except UnicodeDecodeError as e: + # Augment the default error with the origin of the file. + raise UnsupportedWheel( + f"Error decoding metadata for {self._wheel_name}: {e}" + ) + + +def pkg_resources_distribution_for_wheel(wheel_zip, name, location): + # type: (ZipFile, str, str) -> Distribution + """Get a pkg_resources distribution given a wheel. + + :raises UnsupportedWheel: on any errors + """ + info_dir, _ = parse_wheel(wheel_zip, name) + + metadata_files = [p for p in wheel_zip.namelist() if p.startswith(f"{info_dir}/")] + + metadata_text = {} # type: Dict[str, bytes] + for path in metadata_files: + _, metadata_name = path.split("/", 1) + + try: + metadata_text[metadata_name] = read_wheel_metadata_file(wheel_zip, path) + except UnsupportedWheel as e: + raise UnsupportedWheel("{} has an invalid wheel, {}".format(name, str(e))) + + metadata = WheelMetadata(metadata_text, location) + + return DistInfoDistribution(location=location, metadata=metadata, project_name=name) + + +def parse_wheel(wheel_zip, name): + # type: (ZipFile, str) -> Tuple[str, Message] + """Extract information from the provided wheel, ensuring it meets basic + standards. + + Returns the name of the .dist-info directory and the parsed WHEEL metadata. + """ + try: + info_dir = wheel_dist_info_dir(wheel_zip, name) + metadata = wheel_metadata(wheel_zip, info_dir) + version = wheel_version(metadata) + except UnsupportedWheel as e: + raise UnsupportedWheel("{} has an invalid wheel, {}".format(name, str(e))) + + check_compatibility(version, name) + + return info_dir, metadata + + +def wheel_dist_info_dir(source, name): + # type: (ZipFile, str) -> str + """Returns the name of the contained .dist-info directory. + + Raises AssertionError or UnsupportedWheel if not found, >1 found, or + it doesn't match the provided name. + """ + # Zip file path separators must be / + subdirs = {p.split("/", 1)[0] for p in source.namelist()} + + info_dirs = [s for s in subdirs if s.endswith(".dist-info")] + + if not info_dirs: + raise UnsupportedWheel(".dist-info directory not found") + + if len(info_dirs) > 1: + raise UnsupportedWheel( + "multiple .dist-info directories found: {}".format(", ".join(info_dirs)) + ) + + info_dir = info_dirs[0] + + info_dir_name = canonicalize_name(info_dir) + canonical_name = canonicalize_name(name) + if not info_dir_name.startswith(canonical_name): + raise UnsupportedWheel( + ".dist-info directory {!r} does not start with {!r}".format( + info_dir, canonical_name + ) + ) + + return info_dir + + +def read_wheel_metadata_file(source, path): + # type: (ZipFile, str) -> bytes + try: + return source.read(path) + # BadZipFile for general corruption, KeyError for missing entry, + # and RuntimeError for password-protected files + except (BadZipFile, KeyError, RuntimeError) as e: + raise UnsupportedWheel(f"could not read {path!r} file: {e!r}") + + +def wheel_metadata(source, dist_info_dir): + # type: (ZipFile, str) -> Message + """Return the WHEEL metadata of an extracted wheel, if possible. + Otherwise, raise UnsupportedWheel. + """ + path = f"{dist_info_dir}/WHEEL" + # Zip file path separators must be / + wheel_contents = read_wheel_metadata_file(source, path) + + try: + wheel_text = wheel_contents.decode() + except UnicodeDecodeError as e: + raise UnsupportedWheel(f"error decoding {path!r}: {e!r}") + + # FeedParser (used by Parser) does not raise any exceptions. The returned + # message may have .defects populated, but for backwards-compatibility we + # currently ignore them. + return Parser().parsestr(wheel_text) + + +def wheel_version(wheel_data): + # type: (Message) -> Tuple[int, ...] + """Given WHEEL metadata, return the parsed Wheel-Version. + Otherwise, raise UnsupportedWheel. + """ + version_text = wheel_data["Wheel-Version"] + if version_text is None: + raise UnsupportedWheel("WHEEL is missing Wheel-Version") + + version = version_text.strip() + + try: + return tuple(map(int, version.split("."))) + except ValueError: + raise UnsupportedWheel(f"invalid Wheel-Version: {version!r}") + + +def check_compatibility(version, name): + # type: (Tuple[int, ...], str) -> None + """Raises errors or warns if called with an incompatible Wheel-Version. + + pip should refuse to install a Wheel-Version that's a major series + ahead of what it's compatible with (e.g 2.0 > 1.1); and warn when + installing a version only minor version ahead (e.g 1.2 > 1.1). + + version: a 2-tuple representing a Wheel-Version (Major, Minor) + name: name of wheel or package to raise exception about + + :raises UnsupportedWheel: when an incompatible Wheel-Version is given + """ + if version[0] > VERSION_COMPATIBLE[0]: + raise UnsupportedWheel( + "{}'s Wheel-Version ({}) is not compatible with this version " + "of pip".format(name, ".".join(map(str, version))) + ) + elif version > VERSION_COMPATIBLE: + logger.warning( + "Installing from a newer Wheel-Version (%s)", + ".".join(map(str, version)), + ) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/vcs/__init__.py b/venv/lib/python3.8/site-packages/pip/_internal/vcs/__init__.py new file mode 100644 index 00000000..30025d63 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/vcs/__init__.py @@ -0,0 +1,14 @@ +# Expose a limited set of classes and functions so callers outside of +# the vcs package don't need to import deeper than `pip._internal.vcs`. +# (The test directory may still need to import from a vcs sub-package.) +# Import all vcs modules to register each VCS in the VcsSupport object. +import pip._internal.vcs.bazaar +import pip._internal.vcs.git +import pip._internal.vcs.mercurial +import pip._internal.vcs.subversion # noqa: F401 +from pip._internal.vcs.versioncontrol import ( # noqa: F401 + RemoteNotFoundError, + is_url, + make_vcs_requirement_url, + vcs, +) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ffb7b37515da2274bdcd26b6645eab4534c11245 GIT binary patch literal 448 zcmZXQy-ve06os9pKWRlLgj5NJt{s}JAgYQ5#ttBsEXGYtG4)S+V;8|*@hrTOS0-M8 ziR)4!q+HAA*yoe4bbUV@4hYuxefMzLBIGk%{ugHC3U@t2DM=Ygl1F=Q9XvjGd+#mT zQQf?&dU;PJd7}DxKf+gcWDikdo*ex%r%(``{x z;2S4^E3WOH#28KnepHDnr9xW{n#mNybjjWr10N&tCr!K()}J#Vad1h6WVVkMb6)V=foW4A9E~lH-v%RR! i9|Oz&X3B7;jN(;TO4I7qCo^SAC;2>dt`n3b`dvS(3Wfgw literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..292e31171531581f9647fec56d29985a5987c12c GIT binary patch literal 2976 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 H`n>Re&l>r| literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6ad926a2c5b3882013ac56015c25b2d693f644a7 GIT binary patch literal 4577 zcmbtYNpmDe8LhplH>tJEST?pPLl|g0()eHqFyMv3VspA(#q`I89KQ;bWQ5FGcWgtejW@1{qAI~ zygh8^onc46yID8y4STxoWh?pWa8=j+te>w9*Yfq@dcHB-$Tx?Zroqj{HGciX96t57 z!2;HLXs{MvKemTkd~@+M-#Rfd*Zja3wEu%$8oL8aIq#&hQo(!EDlLmRLreRYF}qdf zd0a5HcBhb4oMkcfz9mE{Xuz*i#&~g$e_E+7OXW0+A4Jo*nhZ?U&Erpalr+=v-l6uW zDx;am299dqJ9GYolzl4(p=q z@Gk4I6+Nbh`YP+|`U>i6Y+ct^QQu&jy52|q8oRFRYrOlpF*4axZ0liwZ>)cAIL2@T zNI$Jw?{bmML>gzxnv83EXEIi9l9dG?xV1kSzcflSt}BzOn$`hYs3L0*H7O_c3Y8U9 zkZe;&V(Q~Ig6j0#!XrJ1xiKaMo4b!7lr8vySVOZGU%q~`%BMG{>2!NmOylGe&bALH zoM+qj$NSY!r#~4{-_0m3DlT9QHv#v}{A~9-(+6s8%&TZGmK;hsh+;98&(eo22*a+w zwLIz0W8;!DHPKKPPk=}7`h8U9_QE(Zj-1L|Ky`C#?o{^NJT^}p6DL|YmCGz zvbf@3THE)P*VG>YvE+~qeAR{to|?AuvT{7;LOE$MDus{vsv~B_nUxDViSjXl@EEwt zkvtnIhjBQT4ZFu^fK_S_lg-QN(&wrXh$)6@jd+zzqJkg3fLFN%VOW9bn3n$YzH+?l zcv~^8|JEDlU@vD~0=b3B6tgtQ|3sxS_5ttQ1avktPi(;LEL_0u*00Uog*SIJu=;$2a`w9;>yx(ln`s>R zrctj~y~PT1p)#M=p&1N4pZOmd9~(vZkx{KOkNHqvpVW60U|(zV0BQ`DYHaN)XEGLv zaw(2TLq>62qNl;w6(Jzokc;)GMe!Wk@K@8pEuZO=_!5<}eFNwX{+l8ZmdydbMx5Q0jD+ zW#_uksu|cChjUm4?l&PKUd4B>oKnw!6YV+#(h)BorSa}WhbfGrpN)s&|)~5@TNnDIM90*+pDY1aCnB{w1+z4YC#zjae2r+kOxtj9fjl8I2-QV7> zcn;E0@n8H2(~oZ76R%-wkF3Ui$PQpjq*(DQ2-QdSrKyy&^tY~9kLorEG@bV_MXo>? z-bK*r>sJA5hX0>%O_m3|0M|J>DR@?uj?zZw;Ut!m2BGkkm$xxY#0gUMa*YZ9G-fa~m56(!?m;0dyoC!!Y7hp(cx)u48NmcrsL!n=p18U+1I2!7`( zf{#y4$Su!)R5$Tx7bW_jsjF3g@6GHmegHF(a+Y&#UL*cH3j!R>p>6>%y-{dN2oucJ}C0ik+j zfdEAzGl5^K6_Czo6eGd22)Vt!lPuW|Gc#sv{wBqF*@g?l`SXOdGB zx``vj2UslL!&SrTwFe!foY@rQW~1@qGrFYjS&fPbzJ{^5jPK3Hf-?UFod-oJa?PGR zq0<+V8M$f`bZrEBWePCrRum-}d^L(1trOD~A42>Uk0cv1pjT)a3969|+qJ%I2P>4e zzIH4RoEJ&!xyzbAXL)+tgH07g5xIC2sdg0QC7Web??w@Mb<-o>!3V`l5UR09&G>wo zOc2GS>NYp6oL7^QiA@^&T@pVdK@3uL^l459yhY7-Nc@JxyCm+CpaZJj>CqFOWoO6N zDfc9yrg9q>ioTt)N}>iSwx2f1rX7LP%T*LJNgzTB5EWetszi> t;A8v;gNq9xMMF&Js^I615xhouMBk?Z*im5it-j{JV8DLc?*G~7{14{xpkx35 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2bbf8273d624e7a3bbc9b56e31695e22ac2dc3a4 GIT binary patch literal 7958 zcmds6&5s*LcJHokHk(Zj=ToB@c_jC0Wn1)`Gfo!S*n(DTMUHokIJ0Y6YwvR9ZM9fE z9BP_uPE~V8B1jwX$nfqaMmCoKK@xxyR=HNz?OeRrTB!)Vze8h$u+(B(q*Yc=c&@~se=X9-r+SYds?(yPd zgBPRK6RUPHS{q)9E}okBj`^NZDLn-h#%{$@_B&0PD);-Hw3)QSSmo|?J8@L8mG`|S z=TZAk^e|N=-jtm;xxEy)-29yHn(ayZr7YB z&vV>)Y@C=iH!AQvcXi!Ee}Q|tUX1de8G9x#^3r1$^Gc)k0x#?K0@f|^B|W!{b<2E3 z*B4P=akRw&}z&v3Xly4FKnU&*L}5oxXxZ*OQk!x= z>Bc+=IS(*O`v)Bn?KL01K!?$%w0c+0E@1mB7u1P_@sH}XSd-+U!p*+XV7N}U+hbLs z&tEZ>1$jFoNUUR~T5d#Xa6gn$fWaVyKD>>g-fhnx{ccBTSG4_fKk{4Q!)B}7^2a*s?zHrCJJz1rT&CI5>wY-;^>E^q~Ej-SX!3}-lpIUVMY08c6WA_Vnn8Y=`1d2f6XGH{HE_NDQ8T2; zlijM-F0PsQ3~VanVpIC^VGD+Owc4)^5)MVb^wc zdNu(tj{p1EMXeEigl=H$8G!_H6+0u)B5d8Dxdpmg*l{Vvx6q!V?lm-jf=ANL81@Pz z$TfS<&(SyknHd6!FnVs`kylYPi~;K#VvS^pF!B$n4dT$od(E)kx;`Oz z>5hd$x#J-y(8E-O8b;^UWkGux`a%G*oDNh%VOX|lLoe{K-o_MdGt*~?B4$sZ_C6YY z4Yd!zDZr!&7&XB$0I7TvBbM&735GTAEU1v3=7tUkh5`X>^PiZ9HXzldIe=6GX`34d zuJ|d9_3i9BTnRAjz>f94dyCAN-%e719~5Fdpdk^k5!KT~Jn~W6Xi42+uxU9j?*bnY~2s2cYyEU*gM9FN?2`_xQOr@X~ec>}5Mc)(XEg z7HesPb~dVN=0VmL#~Zv(So8MGPD=2Kh%)0Cmi*Od9XV!!ul&+^^$X8InsW3jgGB8tUBJR;Rumw2GjZFiZ2E3%&iTRi8kTl7BO0q$&W*oJZ zg?I&Zw*9Iy`Mi*N*JBudgb$q?e@ovY9CScy$#9L{&Xh3DI|kd=Nh4x;1C{X(z1;Qh zJZ#0i^*;)E{D@Q)77#&+&%-pl=07C|s{;x+A@8W~vHWhcMSe+EwlG2g>2~Tz;lNpr@Y6JfK_Qapxjvm&d%-oANY4H{n zJ{1$x(jcbnqyx^{0uF&7o2P7I0y$(I@e;K?9hb(iY;wOadK7Y3a+CRr5Nk$B-#NZXemaj3J z*<{my$C&$DX04-M0{D9Pv*9ax<`!dl8_>&4_8TWh{-b9)nD1Fj<`Q#E4?Fap`yce+ z8Gn+5T*ESXK3U+`d+}y`96pjhJdiFtJo5EN@u&28(tat0>ksH8;QvoHqaz*)odv#37c>`(qM) z|4Jv(i7EK>j_Kqb)?1yTXuQ#kni5zNcIlh{2o*pw89*eb8YZ{6&2umba7VIeQC{KB zdjR>&v*-Cw*`_hHP7UtDWYH{}Bc(*Gp~cCBSiO}rmpa;blCiU4Cf02ubq_r8Ff$TA zHfT>62ZG>YxCKFYw;RDpnPNA2@6@b!1-U8!NpkC9A^?(SB>MHZiP3Fu;@n>oI!e6e z-}K=i#n=GZpb!_@Zs`5s`J{+Ovdu^LJ`;l^VzL*-o%iltt=zlkH)j`QAHh*5lZ83( zw=t^&Ln^1YSvbTWkUm5Fx-z!wB zql3S7M|=PdYN5|;=@({IncMK?BI+l=6MsTQfI=0B_$EcDDyJ_;d`M$tCd7RdkkXXq zl}Fo;@*yfeYOB(CKx1eb+kwPj)H$zuOE7xzw0QqJ_SUhZu}E&V4Q*n-b1VQ1+c4Jv zEGqyNcNRqE_m~mou|{f9zKq?q7@G$Lu|ze9EkaZHZ4@OL0sH}o8w)>&xJ{)JMyDT( z#Q#>_z`-w(+Gixx-wy$5h}=W|2r(|Q5{Hm@xZ|%(q%HL8Ap%V9ACZyqkDEwmK#qVI zkfO<~|A+FuTVX^^skm7 zvb-cYvPAy(wEQ5Ml@ph_MZFD3R>cl)oypNS^N{5)h+}@z20P;ziH>9%uhRW6%^<0s zYQaIg4JxM?d}lwB(Il6FIL!|`@Jj08eSjIIxk%jh63U_wrj4;jcJGgp=170x026^} zQpOD6q7xQV-yv|T`r}0IWO~+3S*!Z~TxYifk0bh0Q6xMd4H_N6CwIz6{t`C44YVaU5g35vR|(AdsQ^(U z%7|eFurLe!7aR+MQ-B#|y~}f=GfF^DFRYWxGX9ZYPS#z+5P740YiIy=5N=Sq1_>HF zMH=A5Jhc&WQkE6D)M4(F<~b;l>o{>J7mGY9LN*GbNWgY`=WkJ(owy9g8xcHWc--I% zQmo)3$R!_ET;-)nF#7+C_zt?o`&7`81Zjl$1cl0D5@nOMRY1s28YbFQP*4tc6%Op^ zO0vdiM`FM@y|ZFXFtJM__KK=BZz>p$n$&_g)x%z#@$IR9JQ z?yXJT>ty-NO_FayN7py`A}T4olMKXhS8Q}wIRxbJHv0DDuGlVIbS<(^>@%{(W9*w-}DSfGM xLjy>SO#GR6>6+GQ_j)EIHy~%3qvj&sa}gVEI7{Z1>oJN3@n5a7Rv&w9VC`(S(ZhMKnn=55S-FVNb?60 z{~%V)K=b>3FCsEBtK8E_h%DvH7x9jG?|a|DV{PnGcb z^~Lt7`l!;gK)}L&jsh^QP<PvF3(mK~ZUq6rf)Vf)J z+BbKf@t@r@>lge({+wT1G<3OUEgJRbys9_-j!}Q!JL%1Mv+tPoi{6}f2zM@h!SLq2 z!|xd0VSo8ip?(?HN4%rBKKjV2zksU+?-;I*;p#>I#YaZ{CEPpioxr^lxc9PW-8O2A zgW4C}j@R--$8EKox3ArHE^PTK47wes+3iHC+p0NXzt`)k==(f`m0C3}yx!T4?dw4^ ziYqrGU%9I-KdD7s729tFVHB6&bbGy^vmRIea4*7iZYwU{>G#mnzO&u)Z)2fu6{A_Jil|te;CDw z-0)tb=SCY1{~?|n#?@7~d9UAVc!7#%yddng+->O)S2hCAZ}e3wu1amoZT0=Qq}q}4 z{aPWOP9FNYS`XtxO+2*`_E&qV+w{XQo@u-H{6Tf@gb0ue5GQ=B9PRxL3l-lm{G6<=^iI3J2DSmaEd0$9+X=4qAI%uK0?88r`~)FT-%}qVph#HXOIJ z?R0$K^F3+kDSs_^=v?rZ*O#58^&onFsisfEaez9TeluzizmoNQfxLpFs}}Z=lu2cR|j*?00Du>n53(=Uj^2cvBDO~q!d@u#l{8YZ^bkDr{Oqd zU_6g`8e=W!d|%F37v})$_@v-A&ajaK58=R*2!$a}&6o=~xj9Q+#=RzyJN@t+d47WE z9x6j)$BK+ib61yzAx?77+B3uJXemew&UDY*LC;~~o~7)lxLfk9p|xj$F&1tc_igD_ z9-8Q9skeDg?o==WbK#`z!M~D2yAgCeIV~~)C+a$PLl8|5=y%sy-F8CXRm}~sBB$Sz zZlsBDJB<9cv!=Rj=WeUp6z+0YA3{oUz?=hSR6beJmM;&I15n*=G(L2t+YxHbEhGq? zpyS*f4RC;vO}EqOM$W1a^z3&${rEv8UH;$;*Sh_d=djNjH<>mFHfLDjJRLe0A{781 z$;5lE0%|*HbKr-ymD*Hnb-@m}pSYCpNqe&!bmB5PYWi<=*Vla&mmj#QBb++~)(Qgw z&b2tSX2+EjSn*W0mw2|Tg7rq$GTU;)D7&0QwX@ucX4p};AzNzj9DsQsJp%I!z@U(f z%Ba}pap2sHSt;12Wm*5rE|#o0)3(&BXl=4f{zK+_72j|Mg>OJ5FsKdySFHHxEurO= zZghjN7D=)Ko?mGQbv7Dtwb5vIy?)C_eWua4-*;OCOrw$80a>FW#i-X%Z~-9+p<-s& zxEg&5s9wc4yn$l0Am}EC$n_!5h4Vw67yXh~_A2i{KGe(Jlvl;QiZ|`e;CITK_2%$f z6`4IBS8w@STB?SF?+OWgz5|vL_JNs{O`LG(gd2jMKwrpDJR0~1EMIeicDo-@E6@nN zGREi0D+sb{1j_{!LnvwxhBNEn3`1~=1~@-T2uYMUJ(TFdGaS61FloohvuujVt!6{k zbcMUu3d}XFzd(Iil_tFyb|#nK((ITAtas%f1gQKN=o-pxxRe!mNDHb42g=W6zp2P(qy9pi*nF@GsTHmp}!h4jU_R3)9mC zdG!PHHE0pCN(bX*sqdSLsC~dC31nD0pvJ>8gwIQ zOSp5}c;5u&YEW@G@gdJ&bNj7`rvo;!rEVUurgGBwlUx#|l~Jgg6>D&0wAJOL%h;+4 z=t-pIp@c7>0HO-$b|9{Rx>IV2s7hf6@nu305!Br*=$atzD;eVEgv%I}CTgXF74)f^ zfcA2@q~64H1@!S@YMrZY=yRijj)E?L2M;2)F+r$7v&1n{2m+PCZQ1y3+}8M0w1GJl zbKb0uLm}xn1_h!IAt6vm&nB#rFa>=?L3f~?uep3Fl)dR62XB-Q^gY# zMg14KIyoI+wrvfL1P7-FwQ+Yk7F!CC$AHhzjdWznTdAh6A2S;ZMs1TwF zUB&aFhVft%4y;=(O=JSUiBqk}2rTh05^w~CQ5mDOw7q7ntkkB}XVF1jW$`+SxZG%X z-6ljFWv=>zyj6j+*z;AitaY`DYX%PdBZm)ber`y7gOe8UA470a#~rtyR7v5IY( z)pBLFQkEV~G>(1blyN6~2Sq9z14A3`nNd`#+utzOOc9QidNC1=CBLkNBgAC|brF!L zPoaLun-?)!^$vSSAU3DHquv63XS`$Has1ADC%lvRo%0sGQ}{jf4WLhb9$4~3Tz$J4 z-q!YRTnNLBxB!Jdwl>z|!s-CFZ3t5e4O^W9iKD>XoIycNb<^5~G~2ZIOw)*pkBr^Y z9^m4EeW^c$F0f)t(63v;YFvcM7W(mYKlH;!$B&>$QAvw@n7?Ihm4$H;X1K5PIg!1+ zZ^ly%E%Z_iMGk`p`K$PbBniWwhiDk>>G7h0m~)N8swhZ6yXIcDR11$%{yIdS+NQ!3 zz~;k458$$D6T|;D=i!88`r{9mfd|4)9zKULG?K|o_n-=;uqwnh1+EIv9+$*y4-a~L zT%qj`xP^ZoJ@pz2V{1s;_pKoVz&u9MW%Q1K;kvA%R#+Juz|K7E+k6UH&N@2(Se2ZA z)A+V^-^Rk1aJy!zPw>Zzt>qWua`NyT5%I|4>MPtFBtY-Ae~fE6xe}D5!LvEwC2D%O z{0jB#R`?n!=_ov=je!S4BpvvhoLWw093pA^*ao?|jHf!dNQK^Y(eCw+~>kE0L;1&$?Aq;U0W zjt`l#s`nEa{i&Xld zIhk+D}YG0uwOIqAF+2mW^DT;#BBT2kia~RJ#9nKW&q}c>6q$Ipb7qnVypWAa$Y1| z0ZUR_xIekp>D*euwi1$rZ*`1y<~r35PiTG`I^@w>rJ&qaKgvQR$$i$yoK>I20~SBd z;_EDE)y1=k_R;j=CeQmws0wNy3BotVU&mK;BD#I&t(mf@g;Wi-dN@@nRu(H&#lB5^ z$39d>uHqYh8kpt1pOTg()PKbLwA9bhZCd*S@!Ysi zMEw!KRB&o#AF5_jUyM9KRmgh!2cQ+b2Z=vJW@`<;IZ2y{4uDN+QwK~5-tGN<@tn)Z zMF0nG+pgng6OGv6vmw~CxZa^6JD9mcj_T2c>Y^p*z^D1e&j;oeko+U;E3P75q@s|{ zE#ae(w2|D`Q_`zFNl%N~mDRwa8f2*G0-rh8f0EQi5;n?%3*%5+e(a!qK*c1Q{Smr} zGwY9M`_B0UQipTu>Ai^Ej{MCOLj;mTFX@QcCF4`Cb2^ri3;=t~pcR1u#6Dr8C|M?f zGEe@I4?mpE!Q!b2SWNca2ZD?RY6D{zY)~`4!L5S;0UKC*EvfaxRVjjXxCXjNIdp)UpXNZ-Jd@kE_3F`QmXL0#)W18G+`YEH5DL`-FVrb~SL-B!; zH7x8Q7?#qP#Ig#~0-aP;B4gKrGA|lx&i8G|N?Tl$YBkIg6LD{HDpGZFB^ut15*(7%a!6o7;MxFy@ z8Wa!Jr0s-3J7~G!FI_?DwQdWN5~y)S2l0dpp!nKooh0L(tGJ<2X-7h8U&}9SCwuY- z=JSxj7jZratVv`y$1VOOZVM|>-(u}u77T*b%9?t9nl~8ZR5cV--}Mt^KDEq-rK~u| zE~0sbstG*Hj_D<$8jVR~t_tmX9$z>pP3yx_VX$-n>P-wEv)?ckRH=mNFz^}~Ux#%h zockBDP3IU7J&Hh!gy`TW)Lux5G`VoE!{@I9-~TsmFn2T~PAv&8EIUqOSRrsQp|!!O zaTF1nn{6Zt&E4p1etK>slkNbU#N4;PdY}HB+(2&Bd+Y$adRJh za=~{(A&7{V8x8{KjEg&6_zFQPo{x|~+l_EL%%;%XHvucSF;FrO!PWzJo3c(&{szo? zxE_-*KdcAG>%xp+_%F%97=>2kID#m94j1I70UOf79mZ+e5XoI=9qBZ(;^YC!hqIZ9 z1n?#}{f^!kgE-9%x3iwx0#+?sbJt+y=uKnCh#^772R&!RE=a5$&10HGC++xjbCT+Y z9Ae@XhzkHlY;*33vyB&#HjqV;$cr1Yay<6S*@@5WlgE!8wD07LIQ?t*hN;7eMhINR z)RwHldl^&{0&$Uskw#ZC7jD*RlJjA?2t6DY=rt%9|sd^CwG{Iggh-8HNN!}>n8L_?EMOu@sl|q~1A}&gw*pA#_ zpKiF&0A2}|01;D{!F|G%@G;8pu%4UX&IgUyhl6BW0$H+Wx~|qFP~q0mkZtEn^bBVz zT;i@kJ_{6N?I;ErA~7IgAY?X-R_G>5O33?cu6)e5k4%Z6L%AxM4|$d}5!=vnX@q8& zKR~h%o|ghbl52FIkwWS?+78yE#yex>x={|FtdpxA84S6l2n!<@bAt}F5zS6~=XQT} zE6q`pI5hUz#T|v@u8U4c^#I)1#TK)z=eEkE3uatE4cNi}&)EuGS;D1D0G6ae2uLqo z>LJGcpsT>&bu>IT8+>z6og^Bry8U%zonQ~l!g8D&@I`cSsj|Q`@K><)3y>Q$O0ef_ zs<7W=LQ(Pv9OlHqIPE@!3W#MpRplkuD;uvF6e7|WQgpbG?&2aSO>dx<a)-Pba1a^yg*WTN{RLzyDIq-g(VQOPlsA{ok#y;Iyl zqUO+or}ko0@GPzUJ~F?Kd%H!ZaPA>ay(mt^-4b1cdlr~cVW;fbI~8Pu+3+L{hW2h5 zDRt&tvHl2=@VR?;Wppv9kP?kQ93KI(3M}s&c z8g5$Zk9Zm>H9O#BY!2N=X9>9|<1actX0 z7D1f@`hW;z&^x=l0)l((`By*$QMcJ`y>{jDoE@7L~W7~QSqP2G%zuk+rGdMUGv;uLp27^8T+G80x)yDUh zotvFztM5TC84XItFk6ZWIavQyowb!xocJ=bSspC}d5#_f2xAmc2nnxtwmUui}uF2iv@%`fEpjpT0jG_fk z8Mz$R>9a8hZ%*(HVOu%XW=UtWWZM5yf~4d<-Bk$3&V?K+(QL#5yc52O&~d_XCK<_W zre|R8@RtbzuF)tBPEUx=v5sS#qThfLS7hcLRJ0+z2{ZYt1zD)?0>CB7X~m`v(Dus7>$e9i%3OmL16(J2u-Jv{Tv`yv`SY}e-*nz;-=q(JXZ_2Q1qUP5~q%$1~k9H8^lW} zH_}hsS)%{_5}SURO^1@E>^S}!n+Ujg8f+{4s!p2BR`M|skCD6q}G}|ca>6i~re@X9s zQ{X%aq}fioE<*mdGE^?_L*=oK`_#V-m3hvoPe^{@W4%XJ&>Xy-ZQ`129Gc(*I&a_s z1Vk98QVw*OP8397|G_$*DA4FM}DHzozKLcmO}FW86s7%{e0eTeiI$KCEV(b1E}6i|2K!XJUKW zl_{2`Xn2x|2q6MVkWI7};P9L^nNE^>DJDj<#J}N>U3*zKRwm>EVw@c zrey!56vfQIeJoust1`2@<=-PaQXjC&_^$68@(g z9GDyX5r;k^m=S&DJ;PL-^@kG?FA_Jjo;PjOG?6+ogeIH=u;U1fa4;G8-Wq||khT7g z3}RKpWXCaOfA2BqjTs{U9P^}%SNk>i9uBkx$fWQhTHt`Ep}<@Ox=@j?P(=I|2_-N< z&`14C)bOGL42U9X6=)gO<`iC9_?4)-J1yCfGrO~UMl^@i6U?+{Bd5XGJ%m{coAY~C z_!rRcuvbXhjm?>%o%A^}dUB^Ky(FECtH9M!m^;Si0=_fJ*y3IhYb@=QIwz%FUZ2oC zIHOnDDarjQ8E0`v(J`;OdmP%*^dclNerFbqM;7!YB-P!szGbRsq7%C(y*Z}(;NBs* zSC?7l^;4NR6D@LYvad;KmA%6<=Fdf^*k`9AV~->&uE-jm*gZ|ti!%W-`)4>RGyGGG zJnZH7i@Xr-7-OCsK}y`*$6V}p7m?NmF-__OG2Re9_5W7m1<# zP#n-yG$?5@ni|Kn{qDdk&`{jAxJ>u?KSrVjkJnZZSWn^@A1!VqF_Ot3q4&*2ok+ZB z!kL@BcB3-@SWjyGKkD9)qev{1QAF=o? z6ocpQfbZjlst(Q3+*wc@;E_4j23Q>WGCfP^<#j)cNYjoY2UdR`MQpm?{}3OUc`$w5 zZ~3B_J{{`E9Q_>jN3h}@ButAb(DDztfD>8_XCT*Y0NEM!JWrk z!4Cmn0Rv}YuiHT`Y=zQ=dzw^>O4<%Bz}MC@;Qvj zp$CGxFxm_9Z1m8xVosTLpXQ=hJtl(+SbSy#JcEmoGfXW+kUpB9!cv9IU>ZC4H_d{= z;CmS_y4Lc6xxlG3ft`M8z9=i^&{&KYaL!?KHp2zlO=KH9`mlx{;AT3@NaOo|z=zb| z!X8&@#Yv17RQlIwOTt1r7eQPv6Dn~@zlrMd>`NG6RPbULvk=E+zwR~WJHUv?S|LA| z!6MO?Ncw~pc%4V3ct135xdHS0ZtZ`gEDhd`2y+yC+i>B%a&ZVuY{?$VC*g(JwP3xE zsQifYYrRPQDXe^g286)d1Om5ZObwo#0D#U*;8RFl9~%${=3%6WrFAb@o9QbPk~1)# zA&>&;QSHQjXvICX$U9KCfq*5sUb29-<|$4ykfQy+4rjIt_l2r8iU*l^fCD^RPt-T zSETp(M~%)i=vzYHce1`zzu33*ULomYeZ}y~;ywN=*$Ln3Gi!;CSiXv;qv%;<8sk8A zLys93&I5%P=b@{+2rPg!CtgB_Dgul|nvz!3F=;kaGPAr*tR=j}Oxck_3rNi+K+3sW zaES2ryliN#f>$^@kR}X6H=zv03;Nx)?!DYiyaAs)qXF*RjAwNpzq1vnZYQ3F^AzsR z^s*f4_xj^GyjR*-!y|pK(QJG1bQpOEfi${^=?oTb!PWN%{^fJXD1)TGG+ON?xNq?0?(zz9Ntkh`W$p>q z{sW5m@C^WN?4?yjoR1HEDci94xAAIE#QOye;*IWuhK4ilJn+=N<%BVdf5+nAv-poJ znC`3oGmE9HIENa z!Kn$Bl$&fHKO!p^8fNxQgq$cz{zk?jsdW!(d}MDHcS}-gg9b65#9jDChQkx4t~)YC zCE_fIpA&$i<`K6VJb8_$PgP7Svh=S(Tcc*Yyu6J3?M#=F*E;lBO(r6q3w31!EJh=HXkj-0i$6 zl#_Bx%p+Xlt9rdlEq}|$Kl{kkND3wX{|}I@Hi0BaJMwJzrpwweD2(+ zouAC`cF?Br^q;Wivmj4VZ=i^$<)vtyAfzP0P14%F#STBi4l^(=qoA4eSmFI&V8N6U zwaenWEEu!UVT$juM#r)?KEzV_bzX`=@f)mB%~QY2LW~sZ0P4T6AXO*=BS$Vvyd*DD z-#{@391h9isD0zlq9%_ZnOUtQ-!gs|@vT~g`QK+=L^5c;Tr!L@6SNr z!W(_aXF=MA#1`TbUMgWv9I~NEs)|a#Vg{1pp(_T&6>~roy;7>mf~rk?ih?Ek2P@0X zR3l>zyOHgY@%VNP6mMgL0&{;wz_q=2EJnEt&m iI|H-s{M3RuW0eY3YoSn?t{$$Op10?2&i&C+;r{>% List[str] + return ['-r', rev] + + def fetch_new(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + rev_display = rev_options.to_display() + logger.info( + 'Checking out %s%s to %s', + url, + rev_display, + display_path(dest), + ) + cmd_args = ( + make_command('branch', '-q', rev_options.to_args(), url, dest) + ) + self.run_command(cmd_args) + + def switch(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + self.run_command(make_command('switch', url), cwd=dest) + + def update(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + cmd_args = make_command('pull', '-q', rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_url_rev_and_auth(cls, url): + # type: (str) -> Tuple[str, Optional[str], AuthInfo] + # hotfix the URL scheme after removing bzr+ from bzr+ssh:// readd it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith('ssh://'): + url = 'bzr+' + url + return url, rev, user_pass + + @classmethod + def get_remote_url(cls, location): + # type: (str) -> str + urls = cls.run_command( + ['info'], show_stdout=False, stdout_only=True, cwd=location + ) + for line in urls.splitlines(): + line = line.strip() + for x in ('checkout of branch: ', + 'parent branch: '): + if line.startswith(x): + repo = line.split(x)[1] + if cls._is_local_repository(repo): + return path_to_url(repo) + return repo + raise RemoteNotFoundError + + @classmethod + def get_revision(cls, location): + # type: (str) -> str + revision = cls.run_command( + ['revno'], show_stdout=False, stdout_only=True, cwd=location, + ) + return revision.splitlines()[-1] + + @classmethod + def is_commit_id_equal(cls, dest, name): + # type: (str, Optional[str]) -> bool + """Always assume the versions don't match""" + return False + + +vcs.register(Bazaar) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/vcs/git.py b/venv/lib/python3.8/site-packages/pip/_internal/vcs/git.py new file mode 100644 index 00000000..b7c1b9fe --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/vcs/git.py @@ -0,0 +1,450 @@ +import logging +import os.path +import re +import urllib.parse +import urllib.request +from typing import List, Optional, Tuple + +from pip._vendor.packaging.version import _BaseVersion +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path, hide_url +from pip._internal.utils.subprocess import make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + find_path_to_setup_from_repo_root, + vcs, +) + +urlsplit = urllib.parse.urlsplit +urlunsplit = urllib.parse.urlunsplit + + +logger = logging.getLogger(__name__) + + +HASH_REGEX = re.compile('^[a-fA-F0-9]{40}$') + + +def looks_like_hash(sha): + # type: (str) -> bool + return bool(HASH_REGEX.match(sha)) + + +class Git(VersionControl): + name = 'git' + dirname = '.git' + repo_name = 'clone' + schemes = ( + 'git+http', 'git+https', 'git+ssh', 'git+git', 'git+file', + ) + # Prevent the user's environment variables from interfering with pip: + # https://github.com/pypa/pip/issues/1130 + unset_environ = ('GIT_DIR', 'GIT_WORK_TREE') + default_arg_rev = 'HEAD' + + @staticmethod + def get_base_rev_args(rev): + # type: (str) -> List[str] + return [rev] + + def is_immutable_rev_checkout(self, url, dest): + # type: (str, str) -> bool + _, rev_options = self.get_url_rev_options(hide_url(url)) + if not rev_options.rev: + return False + if not self.is_commit_id_equal(dest, rev_options.rev): + # the current commit is different from rev, + # which means rev was something else than a commit hash + return False + # return False in the rare case rev is both a commit hash + # and a tag or a branch; we don't want to cache in that case + # because that branch/tag could point to something else in the future + is_tag_or_branch = bool( + self.get_revision_sha(dest, rev_options.rev)[0] + ) + return not is_tag_or_branch + + def get_git_version(self): + # type: () -> _BaseVersion + VERSION_PFX = 'git version ' + version = self.run_command( + ['version'], show_stdout=False, stdout_only=True + ) + if version.startswith(VERSION_PFX): + version = version[len(VERSION_PFX):].split()[0] + else: + version = '' + # get first 3 positions of the git version because + # on windows it is x.y.z.windows.t, and this parses as + # LegacyVersion which always smaller than a Version. + version = '.'.join(version.split('.')[:3]) + return parse_version(version) + + @classmethod + def get_current_branch(cls, location): + # type: (str) -> Optional[str] + """ + Return the current branch, or None if HEAD isn't at a branch + (e.g. detached HEAD). + """ + # git-symbolic-ref exits with empty stdout if "HEAD" is a detached + # HEAD rather than a symbolic ref. In addition, the -q causes the + # command to exit with status code 1 instead of 128 in this case + # and to suppress the message to stderr. + args = ['symbolic-ref', '-q', 'HEAD'] + output = cls.run_command( + args, + extra_ok_returncodes=(1, ), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + ref = output.strip() + + if ref.startswith('refs/heads/'): + return ref[len('refs/heads/'):] + + return None + + @classmethod + def get_revision_sha(cls, dest, rev): + # type: (str, str) -> Tuple[Optional[str], bool] + """ + Return (sha_or_none, is_branch), where sha_or_none is a commit hash + if the revision names a remote branch or tag, otherwise None. + + Args: + dest: the repository directory. + rev: the revision name. + """ + # Pass rev to pre-filter the list. + output = cls.run_command( + ['show-ref', rev], + cwd=dest, + show_stdout=False, + stdout_only=True, + on_returncode='ignore', + ) + refs = {} + # NOTE: We do not use splitlines here since that would split on other + # unicode separators, which can be maliciously used to install a + # different revision. + for line in output.strip().split("\n"): + line = line.rstrip("\r") + if not line: + continue + try: + ref_sha, ref_name = line.split(" ", maxsplit=2) + except ValueError: + # Include the offending line to simplify troubleshooting if + # this error ever occurs. + raise ValueError(f'unexpected show-ref line: {line!r}') + + refs[ref_name] = ref_sha + + branch_ref = f'refs/remotes/origin/{rev}' + tag_ref = f'refs/tags/{rev}' + + sha = refs.get(branch_ref) + if sha is not None: + return (sha, True) + + sha = refs.get(tag_ref) + + return (sha, False) + + @classmethod + def _should_fetch(cls, dest, rev): + # type: (str, str) -> bool + """ + Return true if rev is a ref or is a commit that we don't have locally. + + Branches and tags are not considered in this method because they are + assumed to be always available locally (which is a normal outcome of + ``git clone`` and ``git fetch --tags``). + """ + if rev.startswith("refs/"): + # Always fetch remote refs. + return True + + if not looks_like_hash(rev): + # Git fetch would fail with abbreviated commits. + return False + + if cls.has_commit(dest, rev): + # Don't fetch if we have the commit locally. + return False + + return True + + @classmethod + def resolve_revision(cls, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> RevOptions + """ + Resolve a revision to a new RevOptions object with the SHA1 of the + branch, tag, or ref if found. + + Args: + rev_options: a RevOptions object. + """ + rev = rev_options.arg_rev + # The arg_rev property's implementation for Git ensures that the + # rev return value is always non-None. + assert rev is not None + + sha, is_branch = cls.get_revision_sha(dest, rev) + + if sha is not None: + rev_options = rev_options.make_new(sha) + rev_options.branch_name = rev if is_branch else None + + return rev_options + + # Do not show a warning for the common case of something that has + # the form of a Git commit hash. + if not looks_like_hash(rev): + logger.warning( + "Did not find branch or tag '%s', assuming revision or ref.", + rev, + ) + + if not cls._should_fetch(dest, rev): + return rev_options + + # fetch the requested revision + cls.run_command( + make_command('fetch', '-q', url, rev_options.to_args()), + cwd=dest, + ) + # Change the revision to the SHA of the ref we fetched + sha = cls.get_revision(dest, rev='FETCH_HEAD') + rev_options = rev_options.make_new(sha) + + return rev_options + + @classmethod + def is_commit_id_equal(cls, dest, name): + # type: (str, Optional[str]) -> bool + """ + Return whether the current commit hash equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + if not name: + # Then avoid an unnecessary subprocess call. + return False + + return cls.get_revision(dest) == name + + def fetch_new(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + rev_display = rev_options.to_display() + logger.info('Cloning %s%s to %s', url, rev_display, display_path(dest)) + self.run_command(make_command('clone', '-q', url, dest)) + + if rev_options.rev: + # Then a specific revision was requested. + rev_options = self.resolve_revision(dest, url, rev_options) + branch_name = getattr(rev_options, 'branch_name', None) + if branch_name is None: + # Only do a checkout if the current commit id doesn't match + # the requested revision. + if not self.is_commit_id_equal(dest, rev_options.rev): + cmd_args = make_command( + 'checkout', '-q', rev_options.to_args(), + ) + self.run_command(cmd_args, cwd=dest) + elif self.get_current_branch(dest) != branch_name: + # Then a specific branch was requested, and that branch + # is not yet checked out. + track_branch = f'origin/{branch_name}' + cmd_args = [ + 'checkout', '-b', branch_name, '--track', track_branch, + ] + self.run_command(cmd_args, cwd=dest) + + #: repo may contain submodules + self.update_submodules(dest) + + def switch(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + self.run_command( + make_command('config', 'remote.origin.url', url), + cwd=dest, + ) + cmd_args = make_command('checkout', '-q', rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + self.update_submodules(dest) + + def update(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + # First fetch changes from the default remote + if self.get_git_version() >= parse_version('1.9.0'): + # fetch tags in addition to everything else + self.run_command(['fetch', '-q', '--tags'], cwd=dest) + else: + self.run_command(['fetch', '-q'], cwd=dest) + # Then reset to wanted revision (maybe even origin/master) + rev_options = self.resolve_revision(dest, url, rev_options) + cmd_args = make_command('reset', '--hard', '-q', rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + #: update submodules + self.update_submodules(dest) + + @classmethod + def get_remote_url(cls, location): + # type: (str) -> str + """ + Return URL of the first remote encountered. + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + # We need to pass 1 for extra_ok_returncodes since the command + # exits with return code 1 if there are no matching lines. + stdout = cls.run_command( + ['config', '--get-regexp', r'remote\..*\.url'], + extra_ok_returncodes=(1, ), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + remotes = stdout.splitlines() + try: + found_remote = remotes[0] + except IndexError: + raise RemoteNotFoundError + + for remote in remotes: + if remote.startswith('remote.origin.url '): + found_remote = remote + break + url = found_remote.split(' ')[1] + return url.strip() + + @classmethod + def has_commit(cls, location, rev): + # type: (str, str) -> bool + """ + Check if rev is a commit that is available in the local repository. + """ + try: + cls.run_command( + ['rev-parse', '-q', '--verify', "sha^" + rev], + cwd=location, + log_failed_cmd=False, + ) + except InstallationError: + return False + else: + return True + + @classmethod + def get_revision(cls, location, rev=None): + # type: (str, Optional[str]) -> str + if rev is None: + rev = 'HEAD' + current_rev = cls.run_command( + ['rev-parse', rev], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return current_rev.strip() + + @classmethod + def get_subdirectory(cls, location): + # type: (str) -> Optional[str] + """ + Return the path to setup.py, relative to the repo root. + Return None if setup.py is in the repo root. + """ + # find the repo root + git_dir = cls.run_command( + ['rev-parse', '--git-dir'], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if not os.path.isabs(git_dir): + git_dir = os.path.join(location, git_dir) + repo_root = os.path.abspath(os.path.join(git_dir, '..')) + return find_path_to_setup_from_repo_root(location, repo_root) + + @classmethod + def get_url_rev_and_auth(cls, url): + # type: (str) -> Tuple[str, Optional[str], AuthInfo] + """ + Prefixes stub URLs like 'user@hostname:user/repo.git' with 'ssh://'. + That's required because although they use SSH they sometimes don't + work with a ssh:// scheme (e.g. GitHub). But we need a scheme for + parsing. Hence we remove it again afterwards and return it as a stub. + """ + # Works around an apparent Git bug + # (see https://article.gmane.org/gmane.comp.version-control.git/146500) + scheme, netloc, path, query, fragment = urlsplit(url) + if scheme.endswith('file'): + initial_slashes = path[:-len(path.lstrip('/'))] + newpath = ( + initial_slashes + + urllib.request.url2pathname(path) + .replace('\\', '/').lstrip('/') + ) + after_plus = scheme.find('+') + 1 + url = scheme[:after_plus] + urlunsplit( + (scheme[after_plus:], netloc, newpath, query, fragment), + ) + + if '://' not in url: + assert 'file:' not in url + url = url.replace('git+', 'git+ssh://') + url, rev, user_pass = super().get_url_rev_and_auth(url) + url = url.replace('ssh://', '') + else: + url, rev, user_pass = super().get_url_rev_and_auth(url) + + return url, rev, user_pass + + @classmethod + def update_submodules(cls, location): + # type: (str) -> None + if not os.path.exists(os.path.join(location, '.gitmodules')): + return + cls.run_command( + ['submodule', 'update', '--init', '--recursive', '-q'], + cwd=location, + ) + + @classmethod + def get_repository_root(cls, location): + # type: (str) -> Optional[str] + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ['rev-parse', '--show-toplevel'], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode='raise', + log_failed_cmd=False, + ) + except BadCommand: + logger.debug("could not determine if %s is under git control " + "because git is not available", location) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip('\r\n')) + + +vcs.register(Git) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/vcs/mercurial.py b/venv/lib/python3.8/site-packages/pip/_internal/vcs/mercurial.py new file mode 100644 index 00000000..b4f887d3 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/vcs/mercurial.py @@ -0,0 +1,158 @@ +import configparser +import logging +import os +from typing import List, Optional + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path +from pip._internal.utils.subprocess import make_command +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs.versioncontrol import ( + RevOptions, + VersionControl, + find_path_to_setup_from_repo_root, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Mercurial(VersionControl): + name = 'hg' + dirname = '.hg' + repo_name = 'clone' + schemes = ( + 'hg+file', 'hg+http', 'hg+https', 'hg+ssh', 'hg+static-http', + ) + + @staticmethod + def get_base_rev_args(rev): + # type: (str) -> List[str] + return [rev] + + def fetch_new(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + rev_display = rev_options.to_display() + logger.info( + 'Cloning hg %s%s to %s', + url, + rev_display, + display_path(dest), + ) + self.run_command(make_command('clone', '--noupdate', '-q', url, dest)) + self.run_command( + make_command('update', '-q', rev_options.to_args()), + cwd=dest, + ) + + def switch(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + repo_config = os.path.join(dest, self.dirname, 'hgrc') + config = configparser.RawConfigParser() + try: + config.read(repo_config) + config.set('paths', 'default', url.secret) + with open(repo_config, 'w') as config_file: + config.write(config_file) + except (OSError, configparser.NoSectionError) as exc: + logger.warning( + 'Could not switch Mercurial repository to %s: %s', url, exc, + ) + else: + cmd_args = make_command('update', '-q', rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + def update(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + self.run_command(['pull', '-q'], cwd=dest) + cmd_args = make_command('update', '-q', rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_remote_url(cls, location): + # type: (str) -> str + url = cls.run_command( + ['showconfig', 'paths.default'], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if cls._is_local_repository(url): + url = path_to_url(url) + return url.strip() + + @classmethod + def get_revision(cls, location): + # type: (str) -> str + """ + Return the repository-local changeset revision number, as an integer. + """ + current_revision = cls.run_command( + ['parents', '--template={rev}'], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_revision + + @classmethod + def get_requirement_revision(cls, location): + # type: (str) -> str + """ + Return the changeset identification hash, as a 40-character + hexadecimal string + """ + current_rev_hash = cls.run_command( + ['parents', '--template={node}'], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_rev_hash + + @classmethod + def is_commit_id_equal(cls, dest, name): + # type: (str, Optional[str]) -> bool + """Always assume the versions don't match""" + return False + + @classmethod + def get_subdirectory(cls, location): + # type: (str) -> Optional[str] + """ + Return the path to setup.py, relative to the repo root. + Return None if setup.py is in the repo root. + """ + # find the repo root + repo_root = cls.run_command( + ['root'], show_stdout=False, stdout_only=True, cwd=location + ).strip() + if not os.path.isabs(repo_root): + repo_root = os.path.abspath(os.path.join(location, repo_root)) + return find_path_to_setup_from_repo_root(location, repo_root) + + @classmethod + def get_repository_root(cls, location): + # type: (str) -> Optional[str] + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ['root'], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode='raise', + log_failed_cmd=False, + ) + except BadCommand: + logger.debug("could not determine if %s is under hg control " + "because hg is not available", location) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip('\r\n')) + + +vcs.register(Mercurial) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/vcs/subversion.py b/venv/lib/python3.8/site-packages/pip/_internal/vcs/subversion.py new file mode 100644 index 00000000..4d1237ca --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/vcs/subversion.py @@ -0,0 +1,329 @@ +import logging +import os +import re +from typing import List, Optional, Tuple + +from pip._internal.utils.misc import ( + HiddenText, + display_path, + is_console_interactive, + split_auth_from_netloc, +) +from pip._internal.utils.subprocess import CommandArgs, make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + +_svn_xml_url_re = re.compile('url="([^"]+)"') +_svn_rev_re = re.compile(r'committed-rev="(\d+)"') +_svn_info_xml_rev_re = re.compile(r'\s*revision="(\d+)"') +_svn_info_xml_url_re = re.compile(r'(.*)') + + +class Subversion(VersionControl): + name = 'svn' + dirname = '.svn' + repo_name = 'checkout' + schemes = ( + 'svn+ssh', 'svn+http', 'svn+https', 'svn+svn', 'svn+file' + ) + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url): + # type: (str) -> bool + return True + + @staticmethod + def get_base_rev_args(rev): + # type: (str) -> List[str] + return ['-r', rev] + + @classmethod + def get_revision(cls, location): + # type: (str) -> str + """ + Return the maximum revision for all files under a given location + """ + # Note: taken from setuptools.command.egg_info + revision = 0 + + for base, dirs, _ in os.walk(location): + if cls.dirname not in dirs: + dirs[:] = [] + continue # no sense walking uncontrolled subdirs + dirs.remove(cls.dirname) + entries_fn = os.path.join(base, cls.dirname, 'entries') + if not os.path.exists(entries_fn): + # FIXME: should we warn? + continue + + dirurl, localrev = cls._get_svn_url_rev(base) + + if base == location: + assert dirurl is not None + base = dirurl + '/' # save the root url + elif not dirurl or not dirurl.startswith(base): + dirs[:] = [] + continue # not part of the same svn tree, skip it + revision = max(revision, localrev) + return str(revision) + + @classmethod + def get_netloc_and_auth(cls, netloc, scheme): + # type: (str, str) -> Tuple[str, Tuple[Optional[str], Optional[str]]] + """ + This override allows the auth information to be passed to svn via the + --username and --password options instead of via the URL. + """ + if scheme == 'ssh': + # The --username and --password options can't be used for + # svn+ssh URLs, so keep the auth information in the URL. + return super().get_netloc_and_auth(netloc, scheme) + + return split_auth_from_netloc(netloc) + + @classmethod + def get_url_rev_and_auth(cls, url): + # type: (str) -> Tuple[str, Optional[str], AuthInfo] + # hotfix the URL scheme after removing svn+ from svn+ssh:// readd it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith('ssh://'): + url = 'svn+' + url + return url, rev, user_pass + + @staticmethod + def make_rev_args(username, password): + # type: (Optional[str], Optional[HiddenText]) -> CommandArgs + extra_args = [] # type: CommandArgs + if username: + extra_args += ['--username', username] + if password: + extra_args += ['--password', password] + + return extra_args + + @classmethod + def get_remote_url(cls, location): + # type: (str) -> str + # In cases where the source is in a subdirectory, not alongside + # setup.py we have to look up in the location until we find a real + # setup.py + orig_location = location + while not os.path.exists(os.path.join(location, 'setup.py')): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding setup.py + logger.warning( + "Could not find setup.py for directory %s (tried all " + "parent directories)", + orig_location, + ) + raise RemoteNotFoundError + + url, _rev = cls._get_svn_url_rev(location) + if url is None: + raise RemoteNotFoundError + + return url + + @classmethod + def _get_svn_url_rev(cls, location): + # type: (str) -> Tuple[Optional[str], int] + from pip._internal.exceptions import InstallationError + + entries_path = os.path.join(location, cls.dirname, 'entries') + if os.path.exists(entries_path): + with open(entries_path) as f: + data = f.read() + else: # subversion >= 1.7 does not have the 'entries' file + data = '' + + url = None + if (data.startswith('8') or + data.startswith('9') or + data.startswith('10')): + entries = list(map(str.splitlines, data.split('\n\x0c\n'))) + del entries[0][0] # get rid of the '8' + url = entries[0][3] + revs = [int(d[9]) for d in entries if len(d) > 9 and d[9]] + [0] + elif data.startswith('= 1.7 + # Note that using get_remote_call_options is not necessary here + # because `svn info` is being run against a local directory. + # We don't need to worry about making sure interactive mode + # is being used to prompt for passwords, because passwords + # are only potentially needed for remote server requests. + xml = cls.run_command( + ['info', '--xml', location], + show_stdout=False, + stdout_only=True, + ) + match = _svn_info_xml_url_re.search(xml) + assert match is not None + url = match.group(1) + revs = [ + int(m.group(1)) for m in _svn_info_xml_rev_re.finditer(xml) + ] + except InstallationError: + url, revs = None, [] + + if revs: + rev = max(revs) + else: + rev = 0 + + return url, rev + + @classmethod + def is_commit_id_equal(cls, dest, name): + # type: (str, Optional[str]) -> bool + """Always assume the versions don't match""" + return False + + def __init__(self, use_interactive=None): + # type: (bool) -> None + if use_interactive is None: + use_interactive = is_console_interactive() + self.use_interactive = use_interactive + + # This member is used to cache the fetched version of the current + # ``svn`` client. + # Special value definitions: + # None: Not evaluated yet. + # Empty tuple: Could not parse version. + self._vcs_version = None # type: Optional[Tuple[int, ...]] + + super().__init__() + + def call_vcs_version(self): + # type: () -> Tuple[int, ...] + """Query the version of the currently installed Subversion client. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + # Example versions: + # svn, version 1.10.3 (r1842928) + # compiled Feb 25 2019, 14:20:39 on x86_64-apple-darwin17.0.0 + # svn, version 1.7.14 (r1542130) + # compiled Mar 28 2018, 08:49:13 on x86_64-pc-linux-gnu + # svn, version 1.12.0-SlikSvn (SlikSvn/1.12.0) + # compiled May 28 2019, 13:44:56 on x86_64-microsoft-windows6.2 + version_prefix = 'svn, version ' + version = self.run_command( + ['--version'], show_stdout=False, stdout_only=True + ) + if not version.startswith(version_prefix): + return () + + version = version[len(version_prefix):].split()[0] + version_list = version.partition('-')[0].split('.') + try: + parsed_version = tuple(map(int, version_list)) + except ValueError: + return () + + return parsed_version + + def get_vcs_version(self): + # type: () -> Tuple[int, ...] + """Return the version of the currently installed Subversion client. + + If the version of the Subversion client has already been queried, + a cached value will be used. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + if self._vcs_version is not None: + # Use cached version, if available. + # If parsing the version failed previously (empty tuple), + # do not attempt to parse it again. + return self._vcs_version + + vcs_version = self.call_vcs_version() + self._vcs_version = vcs_version + return vcs_version + + def get_remote_call_options(self): + # type: () -> CommandArgs + """Return options to be used on calls to Subversion that contact the server. + + These options are applicable for the following ``svn`` subcommands used + in this class. + + - checkout + - switch + - update + + :return: A list of command line arguments to pass to ``svn``. + """ + if not self.use_interactive: + # --non-interactive switch is available since Subversion 0.14.4. + # Subversion < 1.8 runs in interactive mode by default. + return ['--non-interactive'] + + svn_version = self.get_vcs_version() + # By default, Subversion >= 1.8 runs in non-interactive mode if + # stdin is not a TTY. Since that is how pip invokes SVN, in + # call_subprocess(), pip must pass --force-interactive to ensure + # the user can be prompted for a password, if required. + # SVN added the --force-interactive option in SVN 1.8. Since + # e.g. RHEL/CentOS 7, which is supported until 2024, ships with + # SVN 1.7, pip should continue to support SVN 1.7. Therefore, pip + # can't safely add the option if the SVN version is < 1.8 (or unknown). + if svn_version >= (1, 8): + return ['--force-interactive'] + + return [] + + def fetch_new(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + rev_display = rev_options.to_display() + logger.info( + 'Checking out %s%s to %s', + url, + rev_display, + display_path(dest), + ) + cmd_args = make_command( + 'checkout', '-q', self.get_remote_call_options(), + rev_options.to_args(), url, dest, + ) + self.run_command(cmd_args) + + def switch(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + cmd_args = make_command( + 'switch', self.get_remote_call_options(), rev_options.to_args(), + url, dest, + ) + self.run_command(cmd_args) + + def update(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + cmd_args = make_command( + 'update', self.get_remote_call_options(), rev_options.to_args(), + dest, + ) + self.run_command(cmd_args) + + +vcs.register(Subversion) diff --git a/venv/lib/python3.8/site-packages/pip/_internal/vcs/versioncontrol.py b/venv/lib/python3.8/site-packages/pip/_internal/vcs/versioncontrol.py new file mode 100644 index 00000000..97977b57 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/vcs/versioncontrol.py @@ -0,0 +1,715 @@ +"""Handles all VCS (version control) support""" + +import logging +import os +import shutil +import sys +import urllib.parse +from typing import ( + Any, + Dict, + Iterable, + Iterator, + List, + Mapping, + Optional, + Tuple, + Type, + Union, +) + +from pip._internal.cli.spinners import SpinnerInterface +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import ( + HiddenText, + ask_path_exists, + backup_dir, + display_path, + hide_url, + hide_value, + rmtree, +) +from pip._internal.utils.subprocess import CommandArgs, call_subprocess, make_command +from pip._internal.utils.urls import get_url_scheme + +__all__ = ['vcs'] + + +logger = logging.getLogger(__name__) + +AuthInfo = Tuple[Optional[str], Optional[str]] + + +def is_url(name): + # type: (str) -> bool + """ + Return true if the name looks like a URL. + """ + scheme = get_url_scheme(name) + if scheme is None: + return False + return scheme in ['http', 'https', 'file', 'ftp'] + vcs.all_schemes + + +def make_vcs_requirement_url(repo_url, rev, project_name, subdir=None): + # type: (str, str, str, Optional[str]) -> str + """ + Return the URL for a VCS requirement. + + Args: + repo_url: the remote VCS url, with any needed VCS prefix (e.g. "git+"). + project_name: the (unescaped) project name. + """ + egg_project_name = project_name.replace("-", "_") + req = f'{repo_url}@{rev}#egg={egg_project_name}' + if subdir: + req += f'&subdirectory={subdir}' + + return req + + +def find_path_to_setup_from_repo_root(location, repo_root): + # type: (str, str) -> Optional[str] + """ + Find the path to `setup.py` by searching up the filesystem from `location`. + Return the path to `setup.py` relative to `repo_root`. + Return None if `setup.py` is in `repo_root` or cannot be found. + """ + # find setup.py + orig_location = location + while not os.path.exists(os.path.join(location, 'setup.py')): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding setup.py + logger.warning( + "Could not find setup.py for directory %s (tried all " + "parent directories)", + orig_location, + ) + return None + + if os.path.samefile(repo_root, location): + return None + + return os.path.relpath(location, repo_root) + + +class RemoteNotFoundError(Exception): + pass + + +class RevOptions: + + """ + Encapsulates a VCS-specific revision to install, along with any VCS + install options. + + Instances of this class should be treated as if immutable. + """ + + def __init__( + self, + vc_class, # type: Type[VersionControl] + rev=None, # type: Optional[str] + extra_args=None, # type: Optional[CommandArgs] + ): + # type: (...) -> None + """ + Args: + vc_class: a VersionControl subclass. + rev: the name of the revision to install. + extra_args: a list of extra options. + """ + if extra_args is None: + extra_args = [] + + self.extra_args = extra_args + self.rev = rev + self.vc_class = vc_class + self.branch_name = None # type: Optional[str] + + def __repr__(self): + # type: () -> str + return f'' + + @property + def arg_rev(self): + # type: () -> Optional[str] + if self.rev is None: + return self.vc_class.default_arg_rev + + return self.rev + + def to_args(self): + # type: () -> CommandArgs + """ + Return the VCS-specific command arguments. + """ + args = [] # type: CommandArgs + rev = self.arg_rev + if rev is not None: + args += self.vc_class.get_base_rev_args(rev) + args += self.extra_args + + return args + + def to_display(self): + # type: () -> str + if not self.rev: + return '' + + return f' (to revision {self.rev})' + + def make_new(self, rev): + # type: (str) -> RevOptions + """ + Make a copy of the current instance, but with a new rev. + + Args: + rev: the name of the revision for the new object. + """ + return self.vc_class.make_rev_options(rev, extra_args=self.extra_args) + + +class VcsSupport: + _registry = {} # type: Dict[str, VersionControl] + schemes = ['ssh', 'git', 'hg', 'bzr', 'sftp', 'svn'] + + def __init__(self): + # type: () -> None + # Register more schemes with urlparse for various version control + # systems + urllib.parse.uses_netloc.extend(self.schemes) + super().__init__() + + def __iter__(self): + # type: () -> Iterator[str] + return self._registry.__iter__() + + @property + def backends(self): + # type: () -> List[VersionControl] + return list(self._registry.values()) + + @property + def dirnames(self): + # type: () -> List[str] + return [backend.dirname for backend in self.backends] + + @property + def all_schemes(self): + # type: () -> List[str] + schemes = [] # type: List[str] + for backend in self.backends: + schemes.extend(backend.schemes) + return schemes + + def register(self, cls): + # type: (Type[VersionControl]) -> None + if not hasattr(cls, 'name'): + logger.warning('Cannot register VCS %s', cls.__name__) + return + if cls.name not in self._registry: + self._registry[cls.name] = cls() + logger.debug('Registered VCS backend: %s', cls.name) + + def unregister(self, name): + # type: (str) -> None + if name in self._registry: + del self._registry[name] + + def get_backend_for_dir(self, location): + # type: (str) -> Optional[VersionControl] + """ + Return a VersionControl object if a repository of that type is found + at the given directory. + """ + vcs_backends = {} + for vcs_backend in self._registry.values(): + repo_path = vcs_backend.get_repository_root(location) + if not repo_path: + continue + logger.debug('Determine that %s uses VCS: %s', + location, vcs_backend.name) + vcs_backends[repo_path] = vcs_backend + + if not vcs_backends: + return None + + # Choose the VCS in the inner-most directory. Since all repository + # roots found here would be either `location` or one of its + # parents, the longest path should have the most path components, + # i.e. the backend representing the inner-most repository. + inner_most_repo_path = max(vcs_backends, key=len) + return vcs_backends[inner_most_repo_path] + + def get_backend_for_scheme(self, scheme): + # type: (str) -> Optional[VersionControl] + """ + Return a VersionControl object or None. + """ + for vcs_backend in self._registry.values(): + if scheme in vcs_backend.schemes: + return vcs_backend + return None + + def get_backend(self, name): + # type: (str) -> Optional[VersionControl] + """ + Return a VersionControl object or None. + """ + name = name.lower() + return self._registry.get(name) + + +vcs = VcsSupport() + + +class VersionControl: + name = '' + dirname = '' + repo_name = '' + # List of supported schemes for this Version Control + schemes = () # type: Tuple[str, ...] + # Iterable of environment variable names to pass to call_subprocess(). + unset_environ = () # type: Tuple[str, ...] + default_arg_rev = None # type: Optional[str] + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url): + # type: (str) -> bool + """ + Return whether the vcs prefix (e.g. "git+") should be added to a + repository's remote url when used in a requirement. + """ + return not remote_url.lower().startswith(f'{cls.name}:') + + @classmethod + def get_subdirectory(cls, location): + # type: (str) -> Optional[str] + """ + Return the path to setup.py, relative to the repo root. + Return None if setup.py is in the repo root. + """ + return None + + @classmethod + def get_requirement_revision(cls, repo_dir): + # type: (str) -> str + """ + Return the revision string that should be used in a requirement. + """ + return cls.get_revision(repo_dir) + + @classmethod + def get_src_requirement(cls, repo_dir, project_name): + # type: (str, str) -> str + """ + Return the requirement string to use to redownload the files + currently at the given repository directory. + + Args: + project_name: the (unescaped) project name. + + The return value has a form similar to the following: + + {repository_url}@{revision}#egg={project_name} + """ + repo_url = cls.get_remote_url(repo_dir) + + if cls.should_add_vcs_url_prefix(repo_url): + repo_url = f'{cls.name}+{repo_url}' + + revision = cls.get_requirement_revision(repo_dir) + subdir = cls.get_subdirectory(repo_dir) + req = make_vcs_requirement_url(repo_url, revision, project_name, + subdir=subdir) + + return req + + @staticmethod + def get_base_rev_args(rev): + # type: (str) -> List[str] + """ + Return the base revision arguments for a vcs command. + + Args: + rev: the name of a revision to install. Cannot be None. + """ + raise NotImplementedError + + def is_immutable_rev_checkout(self, url, dest): + # type: (str, str) -> bool + """ + Return true if the commit hash checked out at dest matches + the revision in url. + + Always return False, if the VCS does not support immutable commit + hashes. + + This method does not check if there are local uncommitted changes + in dest after checkout, as pip currently has no use case for that. + """ + return False + + @classmethod + def make_rev_options(cls, rev=None, extra_args=None): + # type: (Optional[str], Optional[CommandArgs]) -> RevOptions + """ + Return a RevOptions object. + + Args: + rev: the name of a revision to install. + extra_args: a list of extra options. + """ + return RevOptions(cls, rev, extra_args=extra_args) + + @classmethod + def _is_local_repository(cls, repo): + # type: (str) -> bool + """ + posix absolute paths start with os.path.sep, + win32 ones start with drive (like c:\\folder) + """ + drive, tail = os.path.splitdrive(repo) + return repo.startswith(os.path.sep) or bool(drive) + + @classmethod + def get_netloc_and_auth(cls, netloc, scheme): + # type: (str, str) -> Tuple[str, Tuple[Optional[str], Optional[str]]] + """ + Parse the repository URL's netloc, and return the new netloc to use + along with auth information. + + Args: + netloc: the original repository URL netloc. + scheme: the repository URL's scheme without the vcs prefix. + + This is mainly for the Subversion class to override, so that auth + information can be provided via the --username and --password options + instead of through the URL. For other subclasses like Git without + such an option, auth information must stay in the URL. + + Returns: (netloc, (username, password)). + """ + return netloc, (None, None) + + @classmethod + def get_url_rev_and_auth(cls, url): + # type: (str) -> Tuple[str, Optional[str], AuthInfo] + """ + Parse the repository URL to use, and return the URL, revision, + and auth info to use. + + Returns: (url, rev, (username, password)). + """ + scheme, netloc, path, query, frag = urllib.parse.urlsplit(url) + if '+' not in scheme: + raise ValueError( + "Sorry, {!r} is a malformed VCS url. " + "The format is +://, " + "e.g. svn+http://myrepo/svn/MyApp#egg=MyApp".format(url) + ) + # Remove the vcs prefix. + scheme = scheme.split('+', 1)[1] + netloc, user_pass = cls.get_netloc_and_auth(netloc, scheme) + rev = None + if '@' in path: + path, rev = path.rsplit('@', 1) + if not rev: + raise InstallationError( + "The URL {!r} has an empty revision (after @) " + "which is not supported. Include a revision after @ " + "or remove @ from the URL.".format(url) + ) + url = urllib.parse.urlunsplit((scheme, netloc, path, query, '')) + return url, rev, user_pass + + @staticmethod + def make_rev_args(username, password): + # type: (Optional[str], Optional[HiddenText]) -> CommandArgs + """ + Return the RevOptions "extra arguments" to use in obtain(). + """ + return [] + + def get_url_rev_options(self, url): + # type: (HiddenText) -> Tuple[HiddenText, RevOptions] + """ + Return the URL and RevOptions object to use in obtain(), + as a tuple (url, rev_options). + """ + secret_url, rev, user_pass = self.get_url_rev_and_auth(url.secret) + username, secret_password = user_pass + password = None # type: Optional[HiddenText] + if secret_password is not None: + password = hide_value(secret_password) + extra_args = self.make_rev_args(username, password) + rev_options = self.make_rev_options(rev, extra_args=extra_args) + + return hide_url(secret_url), rev_options + + @staticmethod + def normalize_url(url): + # type: (str) -> str + """ + Normalize a URL for comparison by unquoting it and removing any + trailing slash. + """ + return urllib.parse.unquote(url).rstrip('/') + + @classmethod + def compare_urls(cls, url1, url2): + # type: (str, str) -> bool + """ + Compare two repo URLs for identity, ignoring incidental differences. + """ + return (cls.normalize_url(url1) == cls.normalize_url(url2)) + + def fetch_new(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + """ + Fetch a revision from a repository, in the case that this is the + first fetch from the repository. + + Args: + dest: the directory to fetch the repository to. + rev_options: a RevOptions object. + """ + raise NotImplementedError + + def switch(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + """ + Switch the repo at ``dest`` to point to ``URL``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + def update(self, dest, url, rev_options): + # type: (str, HiddenText, RevOptions) -> None + """ + Update an already-existing repo to the given ``rev_options``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + @classmethod + def is_commit_id_equal(cls, dest, name): + # type: (str, Optional[str]) -> bool + """ + Return whether the id of the current commit equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + raise NotImplementedError + + def obtain(self, dest, url): + # type: (str, HiddenText) -> None + """ + Install or update in editable mode the package represented by this + VersionControl object. + + :param dest: the repository directory in which to install or update. + :param url: the repository URL starting with a vcs prefix. + """ + url, rev_options = self.get_url_rev_options(url) + + if not os.path.exists(dest): + self.fetch_new(dest, url, rev_options) + return + + rev_display = rev_options.to_display() + if self.is_repository_directory(dest): + existing_url = self.get_remote_url(dest) + if self.compare_urls(existing_url, url.secret): + logger.debug( + '%s in %s exists, and has correct URL (%s)', + self.repo_name.title(), + display_path(dest), + url, + ) + if not self.is_commit_id_equal(dest, rev_options.rev): + logger.info( + 'Updating %s %s%s', + display_path(dest), + self.repo_name, + rev_display, + ) + self.update(dest, url, rev_options) + else: + logger.info('Skipping because already up-to-date.') + return + + logger.warning( + '%s %s in %s exists with URL %s', + self.name, + self.repo_name, + display_path(dest), + existing_url, + ) + prompt = ('(s)witch, (i)gnore, (w)ipe, (b)ackup ', + ('s', 'i', 'w', 'b')) + else: + logger.warning( + 'Directory %s already exists, and is not a %s %s.', + dest, + self.name, + self.repo_name, + ) + # https://github.com/python/mypy/issues/1174 + prompt = ('(i)gnore, (w)ipe, (b)ackup ', # type: ignore + ('i', 'w', 'b')) + + logger.warning( + 'The plan is to install the %s repository %s', + self.name, + url, + ) + response = ask_path_exists('What to do? {}'.format( + prompt[0]), prompt[1]) + + if response == 'a': + sys.exit(-1) + + if response == 'w': + logger.warning('Deleting %s', display_path(dest)) + rmtree(dest) + self.fetch_new(dest, url, rev_options) + return + + if response == 'b': + dest_dir = backup_dir(dest) + logger.warning( + 'Backing up %s to %s', display_path(dest), dest_dir, + ) + shutil.move(dest, dest_dir) + self.fetch_new(dest, url, rev_options) + return + + # Do nothing if the response is "i". + if response == 's': + logger.info( + 'Switching %s %s to %s%s', + self.repo_name, + display_path(dest), + url, + rev_display, + ) + self.switch(dest, url, rev_options) + + def unpack(self, location, url): + # type: (str, HiddenText) -> None + """ + Clean up current location and download the url repository + (and vcs infos) into location + + :param url: the repository URL starting with a vcs prefix. + """ + if os.path.exists(location): + rmtree(location) + self.obtain(location, url=url) + + @classmethod + def get_remote_url(cls, location): + # type: (str) -> str + """ + Return the url used at location + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + raise NotImplementedError + + @classmethod + def get_revision(cls, location): + # type: (str) -> str + """ + Return the current commit id of the files at the given location. + """ + raise NotImplementedError + + @classmethod + def run_command( + cls, + cmd, # type: Union[List[str], CommandArgs] + show_stdout=True, # type: bool + cwd=None, # type: Optional[str] + on_returncode='raise', # type: str + extra_ok_returncodes=None, # type: Optional[Iterable[int]] + command_desc=None, # type: Optional[str] + extra_environ=None, # type: Optional[Mapping[str, Any]] + spinner=None, # type: Optional[SpinnerInterface] + log_failed_cmd=True, # type: bool + stdout_only=False, # type: bool + ): + # type: (...) -> str + """ + Run a VCS subcommand + This is simply a wrapper around call_subprocess that adds the VCS + command name, and checks that the VCS is available + """ + cmd = make_command(cls.name, *cmd) + try: + return call_subprocess(cmd, show_stdout, cwd, + on_returncode=on_returncode, + extra_ok_returncodes=extra_ok_returncodes, + command_desc=command_desc, + extra_environ=extra_environ, + unset_environ=cls.unset_environ, + spinner=spinner, + log_failed_cmd=log_failed_cmd, + stdout_only=stdout_only) + except FileNotFoundError: + # errno.ENOENT = no such file or directory + # In other words, the VCS executable isn't available + raise BadCommand( + f'Cannot find command {cls.name!r} - do you have ' + f'{cls.name!r} installed and in your PATH?') + except PermissionError: + # errno.EACCES = Permission denied + # This error occurs, for instance, when the command is installed + # only for another user. So, the current user don't have + # permission to call the other user command. + raise BadCommand( + f"No permission to execute {cls.name!r} - install it " + f"locally, globally (ask admin), or check your PATH. " + f"See possible solutions at " + f"https://pip.pypa.io/en/latest/reference/pip_freeze/" + f"#fixing-permission-denied." + ) + + @classmethod + def is_repository_directory(cls, path): + # type: (str) -> bool + """ + Return whether a directory path is a repository directory. + """ + logger.debug('Checking in %s for %s (%s)...', + path, cls.dirname, cls.name) + return os.path.exists(os.path.join(path, cls.dirname)) + + @classmethod + def get_repository_root(cls, location): + # type: (str) -> Optional[str] + """ + Return the "root" (top-level) directory controlled by the vcs, + or `None` if the directory is not in any. + + It is meant to be overridden to implement smarter detection + mechanisms for specific vcs. + + This can do more than is_repository_directory() alone. For + example, the Git override checks that Git is actually available. + """ + if cls.is_repository_directory(location): + return location + return None diff --git a/venv/lib/python3.8/site-packages/pip/_internal/wheel_builder.py b/venv/lib/python3.8/site-packages/pip/_internal/wheel_builder.py new file mode 100644 index 00000000..92f172bc --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_internal/wheel_builder.py @@ -0,0 +1,360 @@ +"""Orchestrator for building wheels from InstallRequirements. +""" + +import logging +import os.path +import re +import shutil +from typing import Any, Callable, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name, canonicalize_version +from pip._vendor.packaging.version import InvalidVersion, Version + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import InvalidWheelFilename, UnsupportedWheel +from pip._internal.metadata import get_wheel_distribution +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.build.wheel import build_wheel_pep517 +from pip._internal.operations.build.wheel_legacy import build_wheel_legacy +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ensure_dir, hash_file, is_wheel_installed +from pip._internal.utils.setuptools_build import make_setuptools_clean_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + +_egg_info_re = re.compile(r'([a-z0-9_.]+)-([a-z0-9_.!+-]+)', re.IGNORECASE) + +BinaryAllowedPredicate = Callable[[InstallRequirement], bool] +BuildResult = Tuple[List[InstallRequirement], List[InstallRequirement]] + + +def _contains_egg_info(s): + # type: (str) -> bool + """Determine whether the string looks like an egg_info. + + :param s: The string to parse. E.g. foo-2.1 + """ + return bool(_egg_info_re.search(s)) + + +def _should_build( + req, # type: InstallRequirement + need_wheel, # type: bool + check_binary_allowed, # type: BinaryAllowedPredicate +): + # type: (...) -> bool + """Return whether an InstallRequirement should be built into a wheel.""" + if req.constraint: + # never build requirements that are merely constraints + return False + if req.is_wheel: + if need_wheel: + logger.info( + 'Skipping %s, due to already being wheel.', req.name, + ) + return False + + if need_wheel: + # i.e. pip wheel, not pip install + return True + + # From this point, this concerns the pip install command only + # (need_wheel=False). + + if req.editable or not req.source_dir: + return False + + if req.use_pep517: + return True + + if not check_binary_allowed(req): + logger.info( + "Skipping wheel build for %s, due to binaries " + "being disabled for it.", req.name, + ) + return False + + if not is_wheel_installed(): + # we don't build legacy requirements if wheel is not installed + logger.info( + "Using legacy 'setup.py install' for %s, " + "since package 'wheel' is not installed.", req.name, + ) + return False + + return True + + +def should_build_for_wheel_command( + req, # type: InstallRequirement +): + # type: (...) -> bool + return _should_build( + req, need_wheel=True, check_binary_allowed=_always_true + ) + + +def should_build_for_install_command( + req, # type: InstallRequirement + check_binary_allowed, # type: BinaryAllowedPredicate +): + # type: (...) -> bool + return _should_build( + req, need_wheel=False, check_binary_allowed=check_binary_allowed + ) + + +def _should_cache( + req, # type: InstallRequirement +): + # type: (...) -> Optional[bool] + """ + Return whether a built InstallRequirement can be stored in the persistent + wheel cache, assuming the wheel cache is available, and _should_build() + has determined a wheel needs to be built. + """ + if req.editable or not req.source_dir: + # never cache editable requirements + return False + + if req.link and req.link.is_vcs: + # VCS checkout. Do not cache + # unless it points to an immutable commit hash. + assert not req.editable + assert req.source_dir + vcs_backend = vcs.get_backend_for_scheme(req.link.scheme) + assert vcs_backend + if vcs_backend.is_immutable_rev_checkout(req.link.url, req.source_dir): + return True + return False + + assert req.link + base, ext = req.link.splitext() + if _contains_egg_info(base): + return True + + # Otherwise, do not cache. + return False + + +def _get_cache_dir( + req, # type: InstallRequirement + wheel_cache, # type: WheelCache +): + # type: (...) -> str + """Return the persistent or temporary cache directory where the built + wheel need to be stored. + """ + cache_available = bool(wheel_cache.cache_dir) + assert req.link + if cache_available and _should_cache(req): + cache_dir = wheel_cache.get_path_for_link(req.link) + else: + cache_dir = wheel_cache.get_ephem_path_for_link(req.link) + return cache_dir + + +def _always_true(_): + # type: (Any) -> bool + return True + + +def _verify_one(req, wheel_path): + # type: (InstallRequirement, str) -> None + canonical_name = canonicalize_name(req.name or "") + w = Wheel(os.path.basename(wheel_path)) + if canonicalize_name(w.name) != canonical_name: + raise InvalidWheelFilename( + "Wheel has unexpected file name: expected {!r}, " + "got {!r}".format(canonical_name, w.name), + ) + dist = get_wheel_distribution(wheel_path, canonical_name) + dist_verstr = str(dist.version) + if canonicalize_version(dist_verstr) != canonicalize_version(w.version): + raise InvalidWheelFilename( + "Wheel has unexpected file name: expected {!r}, " + "got {!r}".format(dist_verstr, w.version), + ) + metadata_version_value = dist.metadata_version + if metadata_version_value is None: + raise UnsupportedWheel("Missing Metadata-Version") + try: + metadata_version = Version(metadata_version_value) + except InvalidVersion: + msg = f"Invalid Metadata-Version: {metadata_version_value}" + raise UnsupportedWheel(msg) + if (metadata_version >= Version("1.2") + and not isinstance(dist.version, Version)): + raise UnsupportedWheel( + "Metadata 1.2 mandates PEP 440 version, " + "but {!r} is not".format(dist_verstr) + ) + + +def _build_one( + req, # type: InstallRequirement + output_dir, # type: str + verify, # type: bool + build_options, # type: List[str] + global_options, # type: List[str] +): + # type: (...) -> Optional[str] + """Build one wheel. + + :return: The filename of the built wheel, or None if the build failed. + """ + try: + ensure_dir(output_dir) + except OSError as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, e, + ) + return None + + # Install build deps into temporary directory (PEP 518) + with req.build_env: + wheel_path = _build_one_inside_env( + req, output_dir, build_options, global_options + ) + if wheel_path and verify: + try: + _verify_one(req, wheel_path) + except (InvalidWheelFilename, UnsupportedWheel) as e: + logger.warning("Built wheel for %s is invalid: %s", req.name, e) + return None + return wheel_path + + +def _build_one_inside_env( + req, # type: InstallRequirement + output_dir, # type: str + build_options, # type: List[str] + global_options, # type: List[str] +): + # type: (...) -> Optional[str] + with TempDirectory(kind="wheel") as temp_dir: + assert req.name + if req.use_pep517: + assert req.metadata_directory + assert req.pep517_backend + if global_options: + logger.warning( + 'Ignoring --global-option when building %s using PEP 517', req.name + ) + if build_options: + logger.warning( + 'Ignoring --build-option when building %s using PEP 517', req.name + ) + wheel_path = build_wheel_pep517( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_legacy( + name=req.name, + setup_py_path=req.setup_py_path, + source_dir=req.unpacked_source_directory, + global_options=global_options, + build_options=build_options, + tempd=temp_dir.path, + ) + + if wheel_path is not None: + wheel_name = os.path.basename(wheel_path) + dest_path = os.path.join(output_dir, wheel_name) + try: + wheel_hash, length = hash_file(wheel_path) + shutil.move(wheel_path, dest_path) + logger.info('Created wheel for %s: ' + 'filename=%s size=%d sha256=%s', + req.name, wheel_name, length, + wheel_hash.hexdigest()) + logger.info('Stored in directory: %s', output_dir) + return dest_path + except Exception as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, e, + ) + # Ignore return, we can't do anything else useful. + if not req.use_pep517: + _clean_one_legacy(req, global_options) + return None + + +def _clean_one_legacy(req, global_options): + # type: (InstallRequirement, List[str]) -> bool + clean_args = make_setuptools_clean_args( + req.setup_py_path, + global_options=global_options, + ) + + logger.info('Running setup.py clean for %s', req.name) + try: + call_subprocess(clean_args, cwd=req.source_dir) + return True + except Exception: + logger.error('Failed cleaning build dir for %s', req.name) + return False + + +def build( + requirements, # type: Iterable[InstallRequirement] + wheel_cache, # type: WheelCache + verify, # type: bool + build_options, # type: List[str] + global_options, # type: List[str] +): + # type: (...) -> BuildResult + """Build wheels. + + :return: The list of InstallRequirement that succeeded to build and + the list of InstallRequirement that failed to build. + """ + if not requirements: + return [], [] + + # Build the wheels. + logger.info( + 'Building wheels for collected packages: %s', + ', '.join(req.name for req in requirements), # type: ignore + ) + + with indent_log(): + build_successes, build_failures = [], [] + for req in requirements: + cache_dir = _get_cache_dir(req, wheel_cache) + wheel_file = _build_one( + req, cache_dir, verify, build_options, global_options + ) + if wheel_file: + # Update the link for this. + req.link = Link(path_to_url(wheel_file)) + req.local_file_path = req.link.file_path + assert req.link.is_wheel + build_successes.append(req) + else: + build_failures.append(req) + + # notify success/failure + if build_successes: + logger.info( + 'Successfully built %s', + ' '.join([req.name for req in build_successes]), # type: ignore + ) + if build_failures: + logger.info( + 'Failed to build %s', + ' '.join([req.name for req in build_failures]), # type: ignore + ) + # Return a list of requirements that failed to build + return build_successes, build_failures diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/__init__.py b/venv/lib/python3.8/site-packages/pip/_vendor/__init__.py new file mode 100644 index 00000000..a10ecd60 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/__init__.py @@ -0,0 +1,113 @@ +""" +pip._vendor is for vendoring dependencies of pip to prevent needing pip to +depend on something external. + +Files inside of pip._vendor should be considered immutable and should only be +updated to versions from upstream. +""" +from __future__ import absolute_import + +import glob +import os.path +import sys + +# Downstream redistributors which have debundled our dependencies should also +# patch this value to be true. This will trigger the additional patching +# to cause things like "six" to be available as pip. +DEBUNDLED = False + +# By default, look in this directory for a bunch of .whl files which we will +# add to the beginning of sys.path before attempting to import anything. This +# is done to support downstream re-distributors like Debian and Fedora who +# wish to create their own Wheels for our dependencies to aid in debundling. +WHEEL_DIR = os.path.abspath(os.path.dirname(__file__)) + + +# Define a small helper function to alias our vendored modules to the real ones +# if the vendored ones do not exist. This idea of this was taken from +# https://github.com/kennethreitz/requests/pull/2567. +def vendored(modulename): + vendored_name = "{0}.{1}".format(__name__, modulename) + + try: + __import__(modulename, globals(), locals(), level=0) + except ImportError: + # We can just silently allow import failures to pass here. If we + # got to this point it means that ``import pip._vendor.whatever`` + # failed and so did ``import whatever``. Since we're importing this + # upfront in an attempt to alias imports, not erroring here will + # just mean we get a regular import error whenever pip *actually* + # tries to import one of these modules to use it, which actually + # gives us a better error message than we would have otherwise + # gotten. + pass + else: + sys.modules[vendored_name] = sys.modules[modulename] + base, head = vendored_name.rsplit(".", 1) + setattr(sys.modules[base], head, sys.modules[modulename]) + + +# If we're operating in a debundled setup, then we want to go ahead and trigger +# the aliasing of our vendored libraries as well as looking for wheels to add +# to our sys.path. This will cause all of this code to be a no-op typically +# however downstream redistributors can enable it in a consistent way across +# all platforms. +if DEBUNDLED: + # Actually look inside of WHEEL_DIR to find .whl files and add them to the + # front of our sys.path. + sys.path[:] = glob.glob(os.path.join(WHEEL_DIR, "*.whl")) + sys.path + + # Actually alias all of our vendored dependencies. + vendored("appdirs") + vendored("cachecontrol") + vendored("certifi") + vendored("colorama") + vendored("distlib") + vendored("distro") + vendored("html5lib") + vendored("six") + vendored("six.moves") + vendored("six.moves.urllib") + vendored("six.moves.urllib.parse") + vendored("packaging") + vendored("packaging.version") + vendored("packaging.specifiers") + vendored("pep517") + vendored("pkg_resources") + vendored("progress") + vendored("requests") + vendored("requests.exceptions") + vendored("requests.packages") + vendored("requests.packages.urllib3") + vendored("requests.packages.urllib3._collections") + vendored("requests.packages.urllib3.connection") + vendored("requests.packages.urllib3.connectionpool") + vendored("requests.packages.urllib3.contrib") + vendored("requests.packages.urllib3.contrib.ntlmpool") + vendored("requests.packages.urllib3.contrib.pyopenssl") + vendored("requests.packages.urllib3.exceptions") + vendored("requests.packages.urllib3.fields") + vendored("requests.packages.urllib3.filepost") + vendored("requests.packages.urllib3.packages") + vendored("requests.packages.urllib3.packages.ordered_dict") + vendored("requests.packages.urllib3.packages.six") + vendored("requests.packages.urllib3.packages.ssl_match_hostname") + vendored("requests.packages.urllib3.packages.ssl_match_hostname." + "_implementation") + vendored("requests.packages.urllib3.poolmanager") + vendored("requests.packages.urllib3.request") + vendored("requests.packages.urllib3.response") + vendored("requests.packages.urllib3.util") + vendored("requests.packages.urllib3.util.connection") + vendored("requests.packages.urllib3.util.request") + vendored("requests.packages.urllib3.util.response") + vendored("requests.packages.urllib3.util.retry") + vendored("requests.packages.urllib3.util.ssl_") + vendored("requests.packages.urllib3.util.timeout") + vendored("requests.packages.urllib3.util.url") + vendored("resolvelib") + vendored("tenacity") + vendored("toml") + vendored("toml.encoder") + vendored("toml.decoder") + vendored("urllib3") diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b7d387386b9dc075fce67123952957c58cce2832 GIT binary patch literal 2912 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

XF@;Xf9YxXdnh&cy7%aARXSh85OjKy%M%M# za`tk5EgP1sN{`N;X3a-7&(5D-oFfER_)99?xx1;-haaV;r>9Y9s4$hf&eddKa`6ml zLq?@o)|rF zJM)6`?$D`oJ3b6u4H!JbmBIF*<^2&50m8r)D$~jI!pIf__Ep77^I+UP#^Gaob-M$Y zBwvnq^QrlYbBRzp4hoG+_NnQz6F9;sdD+0+KG)L|=0cLpZtAsWzXI#p)0n1E#`Q2o z!Lzx}R-K_0&B@|dh7RPV)j1t!1uxeYr$l#Eu!8Vr&wQU{!(U{i-aTSIqT@9T{JN0TGVpGb_CT(U9lK#*Q@B zjRwalM+oS!5IEF$G?A!AGvi$zYq?$68rk$N4|?L_Y2p3$h8m8hi9W5GjMI_LQQ%n4 zsghn_iOZ}0DW;$uv-cSMi|1Noz7hT#ARLA)lN=oE!1l?fF=qSjp-pTPit?3(Ws_Tf z&Z15cLI?{8EFsK}W2>%ain8QbGS^GHdyu=`Gd*?}qg$m+TI@cXi{4!9v*%M-HDG4T zDomaK@*;r%U=%;r7+O@6C+;o{kjHZlwz3zN@&_GDN#v=I@tGqW_grJW*;5R_Pn&mp zu8Zs>oK93&3IAs8?JtEtaPl_bBdYnDYemh}Z zZQ0Cv>yuhQGslofFC~07W3vOg_Y)M^GSrr7{THlGv`LMrZkNi_n`mq>6AibY#*uTu z+tjL~a7D}RNwP!7vDC1q7WM_NmgT-0cv2jc%cksHaiagEcHr{-SIi+lt-U4|P%+14 zq|t{^{AOgB*o(s>=kuf%!8BtCGmSiAesaYYipA9hWkl-B_i?8$-&pN;q>%&WtW`KN zYC`GX&bDfT4QpDbtw&8ep=t5ap_P;BMEWmgIOn*VmX}s;HaTffPni=zVn*B?A-Hl2 zmR~~{8uwRLRaPU;cFHZq=^!>oWrNkVzH$@HD|TZjwN|nnZjH9lXjy*XN9Lo8WjrP; z)k#z`W|%3t5|nzvpLnJ*@UOFFh~APTjg99Lpuyr=xj*rP349l%*ahe!@pH4MtEZwe z#H|^CN*rnpIkxUOQKRBPQVqg~oSmD$i20*)n<^7S>9q0A&ZSE}uhws$UNLrfaRF;p z+vdG{TkLv~xe)g^8kxs8|FK5lboVq(fB`m_hwL{vNNuZ+Hv`rZ| zFg`w8J2O31A0Pj?CPSHjot35N3mJ&I=p2|BuT3T>ywWm7n#)6cOen3G9Q%V()?t}; zS?gAi9wJoulc@#4L)k!;79>1x5yZv~N;Yct;>>qTV{%GIV%q7ofv~#w+(edYg%|7{5ur~>avB3S?qeR{mYz% z(}z8Wbvl8I7F+2<+LKLsB|Z4fWD`2}g7{T~p^uaE3zxE1x9VMQ=;32rnAI&-?pWJu zA8xN}9dcLXb*jXzva0PR)gYvrbY`OMZ4?8d;LV=4d$e)<8fpD@+!-xNzW3_Rr8M

A7adXX6>a|S(u_8p0L}Nm*GxI=0P4HN6jYv$ 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/__pycache__/six.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/__pycache__/six.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bd5fe41fe559f6fcf82f3d8970fe9bcc99aef1dd GIT binary patch literal 26887 zcmc(H378zmb>2+RxwEs2<>DfE4i6Am5Ezg+cmg0!0uX^E2!PjshUS7WW@<5>WNZ9-pNu@-l`jhB|#18^^~2jMQY`%BC0<)szCUs<}e@dkU9!LTnI zwTNS9CN2lG)V>0E{epMp`KwgVg}DBGdqCyp;z)I1e@ykN{L?X&x38W{lnU*B`x?72 z7n_U6V-Lm}S0!WiwUfDXah;CG_zzM(9BbqrqOXtnoG7S%wdCno={hx_F2VbHHp$^<0CHwFtRXtwP8u!5D)7GIcrpmrD-o>~;2y zC~G~!uTWPa{7QQ*(rvJZ)K&OjtqOBVz}Kj2)phE6bTNyedjEF zmAb8AsoT{ZQkOe{vrVwKs~zetwNpY1s-Qq?l)DT6-2&}VdwgiG+UrBNbd|7A>Ug)> zC*|#zb{$ar;kyBCT03XqeNeql-uI~8!bOKBQ>fEt)M3<#<=mi#)xCmoMBS&3O2{#F zT-`6w1L{FZ_0VJtss2hmfK(4lOi7(kj|lXrdQ6oCdR$f1h(J}Plr7Mx8dKu})zpNV z6sWGIR70SqYN?X~Y2_$aplNkVofhbfI-|}C)K+aDdcAtR56!3+A&#M>I z`vv-d`k?xdKp$2gQ6ClPW9q!RAkfFv�dj=%1-i_&NV`^>gY)3Hzk_dG!kdeM)`W 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 BVgmpG literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/appdirs.py b/venv/lib/python3.8/site-packages/pip/_vendor/appdirs.py new file mode 100644 index 00000000..33a3b774 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/appdirs.py @@ -0,0 +1,633 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# Copyright (c) 2005-2010 ActiveState Software Inc. +# Copyright (c) 2013 Eddy Petrișor + +"""Utilities for determining application-specific dirs. + +See for details and usage. +""" +# Dev Notes: +# - MSDN on where to store app data files: +# http://support.microsoft.com/default.aspx?scid=kb;en-us;310294#XSLTH3194121123120121120120 +# - Mac OS X: http://developer.apple.com/documentation/MacOSX/Conceptual/BPFileSystem/index.html +# - XDG spec for Un*x: http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html + +__version__ = "1.4.4" +__version_info__ = tuple(int(segment) for segment in __version__.split(".")) + + +import sys +import os + +PY3 = sys.version_info[0] == 3 + +if PY3: + unicode = str + +if sys.platform.startswith('java'): + import platform + os_name = platform.java_ver()[3][0] + if os_name.startswith('Windows'): # "Windows XP", "Windows 7", etc. + system = 'win32' + elif os_name.startswith('Mac'): # "Mac OS X", etc. + system = 'darwin' + else: # "Linux", "SunOS", "FreeBSD", etc. + # Setting this to "linux2" is not ideal, but only Windows or Mac + # are actually checked for and the rest of the module expects + # *sys.platform* style strings. + system = 'linux2' +elif sys.platform == 'cli' and os.name == 'nt': + # Detect Windows in IronPython to match pip._internal.utils.compat.WINDOWS + # Discussion: + system = 'win32' +else: + system = sys.platform + + + +def user_data_dir(appname=None, appauthor=None, version=None, roaming=False): + r"""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 ".". + 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 + + for a discussion of issues. + + Typical user data directories are: + Mac OS X: ~/Library/Application Support/ # or ~/.config/, if the other does not exist + Unix: ~/.local/share/ # or in $XDG_DATA_HOME, if defined + Win XP (not roaming): C:\Documents and Settings\\Application Data\\ + Win XP (roaming): C:\Documents and Settings\\Local Settings\Application Data\\ + Win 7 (not roaming): C:\Users\\AppData\Local\\ + Win 7 (roaming): C:\Users\\AppData\Roaming\\ + + For Unix, we follow the XDG spec and support $XDG_DATA_HOME. + That means, by default "~/.local/share/". + """ + if system == "win32": + if appauthor is None: + appauthor = appname + const = roaming and "CSIDL_APPDATA" or "CSIDL_LOCAL_APPDATA" + path = os.path.normpath(_get_win_folder(const)) + if appname: + if appauthor is not False: + path = os.path.join(path, appauthor, appname) + else: + path = os.path.join(path, appname) + elif system == 'darwin': + path = os.path.expanduser('~/Library/Application Support/') + if appname: + path = os.path.join(path, appname) + else: + path = os.getenv('XDG_DATA_HOME', os.path.expanduser("~/.local/share")) + if appname: + path = os.path.join(path, appname) + if appname and version: + path = os.path.join(path, version) + return path + + +def site_data_dir(appname=None, appauthor=None, version=None, multipath=False): + r"""Return full path to the user-shared 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 ".". + Only applied when appname is present. + "multipath" is an optional parameter only applicable to *nix + which indicates that the entire list of data dirs should be + returned. By default, the first item from XDG_DATA_DIRS is + returned, or '/usr/local/share/', + if XDG_DATA_DIRS is not set + + Typical site data directories are: + Mac OS X: /Library/Application Support/ + Unix: /usr/local/share/ or /usr/share/ + Win XP: C:\Documents and Settings\All Users\Application Data\\ + Vista: (Fail! "C:\ProgramData" is a hidden *system* directory on Vista.) + Win 7: C:\ProgramData\\ # Hidden, but writeable on Win 7. + + For Unix, this is using the $XDG_DATA_DIRS[0] default. + + WARNING: Do not use this on Windows. See the Vista-Fail note above for why. + """ + if system == "win32": + if appauthor is None: + appauthor = appname + path = os.path.normpath(_get_win_folder("CSIDL_COMMON_APPDATA")) + if appname: + if appauthor is not False: + path = os.path.join(path, appauthor, appname) + else: + path = os.path.join(path, appname) + elif system == 'darwin': + path = os.path.expanduser('/Library/Application Support') + if appname: + path = os.path.join(path, appname) + else: + # XDG default for $XDG_DATA_DIRS + # only first, if multipath is False + path = os.getenv('XDG_DATA_DIRS', + os.pathsep.join(['/usr/local/share', '/usr/share'])) + pathlist = [os.path.expanduser(x.rstrip(os.sep)) for x in path.split(os.pathsep)] + if appname: + if version: + appname = os.path.join(appname, version) + pathlist = [os.path.join(x, appname) for x in pathlist] + + if multipath: + path = os.pathsep.join(pathlist) + else: + path = pathlist[0] + return path + + if appname and version: + path = os.path.join(path, version) + return path + + +def user_config_dir(appname=None, appauthor=None, version=None, roaming=False): + r"""Return full path to the user-specific config 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 ".". + 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 + + for a discussion of issues. + + Typical user config directories are: + Mac OS X: same as user_data_dir + Unix: ~/.config/ # or in $XDG_CONFIG_HOME, if defined + Win *: same as user_data_dir + + For Unix, we follow the XDG spec and support $XDG_CONFIG_HOME. + That means, by default "~/.config/". + """ + if system in ["win32", "darwin"]: + path = user_data_dir(appname, appauthor, None, roaming) + else: + path = os.getenv('XDG_CONFIG_HOME', os.path.expanduser("~/.config")) + if appname: + path = os.path.join(path, appname) + if appname and version: + path = os.path.join(path, version) + return path + + +# for the discussion regarding site_config_dir locations +# see +def site_config_dir(appname=None, appauthor=None, version=None, multipath=False): + r"""Return full path to the user-shared 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 ".". + Only applied when appname is present. + "multipath" is an optional parameter only applicable to *nix + which indicates that the entire list of config dirs should be + returned. By default, the first item from XDG_CONFIG_DIRS is + returned, or '/etc/xdg/', if XDG_CONFIG_DIRS is not set + + Typical site config directories are: + Mac OS X: same as site_data_dir + Unix: /etc/xdg/ or $XDG_CONFIG_DIRS[i]/ for each value in + $XDG_CONFIG_DIRS + Win *: same as site_data_dir + Vista: (Fail! "C:\ProgramData" is a hidden *system* directory on Vista.) + + For Unix, this is using the $XDG_CONFIG_DIRS[0] default, if multipath=False + + WARNING: Do not use this on Windows. See the Vista-Fail note above for why. + """ + if system in ["win32", "darwin"]: + path = site_data_dir(appname, appauthor) + if appname and version: + path = os.path.join(path, version) + else: + # XDG default for $XDG_CONFIG_DIRS (missing or empty) + # see + # only first, if multipath is False + path = os.getenv('XDG_CONFIG_DIRS') or '/etc/xdg' + pathlist = [os.path.expanduser(x.rstrip(os.sep)) for x in path.split(os.pathsep) if x] + if appname: + if version: + appname = os.path.join(appname, version) + pathlist = [os.path.join(x, appname) for x in pathlist] + + if multipath: + path = os.pathsep.join(pathlist) + else: + path = pathlist[0] + return path + + +def user_cache_dir(appname=None, appauthor=None, version=None, opinion=True): + r"""Return full path to the user-specific cache 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 ".". + Only applied when appname is present. + "opinion" (boolean) can be False to disable the appending of + "Cache" to the base app data dir for Windows. See + discussion below. + + Typical user cache directories are: + Mac OS X: ~/Library/Caches/ + Unix: ~/.cache/ (XDG default) + Win XP: C:\Documents and Settings\\Local Settings\Application Data\\\Cache + Vista: C:\Users\\AppData\Local\\\Cache + + On Windows the only suggestion in the MSDN docs is that local settings go in + the `CSIDL_LOCAL_APPDATA` directory. This is identical to the non-roaming + app data dir (the default returned by `user_data_dir` above). Apps typically + put cache data somewhere *under* the given dir here. Some examples: + ...\Mozilla\Firefox\Profiles\\Cache + ...\Acme\SuperApp\Cache\1.0 + OPINION: This function appends "Cache" to the `CSIDL_LOCAL_APPDATA` value. + This can be disabled with the `opinion=False` option. + """ + if system == "win32": + if appauthor is None: + appauthor = appname + path = os.path.normpath(_get_win_folder("CSIDL_LOCAL_APPDATA")) + # When using Python 2, return paths as bytes on Windows like we do on + # other operating systems. See helper function docs for more details. + if not PY3 and isinstance(path, unicode): + path = _win_path_to_bytes(path) + if appname: + if appauthor is not False: + path = os.path.join(path, appauthor, appname) + else: + path = os.path.join(path, appname) + if opinion: + path = os.path.join(path, "Cache") + elif system == 'darwin': + path = os.path.expanduser('~/Library/Caches') + if appname: + path = os.path.join(path, appname) + else: + path = os.getenv('XDG_CACHE_HOME', os.path.expanduser('~/.cache')) + if appname: + path = os.path.join(path, appname) + if appname and version: + path = os.path.join(path, version) + return path + + +def user_state_dir(appname=None, appauthor=None, version=None, roaming=False): + r"""Return full path to the user-specific state 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 ".". + 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 + + for a discussion of issues. + + Typical user state directories are: + Mac OS X: same as user_data_dir + Unix: ~/.local/state/ # or in $XDG_STATE_HOME, if defined + Win *: same as user_data_dir + + For Unix, we follow this Debian proposal + to extend the XDG spec and support $XDG_STATE_HOME. + + That means, by default "~/.local/state/". + """ + if system in ["win32", "darwin"]: + path = user_data_dir(appname, appauthor, None, roaming) + else: + path = os.getenv('XDG_STATE_HOME', os.path.expanduser("~/.local/state")) + if appname: + path = os.path.join(path, appname) + if appname and version: + path = os.path.join(path, version) + return path + + +def user_log_dir(appname=None, appauthor=None, version=None, opinion=True): + r"""Return full path to the user-specific log 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 ".". + Only applied when appname is present. + "opinion" (boolean) can be False to disable the appending of + "Logs" to the base app data dir for Windows, and "log" to the + base cache dir for Unix. See discussion below. + + Typical user log directories are: + Mac OS X: ~/Library/Logs/ + Unix: ~/.cache//log # or under $XDG_CACHE_HOME if defined + Win XP: C:\Documents and Settings\\Local Settings\Application Data\\\Logs + Vista: C:\Users\\AppData\Local\\\Logs + + On Windows the only suggestion in the MSDN docs is that local settings + go in the `CSIDL_LOCAL_APPDATA` directory. (Note: I'm interested in + examples of what some windows apps use for a logs dir.) + + OPINION: This function appends "Logs" to the `CSIDL_LOCAL_APPDATA` + value for Windows and appends "log" to the user cache dir for Unix. + This can be disabled with the `opinion=False` option. + """ + if system == "darwin": + path = os.path.join( + os.path.expanduser('~/Library/Logs'), + appname) + elif system == "win32": + path = user_data_dir(appname, appauthor, version) + version = False + if opinion: + path = os.path.join(path, "Logs") + else: + path = user_cache_dir(appname, appauthor, version) + version = False + if opinion: + path = os.path.join(path, "log") + if appname and version: + path = os.path.join(path, version) + return path + + +class AppDirs(object): + """Convenience wrapper for getting application dirs.""" + def __init__(self, appname=None, appauthor=None, version=None, + roaming=False, multipath=False): + self.appname = appname + self.appauthor = appauthor + self.version = version + self.roaming = roaming + self.multipath = multipath + + @property + def user_data_dir(self): + return user_data_dir(self.appname, self.appauthor, + version=self.version, roaming=self.roaming) + + @property + def site_data_dir(self): + return site_data_dir(self.appname, self.appauthor, + version=self.version, multipath=self.multipath) + + @property + def user_config_dir(self): + return user_config_dir(self.appname, self.appauthor, + version=self.version, roaming=self.roaming) + + @property + def site_config_dir(self): + return site_config_dir(self.appname, self.appauthor, + version=self.version, multipath=self.multipath) + + @property + def user_cache_dir(self): + return user_cache_dir(self.appname, self.appauthor, + version=self.version) + + @property + def user_state_dir(self): + return user_state_dir(self.appname, self.appauthor, + version=self.version) + + @property + def user_log_dir(self): + return user_log_dir(self.appname, self.appauthor, + version=self.version) + + +#---- internal support stuff + +def _get_win_folder_from_registry(csidl_name): + """This is a fallback technique at best. I'm not sure if using the + registry for this guarantees us the correct answer for all CSIDL_* + names. + """ + if PY3: + import winreg as _winreg + else: + import _winreg + + shell_folder_name = { + "CSIDL_APPDATA": "AppData", + "CSIDL_COMMON_APPDATA": "Common AppData", + "CSIDL_LOCAL_APPDATA": "Local AppData", + }[csidl_name] + + key = _winreg.OpenKey( + _winreg.HKEY_CURRENT_USER, + r"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" + ) + dir, type = _winreg.QueryValueEx(key, shell_folder_name) + return dir + + +def _get_win_folder_with_pywin32(csidl_name): + from win32com.shell import shellcon, shell + dir = shell.SHGetFolderPath(0, getattr(shellcon, csidl_name), 0, 0) + # Try to make this a unicode path because SHGetFolderPath does + # not return unicode strings when there is unicode data in the + # path. + try: + dir = unicode(dir) + + # Downgrade to short path name if have highbit chars. See + # . + has_high_char = False + for c in dir: + if ord(c) > 255: + has_high_char = True + break + if has_high_char: + try: + import win32api + dir = win32api.GetShortPathName(dir) + except ImportError: + pass + except UnicodeError: + pass + return dir + + +def _get_win_folder_with_ctypes(csidl_name): + import ctypes + + csidl_const = { + "CSIDL_APPDATA": 26, + "CSIDL_COMMON_APPDATA": 35, + "CSIDL_LOCAL_APPDATA": 28, + }[csidl_name] + + buf = ctypes.create_unicode_buffer(1024) + ctypes.windll.shell32.SHGetFolderPathW(None, csidl_const, None, 0, buf) + + # Downgrade to short path name if have highbit chars. See + # . + has_high_char = False + for c in buf: + if ord(c) > 255: + has_high_char = True + break + if has_high_char: + buf2 = ctypes.create_unicode_buffer(1024) + if ctypes.windll.kernel32.GetShortPathNameW(buf.value, buf2, 1024): + buf = buf2 + + return buf.value + +def _get_win_folder_with_jna(csidl_name): + import array + from com.sun import jna + from com.sun.jna.platform import win32 + + buf_size = win32.WinDef.MAX_PATH * 2 + buf = array.zeros('c', buf_size) + shell = win32.Shell32.INSTANCE + shell.SHGetFolderPath(None, getattr(win32.ShlObj, csidl_name), None, win32.ShlObj.SHGFP_TYPE_CURRENT, buf) + dir = jna.Native.toString(buf.tostring()).rstrip("\0") + + # Downgrade to short path name if have highbit chars. See + # . + has_high_char = False + for c in dir: + if ord(c) > 255: + has_high_char = True + break + if has_high_char: + buf = array.zeros('c', buf_size) + kernel = win32.Kernel32.INSTANCE + if kernel.GetShortPathName(dir, buf, buf_size): + dir = jna.Native.toString(buf.tostring()).rstrip("\0") + + return dir + +if system == "win32": + try: + from ctypes import windll + _get_win_folder = _get_win_folder_with_ctypes + except ImportError: + try: + import com.sun.jna + _get_win_folder = _get_win_folder_with_jna + except ImportError: + _get_win_folder = _get_win_folder_from_registry + + +def _win_path_to_bytes(path): + """Encode Windows paths to bytes. Only used on Python 2. + + Motivation is to be consistent with other operating systems where paths + are also returned as bytes. This avoids problems mixing bytes and Unicode + elsewhere in the codebase. For more details and discussion see + . + + If encoding using ASCII and MBCS fails, return the original Unicode path. + """ + for encoding in ('ASCII', 'MBCS'): + try: + return path.encode(encoding) + except (UnicodeEncodeError, LookupError): + pass + return path + + +#---- self test code + +if __name__ == "__main__": + appname = "MyApp" + appauthor = "MyCompany" + + props = ("user_data_dir", + "user_config_dir", + "user_cache_dir", + "user_state_dir", + "user_log_dir", + "site_data_dir", + "site_config_dir") + + print("-- app dirs %s --" % __version__) + + print("-- app dirs (with optional 'version')") + dirs = AppDirs(appname, appauthor, version="1.0") + for prop in props: + print("%s: %s" % (prop, getattr(dirs, prop))) + + print("\n-- app dirs (without optional 'version')") + dirs = AppDirs(appname, appauthor) + for prop in props: + print("%s: %s" % (prop, getattr(dirs, prop))) + + print("\n-- app dirs (without optional 'appauthor')") + dirs = AppDirs(appname) + for prop in props: + print("%s: %s" % (prop, getattr(dirs, prop))) + + print("\n-- app dirs (with disabled 'appauthor')") + dirs = AppDirs(appname, appauthor=False) + for prop in props: + print("%s: %s" % (prop, getattr(dirs, prop))) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__init__.py b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__init__.py new file mode 100644 index 00000000..a1bbbbe3 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__init__.py @@ -0,0 +1,11 @@ +"""CacheControl import Interface. + +Make it easy to import from cachecontrol without long namespaces. +""" +__author__ = "Eric Larson" +__email__ = "eric@ionrock.org" +__version__ = "0.12.6" + +from .wrapper import CacheControl +from .adapter import CacheControlAdapter +from .controller import CacheController diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dc33c6969918fb6f063b076d69a5a1a2a31e2b64 GIT binary patch literal 513 zcmYjNyH3L}6m{CPX+sf6{D9XEO@IM`gb)ZZAOQJW_}1rbpZiB8cG-J&aE(bKW% z6}^Zc?(4ouisT0;dSHgd5b@xajEC!ob6(Enxw8SBrpkB+fnM4mVaiLHrRg zn63M}+1`G3@QE_XII2hOj*#!P`I+DzdqekD+pQ(sjMF+{Ot_MWK0^a zG{OzWo+VUR97(bQ?!5$PMp-BPH#2k_mi~#tybz<~oxljMAM`YP0Ll-?er_v<%C$y zYJynhA3RHbskW^61vYSRbq`D;rL3+#b?edhoO{X_qftblO@9CF=L4URKXGugaTt6H zPx~u$l1N&R1mCQnB}*7Z%nM$6iRZ9a_+^j;4*Nw|ibOaZ6oWEKBEX>(uSqhL0~x_P zmO~lCdn6C#NRD6AWULP4!BeJ<8ebAvPtVBogTLVGWIm-DC*_Xg~um)xhYj;e#~^M^a4-3ZWI7AJ%y+J5;{Zn)UY+b zqLdi6_pZn*jQKl)5lJ8?I-dp_BqLU|$~;leRbfN?T3#)!|LFVgE`G41Gow{jKF%sx zC~c!m${s^%;i?P&LG%cY`TJyM%4XK&&C#Z6vc*#+k6x^lDvq8l*XDk6?-!h#rO#C* zYdu>a_eIBjmM%(p+`P0S$Yj%`eHJmY37{i1rh@7NKyT4z5Wsmy`yl{B47~)&p{P*e zHy)5?dk*C3j_y6lfj*SnVXwzz?eAzB?66G!{Cvvo(503tlPy~tfz)|cD2(}qiBQk;MjZ$Y5_7&<~3^$5e?KLHmYQ_Mi9PhjRPq0k?gm=o$V0ES$G zBX(p>K`bWu8M;VD{Dez6_RYts>x zlLvRFLzj~i)pAH%e+o%BGit1X9e1_Vs%`43RW|IexaB%~(a*~CI_Nh#uMF7CL-zVM zp5Wo$cNOx=EU&(X>GlvhLIWD`mJNU~CAt?6|*W&WOq6 zM&#Hf+xzagcbs!>a_7Cv+#cubh3bQyZ=`KeqHU+Bb{Do%udbg^sB5?X?lY@ k{*`Fwc=1hH%T1vkq8psu1&bM2984Z_5r|j>(MN**3(=T;%m4rY literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..141d0204fdf5edc06413996f897b1fd821e23ca7 GIT binary patch literal 3047 zcmai0-Hsc#6(%`98jZACdA)IM$7v@;+f+rZZF`jQ~GK`!zD@l>pOW_pZ*cDk;hwP1tWk^82c*~h4rU;O9@VWs42K`R%cEQg`5lEu zXxlxE##3>arAlT=A|y05@5Wq;?zf*`m6 z08cravXR9*PsxOGhr3UjBb)D<8p3Rj9NslGpSPgqnsS@(Jn=@2r^F^B58z)x2h;Sj)G~8bNENpIRj*)wPE%eN@OmqYuX!P|c#r6Y&X+XcTnoN?=! z^#B+#Ypl^KTQ||hb6|<`RmIV-C z5vZxyGz4)v$>btZah3)u3ko5EcoM{FYe4)3oL@jcGt6vg5P{9ARGBLBECstT@K^+? z5FAZaozni+(qIUb^d~Y~gl2GWr}DpBkxA~s-sz4}@vsK0?Nt&VX$Lr(N!>YG#tG`G z33X#CA}(a1-DS=rCG=JBHIH#IQ4-clxdV19h66QI-fKvRctkhqDGUgC4V#)~awNFk z-QuX{vT;^<9c|r2@iK~^gZLSI1r8^UPkmre7ha#*v}^6NeYU!OcnOmb$o(;%v(1BH z0jY%4D!LH02a${8ddS26SR2o7tSsnVdqavqs{u=M2eEvUyVu zI6JkVPXlB0GYl_m?L7y|mF_7^KQW^n82wi>8t8?iDM{Z`KImGiz1~61tkPI#FkjdL zO$V^B+3w$o35+gpJn>E&s=K}dVGJxluU)mLt|CR(`!y!dtb@#6n!8_7>6YH?n)xH{ zAA#;VtOo<03eYlO(_svdp1Fl3-_ajUlfTYAMsoWS%LJDu|oO$<{)}5I9K{gl&8L z8}Q!nK9Ie`#W>?4#0Z4LZ-ZitH{0gHGJ_8ZS^OBp-^dv{2BL>?=uIfmHA82asLlow zhx9CnxzlAj4-+v_+6pJRb|FY+g?K>?yI)X!!-V#*IvL@nd-_OC&k3yeFVm-p#$1{h z73u1o%NYFMN3nk=$zTJExB8bE?A@vk*(+e!1b*$nO`V)*w@{H<7S++ewt3I~ z3K9-D-KJ&;N(Vi=+7!po@xspbVeJ3L&qHWCgRj6mf*{v!Tn5jW>bZmA0G=Mq!R`+r zd4Yr_jTRydwI7Cyj4vTE33WRRA1|Y%(#YR~U31-=SZ&-ZaaO%kXBA_SB#`o$m~Mpe zgK+_dW6V_wZ1<>V!d3 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..193746d9410e51099c332c03a4cf99460d8c0567 GIT binary patch literal 1746 zcma)7&2G~`5Z<*N$8j4PS|~yS@2vtH6P!K2=<9au(8~=6f6gA3; z7IEw=w8y-Xubg-VPRy+9IJ80PRy&>Dne2Qs^G))pUN;FW>*tTJ4^%>a;bC@Za9D$# zJO;r?k1)yK17lqiyr!F1K9A1sQGc zaW}PIzT33=k+8fV_Ibd=)C+fVkECs(H{*S0=%<#KSdNwM3hpp7ar)fy!dAe8NE}+s zb5k!09dXz;e*-$wq?z_MatAIRW|snoHQ31`5S;WVB%)v<$E2s`DfF})I)Y{f-0Q3c z;LWVI?j(EzvAg(8u~4V5H()1N!jv45@9^*znb7WpW-Hw&-7K=>?6nY)m?)W+aKE3a z1AaIm0zda>y^{uUC-&mjFpM2{z*+0tF6Vx0e`ha!7C-Hytz#eXkVT>+tLR2yDk48W zwBy4}-Qg)dmPm+nRG)%wgT+}5A~y6C5$2?|3oRQ!{-E?oSx&~*)V(gralugMgq9#fz%5EtmGF`ZT6e}x&WCh1Foz6)9H z6-wQxSAB0FP6bU;CP4|D6pd!nLdx?H^C1Zbxv|q1Cnb3Z@W!BtJ*e;T$rF*{`C&O j06ER{{5L{QgY=#$=X8QH<9R-UFL2yt4w|;8HkSSZF%?E( literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..73497e44c7e93746fb71d47fb6da423695589f8c GIT binary patch literal 720 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0605b24377e4dfcfd2e0b706afc85abd9fde07d1 GIT binary patch literal 2139 zcmZ`)&2Aev5GJ`RX}y+Jr@u~GB&<&n5ZgdcEsz$DgQV%jJ-9_$U07;KS!=I$HzZ}* zf_k!xzJ`7DEA6%DA+OL=XSlMhrV0fPxg2u%ee*;8ytWn-X#CGVe*1fckiYO_v4!xl z3*B-MiYS_q5$#b*z9)*Q;DV??v-6-AsPKSv8*gD3>C&pTcjmPH;l~8O7h3=yyU^_( z2u*raksebN&Ukh8x$bkDkjc z>&xW$Wt!>NMwX>E@`Mr+b7%)6(DF&W%%v&Dx#E%!N?!DjbmI7Am?lF$Nnw}Mn(Gs7 z&fGA~54q7&@icb@m)=x=JQ!&6giEk68S0$7p>%uzxAN5TBrB|j{a_Jo=~JDIorbHD zIXqZ*LpYO-<39~OAZaZhTR1<`qrNt_Mj*K=#(ea z2#siyPQO^fY5Qh#g1m1Ux(vH_*~c)MkxMAMEBZTg6dXp+8KgbiH)y@fs&yd_wYyCg zA*$B=yBnAY_EcdmN7_Jf*K|E+(?-qe?O7o{fdz}zPF7+%eY70!+_De})YompIo{+U zzk>v+_!QBv%77V5VqKd$oCo&srgHe7Ld$R`p6{zNU z)THaJ>4T*>J-_|;r_mFzf&ed}?l6&H&Mt!)Lx=!5ydvf?jEyUZ&J5D42HW(GuR?qW zYsig>Nu91XmlxZjv&?63<@G!P137Y4sHBtcur&B2e2WzQpAc=sFQO5fZY-mTINr~3 z7tH*JBUSX689rl*)#Cx`-{t*uk#{%Pe~YzfQLM$?xd&olNE-HrKR- zP(>nyS%W*wJrsAS(6=7O0<=4P_{3mJdVCQLSEEMMj_yUPab!>j&vC`lqJEN_^}mZ( TEVEWcPiutV;Zxwf*AD&#^|uIm literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f16dd5656a8b722697ace10d9a91ff25c8513fbe GIT binary patch literal 4698 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 Ze}(wA?<_eBj^~yOzPE63;q=1ke*?!*K$!pl literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3321bc20bc190fc19427cce39a6fe4b26b238bed GIT binary patch literal 4200 zcmbtX&2JmW6`z@1?k+z>(X#5uPMWZdn}(?^`9pQnLNSusb(4N5spYs1QDd{>tRzbO z((F=+*dH4W}CTcu9>gqG3H430jn0IC$sp@{Fup{%s*f<9~KX+>a65z ztWtP{Q`u^TYquF~c7oatnx}6BQTR?P3R_V$Uh1$GVE83vb`K^WN<+>a;Ph zold>B(+G7o4nL0lc)t_YXx-?cb_VYayio}xW&@tEfsp(VKb$XCbtZ^v^*UHP>p1q> zvd*qwTb5z1Ex|u*(HAoD^&_Tcz~YNrOL4Qa)Twtac3UKHC@+4r6^4zAyPMnb_dBm| z(A<*07q(~6gAdPSJM+DSQ+=#ddTCA3q|jvpPxic~W?_%zxzyb}){ z{3hOL6(nQ?41i)z3TZvyfCbDC6Wc?RXND$sQiE4rS&%cB_heDd;+vHvc?#d0fxu~< zTN~*`t=0&SqbG|7z2?pu4cu95^8?9YfAAM?_04o!1y6ggrAXCV#Q7> z80{IjhwLWwb%5Dz4{tWkf#yxWfYyw39=dhj&(v9xk?snUZes5^>K}40yDyNt74c<&lJ;&3wMV(pQo#o{H+cQoId21a&eGi-$)chvPO#G1~qxx;!dpIB&7 zcAK4Oai!6&1&!$X;_;4(tL^o++}G|_7|2jX+KJ*I?nc_(L$BU$X-9=YL|^Px%y)8XnFBwFMg`p!hm|?nFk_){~h3rH2^ry;Edm=XMDg&ntO&; za;xfFkWm?o69FJDJ)-+WM9?!}dE?PzJc{ns%lVCVAR~Y8*Zqp4E@DXM?vkc|q*Pm} zQ#9bh#z7n_?QFDFGl+HZE%fT^-8fxUu@%8yT_y5e+F=2?Q>M}xbI?yP9lZd;1dL(} zJ`Ypm>=GHtI%5gGAd1$6QOvdpqmbaoM)@Z?63T%RMIC_zp=VxNYcSMkWWXte-7gz6 z*$6tAfkCW8fk0)c^JJ(swtGGi(ni3tWCj5%6WeKDIxw1xFo_Tbj!4QdRBlJ8-=J@i zu{cYd(b^T(E5@0DlMoLVkT?%>xiHt?Q*)(r15f5Dk@npb9&vU9VUD8xLy>a&gZP}1 zQ?d8qUBvi}{c^jj%H;6nq0^LMhuT&-Xvs2S9vrM&i_1Y7?%gPNRijZ~znUu#pYhaR zZm(~LwRrJ(QuEi;%h2KKiHn+0fv88O?462L(26!fb2MO&T*sqmWd2mrC@ zo)Nw0$0EWsj|m)-Pf_r_f!D-eaz*tVdPbHb>*Nwfm(vnvN4|IIbK*epli9ubvEz>y zOq@Frl*sddIV#YQ5c?J|cLtafz#NcGzfp)l0cRnM0QW;F;kOQUtG9@(5cw&{(X=E_|5+t92G-%Ba14&hZ%Z9SzTeGJbll(eIBAPn$4 zhjimv3*`4-mJk6vk^8ccc_Lh|Ou+SjxVrk;vt+pXCz9bA?tOLQtO@tNhONE1m~F$o zO}&mTXq}NF8Ka#H)y0YrdmsdFoyd%$@DIf_levka*xOf-c5@Fj+zId*Zd!a-Il!< zy;nTP^SpTvDIYVHlA?&BOltWBwQhsxJpNWL4*ymfHB?_38(AC{sL^7YL%RT<$xui; yfMO7ve3ZsXmv|Z&68N-}rc!hElSJ0uN~(wJlq8}#5UM}%69rxn^Ok3O_J09lZkgZ! literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..94938f879f459a57c496d23eaac24df2903f3236 GIT binary patch literal 637 zcmYjPJ#Q2-5VgHuzT90BLW8KNkhVCs1%x7^OGR-Fp}FQTYm;5#-8Ht4h?B1hh>HIJ zW!n54w^aNCl#20QBJEgydgGZLzZvhl>2wc)J^Atd{S86rPjH5of%6)+c?!T0#}YMo ziE-dWk|tV4z%!ok^c!BrJbH_A`WHiTj{UTOT~NJm(G_Zm!&~f9^~mCF>QaXtagmE%;xdkZrd#UJFT#nVzX?V? zkM22$iWhm}$7K+-5|*7Czh{K5nXETL`%xv;}A~*qyfTc{gmy-vb#!$ z?tON5c8&Bt__wEpZB(IZHCwlel^24~E-NAA?DP32`$9ec7-Gfhi)eYLi~g>=9*RrN zloI-x`sye1!D9p!<}m;oA7P5gaNVYKf+s{DLNw17XNzEYqNm{Z?dfq~eYYW}7de0f ZIP>&X)A6+w$Kh8nM*vVWL3ptK{RblcnHm59 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/_cmd.py b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/_cmd.py new file mode 100644 index 00000000..f1e0ad94 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/_cmd.py @@ -0,0 +1,57 @@ +import logging + +from pip._vendor import requests + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.cache import DictCache +from pip._vendor.cachecontrol.controller import logger + +from argparse import ArgumentParser + + +def setup_logging(): + logger.setLevel(logging.DEBUG) + handler = logging.StreamHandler() + logger.addHandler(handler) + + +def get_session(): + adapter = CacheControlAdapter( + DictCache(), cache_etags=True, serializer=None, heuristic=None + ) + sess = requests.Session() + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + sess.cache_controller = adapter.controller + return sess + + +def get_args(): + parser = ArgumentParser() + parser.add_argument("url", help="The URL to try and cache") + return parser.parse_args() + + +def main(args=None): + args = get_args() + sess = get_session() + + # Make a request to get a response + resp = sess.get(args.url) + + # Turn on logging + setup_logging() + + # try setting the cache + sess.cache_controller.cache_response(resp.request, resp.raw) + + # Now try to get it + if sess.cache_controller.cached_request(resp.request): + print("Cached!") + else: + print("Not cached :(") + + +if __name__ == "__main__": + main() diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/adapter.py b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/adapter.py new file mode 100644 index 00000000..815650e8 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/adapter.py @@ -0,0 +1,133 @@ +import types +import functools +import zlib + +from pip._vendor.requests.adapters import HTTPAdapter + +from .controller import CacheController +from .cache import DictCache +from .filewrapper import CallbackFileWrapper + + +class CacheControlAdapter(HTTPAdapter): + invalidating_methods = {"PUT", "DELETE"} + + def __init__( + self, + cache=None, + cache_etags=True, + controller_class=None, + serializer=None, + heuristic=None, + cacheable_methods=None, + *args, + **kw + ): + super(CacheControlAdapter, self).__init__(*args, **kw) + self.cache = DictCache() if cache is None else cache + self.heuristic = heuristic + self.cacheable_methods = cacheable_methods or ("GET",) + + controller_factory = controller_class or CacheController + self.controller = controller_factory( + self.cache, cache_etags=cache_etags, serializer=serializer + ) + + def send(self, request, cacheable_methods=None, **kw): + """ + Send a request. Use the request information to see if it + exists in the cache and cache the response if we need to and can. + """ + cacheable = cacheable_methods or self.cacheable_methods + if request.method in cacheable: + try: + cached_response = self.controller.cached_request(request) + except zlib.error: + cached_response = None + if cached_response: + return self.build_response(request, cached_response, from_cache=True) + + # check for etags and add headers if appropriate + request.headers.update(self.controller.conditional_headers(request)) + + resp = super(CacheControlAdapter, self).send(request, **kw) + + return resp + + def build_response( + self, request, response, from_cache=False, cacheable_methods=None + ): + """ + Build a response by making a request or using the cache. + + This will end up calling send and returning a potentially + cached response + """ + cacheable = cacheable_methods or self.cacheable_methods + if not from_cache and request.method in cacheable: + # Check for any heuristics that might update headers + # before trying to cache. + if self.heuristic: + response = self.heuristic.apply(response) + + # apply any expiration heuristics + if response.status == 304: + # We must have sent an ETag request. This could mean + # that we've been expired already or that we simply + # have an etag. In either case, we want to try and + # update the cache if that is the case. + cached_response = self.controller.update_cached_response( + request, response + ) + + if cached_response is not response: + from_cache = True + + # We are done with the server response, read a + # possible response body (compliant servers will + # not return one, but we cannot be 100% sure) and + # release the connection back to the pool. + response.read(decode_content=False) + response.release_conn() + + response = cached_response + + # We always cache the 301 responses + elif response.status == 301: + self.controller.cache_response(request, response) + else: + # Wrap the response file with a wrapper that will cache the + # response when the stream has been consumed. + response._fp = CallbackFileWrapper( + response._fp, + functools.partial( + self.controller.cache_response, request, response + ), + ) + if response.chunked: + super_update_chunk_length = response._update_chunk_length + + def _update_chunk_length(self): + super_update_chunk_length() + if self.chunk_left == 0: + self._fp._close() + + response._update_chunk_length = types.MethodType( + _update_chunk_length, response + ) + + resp = super(CacheControlAdapter, self).build_response(request, response) + + # See if we should invalidate the cache. + if request.method in self.invalidating_methods and resp.ok: + cache_url = self.controller.cache_url(request.url) + self.cache.delete(cache_url) + + # Give the request a from_cache attr to let people use it + resp.from_cache = from_cache + + return resp + + def close(self): + self.cache.close() + super(CacheControlAdapter, self).close() diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/cache.py b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/cache.py new file mode 100644 index 00000000..94e07732 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/cache.py @@ -0,0 +1,39 @@ +""" +The cache object API for implementing caches. The default is a thread +safe in-memory dictionary. +""" +from threading import Lock + + +class BaseCache(object): + + def get(self, key): + raise NotImplementedError() + + def set(self, key, value): + raise NotImplementedError() + + def delete(self, key): + raise NotImplementedError() + + def close(self): + pass + + +class DictCache(BaseCache): + + def __init__(self, init_dict=None): + self.lock = Lock() + self.data = init_dict or {} + + def get(self, key): + return self.data.get(key, None) + + def set(self, key, value): + with self.lock: + self.data.update({key: value}) + + def delete(self, key): + with self.lock: + if key in self.data: + self.data.pop(key) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__init__.py new file mode 100644 index 00000000..0e1658fa --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__init__.py @@ -0,0 +1,2 @@ +from .file_cache import FileCache # noqa +from .redis_cache import RedisCache # noqa diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fe74dd9b74bb4be1ca08514c8eb97535716fd867 GIT binary patch literal 257 zcmWIL<>g`k0)_V0gfJle7{oyaOhAqU5Esh;i4=wu#vF!R#wbQc5SuB7DVI5l8OUZ1 zX3%7L$p}=U$#{#?Ei)(8IWajS70BTVN=?Zu2J`$hS#EKq0p;S8L6Suvqi=B+f#jhg z%s`Qq3`J}}3QYX+(J#p@&@ad=&@Ig?NKDR7P0=mSNKMVrElkfUu`IAi1Ig*fm!;;V xew5da?DaNyrb_x%ha{xd&hI7a*K)nv!nS(k_KQOWDZkT9j~$+o?Trx{l$U)E(8j zHA<$Q@F+PT*$tZr|2U9`l;A4@vDRZl5sy(HcG=Y)IQe@VD6oKvg2&I7&% z;|)$9kyia2_CVS#s$DL)$kaK5K6L&2aUpi%q%WXz#V|X0revO`LMAA*cx+&N_;%nc z=0Fq~(itlmwD?)~Nr%jsvK5$m%H;cI##xRr7`to6TpXJ=6q(mbaz>4bn>JCN@_P)- z)U+gAN8k8>3HIDJ+wx`=WahByOoD>4Th!13x=E-pwXFNnEO47I} zLX{s0)fZBNp_q2w9?YQ^fM5UPF)UjQO#c&v7oK+K@q;_z!z|1t7ZUWCUxBJ{>BI0v zJ_$#YLWTYKL|j^pJHYS=2U($FNNK(mJ^|?@&K5)AK!qoRID{y>b7^geLrbZJrb{BN zx(@ynrxQ^nfwvHnzXU7wwMBPpga$5p@>e*y_HZ=Lr7{a8!i@GoMkFeiFLbS!OK~D( zl|LqNYA|b<0QFQ}Z3WscMB0<@zZ0mOp%nzJ*&zqxe=(eyoS17INN^wYsp?H2v`)~(yx6Ra|UWOT`n=+DT^Qfz1q zA^e9bxI-+l*8nLjK#ILZ?ZFI(;#wK1nS2UHU|7hjK(sAI%=J~=S36g``6S~e zloys-$Kr+j9ZIrZ{|yrX3sRUX>Ocq$Ag<~(WQ|LPf=puJ{Hq7uu{5-V&eBk8dR@^u zoZQfw+gJwioX*&?th%aZ%Ic>J)9}^+s{z)|=y&hWYz5FZ1c)03;Hu`#DV_OR$*RI! zISXC1;Ls)VCTyTpuN-2I+#AJEx(2e4AHkHybj8CqxhSy!Nw^}BDi5*Bm`v4sD-GH>Lv*sl?g50HeL6KW!(el3VSe@&#DxuUaqFV-ven`E2E4xubTiD zu~aB=3bM;UaIqA_doh12v6izdZ=mj90BN@Y`T(rZ!%?JzC<17lz%3xs^(gv!5~tOS z`~ZY?9iSi3ZUhA==O$OHP2WRxyGTAqvhuLu(9QDaK+s7A4tdV2>lP(H2JbO&x>xgj zuVJL#a56f22baDDq=Gxdml7fsoeTIur+?muQb0;~x#k;)^Kif}`JM_Ujyi31m<4z#T+atoRY@;oJ;t7kGESH;Y!G^4x@UftK= zLTz?r!bAIQIJ~O-t6pL}U%$NjixctB@@)oQkIgwLXL+JyK+wJ&IB{S1`VgolQ<9rU&U`QI;kQi9*lPkIagkD+}MZ{Xq zsQf^W;KUWtTd@4|$K0-}d6iYWbx|eh2PJn;kCe)Hj}PD5N7cgv)Xn1)Rmf7$Q%ABa ztS<02n~5pE@?y8bf4$| zHX`P5xBO7qE2cx(YWWBC(b4EW$Xuf_&ffL*z%`gIQY?yopp2J0w~s++xVhK6ZrB>i zqxh}imR<5Sc|bmKr}G+W{f1u#Yx0@GDUL^fn&%Pm;V=?MR(fnO5c|z1wgGr@;Ua>d_rGq31)A;O75By8}i& zzqMqCX>m|$k>)DVS#cG{rpm{b3U7jneuc%jV(`x9p+ zYNL$6ep4v|5mi~{z~XmNl%h~d3R?oT5^y7@>w~j}i+4o3V!-yfE^CAdCcnUD7kzdE zBq$?j^)2kbB3Y?8ZpU%FDrKFcJc;AuI>|eYzJ+&VlV~iZE;bKP!Y~Z7?l8En@4g*@cr5qtxUnne_#w}aZ&8oX)Dyet0Y&+vN8Hm}Dl9lRdhkH+x1D}Lm)4Ig&| P_AuNA8+8KJKH>iYYnMmd literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py new file mode 100644 index 00000000..607b9452 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py @@ -0,0 +1,146 @@ +import hashlib +import os +from textwrap import dedent + +from ..cache import BaseCache +from ..controller import CacheController + +try: + FileNotFoundError +except NameError: + # py2.X + FileNotFoundError = (IOError, OSError) + + +def _secure_open_write(filename, fmode): + # We only want to write to this file, so open it in write only mode + flags = os.O_WRONLY + + # os.O_CREAT | os.O_EXCL will fail if the file already exists, so we only + # will open *new* files. + # We specify this because we want to ensure that the mode we pass is the + # mode of the file. + flags |= os.O_CREAT | os.O_EXCL + + # Do not follow symlinks to prevent someone from making a symlink that + # we follow and insecurely open a cache file. + if hasattr(os, "O_NOFOLLOW"): + flags |= os.O_NOFOLLOW + + # On Windows we'll mark this file as binary + if hasattr(os, "O_BINARY"): + flags |= os.O_BINARY + + # Before we open our file, we want to delete any existing file that is + # there + try: + os.remove(filename) + except (IOError, OSError): + # The file must not exist already, so we can just skip ahead to opening + pass + + # Open our file, the use of os.O_CREAT | os.O_EXCL will ensure that if a + # race condition happens between the os.remove and this line, that an + # error will be raised. Because we utilize a lockfile this should only + # happen if someone is attempting to attack us. + fd = os.open(filename, flags, fmode) + try: + return os.fdopen(fd, "wb") + + except: + # An error occurred wrapping our FD in a file object + os.close(fd) + raise + + +class FileCache(BaseCache): + + def __init__( + self, + directory, + forever=False, + filemode=0o0600, + dirmode=0o0700, + use_dir_lock=None, + lock_class=None, + ): + + if use_dir_lock is not None and lock_class is not None: + raise ValueError("Cannot use use_dir_lock and lock_class together") + + try: + from lockfile import LockFile + from lockfile.mkdirlockfile import MkdirLockFile + except ImportError: + notice = dedent( + """ + NOTE: In order to use the FileCache you must have + lockfile installed. You can install it via pip: + pip install lockfile + """ + ) + raise ImportError(notice) + + else: + if use_dir_lock: + lock_class = MkdirLockFile + + elif lock_class is None: + lock_class = LockFile + + self.directory = directory + self.forever = forever + self.filemode = filemode + self.dirmode = dirmode + self.lock_class = lock_class + + @staticmethod + def encode(x): + return hashlib.sha224(x.encode()).hexdigest() + + def _fn(self, name): + # NOTE: This method should not change as some may depend on it. + # See: https://github.com/ionrock/cachecontrol/issues/63 + hashed = self.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key): + name = self._fn(key) + try: + with open(name, "rb") as fh: + return fh.read() + + except FileNotFoundError: + return None + + def set(self, key, value): + name = self._fn(key) + + # Make sure the directory exists + try: + os.makedirs(os.path.dirname(name), self.dirmode) + except (IOError, OSError): + pass + + with self.lock_class(name) as lock: + # Write our actual file + with _secure_open_write(lock.path, self.filemode) as fh: + fh.write(value) + + def delete(self, key): + name = self._fn(key) + if not self.forever: + try: + os.remove(name) + except FileNotFoundError: + pass + + +def url_to_file_path(url, filecache): + """Return the file cache path based on the URL. + + This does not ensure the file exists! + """ + key = CacheController.cache_url(url) + return filecache._fn(key) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py new file mode 100644 index 00000000..ed705ce7 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py @@ -0,0 +1,33 @@ +from __future__ import division + +from datetime import datetime +from pip._vendor.cachecontrol.cache import BaseCache + + +class RedisCache(BaseCache): + + def __init__(self, conn): + self.conn = conn + + def get(self, key): + return self.conn.get(key) + + def set(self, key, value, expires=None): + if not expires: + self.conn.set(key, value) + else: + expires = expires - datetime.utcnow() + self.conn.setex(key, int(expires.total_seconds()), value) + + def delete(self, key): + self.conn.delete(key) + + def clear(self): + """Helper for clearing all the keys in a database. Use with + caution!""" + for key in self.conn.keys(): + self.conn.delete(key) + + def close(self): + """Redis uses connection pooling, no need to close the connection.""" + pass diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/compat.py b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/compat.py new file mode 100644 index 00000000..33b5aed0 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/compat.py @@ -0,0 +1,29 @@ +try: + from urllib.parse import urljoin +except ImportError: + from urlparse import urljoin + + +try: + import cPickle as pickle +except ImportError: + import pickle + + +# Handle the case where the requests module has been patched to not have +# urllib3 bundled as part of its source. +try: + from pip._vendor.requests.packages.urllib3.response import HTTPResponse +except ImportError: + from pip._vendor.urllib3.response import HTTPResponse + +try: + from pip._vendor.requests.packages.urllib3.util import is_fp_closed +except ImportError: + from pip._vendor.urllib3.util import is_fp_closed + +# Replicate some six behaviour +try: + text_type = unicode +except NameError: + text_type = str diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/controller.py b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/controller.py new file mode 100644 index 00000000..dafe55ca --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/controller.py @@ -0,0 +1,376 @@ +""" +The httplib2 algorithms ported for use with requests. +""" +import logging +import re +import calendar +import time +from email.utils import parsedate_tz + +from pip._vendor.requests.structures import CaseInsensitiveDict + +from .cache import DictCache +from .serialize import Serializer + + +logger = logging.getLogger(__name__) + +URI = re.compile(r"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?") + + +def parse_uri(uri): + """Parses a URI using the regex given in Appendix B of RFC 3986. + + (scheme, authority, path, query, fragment) = parse_uri(uri) + """ + groups = URI.match(uri).groups() + return (groups[1], groups[3], groups[4], groups[6], groups[8]) + + +class CacheController(object): + """An interface to see if request should cached or not. + """ + + def __init__( + self, cache=None, cache_etags=True, serializer=None, status_codes=None + ): + self.cache = DictCache() if cache is None else cache + self.cache_etags = cache_etags + self.serializer = serializer or Serializer() + self.cacheable_status_codes = status_codes or (200, 203, 300, 301) + + @classmethod + def _urlnorm(cls, uri): + """Normalize the URL to create a safe key for the cache""" + (scheme, authority, path, query, fragment) = parse_uri(uri) + if not scheme or not authority: + raise Exception("Only absolute URIs are allowed. uri = %s" % uri) + + scheme = scheme.lower() + authority = authority.lower() + + if not path: + path = "/" + + # Could do syntax based normalization of the URI before + # computing the digest. See Section 6.2.2 of Std 66. + request_uri = query and "?".join([path, query]) or path + defrag_uri = scheme + "://" + authority + request_uri + + return defrag_uri + + @classmethod + def cache_url(cls, uri): + return cls._urlnorm(uri) + + def parse_cache_control(self, headers): + known_directives = { + # https://tools.ietf.org/html/rfc7234#section-5.2 + "max-age": (int, True), + "max-stale": (int, False), + "min-fresh": (int, True), + "no-cache": (None, False), + "no-store": (None, False), + "no-transform": (None, False), + "only-if-cached": (None, False), + "must-revalidate": (None, False), + "public": (None, False), + "private": (None, False), + "proxy-revalidate": (None, False), + "s-maxage": (int, True), + } + + cc_headers = headers.get("cache-control", headers.get("Cache-Control", "")) + + retval = {} + + for cc_directive in cc_headers.split(","): + if not cc_directive.strip(): + continue + + parts = cc_directive.split("=", 1) + directive = parts[0].strip() + + try: + typ, required = known_directives[directive] + except KeyError: + logger.debug("Ignoring unknown cache-control directive: %s", directive) + continue + + if not typ or not required: + retval[directive] = None + if typ: + try: + retval[directive] = typ(parts[1].strip()) + except IndexError: + if required: + logger.debug( + "Missing value for cache-control " "directive: %s", + directive, + ) + except ValueError: + logger.debug( + "Invalid value for cache-control directive " "%s, must be %s", + directive, + typ.__name__, + ) + + return retval + + def cached_request(self, request): + """ + Return a cached response if it exists in the cache, otherwise + return False. + """ + cache_url = self.cache_url(request.url) + logger.debug('Looking up "%s" in the cache', cache_url) + cc = self.parse_cache_control(request.headers) + + # Bail out if the request insists on fresh data + if "no-cache" in cc: + logger.debug('Request header has "no-cache", cache bypassed') + return False + + if "max-age" in cc and cc["max-age"] == 0: + logger.debug('Request header has "max_age" as 0, cache bypassed') + return False + + # Request allows serving from the cache, let's see if we find something + cache_data = self.cache.get(cache_url) + if cache_data is None: + logger.debug("No cache entry available") + return False + + # Check whether it can be deserialized + resp = self.serializer.loads(request, cache_data) + if not resp: + logger.warning("Cache entry deserialization failed, entry ignored") + return False + + # If we have a cached 301, return it immediately. We don't + # need to test our response for other headers b/c it is + # intrinsically "cacheable" as it is Permanent. + # See: + # https://tools.ietf.org/html/rfc7231#section-6.4.2 + # + # Client can try to refresh the value by repeating the request + # with cache busting headers as usual (ie no-cache). + if resp.status == 301: + msg = ( + 'Returning cached "301 Moved Permanently" response ' + "(ignoring date and etag information)" + ) + logger.debug(msg) + return resp + + headers = CaseInsensitiveDict(resp.headers) + if not headers or "date" not in headers: + if "etag" not in headers: + # Without date or etag, the cached response can never be used + # and should be deleted. + logger.debug("Purging cached response: no date or etag") + self.cache.delete(cache_url) + logger.debug("Ignoring cached response: no date") + return False + + now = time.time() + date = calendar.timegm(parsedate_tz(headers["date"])) + current_age = max(0, now - date) + logger.debug("Current age based on date: %i", current_age) + + # TODO: There is an assumption that the result will be a + # urllib3 response object. This may not be best since we + # could probably avoid instantiating or constructing the + # response until we know we need it. + resp_cc = self.parse_cache_control(headers) + + # determine freshness + freshness_lifetime = 0 + + # Check the max-age pragma in the cache control header + if "max-age" in resp_cc: + freshness_lifetime = resp_cc["max-age"] + logger.debug("Freshness lifetime from max-age: %i", freshness_lifetime) + + # If there isn't a max-age, check for an expires header + elif "expires" in headers: + expires = parsedate_tz(headers["expires"]) + if expires is not None: + expire_time = calendar.timegm(expires) - date + freshness_lifetime = max(0, expire_time) + logger.debug("Freshness lifetime from expires: %i", freshness_lifetime) + + # Determine if we are setting freshness limit in the + # request. Note, this overrides what was in the response. + if "max-age" in cc: + freshness_lifetime = cc["max-age"] + logger.debug( + "Freshness lifetime from request max-age: %i", freshness_lifetime + ) + + if "min-fresh" in cc: + min_fresh = cc["min-fresh"] + # adjust our current age by our min fresh + current_age += min_fresh + logger.debug("Adjusted current age from min-fresh: %i", current_age) + + # Return entry if it is fresh enough + if freshness_lifetime > current_age: + logger.debug('The response is "fresh", returning cached response') + logger.debug("%i > %i", freshness_lifetime, current_age) + return resp + + # we're not fresh. If we don't have an Etag, clear it out + if "etag" not in headers: + logger.debug('The cached response is "stale" with no etag, purging') + self.cache.delete(cache_url) + + # return the original handler + return False + + def conditional_headers(self, request): + cache_url = self.cache_url(request.url) + resp = self.serializer.loads(request, self.cache.get(cache_url)) + new_headers = {} + + if resp: + headers = CaseInsensitiveDict(resp.headers) + + if "etag" in headers: + new_headers["If-None-Match"] = headers["ETag"] + + if "last-modified" in headers: + new_headers["If-Modified-Since"] = headers["Last-Modified"] + + return new_headers + + def cache_response(self, request, response, body=None, status_codes=None): + """ + Algorithm for caching requests. + + This assumes a requests Response object. + """ + # From httplib2: Don't cache 206's since we aren't going to + # handle byte range requests + cacheable_status_codes = status_codes or self.cacheable_status_codes + if response.status not in cacheable_status_codes: + logger.debug( + "Status code %s not in %s", response.status, cacheable_status_codes + ) + return + + response_headers = CaseInsensitiveDict(response.headers) + + # If we've been given a body, our response has a Content-Length, that + # Content-Length is valid then we can check to see if the body we've + # been given matches the expected size, and if it doesn't we'll just + # skip trying to cache it. + if ( + body is not None + and "content-length" in response_headers + and response_headers["content-length"].isdigit() + and int(response_headers["content-length"]) != len(body) + ): + return + + cc_req = self.parse_cache_control(request.headers) + cc = self.parse_cache_control(response_headers) + + cache_url = self.cache_url(request.url) + logger.debug('Updating cache with response from "%s"', cache_url) + + # Delete it from the cache if we happen to have it stored there + no_store = False + if "no-store" in cc: + no_store = True + logger.debug('Response header has "no-store"') + if "no-store" in cc_req: + no_store = True + logger.debug('Request header has "no-store"') + if no_store and self.cache.get(cache_url): + logger.debug('Purging existing cache entry to honor "no-store"') + self.cache.delete(cache_url) + if no_store: + return + + # https://tools.ietf.org/html/rfc7234#section-4.1: + # A Vary header field-value of "*" always fails to match. + # Storing such a response leads to a deserialization warning + # during cache lookup and is not allowed to ever be served, + # so storing it can be avoided. + if "*" in response_headers.get("vary", ""): + logger.debug('Response header has "Vary: *"') + return + + # If we've been given an etag, then keep the response + if self.cache_etags and "etag" in response_headers: + logger.debug("Caching due to etag") + self.cache.set( + cache_url, self.serializer.dumps(request, response, body=body) + ) + + # Add to the cache any 301s. We do this before looking that + # the Date headers. + elif response.status == 301: + logger.debug("Caching permanant redirect") + self.cache.set(cache_url, self.serializer.dumps(request, response)) + + # Add to the cache if the response headers demand it. If there + # is no date header then we can't do anything about expiring + # the cache. + elif "date" in response_headers: + # cache when there is a max-age > 0 + if "max-age" in cc and cc["max-age"] > 0: + logger.debug("Caching b/c date exists and max-age > 0") + self.cache.set( + cache_url, self.serializer.dumps(request, response, body=body) + ) + + # If the request can expire, it means we should cache it + # in the meantime. + elif "expires" in response_headers: + if response_headers["expires"]: + logger.debug("Caching b/c of expires header") + self.cache.set( + cache_url, self.serializer.dumps(request, response, body=body) + ) + + def update_cached_response(self, request, response): + """On a 304 we will get a new set of headers that we want to + update our cached value with, assuming we have one. + + This should only ever be called when we've sent an ETag and + gotten a 304 as the response. + """ + cache_url = self.cache_url(request.url) + + cached_response = self.serializer.loads(request, self.cache.get(cache_url)) + + if not cached_response: + # we didn't have a cached response + return response + + # Lets update our headers with the headers from the new request: + # http://tools.ietf.org/html/draft-ietf-httpbis-p4-conditional-26#section-4.1 + # + # The server isn't supposed to send headers that would make + # the cached body invalid. But... just in case, we'll be sure + # to strip out ones we know that might be problmatic due to + # typical assumptions. + excluded_headers = ["content-length"] + + cached_response.headers.update( + dict( + (k, v) + for k, v in response.headers.items() + if k.lower() not in excluded_headers + ) + ) + + # we want a 200 b/c we have content via the cache + cached_response.status = 200 + + # update our cache + self.cache.set(cache_url, self.serializer.dumps(request, cached_response)) + + return cached_response diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/filewrapper.py new file mode 100644 index 00000000..30ed4c5a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/filewrapper.py @@ -0,0 +1,80 @@ +from io import BytesIO + + +class CallbackFileWrapper(object): + """ + Small wrapper around a fp object which will tee everything read into a + buffer, and when that file is closed it will execute a callback with the + contents of that buffer. + + All attributes are proxied to the underlying file object. + + This class uses members with a double underscore (__) leading prefix so as + not to accidentally shadow an attribute. + """ + + def __init__(self, fp, callback): + self.__buf = BytesIO() + self.__fp = fp + self.__callback = callback + + def __getattr__(self, name): + # The vaguaries of garbage collection means that self.__fp is + # not always set. By using __getattribute__ and the private + # name[0] allows looking up the attribute value and raising an + # AttributeError when it doesn't exist. This stop thigns from + # infinitely recursing calls to getattr in the case where + # self.__fp hasn't been set. + # + # [0] https://docs.python.org/2/reference/expressions.html#atom-identifiers + fp = self.__getattribute__("_CallbackFileWrapper__fp") + return getattr(fp, name) + + def __is_fp_closed(self): + try: + return self.__fp.fp is None + + except AttributeError: + pass + + try: + return self.__fp.closed + + except AttributeError: + pass + + # We just don't cache it then. + # TODO: Add some logging here... + return False + + def _close(self): + if self.__callback: + self.__callback(self.__buf.getvalue()) + + # We assign this to None here, because otherwise we can get into + # really tricky problems where the CPython interpreter dead locks + # because the callback is holding a reference to something which + # has a __del__ method. Setting this to None breaks the cycle + # and allows the garbage collector to do it's thing normally. + self.__callback = None + + def read(self, amt=None): + data = self.__fp.read(amt) + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data + + def _safe_read(self, amt): + data = self.__fp._safe_read(amt) + if amt == 2 and data == b"\r\n": + # urllib executes this read to toss the CRLF at the end + # of the chunk. + return data + + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/heuristics.py b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/heuristics.py new file mode 100644 index 00000000..6c0e9790 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/heuristics.py @@ -0,0 +1,135 @@ +import calendar +import time + +from email.utils import formatdate, parsedate, parsedate_tz + +from datetime import datetime, timedelta + +TIME_FMT = "%a, %d %b %Y %H:%M:%S GMT" + + +def expire_after(delta, date=None): + date = date or datetime.utcnow() + return date + delta + + +def datetime_to_header(dt): + return formatdate(calendar.timegm(dt.timetuple())) + + +class BaseHeuristic(object): + + def warning(self, response): + """ + Return a valid 1xx warning header value describing the cache + adjustments. + + The response is provided too allow warnings like 113 + http://tools.ietf.org/html/rfc7234#section-5.5.4 where we need + to explicitly say response is over 24 hours old. + """ + return '110 - "Response is Stale"' + + def update_headers(self, response): + """Update the response headers with any new headers. + + NOTE: This SHOULD always include some Warning header to + signify that the response was cached by the client, not + by way of the provided headers. + """ + return {} + + def apply(self, response): + updated_headers = self.update_headers(response) + + if updated_headers: + response.headers.update(updated_headers) + warning_header_value = self.warning(response) + if warning_header_value is not None: + response.headers.update({"Warning": warning_header_value}) + + return response + + +class OneDayCache(BaseHeuristic): + """ + Cache the response by providing an expires 1 day in the + future. + """ + + def update_headers(self, response): + headers = {} + + if "expires" not in response.headers: + date = parsedate(response.headers["date"]) + expires = expire_after(timedelta(days=1), date=datetime(*date[:6])) + headers["expires"] = datetime_to_header(expires) + headers["cache-control"] = "public" + return headers + + +class ExpiresAfter(BaseHeuristic): + """ + Cache **all** requests for a defined time period. + """ + + def __init__(self, **kw): + self.delta = timedelta(**kw) + + def update_headers(self, response): + expires = expire_after(self.delta) + return {"expires": datetime_to_header(expires), "cache-control": "public"} + + def warning(self, response): + tmpl = "110 - Automatically cached for %s. Response might be stale" + return tmpl % self.delta + + +class LastModified(BaseHeuristic): + """ + If there is no Expires header already, fall back on Last-Modified + using the heuristic from + http://tools.ietf.org/html/rfc7234#section-4.2.2 + to calculate a reasonable value. + + Firefox also does something like this per + https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching_FAQ + http://lxr.mozilla.org/mozilla-release/source/netwerk/protocol/http/nsHttpResponseHead.cpp#397 + Unlike mozilla we limit this to 24-hr. + """ + cacheable_by_default_statuses = { + 200, 203, 204, 206, 300, 301, 404, 405, 410, 414, 501 + } + + def update_headers(self, resp): + headers = resp.headers + + if "expires" in headers: + return {} + + if "cache-control" in headers and headers["cache-control"] != "public": + return {} + + if resp.status not in self.cacheable_by_default_statuses: + return {} + + if "date" not in headers or "last-modified" not in headers: + return {} + + date = calendar.timegm(parsedate_tz(headers["date"])) + last_modified = parsedate(headers["last-modified"]) + if date is None or last_modified is None: + return {} + + now = time.time() + current_age = max(0, now - date) + delta = date - calendar.timegm(last_modified) + freshness_lifetime = max(0, min(delta / 10, 24 * 3600)) + if freshness_lifetime <= current_age: + return {} + + expires = date + freshness_lifetime + return {"expires": time.strftime(TIME_FMT, time.gmtime(expires))} + + def warning(self, resp): + return None diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/serialize.py b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/serialize.py new file mode 100644 index 00000000..3b6ec2de --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/serialize.py @@ -0,0 +1,188 @@ +import base64 +import io +import json +import zlib + +from pip._vendor import msgpack +from pip._vendor.requests.structures import CaseInsensitiveDict + +from .compat import HTTPResponse, pickle, text_type + + +def _b64_decode_bytes(b): + return base64.b64decode(b.encode("ascii")) + + +def _b64_decode_str(s): + return _b64_decode_bytes(s).decode("utf8") + + +class Serializer(object): + + def dumps(self, request, response, body=None): + response_headers = CaseInsensitiveDict(response.headers) + + if body is None: + body = response.read(decode_content=False) + + # NOTE: 99% sure this is dead code. I'm only leaving it + # here b/c I don't have a test yet to prove + # it. Basically, before using + # `cachecontrol.filewrapper.CallbackFileWrapper`, + # this made an effort to reset the file handle. The + # `CallbackFileWrapper` short circuits this code by + # setting the body as the content is consumed, the + # result being a `body` argument is *always* passed + # into cache_response, and in turn, + # `Serializer.dump`. + response._fp = io.BytesIO(body) + + # NOTE: This is all a bit weird, but it's really important that on + # Python 2.x these objects are unicode and not str, even when + # they contain only ascii. The problem here is that msgpack + # understands the difference between unicode and bytes and we + # have it set to differentiate between them, however Python 2 + # doesn't know the difference. Forcing these to unicode will be + # enough to have msgpack know the difference. + data = { + u"response": { + u"body": body, + u"headers": dict( + (text_type(k), text_type(v)) for k, v in response.headers.items() + ), + u"status": response.status, + u"version": response.version, + u"reason": text_type(response.reason), + u"strict": response.strict, + u"decode_content": response.decode_content, + } + } + + # Construct our vary headers + data[u"vary"] = {} + if u"vary" in response_headers: + varied_headers = response_headers[u"vary"].split(",") + for header in varied_headers: + header = text_type(header).strip() + header_value = request.headers.get(header, None) + if header_value is not None: + header_value = text_type(header_value) + data[u"vary"][header] = header_value + + return b",".join([b"cc=4", msgpack.dumps(data, use_bin_type=True)]) + + def loads(self, request, data): + # Short circuit if we've been given an empty set of data + if not data: + return + + # Determine what version of the serializer the data was serialized + # with + try: + ver, data = data.split(b",", 1) + except ValueError: + ver = b"cc=0" + + # Make sure that our "ver" is actually a version and isn't a false + # positive from a , being in the data stream. + if ver[:3] != b"cc=": + data = ver + data + ver = b"cc=0" + + # Get the version number out of the cc=N + ver = ver.split(b"=", 1)[-1].decode("ascii") + + # Dispatch to the actual load method for the given version + try: + return getattr(self, "_loads_v{}".format(ver))(request, data) + + except AttributeError: + # This is a version we don't have a loads function for, so we'll + # just treat it as a miss and return None + return + + def prepare_response(self, request, cached): + """Verify our vary headers match and construct a real urllib3 + HTTPResponse object. + """ + # Special case the '*' Vary value as it means we cannot actually + # determine if the cached response is suitable for this request. + # This case is also handled in the controller code when creating + # a cache entry, but is left here for backwards compatibility. + if "*" in cached.get("vary", {}): + return + + # Ensure that the Vary headers for the cached response match our + # request + for header, value in cached.get("vary", {}).items(): + if request.headers.get(header, None) != value: + return + + body_raw = cached["response"].pop("body") + + headers = CaseInsensitiveDict(data=cached["response"]["headers"]) + if headers.get("transfer-encoding", "") == "chunked": + headers.pop("transfer-encoding") + + cached["response"]["headers"] = headers + + try: + body = io.BytesIO(body_raw) + except TypeError: + # This can happen if cachecontrol serialized to v1 format (pickle) + # using Python 2. A Python 2 str(byte string) will be unpickled as + # a Python 3 str (unicode string), which will cause the above to + # fail with: + # + # TypeError: 'str' does not support the buffer interface + body = io.BytesIO(body_raw.encode("utf8")) + + return HTTPResponse(body=body, preload_content=False, **cached["response"]) + + def _loads_v0(self, request, data): + # The original legacy cache data. This doesn't contain enough + # information to construct everything we need, so we'll treat this as + # a miss. + return + + def _loads_v1(self, request, data): + try: + cached = pickle.loads(data) + except ValueError: + return + + return self.prepare_response(request, cached) + + def _loads_v2(self, request, data): + try: + cached = json.loads(zlib.decompress(data).decode("utf8")) + except (ValueError, zlib.error): + return + + # We need to decode the items that we've base64 encoded + cached["response"]["body"] = _b64_decode_bytes(cached["response"]["body"]) + cached["response"]["headers"] = dict( + (_b64_decode_str(k), _b64_decode_str(v)) + for k, v in cached["response"]["headers"].items() + ) + cached["response"]["reason"] = _b64_decode_str(cached["response"]["reason"]) + cached["vary"] = dict( + (_b64_decode_str(k), _b64_decode_str(v) if v is not None else v) + for k, v in cached["vary"].items() + ) + + return self.prepare_response(request, cached) + + def _loads_v3(self, request, data): + # Due to Python 2 encoding issues, it's impossible to know for sure + # exactly how to load v3 entries, thus we'll treat these as a miss so + # that they get rewritten out as v4 entries. + return + + def _loads_v4(self, request, data): + try: + cached = msgpack.loads(data, raw=False) + except ValueError: + return + + return self.prepare_response(request, cached) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/wrapper.py b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/wrapper.py new file mode 100644 index 00000000..d8e6fc6a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/wrapper.py @@ -0,0 +1,29 @@ +from .adapter import CacheControlAdapter +from .cache import DictCache + + +def CacheControl( + sess, + cache=None, + cache_etags=True, + serializer=None, + heuristic=None, + controller_class=None, + adapter_class=None, + cacheable_methods=None, +): + + cache = DictCache() if cache is None else cache + adapter_class = adapter_class or CacheControlAdapter + adapter = adapter_class( + cache, + cache_etags=cache_etags, + serializer=serializer, + heuristic=heuristic, + controller_class=controller_class, + cacheable_methods=cacheable_methods, + ) + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + return sess diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/certifi/__init__.py b/venv/lib/python3.8/site-packages/pip/_vendor/certifi/__init__.py new file mode 100644 index 00000000..17aaf900 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/certifi/__init__.py @@ -0,0 +1,3 @@ +from .core import contents, where + +__version__ = "2020.12.05" diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/certifi/__main__.py b/venv/lib/python3.8/site-packages/pip/_vendor/certifi/__main__.py new file mode 100644 index 00000000..00376349 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/certifi/__main__.py @@ -0,0 +1,12 @@ +import argparse + +from pip._vendor.certifi import contents, where + +parser = argparse.ArgumentParser() +parser.add_argument("-c", "--contents", action="store_true") +args = parser.parse_args() + +if args.contents: + print(contents()) +else: + print(where()) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c6e73090bf248850dbe570fe1f717d332d87754e GIT binary patch literal 239 zcmWIL<>g`k0)_V01Un%87{oyaOhAqU5En}Ti4=wu#vF!R#wf;IrYI&xh7_hK<`m{& z22GZij6i8krdu4z`FSO&c_qcSSj#g~i&Cq&j0}tn^bC#k3{3qrS#Gf;=NF|GfebBT z1`@ZpZp;47xjU=P@aY$zo%#M=9<1-&HE@DtU^dBiL)8fie9 z*7}dPpkdA8VjafuA04))(U2M4K}2nk7p81v6k49^rOI^+c3+ihmOX$Jjh+>tO}QvF zLw)Tb*vYA0b~T>3aNF7j{V#1txeytO^fMdwtm|7l=+RfYl;)l2iIZ~hHBU^f5IBx`({!4S^#J|uJ@7dXQft_ex-i+V)eczk!`TI`CBQX45e|dDXMaW;c zxHw!`+<{sA2}Y8DNGe%E1NtSAj^w9Aa>Z6o;2eLh=pjF=$=aF*bye4UvMw8^BxopS zMSiAm&Q07!Gw>FzphbyfVH;*gHmj%yB)!dva*jN$DZ$?lB>f0>y0G(mwIjD>OSVsG z(2||%6vVKHM0VvCWZIJKKIvUKR$ipEiDz*?|Iz#D&G5YGJTCl2CYOowwK7Yc7QUG) zKTZo1CP`@GEcKHts+?@*M}2(h0JEEG0b$>kO}h8VhnMmk}Vy>x!tdEuNmXKYO#5Jo;G z-;sOd52!2tgS4^2&e&4@idt8tQ6}T`00hIcT%{!l%dv(%ZW|ln*jhWmy-LfS2zK5K)G;D2QNII@A&2w~s=lT#DxaSKhc&hw8*5Y(RF`Fi zMy|FYV~w&!Vb9_Oh0PDMIPFnOXa9wRiWtG%z-hC8A%O>^2D3!c1qZYM8ok@{(3NiXR7|#Ph*{>)&UJw`bQr2TD-_JZIbwLU#lWp>PS^J(TKeQw1r*=qg!{&=#kc$ s)|mcsuzS@f;Zp}93hW17cb#p{c$;$SvO3#loO0H_*#+CJdG&7nAH&8*00000 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/certifi/cacert.pem b/venv/lib/python3.8/site-packages/pip/_vendor/certifi/cacert.pem new file mode 100644 index 00000000..c9459dc8 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/certifi/cacert.pem @@ -0,0 +1,4325 @@ + +# Issuer: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Subject: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Label: "GlobalSign Root CA" +# Serial: 4835703278459707669005204 +# MD5 Fingerprint: 3e:45:52:15:09:51:92:e1:b7:5d:37:9f:b1:87:29:8a +# SHA1 Fingerprint: b1:bc:96:8b:d4:f4:9d:62:2a:a8:9a:81:f2:15:01:52:a4:1d:82:9c +# SHA256 Fingerprint: eb:d4:10:40:e4:bb:3e:c7:42:c9:e3:81:d3:1e:f2:a4:1a:48:b6:68:5c:96:e7:ce:f3:c1:df:6c:d4:33:1c:99 +-----BEGIN CERTIFICATE----- +MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG +A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv +b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw +MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i +YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT +aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ +jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp +xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp +1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG +snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ +U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8 +9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B +AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz +yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE +38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP +AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad +DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME +HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R2 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R2 +# Label: "GlobalSign Root CA - R2" +# Serial: 4835703278459682885658125 +# MD5 Fingerprint: 94:14:77:7e:3e:5e:fd:8f:30:bd:41:b0:cf:e7:d0:30 +# SHA1 Fingerprint: 75:e0:ab:b6:13:85:12:27:1c:04:f8:5f:dd:de:38:e4:b7:24:2e:fe +# SHA256 Fingerprint: ca:42:dd:41:74:5f:d0:b8:1e:b9:02:36:2c:f9:d8:bf:71:9d:a1:bd:1b:1e:fc:94:6f:5b:4c:99:f4:2c:1b:9e +-----BEGIN CERTIFICATE----- +MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4G +A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNp +Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1 +MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMjETMBEG +A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6ErPL +v4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8 +eoLrvozps6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklq +tTleiDTsvHgMCJiEbKjNS7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzd +C9XZzPnqJworc5HGnRusyMvo4KD0L5CLTfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pa +zq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6CygPCm48CAwEAAaOBnDCB +mTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUm+IH +V2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5n +bG9iYWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG +3lm0mi3f3BmGLjANBgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4Gs +J0/WwbgcQ3izDJr86iw8bmEbTUsp9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO +291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu01yiPqFbQfXf5WRDLenVOavS +ot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG79G+dwfCMNYxd +AfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7 +TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Subject: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Label: "Entrust.net Premium 2048 Secure Server CA" +# Serial: 946069240 +# MD5 Fingerprint: ee:29:31:bc:32:7e:9a:e6:e8:b5:f7:51:b4:34:71:90 +# SHA1 Fingerprint: 50:30:06:09:1d:97:d4:f5:ae:39:f7:cb:e7:92:7d:7d:65:2d:34:31 +# SHA256 Fingerprint: 6d:c4:71:72:e0:1c:bc:b0:bf:62:58:0d:89:5f:e2:b8:ac:9a:d4:f8:73:80:1e:0c:10:b9:c8:37:d2:1e:b1:77 +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChML +RW50cnVzdC5uZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBp +bmNvcnAuIGJ5IHJlZi4gKGxpbWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5 +IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNVBAMTKkVudHJ1c3QubmV0IENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQxNzUwNTFaFw0yOTA3 +MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3 +LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxp +YWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEG +A1UEAxMqRW50cnVzdC5uZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgp +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArU1LqRKGsuqjIAcVFmQq +K0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOLGp18EzoOH1u3Hs/lJBQe +sYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSrhRSGlVuX +MlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVT +XTzWnLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/ +HoZdenoVve8AjhUiVBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH +4QIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJKoZIhvcNAQEFBQADggEBADub +j1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPyT/4xmf3IDExo +U8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf +zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5b +u/8j72gZyxKTJ1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+ +bYQLCIt+jerXmCHG8+c8eS9enNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/Er +fF6adulZkMV8gzURZVE= +-----END CERTIFICATE----- + +# Issuer: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Subject: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Label: "Baltimore CyberTrust Root" +# Serial: 33554617 +# MD5 Fingerprint: ac:b6:94:a5:9c:17:e0:d7:91:52:9b:b1:97:06:a6:e4 +# SHA1 Fingerprint: d4:de:20:d0:5e:66:fc:53:fe:1a:50:88:2c:78:db:28:52:ca:e4:74 +# SHA256 Fingerprint: 16:af:57:a9:f6:76:b0:ab:12:60:95:aa:5e:ba:de:f2:2a:b3:11:19:d6:44:ac:95:cd:4b:93:db:f3:f2:6a:eb +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJ +RTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYD +VQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoX +DTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9y +ZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVy +VHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKr +mD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjr +IZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeK +mpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSu +XmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZy +dc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/ye +jl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1 +BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3 +DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT92 +9hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3Wgx +jkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0 +Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhz +ksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLS +R9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Subject: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Label: "Entrust Root Certification Authority" +# Serial: 1164660820 +# MD5 Fingerprint: d6:a5:c3:ed:5d:dd:3e:00:c1:3d:87:92:1f:1d:3f:e4 +# SHA1 Fingerprint: b3:1e:b1:b7:40:e3:6c:84:02:da:dc:37:d4:4d:f5:d4:67:49:52:f9 +# SHA256 Fingerprint: 73:c1:76:43:4f:1b:c6:d5:ad:f4:5b:0e:76:e7:27:28:7c:8d:e5:76:16:c1:e6:e6:14:1a:2b:2c:bc:7d:8e:4c +-----BEGIN CERTIFICATE----- +MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0 +Lm5ldC9DUFMgaXMgaW5jb3Jwb3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMW +KGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsGA1UEAxMkRW50cnVzdCBSb290IENl +cnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0MloXDTI2MTEyNzIw +NTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMTkw +NwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSBy +ZWZlcmVuY2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNV +BAMTJEVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJ +KoZIhvcNAQEBBQADggEPADCCAQoCggEBALaVtkNC+sZtKm9I35RMOVcF7sN5EUFo +Nu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYszA9u3g3s+IIRe7bJWKKf4 +4LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOwwCj0Yzfv9 +KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGI +rb68j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi +94DkZfs0Nw4pgHBNrziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOB +sDCBrTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAi +gA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1MzQyWjAfBgNVHSMEGDAWgBRo +kORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DHhmak8fdLQ/uE +vW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA +A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9t +O1KzKtvn1ISMY/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6Zua +AGAT/3B+XxFNSRuzFVJ7yVTav52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP +9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTSW3iDVuycNsMm4hH2Z0kdkquM++v/ +eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m +0vdXcDazv/wor3ElhVsT/h5/WrQ8 +-----END CERTIFICATE----- + +# Issuer: CN=AAA Certificate Services O=Comodo CA Limited +# Subject: CN=AAA Certificate Services O=Comodo CA Limited +# Label: "Comodo AAA Services root" +# Serial: 1 +# MD5 Fingerprint: 49:79:04:b0:eb:87:19:ac:47:b0:bc:11:51:9b:74:d0 +# SHA1 Fingerprint: d1:eb:23:a4:6d:17:d6:8f:d9:25:64:c2:f1:f1:60:17:64:d8:e3:49 +# SHA256 Fingerprint: d7:a7:a0:fb:5d:7e:27:31:d7:71:e9:48:4e:bc:de:f7:1d:5f:0c:3e:0a:29:48:78:2b:c8:3e:e0:ea:69:9e:f4 +-----BEGIN CERTIFICATE----- +MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEb +MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow +GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmlj +YXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVowezEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMM +GEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP +ADCCAQoCggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQua +BtDFcCLNSS1UY8y2bmhGC1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe +3M/vg4aijJRPn2jymJBGhCfHdr/jzDUsi14HZGWCwEiwqJH5YZ92IFCokcdmtet4 +YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszWY19zjNoFmag4qMsXeDZR +rOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjHYpy+g8cm +ez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQU +oBEKIz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF +MAMBAf8wewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20v +QUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29t +b2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDANBgkqhkiG9w0BAQUF +AAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm7l3sAg9g1o1Q +GE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz +Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2 +G9w84FoVxp7Z8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsi +l2D4kF501KKaU73yqWjgom7C12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3 +smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root Certification Authority O=QuoVadis Limited OU=Root Certification Authority +# Subject: CN=QuoVadis Root Certification Authority O=QuoVadis Limited OU=Root Certification Authority +# Label: "QuoVadis Root CA" +# Serial: 985026699 +# MD5 Fingerprint: 27:de:36:fe:72:b7:00:03:00:9d:f4:f0:1e:6c:04:24 +# SHA1 Fingerprint: de:3f:40:bd:50:93:d3:9b:6c:60:f6:da:bc:07:62:01:00:89:76:c9 +# SHA256 Fingerprint: a4:5e:de:3b:bb:f0:9c:8a:e1:5c:72:ef:c0:72:68:d6:93:a2:1c:99:6f:d5:1e:67:ca:07:94:60:fd:6d:88:73 +-----BEGIN CERTIFICATE----- +MIIF0DCCBLigAwIBAgIEOrZQizANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJC +TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDElMCMGA1UECxMcUm9vdCBDZXJ0 +aWZpY2F0aW9uIEF1dGhvcml0eTEuMCwGA1UEAxMlUXVvVmFkaXMgUm9vdCBDZXJ0 +aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wMTAzMTkxODMzMzNaFw0yMTAzMTcxODMz +MzNaMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSUw +IwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQDEyVR +dW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv2G1lVO6V/z68mcLOhrfEYBklbTRvM16z/Yp +li4kVEAkOPcahdxYTMukJ0KX0J+DisPkBgNbAKVRHnAEdOLB1Dqr1607BxgFjv2D +rOpm2RgbaIr1VxqYuvXtdj182d6UajtLF8HVj71lODqV0D1VNk7feVcxKh7YWWVJ +WCCYfqtffp/p1k3sg3Spx2zY7ilKhSoGFPlU5tPaZQeLYzcS19Dsw3sgQUSj7cug +F+FxZc4dZjH3dgEZyH0DWLaVSR2mEiboxgx24ONmy+pdpibu5cxfvWenAScOospU +xbF6lR1xHkopigPcakXBpBlebzbNw6Kwt/5cOOJSvPhEQ+aQuwIDAQABo4ICUjCC +Ak4wPQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwczovL29jc3AucXVv +dmFkaXNvZmZzaG9yZS5jb20wDwYDVR0TAQH/BAUwAwEB/zCCARoGA1UdIASCAREw +ggENMIIBCQYJKwYBBAG+WAABMIH7MIHUBggrBgEFBQcCAjCBxxqBxFJlbGlhbmNl +IG9uIHRoZSBRdW9WYWRpcyBSb290IENlcnRpZmljYXRlIGJ5IGFueSBwYXJ0eSBh +c3N1bWVzIGFjY2VwdGFuY2Ugb2YgdGhlIHRoZW4gYXBwbGljYWJsZSBzdGFuZGFy +ZCB0ZXJtcyBhbmQgY29uZGl0aW9ucyBvZiB1c2UsIGNlcnRpZmljYXRpb24gcHJh +Y3RpY2VzLCBhbmQgdGhlIFF1b1ZhZGlzIENlcnRpZmljYXRlIFBvbGljeS4wIgYI +KwYBBQUHAgEWFmh0dHA6Ly93d3cucXVvdmFkaXMuYm0wHQYDVR0OBBYEFItLbe3T +KbkGGew5Oanwl4Rqy+/fMIGuBgNVHSMEgaYwgaOAFItLbe3TKbkGGew5Oanwl4Rq +y+/foYGEpIGBMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1p +dGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYD +VQQDEyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggQ6tlCL +MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAitQUtf70mpKnGdSk +fnIYj9lofFIk3WdvOXrEql494liwTXCYhGHoG+NpGA7O+0dQoE7/8CQfvbLO9Sf8 +7C9TqnN7Az10buYWnuulLsS/VidQK2K6vkscPFVcQR0kvoIgR13VRH56FmjffU1R +cHhXHTMe/QKZnAzNCgVPx7uOpHX6Sm2xgI4JVrmcGmD+XcHXetwReNDWXcG31a0y +mQM6isxUJTkxgXsTIlG6Rmyhu576BGxJJnSP0nPrzDCi5upZIof4l/UO/erMkqQW +xFIY6iHOsfHmhIHluqmGKPJDWl0Snawe2ajlCmqnf6CHKc/yiU3U7MXi5nrQNiOK +SnQ2+Q== +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2" +# Serial: 1289 +# MD5 Fingerprint: 5e:39:7b:dd:f8:ba:ec:82:e9:ac:62:ba:0c:54:00:2b +# SHA1 Fingerprint: ca:3a:fb:cf:12:40:36:4b:44:b2:16:20:88:80:48:39:19:93:7c:f7 +# SHA256 Fingerprint: 85:a0:dd:7d:d7:20:ad:b7:ff:05:f8:3d:54:2b:20:9d:c7:ff:45:28:f7:d6:77:b1:83:89:fe:a5:e5:c4:9e:86 +-----BEGIN CERTIFICATE----- +MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMjAeFw0wNjExMjQxODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCa +GMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6XJxg +Fyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55J +WpzmM+Yklvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bB +rrcCaoF6qUWD4gXmuVbBlDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp ++ARz8un+XJiM9XOva7R+zdRcAitMOeGylZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1 +ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt66/3FsvbzSUr5R/7mp/i +Ucw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1JdxnwQ5hYIiz +PtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og +/zOhD7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UH +oycR7hYQe7xFSkyyBNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuI +yV77zGHcizN300QyNQliBJIWENieJ0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1Ud +EwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBQahGK8SEwzJQTU7tD2 +A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGUa6FJpEcwRTEL +MAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT +ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2f +BluornFdLwUvZ+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzn +g/iN/Ae42l9NLmeyhP3ZRPx3UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2Bl +fF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodmVjB3pjd4M1IQWK4/YY7yarHvGH5K +WWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK+JDSV6IZUaUtl0Ha +B0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrWIozc +hLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPR +TUIZ3Ph1WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWD +mbA4CD/pXvk1B+TJYm5Xf6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0Z +ohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y +4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8VCLAAVBpQ570su9t+Oza +8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3" +# Serial: 1478 +# MD5 Fingerprint: 31:85:3c:62:94:97:63:b9:aa:fd:89:4e:af:6f:e0:cf +# SHA1 Fingerprint: 1f:49:14:f7:d8:74:95:1d:dd:ae:02:c0:be:fd:3a:2d:82:75:51:85 +# SHA256 Fingerprint: 18:f1:fc:7f:20:5d:f8:ad:dd:eb:7f:e0:07:dd:57:e3:af:37:5a:9c:4d:8d:73:54:6b:f4:f1:fe:d1:e1:8d:35 +-----BEGIN CERTIFICATE----- +MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMzAeFw0wNjExMjQxOTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDM +V0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNggDhoB +4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUr +H556VOijKTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd +8lyyBTNvijbO0BNO/79KDDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9Cabwv +vWhDFlaJKjdhkf2mrk7AyxRllDdLkgbvBNDInIjbC3uBr7E9KsRlOni27tyAsdLT +mZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwpp5ijJUMv7/FfJuGITfhe +btfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8nT8KKdjc +T5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDt +WAEXMJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZ +c6tsgLjoC2SToJyMGf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A +4iLItLRkT9a6fUg+qGkM17uGcclzuD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYD +VR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHTBgkrBgEEAb5YAAMwgcUwgZMG +CCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmljYXRlIGNvbnN0 +aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 +aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVu +dC4wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2Nw +czALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4G +A1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4ywLQoUmkRzBFMQswCQYDVQQGEwJC +TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UEAxMSUXVvVmFkaXMg +Um9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZVqyM0 +7ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSem +d1o417+shvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd ++LJ2w/w4E6oM3kJpK27zPOuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B +4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadN +t54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp8kokUvd0/bpO5qgdAm6x +DYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBCbjPsMZ57 +k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6s +zHXug/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0j +Wy10QJLZYxkNc91pvGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeT +mJlglFwjz1onl14LBQaTNx47aTbrqZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK +4SVhM7JZG+Ju1zdXtg2pEto= +-----END CERTIFICATE----- + +# Issuer: O=SECOM Trust.net OU=Security Communication RootCA1 +# Subject: O=SECOM Trust.net OU=Security Communication RootCA1 +# Label: "Security Communication Root CA" +# Serial: 0 +# MD5 Fingerprint: f1:bc:63:6a:54:e0:b5:27:f5:cd:e7:1a:e3:4d:6e:4a +# SHA1 Fingerprint: 36:b1:2b:49:f9:81:9e:d7:4c:9e:bc:38:0f:c6:56:8f:5d:ac:b2:f7 +# SHA256 Fingerprint: e7:5e:72:ed:9f:56:0e:ec:6e:b4:80:00:73:a4:3f:c3:ad:19:19:5a:39:22:82:01:78:95:97:4a:99:02:6b:6c +-----BEGIN CERTIFICATE----- +MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEY +MBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21t +dW5pY2F0aW9uIFJvb3RDQTEwHhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5 +WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYD +VQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw8yl8 +9f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJ +DKaVv0uMDPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9 +Ms+k2Y7CI9eNqPPYJayX5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/N +QV3Is00qVUarH9oe4kA92819uZKAnDfdDJZkndwi92SL32HeFZRSFaB9UslLqCHJ +xrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2JChzAgMBAAGjPzA9MB0G +A1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYwDwYDVR0T +AQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vG +kl3g0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfr +Uj94nK9NrvjVT8+amCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5 +Bw+SUEmK3TGXX8npN6o7WWWXlDLJs58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJU +JRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ6rBK+1YWc26sTfcioU+tHXot +RSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAiFL39vmwLAw== +-----END CERTIFICATE----- + +# Issuer: CN=Sonera Class2 CA O=Sonera +# Subject: CN=Sonera Class2 CA O=Sonera +# Label: "Sonera Class 2 Root CA" +# Serial: 29 +# MD5 Fingerprint: a3:ec:75:0f:2e:88:df:fa:48:01:4e:0b:5c:48:6f:fb +# SHA1 Fingerprint: 37:f7:6d:e6:07:7c:90:c5:b1:3e:93:1a:b7:41:10:b4:f2:e4:9a:27 +# SHA256 Fingerprint: 79:08:b4:03:14:c1:38:10:0b:51:8d:07:35:80:7f:fb:fc:f8:51:8a:00:95:33:71:05:ba:38:6b:15:3d:d9:27 +-----BEGIN CERTIFICATE----- +MIIDIDCCAgigAwIBAgIBHTANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEP +MA0GA1UEChMGU29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MyIENBMB4XDTAx +MDQwNjA3Mjk0MFoXDTIxMDQwNjA3Mjk0MFowOTELMAkGA1UEBhMCRkkxDzANBgNV +BAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJhIENsYXNzMiBDQTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAJAXSjWdyvANlsdE+hY3/Ei9vX+ALTU74W+o +Z6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybTdXnt +5oTjV+WtKcT0OijnpXuENmmz/V52vaMtmdOQTiMofRhj8VQ7Jp12W5dCsv+u8E7s +3TmVToMGf+dJQMjFAbJUWmYdPfz56TwKnoG4cPABi+QjVHzIrviQHgCWctRUz2Ej +vOr7nQKV0ba5cTppCD8PtOFCx4j1P5iop7oc4HFx71hXgVB6XGt0Rg6DA5jDjqhu +8nYybieDwnPz3BjotJPqdURrBGAgcVeHnfO+oJAjPYok4doh28MCAwEAAaMzMDEw +DwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQISqCqWITTXjwwCwYDVR0PBAQDAgEG +MA0GCSqGSIb3DQEBBQUAA4IBAQBazof5FnIVV0sd2ZvnoiYw7JNn39Yt0jSv9zil +zqsWuasvfDXLrNAPtEwr/IDva4yRXzZ299uzGxnq9LIR/WFxRL8oszodv7ND6J+/ +3DEIcbCdjdY0RzKQxmUk96BKfARzjzlvF4xytb1LyHr4e4PDKE6cCepnP7JnBBvD +FNr450kkkdAdavphOe9r5yF1BgfYErQhIHBCcYHaPJo2vqZbDWpsmh+Re/n570K6 +Tk6ezAyNlNzZRZxe7EJQY670XcSxEtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2 +ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLHllpwrN9M +-----END CERTIFICATE----- + +# Issuer: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Subject: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Label: "XRamp Global CA Root" +# Serial: 107108908803651509692980124233745014957 +# MD5 Fingerprint: a1:0b:44:b3:ca:10:d8:00:6e:9d:0f:d8:0f:92:0a:d1 +# SHA1 Fingerprint: b8:01:86:d1:eb:9c:86:a5:41:04:cf:30:54:f3:4c:52:b7:e5:58:c6 +# SHA256 Fingerprint: ce:cd:dc:90:50:99:d8:da:df:c5:b1:d2:09:b7:37:cb:e2:c1:8c:fb:2c:10:c0:ff:0b:cf:0d:32:86:fc:1a:a2 +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCB +gjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEk +MCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRY +UmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQxMTAxMTcx +NDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3 +dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2Vy +dmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS6 +38eMpSe2OAtp87ZOqCwuIR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCP +KZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMxfoArtYzAQDsRhtDLooY2YKTVMIJt2W7Q +DxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FEzG+gSqmUsE3a56k0enI4 +qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqsAxcZZPRa +JSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNVi +PvryxS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0P +BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASs +jVy16bYbMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0 +eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQEwDQYJKoZIhvcNAQEFBQAD +ggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc/Kh4ZzXxHfAR +vbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt +qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLa +IR9NmXmd4c8nnxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSy +i6mx5O+aGtA9aZnuqCij4Tyz8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQ +O+7ETPTsJ3xCwnR8gooJybQDJbw= +-----END CERTIFICATE----- + +# Issuer: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Subject: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Label: "Go Daddy Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 91:de:06:25:ab:da:fd:32:17:0c:bb:25:17:2a:84:67 +# SHA1 Fingerprint: 27:96:ba:e6:3f:18:01:e2:77:26:1b:a0:d7:77:70:02:8f:20:ee:e4 +# SHA256 Fingerprint: c3:84:6b:f2:4b:9e:93:ca:64:27:4c:0e:c6:7c:1e:cc:5e:02:4f:fc:ac:d2:d7:40:19:35:0e:81:fe:54:6a:e4 +-----BEGIN CERTIFICATE----- +MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEh +MB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBE +YWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3 +MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRo +ZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3Mg +MiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggEN +ADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCA +PVYYYwhv2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6w +wdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXi +EqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMY +avx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+ +YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLE +sNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h +/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5 +IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD +ggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNy +OO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7P +TMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ +HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mER +dEr/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5Cuf +ReYNnyicsbkqWletNw+vHX/bvZ8= +-----END CERTIFICATE----- + +# Issuer: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Subject: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Label: "Starfield Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 32:4a:4b:bb:c8:63:69:9b:be:74:9a:c6:dd:1d:46:24 +# SHA1 Fingerprint: ad:7e:1c:28:b0:64:ef:8f:60:03:40:20:14:c3:d0:e3:37:0e:b5:8a +# SHA256 Fingerprint: 14:65:fa:20:53:97:b8:76:fa:a6:f0:a9:95:8e:55:90:e4:0f:cc:7f:aa:4f:b7:c2:c8:67:75:21:fb:5f:b6:58 +-----BEGIN CERTIFICATE----- +MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl +MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp +U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw +NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE +ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp +ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3 +DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf +8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN ++lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0 +X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa +K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA +1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G +A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR +zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0 +YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD +bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w +DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3 +L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D +eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl +xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp +VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY +WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root CA" +# Serial: 17154717934120587862167794914071425081 +# MD5 Fingerprint: 87:ce:0b:7b:2a:0e:49:00:e1:58:71:9b:37:a8:93:72 +# SHA1 Fingerprint: 05:63:b8:63:0d:62:d7:5a:bb:c8:ab:1e:4b:df:b5:a8:99:b2:4d:43 +# SHA256 Fingerprint: 3e:90:99:b5:01:5e:8f:48:6c:00:bc:ea:9d:11:1e:e7:21:fa:ba:35:5a:89:bc:f1:df:69:56:1e:3d:c6:32:5c +-----BEGIN CERTIFICATE----- +MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzExMTEwMDAwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7c +JpSIqvTO9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYP +mDI2dsze3Tyoou9q+yHyUmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+ +wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4 +VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpyoeb6pNnVFzF1roV9Iq4/ +AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whfGHdPAgMB +AAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBRF66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYun +pyGd823IDzANBgkqhkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRC +dWKuh+vy1dneVrOfzM4UKLkNl2BcEkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTf +fwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38FnSbNd67IJKusm7Xi+fT8r87cm +NW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i8b5QZ7dsvfPx +H2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe ++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root CA" +# Serial: 10944719598952040374951832963794454346 +# MD5 Fingerprint: 79:e4:a9:84:0d:7d:3a:96:d7:c0:4f:e2:43:4c:89:2e +# SHA1 Fingerprint: a8:98:5d:3a:65:e5:e5:c4:b2:d7:d6:6d:40:c6:dd:2f:b1:9c:54:36 +# SHA256 Fingerprint: 43:48:a0:e9:44:4c:78:cb:26:5e:05:8d:5e:89:44:b4:d8:4f:96:62:bd:26:db:25:7f:89:34:a4:43:c7:01:61 +-----BEGIN CERTIFICATE----- +MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD +QTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAwMDAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsB +CSDMAZOnTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97 +nh6Vfe63SKMI2tavegw5BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt +43C/dxC//AH2hdmoRBBYMql1GNXRor5H4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7P +T19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y7vrTC0LUq7dBMtoM1O/4 +gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQABo2MwYTAO +BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbR +TLtm8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUw +DQYJKoZIhvcNAQEFBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/Esr +hMAtudXH/vTBH1jLuG2cenTnmCmrEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg +06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIttep3Sp+dWOIrWcBAI+0tKIJF +PnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886UAb3LujEV0ls +YSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk +CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert High Assurance EV Root CA" +# Serial: 3553400076410547919724730734378100087 +# MD5 Fingerprint: d4:74:de:57:5c:39:b2:d3:9c:85:83:c5:c0:65:49:8a +# SHA1 Fingerprint: 5f:b7:ee:06:33:e2:59:db:ad:0c:4c:9a:e6:d3:8f:1a:61:c7:dc:25 +# SHA256 Fingerprint: 74:31:e5:f4:c3:c1:ce:46:90:77:4f:0b:61:e0:54:40:88:3b:a9:a0:1e:d0:0b:a6:ab:d7:80:6e:d3:b1:18:cf +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j +ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL +MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 +LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug +RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm ++9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW +PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM +xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB +Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3 +hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg +EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA +FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec +nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z +eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF +hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2 +Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe +vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep ++OkuE6N36B9K +-----END CERTIFICATE----- + +# Issuer: CN=DST Root CA X3 O=Digital Signature Trust Co. +# Subject: CN=DST Root CA X3 O=Digital Signature Trust Co. +# Label: "DST Root CA X3" +# Serial: 91299735575339953335919266965803778155 +# MD5 Fingerprint: 41:03:52:dc:0f:f7:50:1b:16:f0:02:8e:ba:6f:45:c5 +# SHA1 Fingerprint: da:c9:02:4f:54:d8:f6:df:94:93:5f:b1:73:26:38:ca:6a:d7:7c:13 +# SHA256 Fingerprint: 06:87:26:03:31:a7:24:03:d9:09:f1:05:e6:9b:cf:0d:32:e1:bd:24:93:ff:c6:d9:20:6d:11:bc:d6:77:07:39 +-----BEGIN CERTIFICATE----- +MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/ +MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMT +DkRTVCBSb290IENBIFgzMB4XDTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVow +PzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMRcwFQYDVQQD +Ew5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +AN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmTrE4O +rz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEq +OLl5CjH9UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9b +xiqKqy69cK3FCxolkHRyxXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw +7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40dutolucbY38EVAjqr2m7xPi71XAicPNaD +aeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNV +HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQMA0GCSqG +SIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69 +ikugdB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXr +AvHRAosZy5Q6XkjEGB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZz +R8srzJmwN0jP41ZL9c8PDHIyh8bwRLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5 +JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubSfZGL+T0yjWW06XyxV3bqxbYo +Ob8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Label: "SwissSign Gold CA - G2" +# Serial: 13492815561806991280 +# MD5 Fingerprint: 24:77:d9:a8:91:d1:3b:fa:88:2d:c2:ff:f8:cd:33:93 +# SHA1 Fingerprint: d8:c5:38:8a:b7:30:1b:1b:6e:d4:7a:e6:45:25:3a:6f:9f:1a:27:61 +# SHA256 Fingerprint: 62:dd:0b:e9:b9:f5:0a:16:3e:a0:f8:e7:5c:05:3b:1e:ca:57:ea:55:c8:68:8f:64:7c:68:81:f2:c8:35:7b:95 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Label: "SwissSign Silver CA - G2" +# Serial: 5700383053117599563 +# MD5 Fingerprint: e0:06:a1:c9:7d:cf:c9:fc:0d:c0:56:75:96:d8:62:13 +# SHA1 Fingerprint: 9b:aa:e5:9f:56:ee:21:cb:43:5a:be:25:93:df:a7:f0:40:d1:1d:cb +# SHA256 Fingerprint: be:6c:4d:a2:bb:b9:ba:59:b6:f3:93:97:68:37:42:46:c3:c0:05:99:3f:a9:8f:02:0d:1d:ed:be:d4:8a:81:d5 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=SecureTrust CA O=SecureTrust Corporation +# Subject: CN=SecureTrust CA O=SecureTrust Corporation +# Label: "SecureTrust CA" +# Serial: 17199774589125277788362757014266862032 +# MD5 Fingerprint: dc:32:c3:a7:6d:25:57:c7:68:09:9d:ea:2d:a9:a2:d1 +# SHA1 Fingerprint: 87:82:c6:c3:04:35:3b:cf:d2:96:92:d2:59:3e:7d:44:d9:34:ff:11 +# SHA256 Fingerprint: f1:c1:b5:0a:e5:a2:0d:d8:03:0e:c9:f6:bc:24:82:3d:d3:67:b5:25:57:59:b4:e7:1b:61:fc:e9:f7:37:5d:73 +-----BEGIN CERTIFICATE----- +MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBI +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +FzAVBgNVBAMTDlNlY3VyZVRydXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIz +MTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAeBgNVBAoTF1NlY3VyZVRydXN0IENv +cnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCCASIwDQYJKoZIhvcN +AQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQXOZEz +Zum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO +0gMdA+9tDWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIao +wW8xQmxSPmjL8xk037uHGFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj +7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b01k/unK8RCSc43Oz969XL0Imnal0ugBS +8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmHursCAwEAAaOBnTCBmjAT +BgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCeg +JYYjaHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt3 +6Z3q059c4EVlew3KW+JwULKUBRSuSceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/ +3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHfmbx8IVQr5Fiiu1cprp6poxkm +D5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZnMUFdAvnZyPS +CPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR +3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= +-----END CERTIFICATE----- + +# Issuer: CN=Secure Global CA O=SecureTrust Corporation +# Subject: CN=Secure Global CA O=SecureTrust Corporation +# Label: "Secure Global CA" +# Serial: 9751836167731051554232119481456978597 +# MD5 Fingerprint: cf:f4:27:0d:d4:ed:dc:65:16:49:6d:3d:da:bf:6e:de +# SHA1 Fingerprint: 3a:44:73:5a:e5:81:90:1f:24:86:61:46:1e:3b:9c:c4:5f:f5:3a:1b +# SHA256 Fingerprint: 42:00:f5:04:3a:c8:59:0e:bb:52:7d:20:9e:d1:50:30:29:fb:cb:d4:1c:a1:b5:06:ec:27:f1:5a:de:7d:ac:69 +-----BEGIN CERTIFICATE----- +MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBK +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +GTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkx +MjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3Qg +Q29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jxYDiJ +iQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa +/FHtaMbQbqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJ +jnIFHovdRIWCQtBJwB1g8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnI +HmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYVHDGA76oYa8J719rO+TMg1fW9ajMtgQT7 +sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi0XPnj3pDAgMBAAGjgZ0w +gZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCsw +KaAnoCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsG +AQQBgjcVAQQDAgEAMA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0L +URYD7xh8yOOvaliTFGCRsoTciE6+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXO +H0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cnCDpOGR86p1hcF895P4vkp9Mm +I50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/53CYNv6ZHdAbY +iNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc +f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW +-----END CERTIFICATE----- + +# Issuer: CN=COMODO Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO Certification Authority O=COMODO CA Limited +# Label: "COMODO Certification Authority" +# Serial: 104350513648249232941998508985834464573 +# MD5 Fingerprint: 5c:48:dc:f7:42:72:ec:56:94:6d:1c:cc:71:35:80:75 +# SHA1 Fingerprint: 66:31:bf:9e:f7:4f:9e:b6:c9:d5:a6:0c:ba:6a:be:d1:f7:bd:ef:7b +# SHA256 Fingerprint: 0c:2c:d6:3d:f7:80:6f:a3:99:ed:e8:09:11:6b:57:5b:f8:79:89:f0:65:18:f9:80:8c:86:05:03:17:8b:af:66 +-----BEGIN CERTIFICATE----- +MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCB +gTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNV +BAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEyMDEwMDAw +MDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3Jl +YXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01P +RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3 +UcEbVASY06m/weaKXTuH+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI +2GqGd0S7WWaXUF601CxwRM/aN5VCaTwwxHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8 +Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp ++2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA1KGzqSX+ +DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5O +nKVIrLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW +/zAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6g +PKA6hjhodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9u +QXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOCAQEAPpiem/Yb6dc5t3iuHXIY +SdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CPOGEIqB6BCsAv +IC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ +RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4 +zJVSk/BwJVmcIGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5dd +BA6+C4OmF4O5MBKgxTMVBbkN+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IB +ZQ== +-----END CERTIFICATE----- + +# Issuer: CN=Network Solutions Certificate Authority O=Network Solutions L.L.C. +# Subject: CN=Network Solutions Certificate Authority O=Network Solutions L.L.C. +# Label: "Network Solutions Certificate Authority" +# Serial: 116697915152937497490437556386812487904 +# MD5 Fingerprint: d3:f3:a6:16:c0:fa:6b:1d:59:b1:2d:96:4d:0e:11:2e +# SHA1 Fingerprint: 74:f8:a3:c3:ef:e7:b3:90:06:4b:83:90:3c:21:64:60:20:e5:df:ce +# SHA256 Fingerprint: 15:f0:ba:00:a3:ac:7a:f3:ac:88:4c:07:2b:10:11:a0:77:bd:77:c0:97:f4:01:64:b2:f8:59:8a:bd:83:86:0c +-----BEGIN CERTIFICATE----- +MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBi +MQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu +MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3Jp +dHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMxMjM1OTU5WjBiMQswCQYDVQQGEwJV +UzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydO +ZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwz +c7MEL7xxjOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPP +OCwGJgl6cvf6UDL4wpPTaaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rl +mGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXTcrA/vGp97Eh/jcOrqnErU2lBUzS1sLnF +BgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc/Qzpf14Dl847ABSHJ3A4 +qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMBAAGjgZcw +gZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIB +BjAPBgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwu +bmV0c29sc3NsLmNvbS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3Jp +dHkuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc8 +6fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q4LqILPxFzBiwmZVRDuwduIj/ +h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/GGUsyfJj4akH +/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv +wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHN +pGxlaKFJdlxDydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey +-----END CERTIFICATE----- + +# Issuer: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Label: "COMODO ECC Certification Authority" +# Serial: 41578283867086692638256921589707938090 +# MD5 Fingerprint: 7c:62:ff:74:9d:31:53:5e:68:4a:d5:78:aa:1e:bf:23 +# SHA1 Fingerprint: 9f:74:4e:9f:2b:4d:ba:ec:0f:31:2c:50:b6:56:3b:8e:2d:93:c3:11 +# SHA256 Fingerprint: 17:93:92:7a:06:14:54:97:89:ad:ce:2f:8f:34:f7:f0:b6:6d:0f:3a:e3:a3:b8:4d:21:ec:15:db:ba:4f:ad:c7 +-----BEGIN CERTIFICATE----- +MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMT +IkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwMzA2MDAw +MDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdy +ZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09N +T0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSR +FtSrYpn1PlILBs5BAH+X4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0J +cfRK9ChQtP6IHG4/bC8vCVlbpVsLM5niwz2J+Wos77LTBumjQjBAMB0GA1UdDgQW +BBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VGFAkK+qDm +fQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdv +GDeAU/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= +-----END CERTIFICATE----- + +# Issuer: CN=Certigna O=Dhimyotis +# Subject: CN=Certigna O=Dhimyotis +# Label: "Certigna" +# Serial: 18364802974209362175 +# MD5 Fingerprint: ab:57:a6:5b:7d:42:82:19:b5:d8:58:26:28:5e:fd:ff +# SHA1 Fingerprint: b1:2e:13:63:45:86:a4:6f:1a:b2:60:68:37:58:2d:c4:ac:fd:94:97 +# SHA256 Fingerprint: e3:b6:a2:db:2e:d7:ce:48:84:2f:7a:c5:32:41:c7:b7:1d:54:14:4b:fb:40:c1:1f:3f:1d:0b:42:f5:ee:a1:2d +-----BEGIN CERTIFICATE----- +MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNV +BAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4X +DTA3MDYyOTE1MTMwNVoXDTI3MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQ +BgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwIQ2VydGlnbmEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7qXOEm7RFHYeGifBZ4 +QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyHGxny +gQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbw +zBfsV1/pogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q +130yGLMLLGq/jj8UEYkgDncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2 +JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKfIrjxwo1p3Po6WAbfAgMBAAGjgbwwgbkw +DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQtCRZvgHyUtVF9lo53BEw +ZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJBgNVBAYT +AkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzj +AQ/JSP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG +9w0BAQUFAAOCAQEAhQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8h +bV6lUmPOEvjvKtpv6zf+EwLHyzs+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFnc +fca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1kluPBS1xp81HlDQwY9qcEQCYsuu +HWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY1gkIl2PlwS6w +t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw +WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== +-----END CERTIFICATE----- + +# Issuer: CN=Cybertrust Global Root O=Cybertrust, Inc +# Subject: CN=Cybertrust Global Root O=Cybertrust, Inc +# Label: "Cybertrust Global Root" +# Serial: 4835703278459682877484360 +# MD5 Fingerprint: 72:e4:4a:87:e3:69:40:80:77:ea:bc:e3:f4:ff:f0:e1 +# SHA1 Fingerprint: 5f:43:e5:b1:bf:f8:78:8c:ac:1c:c7:ca:4a:9a:c6:22:2b:cc:34:c6 +# SHA256 Fingerprint: 96:0a:df:00:63:e9:63:56:75:0c:29:65:dd:0a:08:67:da:0b:9c:bd:6e:77:71:4a:ea:fb:23:49:ab:39:3d:a3 +-----BEGIN CERTIFICATE----- +MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYG +A1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2Jh +bCBSb290MB4XDTA2MTIxNTA4MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UE +ChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBS +b290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+Mi8vRRQZhP/8NN5 +7CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW0ozS +J8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2y +HLtgwEZLAfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iP +t3sMpTjr3kfb1V05/Iin89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNz +FtApD0mpSPCzqrdsxacwOUBdrsTiXSZT8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAY +XSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/ +MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2MDSgMqAw +hi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3Js +MB8GA1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUA +A4IBAQBW7wojoFROlZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMj +Wqd8BfP9IjsO0QbE2zZMcwSO5bAi5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUx +XOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2hO0j9n0Hq0V+09+zv+mKts2o +omcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+TX3EJIrduPuoc +A06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW +WL1WMRJOEcgh4LMRkWXbtKaIOM5V +-----END CERTIFICATE----- + +# Issuer: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Subject: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Label: "ePKI Root Certification Authority" +# Serial: 28956088682735189655030529057352760477 +# MD5 Fingerprint: 1b:2e:00:ca:26:06:90:3d:ad:fe:6f:15:68:d3:6b:b3 +# SHA1 Fingerprint: 67:65:0d:f1:7e:8e:7e:5b:82:40:a4:f4:56:4b:cf:e2:3d:69:c6:f0 +# SHA256 Fingerprint: c0:a6:f4:dc:63:a2:4b:fd:cf:54:ef:2a:6a:08:2a:0a:72:de:35:80:3e:2f:f5:ff:52:7a:e5:d8:72:06:df:d5 +-----BEGIN CERTIFICATE----- +MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBe +MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 +ZC4xKjAoBgNVBAsMIWVQS0kgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe +Fw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMxMjdaMF4xCzAJBgNVBAYTAlRXMSMw +IQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBL +SSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAH +SyZbCUNsIZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAh +ijHyl3SJCRImHJ7K2RKilTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3X +DZoTM1PRYfl61dd4s5oz9wCGzh1NlDivqOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1 +TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX12ruOzjjK9SXDrkb5wdJ +fzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0OWQqraffA +sgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uU +WH1+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLS +nT0IFaUQAS2zMnaolQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pH +dmX2Os+PYhcZewoozRrSgx4hxyy/vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJip +NiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXiZo1jDiVN1Rmy5nk3pyKdVDEC +AwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/QkqiMAwGA1UdEwQF +MAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH +ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGB +uvl2ICO1J2B01GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6Yl +PwZpVnPDimZI+ymBV3QGypzqKOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkP +JXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdVxrsStZf0X4OFunHB2WyBEXYKCrC/ +gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEPNXubrjlpC2JgQCA2 +j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+rGNm6 +5ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUB +o2M3IUxExJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS +/jQ6fbjpKdx2qcgw+BRxgMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2z +Gp1iro2C6pSe3VkQw63d4k3jMdXH7OjysP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTE +W9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmODBCEIZ43ygknQW/2xzQ+D +hNQ+IIX3Sj0rnP0qCglN6oH4EZw= +-----END CERTIFICATE----- + +# Issuer: O=certSIGN OU=certSIGN ROOT CA +# Subject: O=certSIGN OU=certSIGN ROOT CA +# Label: "certSIGN ROOT CA" +# Serial: 35210227249154 +# MD5 Fingerprint: 18:98:c0:d6:e9:3a:fc:f9:b0:f5:0c:f7:4b:01:44:17 +# SHA1 Fingerprint: fa:b7:ee:36:97:26:62:fb:2d:b0:2a:f6:bf:03:fd:e8:7c:4b:2f:9b +# SHA256 Fingerprint: ea:a9:62:c4:fa:4a:6b:af:eb:e4:15:19:6d:35:1c:cd:88:8d:4f:53:f3:fa:8a:e6:d7:c4:66:a9:4e:60:42:bb +-----BEGIN CERTIFICATE----- +MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYT +AlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBD +QTAeFw0wNjA3MDQxNzIwMDRaFw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJP +MREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTCC +ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7IJUqOtdu0KBuqV5Do +0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHHrfAQ +UySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5d +RdY4zTW2ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQ +OA7+j0xbm0bqQfWwCHTD0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwv +JoIQ4uNllAoEwF73XVv4EOLQunpL+943AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08C +AwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAcYwHQYDVR0O +BBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IBAQA+0hyJ +LjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecY +MnQ8SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ +44gx+FkagQnIl6Z0x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6I +Jd1hJyMctTEHBDa0GpC9oHRxUIltvBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNw +i/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7NzTogVZ96edhBiIL5VaZVDADlN +9u6wWk5JRFRYX0KD +-----END CERTIFICATE----- + +# Issuer: CN=GeoTrust Primary Certification Authority - G2 O=GeoTrust Inc. OU=(c) 2007 GeoTrust Inc. - For authorized use only +# Subject: CN=GeoTrust Primary Certification Authority - G2 O=GeoTrust Inc. OU=(c) 2007 GeoTrust Inc. - For authorized use only +# Label: "GeoTrust Primary Certification Authority - G2" +# Serial: 80682863203381065782177908751794619243 +# MD5 Fingerprint: 01:5e:d8:6b:bd:6f:3d:8e:a1:31:f8:12:e0:98:73:6a +# SHA1 Fingerprint: 8d:17:84:d5:37:f3:03:7d:ec:70:fe:57:8b:51:9a:99:e6:10:d7:b0 +# SHA256 Fingerprint: 5e:db:7a:c4:3b:82:a0:6a:87:61:e8:d7:be:49:79:eb:f2:61:1f:7d:d7:9b:f9:1c:1c:6b:56:6a:21:9e:d7:66 +-----BEGIN CERTIFICATE----- +MIICrjCCAjWgAwIBAgIQPLL0SAoA4v7rJDteYD7DazAKBggqhkjOPQQDAzCBmDEL +MAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChj +KSAyMDA3IEdlb1RydXN0IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2 +MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0 +eSAtIEcyMB4XDTA3MTEwNTAwMDAwMFoXDTM4MDExODIzNTk1OVowgZgxCzAJBgNV +BAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykgMjAw +NyBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNV +BAMTLUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBH +MjB2MBAGByqGSM49AgEGBSuBBAAiA2IABBWx6P0DFUPlrOuHNxFi79KDNlJ9RVcL +So17VDs6bl8VAsBQps8lL33KSLjHUGMcKiEIfJo22Av+0SbFWDEwKCXzXV2juLal +tJLtbCyf691DiaI8S0iRHVDsJt/WYC69IaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO +BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+EVXVMAoG +CCqGSM49BAMDA2cAMGQCMGSWWaboCd6LuvpaiIjwH5HTRqjySkwCY/tsXzjbLkGT +qQ7mndwxHLKgpxgceeHHNgIwOlavmnRs9vuD4DPTCF+hnMJbn0bWtsuRBmOiBucz +rD6ogRLQy7rQkgu2npaqBA+K +-----END CERTIFICATE----- + +# Issuer: CN=VeriSign Universal Root Certification Authority O=VeriSign, Inc. OU=VeriSign Trust Network/(c) 2008 VeriSign, Inc. - For authorized use only +# Subject: CN=VeriSign Universal Root Certification Authority O=VeriSign, Inc. OU=VeriSign Trust Network/(c) 2008 VeriSign, Inc. - For authorized use only +# Label: "VeriSign Universal Root Certification Authority" +# Serial: 85209574734084581917763752644031726877 +# MD5 Fingerprint: 8e:ad:b5:01:aa:4d:81:e4:8c:1d:d1:e1:14:00:95:19 +# SHA1 Fingerprint: 36:79:ca:35:66:87:72:30:4d:30:a5:fb:87:3b:0f:a7:7b:b7:0d:54 +# SHA256 Fingerprint: 23:99:56:11:27:a5:71:25:de:8c:ef:ea:61:0d:df:2f:a0:78:b5:c8:06:7f:4e:82:82:90:bf:b8:60:e8:4b:3c +-----BEGIN CERTIFICATE----- +MIIEuTCCA6GgAwIBAgIQQBrEZCGzEyEDDrvkEhrFHTANBgkqhkiG9w0BAQsFADCB +vTELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL +ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwOCBWZXJp +U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MTgwNgYDVQQDEy9W +ZXJpU2lnbiBVbml2ZXJzYWwgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe +Fw0wODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIG9MQswCQYDVQQGEwJVUzEX +MBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0 +IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9y +IGF1dGhvcml6ZWQgdXNlIG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNh +bCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEAx2E3XrEBNNti1xWb/1hajCMj1mCOkdeQmIN65lgZOIzF +9uVkhbSicfvtvbnazU0AtMgtc6XHaXGVHzk8skQHnOgO+k1KxCHfKWGPMiJhgsWH +H26MfF8WIFFE0XBPV+rjHOPMee5Y2A7Cs0WTwCznmhcrewA3ekEzeOEz4vMQGn+H +LL729fdC4uW/h2KJXwBL38Xd5HVEMkE6HnFuacsLdUYI0crSK5XQz/u5QGtkjFdN +/BMReYTtXlT2NJ8IAfMQJQYXStrxHXpma5hgZqTZ79IugvHw7wnqRMkVauIDbjPT +rJ9VAMf2CGqUuV/c4DPxhGD5WycRtPwW8rtWaoAljQIDAQABo4GyMIGvMA8GA1Ud +EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMG0GCCsGAQUFBwEMBGEwX6FdoFsw +WTBXMFUWCWltYWdlL2dpZjAhMB8wBwYFKw4DAhoEFI/l0xqGrI2Oa8PPgGrUSBgs +exkuMCUWI2h0dHA6Ly9sb2dvLnZlcmlzaWduLmNvbS92c2xvZ28uZ2lmMB0GA1Ud +DgQWBBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG9w0BAQsFAAOCAQEASvj4 +sAPmLGd75JR3Y8xuTPl9Dg3cyLk1uXBPY/ok+myDjEedO2Pzmvl2MpWRsXe8rJq+ +seQxIcaBlVZaDrHC1LGmWazxY8u4TB1ZkErvkBYoH1quEPuBUDgMbMzxPcP1Y+Oz +4yHJJDnp/RVmRvQbEdBNc6N9Rvk97ahfYtTxP/jgdFcrGJ2BtMQo2pSXpXDrrB2+ +BxHw1dvd5Yzw1TKwg+ZX4o+/vqGqvz0dtdQ46tewXDpPaj+PwGZsY6rp2aQW9IHR +lRQOfc2VNNnSj3BzgXucfr2YYdhFh5iQxeuGMMY1v/D/w1WIg0vvBZIGcfK4mJO3 +7M2CYfE45k+XmCpajQ== +-----END CERTIFICATE----- + +# Issuer: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Subject: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Label: "NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny" +# Serial: 80544274841616 +# MD5 Fingerprint: c5:a1:b7:ff:73:dd:d6:d7:34:32:18:df:fc:3c:ad:88 +# SHA1 Fingerprint: 06:08:3f:59:3f:15:a1:04:a0:69:a4:6b:a9:03:d0:06:b7:97:09:91 +# SHA256 Fingerprint: 6c:61:da:c3:a2:de:f0:31:50:6b:e0:36:d2:a6:fe:40:19:94:fb:d1:3d:f9:c8:d4:66:59:92:74:c4:46:ec:98 +-----BEGIN CERTIFICATE----- +MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQG +EwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3 +MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNl +cnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBBcmFueSAoQ2xhc3MgR29sZCkgRsWR +dGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgxMjA2MTUwODIxWjCB +pzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxOZXRM +b2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlm +aWNhdGlvbiBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNz +IEdvbGQpIEbFkXRhbsO6c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAxCRec75LbRTDofTjl5Bu0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrT +lF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw/HpYzY6b7cNGbIRwXdrz +AZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAkH3B5r9s5 +VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRG +ILdwfzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2 +BJtr+UBdADTHLpl1neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAG +AQH/AgEEMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2M +U9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwWqZw8UQCgwBEIBaeZ5m8BiFRh +bvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTtaYtOUZcTh5m2C ++C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC +bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2F +uLjbvrW5KfnaNwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2 +XjG4Kvte9nHfRCaexOYNkbQudZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= +-----END CERTIFICATE----- + +# Issuer: CN=Hongkong Post Root CA 1 O=Hongkong Post +# Subject: CN=Hongkong Post Root CA 1 O=Hongkong Post +# Label: "Hongkong Post Root CA 1" +# Serial: 1000 +# MD5 Fingerprint: a8:0d:6f:39:78:b9:43:6d:77:42:6d:98:5a:cc:23:ca +# SHA1 Fingerprint: d6:da:a8:20:8d:09:d2:15:4d:24:b5:2f:cb:34:6e:b2:58:b2:8a:58 +# SHA256 Fingerprint: f9:e6:7d:33:6c:51:00:2a:c0:54:c6:32:02:2d:66:dd:a2:e7:e3:ff:f1:0a:d0:61:ed:31:d8:bb:b4:10:cf:b2 +-----BEGIN CERTIFICATE----- +MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsx +FjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3Qg +Um9vdCBDQSAxMB4XDTAzMDUxNTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkG +A1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdr +b25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1ApzQ +jVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEn +PzlTCeqrauh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjh +ZY4bXSNmO7ilMlHIhqqhqZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9 +nnV0ttgCXjqQesBCNnLsak3c78QA3xMYV18meMjWCnl3v/evt3a5pQuEF10Q6m/h +q5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNVHRMBAf8ECDAGAQH/AgED +MA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7ih9legYsC +mEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI3 +7piol7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clB +oiMBdDhViw+5LmeiIAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJs +EhTkYY2sEJCehFC78JZvRZ+K88psT/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpO +fMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilTc4afU9hDDl3WY4JxHYB0yvbi +AmvZWg== +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Subject: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Label: "SecureSign RootCA11" +# Serial: 1 +# MD5 Fingerprint: b7:52:74:e2:92:b4:80:93:f2:75:e4:cc:d7:f2:ea:26 +# SHA1 Fingerprint: 3b:c4:9f:48:f8:f3:73:a0:9c:1e:bd:f8:5b:b1:c3:65:c7:d8:11:b3 +# SHA256 Fingerprint: bf:0f:ee:fb:9e:3a:58:1a:d5:f9:e9:db:75:89:98:57:43:d2:61:08:5c:4d:31:4f:6f:5d:72:59:aa:42:16:12 +-----BEGIN CERTIFICATE----- +MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDEr +MCkGA1UEChMiSmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoG +A1UEAxMTU2VjdXJlU2lnbiBSb290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0 +MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSswKQYDVQQKEyJKYXBhbiBDZXJ0aWZp +Y2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1cmVTaWduIFJvb3RD +QTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvLTJsz +i1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8 +h9uuywGOwvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOV +MdrAG/LuYpmGYz+/3ZMqg6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9 +UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rPO7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni +8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitAbpSACW22s293bzUIUPsC +h8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZXt94wDgYD +VR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEB +AKChOBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xm +KbabfSVSSUOrTC4rbnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQ +X5Ucv+2rIrVls4W6ng+4reV6G4pQOh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWr +QbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01y8hSyn+B/tlr0/cR7SXf+Of5 +pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061lgeLKBObjBmN +QSdJQO7e5iNEOdyhIta6A/I= +-----END CERTIFICATE----- + +# Issuer: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Subject: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Label: "Microsec e-Szigno Root CA 2009" +# Serial: 14014712776195784473 +# MD5 Fingerprint: f8:49:f4:03:bc:44:2d:83:be:48:69:7d:29:64:fc:b1 +# SHA1 Fingerprint: 89:df:74:fe:5c:f4:0f:4a:80:f9:e3:37:7d:54:da:91:e1:01:31:8e +# SHA256 Fingerprint: 3c:5f:81:fe:a5:fa:b8:2c:64:bf:a2:ea:ec:af:cd:e8:e0:77:fc:86:20:a7:ca:e5:37:16:3d:f3:6e:db:f3:78 +-----BEGIN CERTIFICATE----- +MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYD +VQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0 +ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0G +CSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTAeFw0wOTA2MTYxMTMwMThaFw0y +OTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3Qx +FjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3pp +Z25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o +dTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvP +kd6mJviZpWNwrZuuyjNAfW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tc +cbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG0IMZfcChEhyVbUr02MelTTMuhTlAdX4U +fIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKApxn1ntxVUwOXewdI/5n7 +N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm1HxdrtbC +xkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1 ++rUCAwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPM +Pcu1SCOhGnqmKrs0aDAbBgNVHREEFDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqG +SIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0olZMEyL/azXm4Q5DwpL7v8u8h +mLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfXI/OMn74dseGk +ddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 +tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c +2Pm2G2JwCz02yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5t +HMN1Rq41Bab2XD0h7lbwyYIiLXpUq3DDfSJlgnCW +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Label: "GlobalSign Root CA - R3" +# Serial: 4835703278459759426209954 +# MD5 Fingerprint: c5:df:b8:49:ca:05:13:55:ee:2d:ba:1a:c3:3e:b0:28 +# SHA1 Fingerprint: d6:9b:56:11:48:f0:1c:77:c5:45:78:c1:09:26:df:5b:85:69:76:ad +# SHA256 Fingerprint: cb:b5:22:d7:b7:f1:27:ad:6a:01:13:86:5b:df:1c:d4:10:2e:7d:07:59:af:63:5a:7c:f4:72:0d:c9:63:c5:3b +-----BEGIN CERTIFICATE----- +MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4G +A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNp +Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4 +MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEG +A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWtiHL8 +RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsT +gHeMCOFJ0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmm +KPZpO/bLyCiR5Z2KYVc3rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zd +QQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjlOCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZ +XriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2xmmFghcCAwEAAaNCMEAw +DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI/wS3+o +LkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZU +RUm7lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMp +jjM5RcOO5LlXbKr8EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK +6fBdRoyV3XpYKBovHd7NADdBj+1EbddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQX +mcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18YIvDQVETI53O9zJrlAGomecs +Mx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7rkpeDMdmztcpH +WD9f +-----END CERTIFICATE----- + +# Issuer: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Subject: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Label: "Autoridad de Certificacion Firmaprofesional CIF A62634068" +# Serial: 6047274297262753887 +# MD5 Fingerprint: 73:3a:74:7a:ec:bb:a3:96:a6:c2:e4:e2:c8:9b:c0:c3 +# SHA1 Fingerprint: ae:c5:fb:3f:c8:e1:bf:c4:e5:4f:03:07:5a:9a:e8:00:b7:f7:b6:fa +# SHA256 Fingerprint: 04:04:80:28:bf:1f:28:64:d4:8f:9a:d4:d8:32:94:36:6a:82:88:56:55:3f:3b:14:30:3f:90:14:7f:5d:40:ef +-----BEGIN CERTIFICATE----- +MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UE +BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h +cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEy +MzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg +Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 +thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM +cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG +L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i +NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h +X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b +m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy +Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja +EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T +KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF +6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh +OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1UdEwEB/wQIMAYBAf8CAQEwDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNHDhpkLzCBpgYD +VR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp +cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBv +ACAAZABlACAAbABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBl +AGwAbwBuAGEAIAAwADgAMAAxADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF +661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx51tkljYyGOylMnfX40S2wBEqgLk9 +am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qkR71kMrv2JYSiJ0L1 +ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaPT481 +PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS +3a/DTg4fJl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5k +SeTy36LssUzAKh3ntLFlosS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF +3dvd6qJ2gHN99ZwExEWN57kci57q13XRcrHedUTnQn3iV2t93Jm8PYMo6oCTjcVM +ZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoRsaS8I8nkvof/uZS2+F0g +StRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTDKCOM/icz +Q0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQB +jLMi6Et8Vcad+qMUu2WFbm5PEn4KPJ2V +-----END CERTIFICATE----- + +# Issuer: CN=Izenpe.com O=IZENPE S.A. +# Subject: CN=Izenpe.com O=IZENPE S.A. +# Label: "Izenpe.com" +# Serial: 917563065490389241595536686991402621 +# MD5 Fingerprint: a6:b0:cd:85:80:da:5c:50:34:a3:39:90:2f:55:67:73 +# SHA1 Fingerprint: 2f:78:3d:25:52:18:a7:4a:65:39:71:b5:2c:a2:9c:45:15:6f:e9:19 +# SHA256 Fingerprint: 25:30:cc:8e:98:32:15:02:ba:d9:6f:9b:1f:ba:1b:09:9e:2d:29:9e:0f:45:48:bb:91:4f:36:3b:c0:d4:53:1f +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=Chambers of Commerce Root - 2008 O=AC Camerfirma S.A. +# Subject: CN=Chambers of Commerce Root - 2008 O=AC Camerfirma S.A. +# Label: "Chambers of Commerce Root - 2008" +# Serial: 11806822484801597146 +# MD5 Fingerprint: 5e:80:9e:84:5a:0e:65:0b:17:02:f3:55:18:2a:3e:d7 +# SHA1 Fingerprint: 78:6a:74:ac:76:ab:14:7f:9c:6a:30:50:ba:9e:a8:7e:fe:9a:ce:3c +# SHA256 Fingerprint: 06:3e:4a:fa:c4:91:df:d3:32:f3:08:9b:85:42:e9:46:17:d8:93:d7:fe:94:4e:10:a7:93:7e:e2:9d:96:93:c0 +-----BEGIN CERTIFICATE----- +MIIHTzCCBTegAwIBAgIJAKPaQn6ksa7aMA0GCSqGSIb3DQEBBQUAMIGuMQswCQYD +VQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0 +IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3 +MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xKTAnBgNVBAMTIENoYW1iZXJz +IG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4MB4XDTA4MDgwMTEyMjk1MFoXDTM4MDcz +MTEyMjk1MFowga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNlZSBj +dXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29tL2FkZHJlc3MpMRIw +EAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVyZmlybWEgUy5BLjEp +MCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDgwggIiMA0G +CSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCvAMtwNyuAWko6bHiUfaN/Gh/2NdW9 +28sNRHI+JrKQUrpjOyhYb6WzbZSm891kDFX29ufyIiKAXuFixrYp4YFs8r/lfTJq +VKAyGVn+H4vXPWCGhSRv4xGzdz4gljUha7MI2XAuZPeEklPWDrCQiorjh40G072Q +DuKZoRuGDtqaCrsLYVAGUvGef3bsyw/QHg3PmTA9HMRFEFis1tPo1+XqxQEHd9ZR +5gN/ikilTWh1uem8nk4ZcfUyS5xtYBkL+8ydddy/Js2Pk3g5eXNeJQ7KXOt3EgfL +ZEFHcpOrUMPrCXZkNNI5t3YRCQ12RcSprj1qr7V9ZS+UWBDsXHyvfuK2GNnQm05a +Sd+pZgvMPMZ4fKecHePOjlO+Bd5gD2vlGts/4+EhySnB8esHnFIbAURRPHsl18Tl +UlRdJQfKFiC4reRB7noI/plvg6aRArBsNlVq5331lubKgdaX8ZSD6e2wsWsSaR6s ++12pxZjptFtYer49okQ6Y1nUCyXeG0+95QGezdIp1Z8XGQpvvwyQ0wlf2eOKNcx5 +Wk0ZN5K3xMGtr/R5JJqyAQuxr1yW84Ay+1w9mPGgP0revq+ULtlVmhduYJ1jbLhj +ya6BXBg14JC7vjxPNyK5fuvPnnchpj04gftI2jE9K+OJ9dC1vX7gUMQSibMjmhAx +hduub+84Mxh2EQIDAQABo4IBbDCCAWgwEgYDVR0TAQH/BAgwBgEB/wIBDDAdBgNV +HQ4EFgQU+SSsD7K1+HnA+mCIG8TZTQKeFxkwgeMGA1UdIwSB2zCB2IAU+SSsD7K1 ++HnA+mCIG8TZTQKeFxmhgbSkgbEwga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpN +YWRyaWQgKHNlZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29t +L2FkZHJlc3MpMRIwEAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVy +ZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAt +IDIwMDiCCQCj2kJ+pLGu2jAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRV +HSAAMCowKAYIKwYBBQUHAgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20w +DQYJKoZIhvcNAQEFBQADggIBAJASryI1wqM58C7e6bXpeHxIvj99RZJe6dqxGfwW +PJ+0W2aeaufDuV2I6A+tzyMP3iU6XsxPpcG1Lawk0lgH3qLPaYRgM+gQDROpI9CF +5Y57pp49chNyM/WqfcZjHwj0/gF/JM8rLFQJ3uIrbZLGOU8W6jx+ekbURWpGqOt1 +glanq6B8aBMz9p0w8G8nOSQjKpD9kCk18pPfNKXG9/jvjA9iSnyu0/VU+I22mlaH +FoI6M6taIgj3grrqLuBHmrS1RaMFO9ncLkVAO+rcf+g769HsJtg1pDDFOqxXnrN2 +pSB7+R5KBWIBpih1YJeSDW4+TTdDDZIVnBgizVGZoCkaPF+KMjNbMMeJL0eYD6MD +xvbxrN8y8NmBGuScvfaAFPDRLLmF9dijscilIeUcE5fuDr3fKanvNFNb0+RqE4QG +tjICxFKuItLcsiFCGtpA8CnJ7AoMXOLQusxI0zcKzBIKinmwPQN/aUv0NCB9szTq +jktk9T79syNnFQ0EuPAtwQlRPLJsFfClI9eDdOTlLsn+mCdCxqvGnrDQWzilm1De +fhiYtUU79nm06PcaewaD+9CL2rvHvRirCG88gGtAPxkZumWK5r7VXNM21+9AUiRg +OGcEMeyP84LG3rlV8zsxkVrctQgVrXYlCg17LofiDKYGvCYQbTed7N14jHyAxfDZ +d0jQ +-----END CERTIFICATE----- + +# Issuer: CN=Global Chambersign Root - 2008 O=AC Camerfirma S.A. +# Subject: CN=Global Chambersign Root - 2008 O=AC Camerfirma S.A. +# Label: "Global Chambersign Root - 2008" +# Serial: 14541511773111788494 +# MD5 Fingerprint: 9e:80:ff:78:01:0c:2e:c1:36:bd:fe:96:90:6e:08:f3 +# SHA1 Fingerprint: 4a:bd:ee:ec:95:0d:35:9c:89:ae:c7:52:a1:2c:5b:29:f6:d6:aa:0c +# SHA256 Fingerprint: 13:63:35:43:93:34:a7:69:80:16:a0:d3:24:de:72:28:4e:07:9d:7b:52:20:bb:8f:bd:74:78:16:ee:be:ba:ca +-----BEGIN CERTIFICATE----- +MIIHSTCCBTGgAwIBAgIJAMnN0+nVfSPOMA0GCSqGSIb3DQEBBQUAMIGsMQswCQYD +VQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0 +IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3 +MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBD +aGFtYmVyc2lnbiBSb290IC0gMjAwODAeFw0wODA4MDExMjMxNDBaFw0zODA3MzEx +MjMxNDBaMIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3Vy +cmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAG +A1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAl +BgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwODCCAiIwDQYJKoZI +hvcNAQEBBQADggIPADCCAgoCggIBAMDfVtPkOpt2RbQT2//BthmLN0EYlVJH6xed +KYiONWwGMi5HYvNJBL99RDaxccy9Wglz1dmFRP+RVyXfXjaOcNFccUMd2drvXNL7 +G706tcuto8xEpw2uIRU/uXpbknXYpBI4iRmKt4DS4jJvVpyR1ogQC7N0ZJJ0YPP2 +zxhPYLIj0Mc7zmFLmY/CDNBAspjcDahOo7kKrmCgrUVSY7pmvWjg+b4aqIG7HkF4 +ddPB/gBVsIdU6CeQNR1MM62X/JcumIS/LMmjv9GYERTtY/jKmIhYF5ntRQOXfjyG +HoiMvvKRhI9lNNgATH23MRdaKXoKGCQwoze1eqkBfSbW+Q6OWfH9GzO1KTsXO0G2 +Id3UwD2ln58fQ1DJu7xsepeY7s2MH/ucUa6LcL0nn3HAa6x9kGbo1106DbDVwo3V +yJ2dwW3Q0L9R5OP4wzg2rtandeavhENdk5IMagfeOx2YItaswTXbo6Al/3K1dh3e +beksZixShNBFks4c5eUzHdwHU1SjqoI7mjcv3N2gZOnm3b2u/GSFHTynyQbehP9r +6GsaPMWis0L7iwk+XwhSx2LE1AVxv8Rk5Pihg+g+EpuoHtQ2TS9x9o0o9oOpE9Jh +wZG7SMA0j0GMS0zbaRL/UJScIINZc+18ofLx/d33SdNDWKBWY8o9PeU1VlnpDsog +zCtLkykPAgMBAAGjggFqMIIBZjASBgNVHRMBAf8ECDAGAQH/AgEMMB0GA1UdDgQW +BBS5CcqcHtvTbDprru1U8VuTBjUuXjCB4QYDVR0jBIHZMIHWgBS5CcqcHtvTbDpr +ru1U8VuTBjUuXqGBsqSBrzCBrDELMAkGA1UEBhMCRVUxQzBBBgNVBAcTOk1hZHJp +ZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJmaXJtYS5jb20vYWRk +cmVzcykxEjAQBgNVBAUTCUE4Mjc0MzI4NzEbMBkGA1UEChMSQUMgQ2FtZXJmaXJt +YSBTLkEuMScwJQYDVQQDEx5HbG9iYWwgQ2hhbWJlcnNpZ24gUm9vdCAtIDIwMDiC +CQDJzdPp1X0jzjAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCow +KAYIKwYBBQUHAgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZI +hvcNAQEFBQADggIBAICIf3DekijZBZRG/5BXqfEv3xoNa/p8DhxJJHkn2EaqbylZ +UohwEurdPfWbU1Rv4WCiqAm57OtZfMY18dwY6fFn5a+6ReAJ3spED8IXDneRRXoz +X1+WLGiLwUePmJs9wOzL9dWCkoQ10b42OFZyMVtHLaoXpGNR6woBrX/sdZ7LoR/x +fxKxueRkf2fWIyr0uDldmOghp+G9PUIadJpwr2hsUF1Jz//7Dl3mLEfXgTpZALVz +a2Mg9jFFCDkO9HB+QHBaP9BrQql0PSgvAm11cpUJjUhjxsYjV5KTXjXBjfkK9yyd +Yhz2rXzdpjEetrHHfoUm+qRqtdpjMNHvkzeyZi99Bffnt0uYlDXA2TopwZ2yUDMd +SqlapskD7+3056huirRXhOukP9DuqqqHW2Pok+JrqNS4cnhrG+055F3Lm6qH1U9O +AP7Zap88MQ8oAgF9mOinsKJknnn4SPIVqczmyETrP3iZ8ntxPjzxmKfFGBI/5rso +M0LpRQp8bfKGeS/Fghl9CYl8slR2iK7ewfPM4W7bMdaTrpmg7yVqc5iJWzouE4ge +v8CSlDQb4ye3ix5vQv/n6TebUB0tovkC7stYWDpxvGjjqsGvHCgfotwjZT+B6q6Z +09gwzxMNTxXJhLynSC34MCN32EZLeW32jO06f2ARePTpm67VVMB0gNELQp/B +-----END CERTIFICATE----- + +# Issuer: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Subject: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Label: "Go Daddy Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 80:3a:bc:22:c1:e6:fb:8d:9b:3b:27:4a:32:1b:9a:01 +# SHA1 Fingerprint: 47:be:ab:c9:22:ea:e8:0e:78:78:34:62:a7:9f:45:c2:54:fd:e6:8b +# SHA256 Fingerprint: 45:14:0b:32:47:eb:9c:c8:c5:b4:f0:d7:b5:30:91:f7:32:92:08:9e:6e:5a:63:e2:74:9d:d3:ac:a9:19:8e:da +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT +EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp +ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIz +NTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH +EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8GA1UE +AxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKD +E6bFIEMBO4Tx5oVJnyfq9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH +/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD+qK+ihVqf94Lw7YZFAXK6sOoBJQ7Rnwy +DfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutdfMh8+7ArU6SSYmlRJQVh +GkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMlNAJWJwGR +tDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEA +AaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FDqahQcQZyi27/a9BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmX +WWcDYfF+OwYxdS2hII5PZYe096acvNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu +9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r5N9ss4UXnT3ZJE95kTXWXwTr +gIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYVN8Gb5DKj7Tjo +2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO +LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI +4uJEvlz36hz1 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: d6:39:81:c6:52:7e:96:69:fc:fc:ca:66:ed:05:f2:96 +# SHA1 Fingerprint: b5:1c:06:7c:ee:2b:0c:3d:f8:55:ab:2d:92:f4:fe:39:d4:e7:0f:0e +# SHA256 Fingerprint: 2c:e1:cb:0b:f9:d2:f9:e1:02:99:3f:be:21:51:52:c3:b2:dd:0c:ab:de:1c:68:e5:31:9b:83:91:54:db:b7:f5 +-----BEGIN CERTIFICATE----- +MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVs +ZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAw +MFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 +b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVj +aG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZp +Y2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAL3twQP89o/8ArFvW59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMg +nLRJdzIpVv257IzdIvpy3Cdhl+72WoTsbhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1 +HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNkN3mSwOxGXn/hbVNMYq/N +Hwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7NfZTD4p7dN +dloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0 +HZbUJtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO +BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0G +CSqGSIb3DQEBCwUAA4IBAQARWfolTwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjU +sHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx4mcujJUDJi5DnUox9g61DLu3 +4jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUwF5okxBDgBPfg +8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K +pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1 +mMpYjn0q7pBZc2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Services Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 17:35:74:af:7b:61:1c:eb:f4:f9:3c:e2:ee:40:f9:a2 +# SHA1 Fingerprint: 92:5a:8f:8d:2c:6d:04:e0:66:5f:59:6a:ff:22:d8:63:e8:25:6f:3f +# SHA256 Fingerprint: 56:8d:69:05:a2:c8:87:08:a4:b3:02:51:90:ed:cf:ed:b1:97:4a:60:6a:13:c6:e5:29:0f:cb:2a:e6:3e:da:b5 +-----BEGIN CERTIFICATE----- +MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVs +ZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 +MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNVBAYTAlVTMRAwDgYD +VQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFy +ZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2Vy +dmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20p +OsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm2 +8xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1K +Ts9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufe +hRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk +6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAw +DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+q +AdcwKziIorhtSpzyEZGDMA0GCSqGSIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMI +bw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPPE95Dz+I0swSdHynVv/heyNXB +ve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTyxQGjhdByPq1z +qwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd +iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn +0q23KXB56jzaYyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCN +sSi6 +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Commercial O=AffirmTrust +# Subject: CN=AffirmTrust Commercial O=AffirmTrust +# Label: "AffirmTrust Commercial" +# Serial: 8608355977964138876 +# MD5 Fingerprint: 82:92:ba:5b:ef:cd:8a:6f:a6:3d:55:f9:84:f6:d6:b7 +# SHA1 Fingerprint: f9:b5:b6:32:45:5f:9c:be:ec:57:5f:80:dc:e9:6e:2c:c7:b2:78:b7 +# SHA256 Fingerprint: 03:76:ab:1d:54:c5:f9:80:3c:e4:b2:e2:01:a0:ee:7e:ef:7b:57:b6:36:e8:a9:3c:9b:8d:48:60:c9:6f:5f:a7 +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBDb21tZXJjaWFsMB4XDTEwMDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6EqdbDuKP +Hx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yr +ba0F8PrVC8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPAL +MeIrJmqbTFeurCA+ukV6BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1 +yHp52UKqK39c/s4mT6NmgTWvRLpUHhwwMmWd5jyTXlBOeuM61G7MGvv50jeuJCqr +VwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNVHQ4EFgQUnZPGU4teyq8/ +nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYG +XUPGhi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNj +vbz4YYCanrHOQnDiqX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivt +Z8SOyUOyXGsViQK8YvxO8rUzqrJv0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9g +N53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0khsUlHRUe072o0EclNmsxZt9YC +nlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Networking O=AffirmTrust +# Subject: CN=AffirmTrust Networking O=AffirmTrust +# Label: "AffirmTrust Networking" +# Serial: 8957382827206547757 +# MD5 Fingerprint: 42:65:ca:be:01:9a:9a:4c:a9:8c:41:49:cd:c0:d5:7f +# SHA1 Fingerprint: 29:36:21:02:8b:20:ed:02:f5:66:c5:32:d1:d6:ed:90:9f:45:00:2f +# SHA256 Fingerprint: 0a:81:ec:5a:92:97:77:f1:45:90:4a:f3:8d:5d:50:9f:66:b5:e2:c5:8f:cd:b5:31:05:8b:0e:17:f3:f0:b4:1b +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBOZXR3b3JraW5nMB4XDTEwMDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SEHi3y +YJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbua +kCNrmreIdIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRL +QESxG9fhwoXA3hA/Pe24/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp +6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gbh+0t+nvujArjqWaJGctB+d1ENmHP4ndG +yH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNVHQ4EFgQUBx/S55zawm6i +QLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfO +tDIuUFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzu +QY0x2+c06lkh1QF612S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZ +Lgo/bNjR9eUJtGxUAArgFU2HdW23WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4u +olu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9/ZFvgrG+CJPbFEfxojfHRZ48 +x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium O=AffirmTrust +# Subject: CN=AffirmTrust Premium O=AffirmTrust +# Label: "AffirmTrust Premium" +# Serial: 7893706540734352110 +# MD5 Fingerprint: c4:5d:0e:48:b6:ac:28:30:4e:0a:bc:f9:38:16:87:57 +# SHA1 Fingerprint: d8:a6:33:2c:e0:03:6f:b1:85:f6:63:4f:7d:6a:06:65:26:32:28:27 +# SHA256 Fingerprint: 70:a7:3f:7f:37:6b:60:07:42:48:90:45:34:b1:14:82:d5:bf:0e:69:8e:cc:49:8d:f5:25:77:eb:f2:e9:3b:9a +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVz +dCBQcmVtaXVtMB4XDTEwMDEyOTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkG +A1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1U +cnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxBLf +qV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtnBKAQ +JG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ ++jjeRFcV5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrS +s8PhaJyJ+HoAVt70VZVs+7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5 +HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmdGPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d7 +70O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5Rp9EixAqnOEhss/n/fauG +V+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NIS+LI+H+S +qHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S +5u046uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4Ia +C1nEWTJ3s7xgaVY5/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TX +OwF0lkLgAOIua+rF7nKsu7/+6qqo+Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYE +FJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByvMiPIs0laUZx2 +KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg +Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B +8OWycvpEgjNC6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQ +MKSOyARiqcTtNd56l+0OOF6SL5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc +0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK+4w1IX2COPKpVJEZNZOUbWo6xbLQ +u4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmVBtWVyuEklut89pMF +u+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFgIxpH +YoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8 +GKa1qF60g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaO +RtGdFNrHF+QFlozEJLUbzxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6e +KeC2uAloGRwYQw== +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium ECC O=AffirmTrust +# Subject: CN=AffirmTrust Premium ECC O=AffirmTrust +# Label: "AffirmTrust Premium ECC" +# Serial: 8401224907861490260 +# MD5 Fingerprint: 64:b0:09:55:cf:b1:d5:99:e2:be:13:ab:a6:5d:ea:4d +# SHA1 Fingerprint: b8:23:6b:00:2f:1d:16:86:53:01:55:6c:11:a4:37:ca:eb:ff:c3:bb +# SHA256 Fingerprint: bd:71:fd:f6:da:97:e4:cf:62:d1:64:7a:dd:25:81:b0:7d:79:ad:f8:39:7e:b4:ec:ba:9c:5e:84:88:82:14:23 +-----BEGIN CERTIFICATE----- +MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMC +VVMxFDASBgNVBAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQ +cmVtaXVtIEVDQzAeFw0xMDAxMjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJ +BgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1UcnVzdDEgMB4GA1UEAwwXQWZmaXJt +VHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQNMF4bFZ0D +0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQN8O9 +ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0G +A1UdDgQWBBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/Vs +aobgxCd05DhT1wV/GzTjxi+zygk8N53X57hG8f2h4nECMEJZh0PUUd+60wkyWs6I +flc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKMeQ== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA" +# Serial: 279744 +# MD5 Fingerprint: d5:e9:81:40:c5:18:69:fc:46:2c:89:75:62:0f:aa:78 +# SHA1 Fingerprint: 07:e0:32:e0:20:b7:2c:3f:19:2f:06:28:a2:59:3a:19:a7:0f:06:9e +# SHA256 Fingerprint: 5c:58:46:8d:55:f5:8e:49:7e:74:39:82:d2:b5:00:10:b6:d1:65:37:4a:cf:83:a7:d4:a3:2d:b7:68:c4:40:8e +-----BEGIN CERTIFICATE----- +MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBM +MSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5D +ZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBU +cnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIyMTIwNzM3WhcNMjkxMjMxMTIwNzM3 +WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMg +Uy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIw +IAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0B +AQEFAAOCAQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rH +UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM +TXPb865Px1bVWqeWifrzq2jUI4ZZJ88JJ7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVU +BBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4fOQtf/WsX+sWn7Et0brM +kUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0cvW0QM8x +AcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNV +HQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15y +sHhE49wcrwn9I0j6vSrEuVUEtRCjjSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfL +I9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1mS1FhIrlQgnXdAIv94nYmem8 +J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5ajZt3hrvJBW8qY +VoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI +03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Label: "TWCA Root Certification Authority" +# Serial: 1 +# MD5 Fingerprint: aa:08:8f:f6:f9:7b:b7:f2:b1:a7:1e:9b:ea:ea:bd:79 +# SHA1 Fingerprint: cf:9e:87:6d:d3:eb:fc:42:26:97:a3:b5:a3:7a:a0:76:a9:06:23:48 +# SHA256 Fingerprint: bf:d8:8f:e1:10:1c:41:ae:3e:80:1b:f8:be:56:35:0e:e9:ba:d1:a6:b9:bd:51:5e:dc:5c:6d:5b:87:11:ac:44 +-----BEGIN CERTIFICATE----- +MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzES +MBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFU +V0NBIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMz +WhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJVEFJV0FO +LUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +AQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFE +AcK0HMMxQhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HH +K3XLfJ+utdGdIzdjp9xCoi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeX +RfwZVzsrb+RH9JlF/h3x+JejiB03HFyP4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/z +rX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1ry+UPizgN7gr8/g+YnzAx +3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkq +hkiG9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeC +MErJk/9q56YAf4lCmtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdls +XebQ79NqZp4VKIV66IIArB6nCWlWQtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62D +lhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVYT0bf+215WfKEIlKuD8z7fDvn +aspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocnyYh0igzyXxfkZ +YiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== +-----END CERTIFICATE----- + +# Issuer: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Subject: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Label: "Security Communication RootCA2" +# Serial: 0 +# MD5 Fingerprint: 6c:39:7d:a4:0e:55:59:b2:3f:d6:41:b1:12:50:de:43 +# SHA1 Fingerprint: 5f:3b:8c:f2:f8:10:b3:7d:78:b4:ce:ec:19:19:c3:73:34:b9:c7:74 +# SHA256 Fingerprint: 51:3b:2c:ec:b8:10:d4:cd:e5:dd:85:39:1a:df:c6:c2:dd:60:d8:7b:b7:36:d2:b5:21:48:4a:a4:7a:0e:be:f6 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDEl +MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMe +U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoX +DTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRy +dXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3VyaXR5IENvbW11bmlj +YXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAV +OVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGr +zbl+dp+++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVM +VAX3NuRFg3sUZdbcDE3R3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQ +hNBqyjoGADdH5H5XTz+L62e4iKrFvlNVspHEfbmwhRkGeC7bYRr6hfVKkaHnFtWO +ojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1KEOtOghY6rCcMU/Gt1SSw +awNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8QIH4D5cs +OPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3 +DQEBCwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpF +coJxDjrSzG+ntKEju/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXc +okgfGT+Ok+vx+hfuzU7jBBJV1uXk3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8 +t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6qtnRGEmyR7jTV7JqR50S+kDFy +1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29mvVXIwAHIRc/ +SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 +-----END CERTIFICATE----- + +# Issuer: CN=EC-ACC O=Agencia Catalana de Certificacio (NIF Q-0801176-I) OU=Serveis Publics de Certificacio/Vegeu https://www.catcert.net/verarrel (c)03/Jerarquia Entitats de Certificacio Catalanes +# Subject: CN=EC-ACC O=Agencia Catalana de Certificacio (NIF Q-0801176-I) OU=Serveis Publics de Certificacio/Vegeu https://www.catcert.net/verarrel (c)03/Jerarquia Entitats de Certificacio Catalanes +# Label: "EC-ACC" +# Serial: -23701579247955709139626555126524820479 +# MD5 Fingerprint: eb:f5:9d:29:0d:61:f9:42:1f:7c:c2:ba:6d:e3:15:09 +# SHA1 Fingerprint: 28:90:3a:63:5b:52:80:fa:e6:77:4c:0b:6d:a7:d6:ba:a6:4a:f2:e8 +# SHA256 Fingerprint: 88:49:7f:01:60:2f:31:54:24:6a:e2:8c:4d:5a:ef:10:f1:d8:7e:bb:76:62:6f:4a:e0:b7:f9:5b:a7:96:87:99 +-----BEGIN CERTIFICATE----- +MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB +8zELMAkGA1UEBhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2Vy +dGlmaWNhY2lvIChOSUYgUS0wODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1 +YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYDVQQLEyxWZWdldSBodHRwczovL3d3 +dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UECxMsSmVyYXJxdWlh +IEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMTBkVD +LUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQG +EwJFUzE7MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8g +KE5JRiBRLTA4MDExNzYtSSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBD +ZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZlZ2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQu +bmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJhcnF1aWEgRW50aXRhdHMg +ZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUNDMIIBIjAN +BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R +85iKw5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm +4CgPukLjbo73FCeTae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaV +HMf5NLWUhdWZXqBIoH7nF2W4onW4HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNd +QlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0aE9jD2z3Il3rucO2n5nzbcc8t +lGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw0JDnJwIDAQAB +o4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4 +opvpXY0wfwYDVR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBo +dHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidW +ZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAwDQYJKoZIhvcN +AQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJlF7W2u++AVtd0x7Y +/X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNaAl6k +SBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhy +Rp/7SNVel+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOS +Agu+TGbrIP65y7WZf+a2E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xl +nJ2lYJU6Un/10asIbvPuW/mIPX64b24D5EI= +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions RootCA 2011 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions RootCA 2011 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions RootCA 2011" +# Serial: 0 +# MD5 Fingerprint: 73:9f:4c:4b:73:5b:79:e9:fa:ba:1c:ef:6e:cb:d5:c9 +# SHA1 Fingerprint: fe:45:65:9b:79:03:5b:98:a1:61:b5:51:2e:ac:da:58:09:48:22:4d +# SHA256 Fingerprint: bc:10:4f:15:a4:8b:e7:09:dc:a5:42:a7:e1:d4:b9:df:6f:05:45:27:e8:02:ea:a9:2d:59:54:44:25:8a:fe:71 +-----BEGIN CERTIFICATE----- +MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1Ix +RDBCBgNVBAoTO0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 +dGlvbnMgQ2VydC4gQXV0aG9yaXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1p +YyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIFJvb3RDQSAyMDExMB4XDTExMTIw +NjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYTAkdSMUQwQgYDVQQK +EztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENl +cnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBAKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPz +dYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJ +fel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa71HFK9+WXesyHgLacEns +bgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u8yBRQlqD +75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSP +FEDH3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNV +HRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp +5dgTBCPuQSUwRwYDVR0eBEAwPqA8MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQu +b3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQub3JnMA0GCSqGSIb3DQEBBQUA +A4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVtXdMiKahsog2p +6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8 +TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7 +dIsXRSZMFpGD/md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8Acys +Nnq/onN694/BtZqhFLKPM58N7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXI +l7WdmplNsDz4SgCbZN2fOUvRJ9e4 +-----END CERTIFICATE----- + +# Issuer: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Subject: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Label: "Actalis Authentication Root CA" +# Serial: 6271844772424770508 +# MD5 Fingerprint: 69:c1:0d:4f:07:a3:1b:c3:fe:56:3d:04:bc:11:f6:a6 +# SHA1 Fingerprint: f3:73:b3:87:06:5a:28:84:8a:f2:f3:4a:ce:19:2b:dd:c7:8e:9c:ac +# SHA256 Fingerprint: 55:92:60:84:ec:96:3a:64:b9:6e:2a:be:01:ce:0b:a8:6a:64:fb:fe:bc:c7:aa:b5:af:c1:55:b3:7f:d7:60:66 +-----BEGIN CERTIFICATE----- +MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UE +BhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8w +MzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 +IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDkyMjExMjIwMlowazELMAkGA1UEBhMC +SVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1 +ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENB +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNv +UTufClrJwkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX +4ay8IMKx4INRimlNAJZaby/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9 +KK3giq0itFZljoZUj5NDKd45RnijMCO6zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/ +gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1fYVEiVRvjRuPjPdA1Yprb +rxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2oxgkg4YQ +51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2F +be8lEfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxe +KF+w6D9Fz8+vm2/7hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4F +v6MGn8i1zeQf1xcGDXqVdFUNaBr8EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbn +fpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5jF66CyCU3nuDuP/jVo23Eek7 +jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLYiDrIn3hm7Ynz +ezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt +ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAL +e3KHwGCmSUyIWOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70 +jsNjLiNmsGe+b7bAEzlgqqI0JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDz +WochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKxK3JCaKygvU5a2hi/a5iB0P2avl4V +SM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+Xlff1ANATIGk0k9j +pwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC4yyX +X04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+Ok +fcvHlXHo2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7R +K4X9p2jIugErsWx0Hbhzlefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btU +ZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXemOR/qnuOf0GZvBeyqdn6/axag67XH/JJU +LysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9vwGYT7JZVEc+NHt4bVaT +LnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== +-----END CERTIFICATE----- + +# Issuer: O=Trustis Limited OU=Trustis FPS Root CA +# Subject: O=Trustis Limited OU=Trustis FPS Root CA +# Label: "Trustis FPS Root CA" +# Serial: 36053640375399034304724988975563710553 +# MD5 Fingerprint: 30:c9:e7:1e:6b:e6:14:eb:65:b2:16:69:20:31:67:4d +# SHA1 Fingerprint: 3b:c0:38:0b:33:c3:f6:a6:0c:86:15:22:93:d9:df:f5:4b:81:c0:04 +# SHA256 Fingerprint: c1:b4:82:99:ab:a5:20:8f:e9:63:0a:ce:55:ca:68:a0:3e:da:5a:51:9c:88:02:a0:d3:a6:73:be:8f:8e:55:7d +-----BEGIN CERTIFICATE----- +MIIDZzCCAk+gAwIBAgIQGx+ttiD5JNM2a/fH8YygWTANBgkqhkiG9w0BAQUFADBF +MQswCQYDVQQGEwJHQjEYMBYGA1UEChMPVHJ1c3RpcyBMaW1pdGVkMRwwGgYDVQQL +ExNUcnVzdGlzIEZQUyBSb290IENBMB4XDTAzMTIyMzEyMTQwNloXDTI0MDEyMTEx +MzY1NFowRTELMAkGA1UEBhMCR0IxGDAWBgNVBAoTD1RydXN0aXMgTGltaXRlZDEc +MBoGA1UECxMTVHJ1c3RpcyBGUFMgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQAD +ggEPADCCAQoCggEBAMVQe547NdDfxIzNjpvto8A2mfRC6qc+gIMPpqdZh8mQRUN+ +AOqGeSoDvT03mYlmt+WKVoaTnGhLaASMk5MCPjDSNzoiYYkchU59j9WvezX2fihH +iTHcDnlkH5nSW7r+f2C/revnPDgpai/lkQtV/+xvWNUtyd5MZnGPDNcE2gfmHhjj +vSkCqPoc4Vu5g6hBSLwacY3nYuUtsuvffM/bq1rKMfFMIvMFE/eC+XN5DL7XSxzA +0RU8k0Fk0ea+IxciAIleH2ulrG6nS4zto3Lmr2NNL4XSFDWaLk6M6jKYKIahkQlB +OrTh4/L68MkKokHdqeMDx4gVOxzUGpTXn2RZEm0CAwEAAaNTMFEwDwYDVR0TAQH/ +BAUwAwEB/zAfBgNVHSMEGDAWgBS6+nEleYtXQSUhhgtx67JkDoshZzAdBgNVHQ4E +FgQUuvpxJXmLV0ElIYYLceuyZA6LIWcwDQYJKoZIhvcNAQEFBQADggEBAH5Y//01 +GX2cGE+esCu8jowU/yyg2kdbw++BLa8F6nRIW/M+TgfHbcWzk88iNVy2P3UnXwmW +zaD+vkAMXBJV+JOCyinpXj9WV4s4NvdFGkwozZ5BuO1WTISkQMi4sKUraXAEasP4 +1BIy+Q7DsdwyhEQsb8tGD+pmQQ9P8Vilpg0ND2HepZ5dfWWhPBfnqFVO76DH7cZE +f1T1o+CP8HxVIo8ptoGj4W1OLBuAZ+ytIJ8MYmHVl/9D7S3B2l0pKoU/rGXuhg8F +jZBf3+6f9L/uHfuY5H+QK4R4EA5sSVPvFVtlRkpdr7r7OnIdzfYliB6XzCGcKQEN +ZetX2fNXlrtIzYE= +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 2 Root CA" +# Serial: 2 +# MD5 Fingerprint: 46:a7:d2:fe:45:fb:64:5a:a8:59:90:9b:78:44:9b:29 +# SHA1 Fingerprint: 49:0a:75:74:de:87:0a:47:fe:58:ee:f6:c7:6b:eb:c6:0b:12:40:99 +# SHA256 Fingerprint: 9a:11:40:25:19:7c:5b:b9:5d:94:e6:3d:55:cd:43:79:08:47:b6:46:b2:3c:df:11:ad:a4:a0:0e:ff:15:fb:48 +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMiBSb290IENBMB4XDTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1ow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1g1Lr +6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPV +L4O2fuPn9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC91 +1K2GScuVr1QGbNgGE41b/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHx +MlAQTn/0hpPshNOOvEu/XAFOBz3cFIqUCqTqc/sLUegTBxj6DvEr0VQVfTzh97QZ +QmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeffawrbD02TTqigzXsu8lkB +arcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgIzRFo1clr +Us3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLi +FRhnBkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRS +P/TizPJhk9H9Z2vXUq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN +9SG9dKpN6nIDSdvHXx1iY8f93ZHsM+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxP +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMmAd+BikoL1Rpzz +uvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAU18h +9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s +A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3t +OluwlN5E40EIosHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo ++fsicdl9sz1Gv7SEr5AcD48Saq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7 +KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYdDnkM/crqJIByw5c/8nerQyIKx+u2 +DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWDLfJ6v9r9jv6ly0Us +H8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0oyLQ +I+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK7 +5t98biGCwWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h +3PFaTWwyI0PurKju7koSCTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPz +Y11aWOIv4x3kqdbQCtCev9eBCfHJxyYNrJgWVqA= +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 3 Root CA" +# Serial: 2 +# MD5 Fingerprint: 3d:3b:18:9e:2c:64:5a:e8:d5:88:ce:0e:f9:37:c2:ec +# SHA1 Fingerprint: da:fa:f7:fa:66:84:ec:06:8f:14:50:bd:c7:c2:81:a5:bc:a9:64:57 +# SHA256 Fingerprint: ed:f7:eb:bc:a2:7a:2a:38:4d:38:7b:7d:40:10:c6:66:e2:ed:b4:84:3e:4c:29:b4:ae:1d:5b:93:32:e6:b2:4d +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMyBSb290IENBMB4XDTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRHsJ8Y +ZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3E +N3coTRiR5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9 +tznDDgFHmV0ST9tD+leh7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX +0DJq1l1sDPGzbjniazEuOQAnFN44wOwZZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c +/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH2xc519woe2v1n/MuwU8X +KhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV/afmiSTY +zIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvS +O1UQRwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D +34xFMFbG02SrZvPAXpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgP +K9Dx2hzLabjKSWJtyNBjYt1gD1iqj6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3 +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFEe4zf/lb+74suwv +Tg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAACAj +QTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV +cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXS +IGrs/CIBKM+GuIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2 +HJLw5QY33KbmkJs4j1xrG0aGQ0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsa +O5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8ZORK15FTAaggiG6cX0S5y2CBNOxv +033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2KSb12tjE8nVhz36u +dmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz6MkE +kbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg41 +3OEMXbugUZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvD +u79leNKGef9JOxqDDPDeeOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq +4/g7u9xN12TyUb7mqqta6THuBrxzvxNiCp/HuZc= +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 3" +# Serial: 1 +# MD5 Fingerprint: ca:fb:40:a8:4e:39:92:8a:1d:fe:8e:2f:c4:27:ea:ef +# SHA1 Fingerprint: 55:a6:72:3e:cb:f2:ec:cd:c3:23:74:70:19:9d:2a:be:11:e3:81:d1 +# SHA256 Fingerprint: fd:73:da:d3:1c:64:4f:f1:b4:3b:ef:0c:cd:da:96:71:0b:9c:d9:87:5e:ca:7e:31:70:7a:f3:e9:6d:52:2b:bd +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgxMDAxMTAyOTU2WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN +8ELg63iIVl6bmlQdTQyK9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/ +RLyTPWGrTs0NvvAgJ1gORH8EGoel15YUNpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4 +hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZFiP0Zf3WHHx+xGwpzJFu5 +ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W0eDrXltM +EnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1 +A/d2O2GCahKqGFPrAyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOy +WL6ukK2YJ5f+AbGwUgC4TeQbIXQbfsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ +1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzTucpH9sry9uetuUg/vBa3wW30 +6gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7hP0HHRwA11fXT +91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml +e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4p +TpPDpFQUWw== +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 2009" +# Serial: 623603 +# MD5 Fingerprint: cd:e0:25:69:8d:47:ac:9c:89:35:90:f7:fd:51:3d:2f +# SHA1 Fingerprint: 58:e8:ab:b0:36:15:33:fb:80:f7:9b:1b:6d:29:d3:ff:8d:5f:00:f0 +# SHA256 Fingerprint: 49:e7:a4:42:ac:f0:ea:62:87:05:00:54:b5:25:64:b6:50:e4:f4:9e:42:e3:48:d6:aa:38:e0:39:e9:57:b1:c1 +-----BEGIN CERTIFICATE----- +MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgMjAwOTAeFw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NTha +ME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMM +HkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOADER03 +UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42 +tSHKXzlABF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9R +ySPocq60vFYJfxLLHLGvKZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsM +lFqVlNpQmvH/pStmMaTJOKDfHR+4CS7zp+hnUquVH+BGPtikw8paxTGA6Eian5Rp +/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUCAwEAAaOCARowggEWMA8G +A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ4PGEMA4G +A1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVj +dG9yeS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUy +MENBJTIwMiUyMDIwMDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRl +cmV2b2NhdGlvbmxpc3QwQ6BBoD+GPWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3Js +L2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAwOS5jcmwwDQYJKoZIhvcNAQEL +BQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm2H6NMLVwMeni +acfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 +o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4K +zCUqNQT4YJEVdT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8 +PIWmawomDeCTmGCufsYkl4phX5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3Y +Johw1+qRzT65ysCQblrGXnRl11z+o+I= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 EV 2009" +# Serial: 623604 +# MD5 Fingerprint: aa:c6:43:2c:5e:2d:cd:c4:34:c0:50:4f:11:02:4f:b6 +# SHA1 Fingerprint: 96:c9:1b:0b:95:b4:10:98:42:fa:d0:d8:22:79:fe:60:fa:b9:16:83 +# SHA256 Fingerprint: ee:c5:49:6b:98:8c:e9:86:25:b9:34:09:2e:ec:29:08:be:d0:b0:f3:16:c2:d4:73:0c:84:ea:f1:f3:d3:48:81 +-----BEGIN CERTIFICATE----- +MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgRVYgMjAwOTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUw +NDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNV +BAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAwOTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfSegpn +ljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM0 +3TP1YtHhzRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6Z +qQTMFexgaDbtCHu39b+T7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lR +p75mpoo6Kr3HGrHhFPC+Oh25z1uxav60sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8 +HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure3511H3a6UCAwEAAaOCASQw +ggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyvcop9Ntea +HNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFw +Oi8vZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xh +c3MlMjAzJTIwQ0ElMjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1E +RT9jZXJ0aWZpY2F0ZXJldm9jYXRpb25saXN0MEagRKBChkBodHRwOi8vd3d3LmQt +dHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xhc3NfM19jYV8yX2V2XzIwMDku +Y3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+PPoeUSbrh/Yp +3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 +nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNF +CSuGdXzfX2lXANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7na +xpeG0ILD5EJt/rDiZE4OJudANCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqX +KVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVvw9y4AyHqnxbxLFS1 +-----END CERTIFICATE----- + +# Issuer: CN=CA Disig Root R2 O=Disig a.s. +# Subject: CN=CA Disig Root R2 O=Disig a.s. +# Label: "CA Disig Root R2" +# Serial: 10572350602393338211 +# MD5 Fingerprint: 26:01:fb:d8:27:a7:17:9a:45:54:38:1a:43:01:3b:03 +# SHA1 Fingerprint: b5:61:eb:ea:a4:de:e4:25:4b:69:1a:98:a5:57:47:c2:34:c7:d9:71 +# SHA256 Fingerprint: e2:3d:4a:03:6d:7b:70:e9:f5:95:b1:42:20:79:d2:b9:1e:df:bb:1f:b6:51:a0:63:3e:aa:8a:9d:c5:f8:07:03 +-----BEGIN CERTIFICATE----- +MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNV +BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu +MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQy +MDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx +EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjIw +ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbCw3Oe +NcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNH +PWSb6WiaxswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3I +x2ymrdMxp7zo5eFm1tL7A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbe +QTg06ov80egEFGEtQX6sx3dOy1FU+16SGBsEWmjGycT6txOgmLcRK7fWV8x8nhfR +yyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqVg8NTEQxzHQuyRpDRQjrO +QG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa5Beny912 +H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJ +QfYEkoopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUD +i/ZnWejBBhG93c+AAk9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORs +nLMOPReisjQS1n6yqEm70XooQL6iFh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1 +rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud +DwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5uQu0wDQYJKoZI +hvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM +tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqf +GopTpti72TVVsRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkb +lvdhuDvEK7Z4bLQjb/D907JedR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka ++elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W81k/BfDxujRNt+3vrMNDcTa/F1bal +TFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjxmHHEt38OFdAlab0i +nSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01utI3 +gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18Dr +G5gPcFw0sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3Os +zMOl6W8KjptlwlCFtaOgUxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8x +L4ysEr3vQCj8KWefshNPZiTEUxnpHikV7+ZtsH8tZ/3zbBt1RqPlShfppNcL +-----END CERTIFICATE----- + +# Issuer: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Subject: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Label: "ACCVRAIZ1" +# Serial: 6828503384748696800 +# MD5 Fingerprint: d0:a0:5a:ee:05:b6:09:94:21:a1:7d:f1:b2:29:82:02 +# SHA1 Fingerprint: 93:05:7a:88:15:c6:4f:ce:88:2f:fa:91:16:52:28:78:bc:53:64:17 +# SHA256 Fingerprint: 9a:6e:c0:12:e1:a7:da:9d:be:34:19:4d:47:8a:d7:c0:db:18:22:fb:07:1d:f1:29:81:49:6e:d1:04:38:41:13 +-----BEGIN CERTIFICATE----- +MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UE +AwwJQUNDVlJBSVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQsw +CQYDVQQGEwJFUzAeFw0xMTA1MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQ +BgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwHUEtJQUNDVjENMAsGA1UECgwEQUND +VjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCb +qau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gMjmoY +HtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWo +G2ioPej0RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpA +lHPrzg5XPAOBOp0KoVdDaaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhr +IA8wKFSVf+DuzgpmndFALW4ir50awQUZ0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/ +0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDGWuzndN9wrqODJerWx5eH +k6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs78yM2x/47 +4KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMO +m3WR5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpa +cXpkatcnYGMN285J9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPl +uUsXQA+xtrn13k/c4LOsOxFwYIRKQ26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYI +KwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRwOi8vd3d3LmFjY3YuZXMvZmls +ZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEuY3J0MB8GCCsG +AQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 +VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeT +VfZW6oHlNsyMHj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIG +CCsGAQUFBwICMIIBFB6CARAAQQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUA +cgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBhAO0AegAgAGQAZQAgAGwAYQAgAEEA +QwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUAYwBuAG8AbABvAGcA +7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBjAHQA +cgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAA +QwBQAFMAIABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUA +czAwBggrBgEFBQcCARYkaHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2Mu +aHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRt +aW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2MV9kZXIuY3JsMA4GA1Ud +DwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZIhvcNAQEF +BQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdp +D70ER9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gU +JyCpZET/LtZ1qmxNYEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+m +AM/EKXMRNt6GGT6d7hmKG9Ww7Y49nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepD +vV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJTS+xJlsndQAJxGJ3KQhfnlms +tn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3sCPdK6jT2iWH +7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h +I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szA +h1xA2syVP1XgNce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xF +d3+YJ5oyXSrjhO7FmGYvliAd3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2H +pPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3pEfbRD0tVNEYqi4Y7 +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Label: "TWCA Global Root CA" +# Serial: 3262 +# MD5 Fingerprint: f9:03:7e:cf:e6:9e:3c:73:7a:2a:90:07:69:ff:2b:96 +# SHA1 Fingerprint: 9c:bb:48:53:f6:a4:f6:d3:52:a4:e8:32:52:55:60:13:f5:ad:af:65 +# SHA256 Fingerprint: 59:76:90:07:f7:68:5d:0f:cd:50:87:2f:9f:95:d5:75:5a:5b:2b:45:7d:81:f3:69:2b:61:0a:98:67:2f:0e:1b +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcx +EjAQBgNVBAoTCVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMT +VFdDQSBHbG9iYWwgUm9vdCBDQTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5 +NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExEDAOBgNVBAsT +B1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3QgQ0EwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2CnJfF +10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz +0ALfUPZVr2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfCh +MBwqoJimFb3u/Rk28OKRQ4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbH +zIh1HrtsBv+baz4X7GGqcXzGHaL3SekVtTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc +46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1WKKD+u4ZqyPpcC1jcxkt2 +yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99sy2sbZCi +laLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYP +oA/pyJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQA +BDzfuBSO6N+pjWxnkjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcE +qYSjMq+u7msXi7Kx/mzhkIyIqJdIzshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm +4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6gcFGn90xHNcgL +1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn +LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WF +H6vPNOw/KP4M8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNo +RI2T9GRwoD2dKAXDOXC4Ynsg/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+ +nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlglPx4mI88k1HtQJAH32RjJMtOcQWh +15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryPA9gK8kxkRr05YuWW +6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3mi4TW +nsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5j +wa19hAM8EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWz +aGHQRiapIVJpLesux+t3zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmy +KwbQBM0= +-----END CERTIFICATE----- + +# Issuer: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Subject: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Label: "TeliaSonera Root CA v1" +# Serial: 199041966741090107964904287217786801558 +# MD5 Fingerprint: 37:41:49:1b:18:56:9a:26:f5:ad:c2:66:fb:40:a5:4c +# SHA1 Fingerprint: 43:13:bb:96:f1:d5:86:9b:c1:4e:6a:92:f6:cf:f6:34:69:87:82:37 +# SHA256 Fingerprint: dd:69:36:fe:21:f8:f0:77:c1:23:a1:a5:21:c1:22:24:f7:22:55:b7:3e:03:a7:26:06:93:e8:a2:4b:0f:a3:89 +-----BEGIN CERTIFICATE----- +MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAw +NzEUMBIGA1UECgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJv +b3QgQ0EgdjEwHhcNMDcxMDE4MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYD +VQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwWVGVsaWFTb25lcmEgUm9vdCBDQSB2 +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+6yfwIaPzaSZVfp3F +VRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA3GV1 +7CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+X +Z75Ljo1kB1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+ +/jXh7VB7qTCNGdMJjmhnXb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs +81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxHoLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkm +dtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3F0fUTPHSiXk+TT2YqGHe +Oh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJoWjiUIMu +sDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4 +pgd7gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fs +slESl1MpWtTwEhDcTwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQ +arMCpgKIv7NHfirZ1fpoeDVNAgMBAAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYD +VR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qWDNXr+nuqF+gTEjANBgkqhkiG +9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNmzqjMDfz1mgbl +dxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx +0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1Tj +TQpgcmLNkQfWpb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBed +Y2gea+zDTYa4EzAvXUYNR0PVG6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7 +Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpcc41teyWRyu5FrgZLAMzTsVlQ2jqI +OylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOTJsjrDNYmiLbAJM+7 +vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2qReW +t88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcn +HL/EVlP6Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVx +SK236thZiNSQvxaz2emsWWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= +-----END CERTIFICATE----- + +# Issuer: CN=E-Tugra Certification Authority O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e. OU=E-Tugra Sertifikasyon Merkezi +# Subject: CN=E-Tugra Certification Authority O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e. OU=E-Tugra Sertifikasyon Merkezi +# Label: "E-Tugra Certification Authority" +# Serial: 7667447206703254355 +# MD5 Fingerprint: b8:a1:03:63:b0:bd:21:71:70:8a:6f:13:3a:bb:79:49 +# SHA1 Fingerprint: 51:c6:e7:08:49:06:6e:f3:92:d4:5c:a0:0d:6d:a3:62:8f:c3:52:39 +# SHA256 Fingerprint: b0:bf:d5:2b:b0:d7:d9:bd:92:bf:5d:4d:c1:3d:a2:55:c0:2c:54:2f:37:83:65:ea:89:39:11:f5:5e:55:f2:3c +-----BEGIN CERTIFICATE----- +MIIGSzCCBDOgAwIBAgIIamg+nFGby1MwDQYJKoZIhvcNAQELBQAwgbIxCzAJBgNV +BAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExQDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBC +aWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhpem1ldGxlcmkgQS7Fni4xJjAkBgNV +BAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBNZXJrZXppMSgwJgYDVQQDDB9FLVR1 +Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTEzMDMwNTEyMDk0OFoXDTIz +MDMwMzEyMDk0OFowgbIxCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExQDA+ +BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhp +em1ldGxlcmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBN +ZXJrZXppMSgwJgYDVQQDDB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4vU/kwVRHoViVF56C/UY +B4Oufq9899SKa6VjQzm5S/fDxmSJPZQuVIBSOTkHS0vdhQd2h8y/L5VMzH2nPbxH +D5hw+IyFHnSOkm0bQNGZDbt1bsipa5rAhDGvykPL6ys06I+XawGb1Q5KCKpbknSF +Q9OArqGIW66z6l7LFpp3RMih9lRozt6Plyu6W0ACDGQXwLWTzeHxE2bODHnv0ZEo +q1+gElIwcxmOj+GMB6LDu0rw6h8VqO4lzKRG+Bsi77MOQ7osJLjFLFzUHPhdZL3D +k14opz8n8Y4e0ypQBaNV2cvnOVPAmJ6MVGKLJrD3fY185MaeZkJVgkfnsliNZvcH +fC425lAcP9tDJMW/hkd5s3kc91r0E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsut +dEcf6ZG33ygEIqDUD13ieU/qbIWGvaimzuT6w+Gzrt48Ue7LE3wBf4QOXVGUnhMM +ti6lTPk5cDZvlsouDERVxcr6XQKj39ZkjFqzAQqptQpHF//vkUAqjqFGOjGY5RH8 +zLtJVor8udBhmm9lbObDyz51Sf6Pp+KJxWfXnUYTTjF2OySznhFlhqt/7x3U+Lzn +rFpct1pHXFXOVbQicVtbC/DP3KBhZOqp12gKY6fgDT+gr9Oq0n7vUaDmUStVkhUX +U8u3Zg5mTPj5dUyQ5xJwx0UCAwEAAaNjMGEwHQYDVR0OBBYEFC7j27JJ0JxUeVz6 +Jyr+zE7S6E5UMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAULuPbsknQnFR5 +XPonKv7MTtLoTlQwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAF +Nzr0TbdF4kV1JI+2d1LoHNgQk2Xz8lkGpD4eKexd0dCrfOAKkEh47U6YA5n+KGCR +HTAduGN8qOY1tfrTYXbm1gdLymmasoR6d5NFFxWfJNCYExL/u6Au/U5Mh/jOXKqY +GwXgAEZKgoClM4so3O0409/lPun++1ndYYRP0lSWE2ETPo+Aab6TR7U1Q9Jauz1c +77NCR807VRMGsAnb/WP2OogKmW9+4c4bU2pEZiNRCHu8W1Ki/QY3OEBhj0qWuJA3 ++GbHeJAAFS6LrVE1Uweoa2iu+U48BybNCAVwzDk/dr2l02cmAYamU9JgO3xDf1WK +vJUawSg5TB9D0pH0clmKuVb8P7Sd2nCcdlqMQ1DujjByTd//SffGqWfZbawCEeI6 +FiWnWAjLb1NBnEg4R2gz0dfHj9R0IdTDBZB6/86WiLEVKV0jq9BgoRJP3vQXzTLl +yb/IQ639Lo7xr+L0mPoSHyDYwKcMhcWQ9DstliaxLL5Mq+ux0orJ23gTDx4JnW2P +AJ8C2sH6H3p6CcRK5ogql5+Ji/03X186zjhZhkuvcQu02PJwT58yE+Owp1fl2tpD +y4Q08ijE6m30Ku/Ba3ba+367hTzSU8JNvnHhRdH9I2cNE3X7z2VnIp2usAnRCf8d +NL/+I5c30jn6PQ0GC7TbO6Orb1wdtn7os4I07QZcJA== +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 2" +# Serial: 1 +# MD5 Fingerprint: 2b:9b:9e:e4:7b:6c:1f:00:72:1a:cc:c1:77:79:df:6a +# SHA1 Fingerprint: 59:0d:2d:7d:88:4f:40:2e:61:7e:a5:62:32:17:65:cf:17:d8:94:e9 +# SHA256 Fingerprint: 91:e2:f5:78:8d:58:10:eb:a7:ba:58:73:7d:e1:54:8a:8e:ca:cd:01:45:98:bc:0b:14:3e:04:1b:17:05:25:52 +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgxMDAxMTA0MDE0WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUd +AqSzm1nzHoqvNK38DcLZSBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiC +FoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/FvudocP05l03Sx5iRUKrERLMjfTlH6VJi +1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx9702cu+fjOlbpSD8DT6Iavq +jnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGVWOHAD3bZ +wI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/ +WSA2AHmgoCJrjNXyYdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhy +NsZt+U2e+iKo4YFWz827n+qrkRk4r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPAC +uvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNfvNoBYimipidx5joifsFvHZVw +IEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR3p1m0IvVVGb6 +g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN +9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlP +BSeOE6Fuwg== +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot 2011 O=Atos +# Subject: CN=Atos TrustedRoot 2011 O=Atos +# Label: "Atos TrustedRoot 2011" +# Serial: 6643877497813316402 +# MD5 Fingerprint: ae:b9:c4:32:4b:ac:7f:5d:66:cc:77:94:bb:2a:77:56 +# SHA1 Fingerprint: 2b:b1:f5:3e:55:0c:1d:c5:f1:d4:e6:b7:6a:46:4b:55:06:02:ac:21 +# SHA256 Fingerprint: f3:56:be:a2:44:b7:a9:1e:b3:5d:53:ca:9a:d7:86:4a:ce:01:8e:2d:35:d5:f8:f9:6d:df:68:a6:f4:1a:a4:74 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UE +AwwVQXRvcyBUcnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQG +EwJERTAeFw0xMTA3MDcxNDU4MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMM +FUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMC +REUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCVhTuXbyo7LjvPpvMp +Nb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr54rM +VD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+ +SZFhyBH+DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ +4J7sVaE3IqKHBAUsR320HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0L +cp2AMBYHlT8oDv3FdU9T1nSatCQujgKRz3bFmx5VdJx4IbHwLfELn8LVlhgf8FQi +eowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7Rl+lwrrw7GWzbITAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZbNshMBgG +A1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3 +DQEBCwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8j +vZfza1zv7v1Apt+hk6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kP +DpFrdRbhIfzYJsdHt6bPWHJxfrrhTZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pc +maHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a961qn8FYiqTxlVMYVqL2Gns2D +lmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G3mB/ufNPRJLv +KrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 1 G3" +# Serial: 687049649626669250736271037606554624078720034195 +# MD5 Fingerprint: a4:bc:5b:3f:fe:37:9a:fa:64:f0:e2:fa:05:3d:0b:ab +# SHA1 Fingerprint: 1b:8e:ea:57:96:29:1a:c9:39:ea:b8:0a:81:1a:73:73:c0:93:79:67 +# SHA256 Fingerprint: 8a:86:6f:d1:b2:76:b5:7e:57:8e:92:1c:65:82:8a:2b:ed:58:e9:f2:f2:88:05:41:34:b7:f1:f4:bf:c9:cc:74 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00 +MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakEPBtV +wedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWe +rNrwU8lmPNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF341 +68Xfuw6cwI2H44g4hWf6Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh +4Pw5qlPafX7PGglTvF0FBM+hSo+LdoINofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXp +UhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/lg6AnhF4EwfWQvTA9xO+o +abw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV7qJZjqlc +3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/G +KubX9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSt +hfbZxbGL0eUQMk1fiyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KO +Tk0k+17kBL5yG6YnLUlamXrXXAkgt3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOt +zCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZIhvcNAQELBQAD +ggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC +MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2 +cDMT/uFPpiN3GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUN +qXsCHKnQO18LwIE6PWThv6ctTr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5 +YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP+V04ikkwj+3x6xn0dxoxGE1nVGwv +b2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh3jRJjehZrJ3ydlo2 +8hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fawx/k +NSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNj +ZgKAvQU6O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhp +q1467HxpvMc7hU6eFbm0FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFt +nh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOVhMJKzRwuJIczYOXD +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2 G3" +# Serial: 390156079458959257446133169266079962026824725800 +# MD5 Fingerprint: af:0c:86:6e:bf:40:2d:7f:0b:3e:12:50:ba:12:3d:06 +# SHA1 Fingerprint: 09:3c:61:f3:8b:8b:dc:7d:55:df:75:38:02:05:00:e1:25:f5:c8:36 +# SHA256 Fingerprint: 8f:e4:fb:0a:f9:3a:4d:0d:67:db:0b:eb:b2:3e:37:c7:1b:f3:25:dc:bc:dd:24:0e:a0:4d:af:58:b4:7e:18:40 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00 +MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFhZiFf +qq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMW +n4rjyduYNM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ym +c5GQYaYDFCDy54ejiK2toIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+ +O7q414AB+6XrW7PFXmAqMaCvN+ggOp+oMiwMzAkd056OXbxMmO7FGmh77FOm6RQ1 +o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+lV0POKa2Mq1W/xPtbAd0j +IaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZoL1NesNKq +IcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz +8eQQsSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43eh +vNURG3YBZwjgQQvD6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l +7ZizlWNof/k19N+IxWA1ksB8aRxhlRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALG +cC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZIhvcNAQELBQAD +ggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 +AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RC +roijQ1h5fq7KpVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0Ga +W/ZZGYjeVYg3UQt4XAoeo0L9x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4n +lv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgzdWqTHBLmYF5vHX/JHyPLhGGfHoJE ++V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6XU/IyAgkwo1jwDQHV +csaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+NwmNtd +dbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNg +KCLjsZWDzYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeM +HVOyToV7BjjHLPj4sHKNJeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4 +WSr2Rz0ZiC3oheGe7IUIarFsNMkd7EgrO3jtZsSOeWmD3n+M +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3 G3" +# Serial: 268090761170461462463995952157327242137089239581 +# MD5 Fingerprint: df:7d:b9:ad:54:6f:68:a1:df:89:57:03:97:43:b0:d7 +# SHA1 Fingerprint: 48:12:bd:92:3c:a8:c4:39:06:e7:30:6d:27:96:e6:a4:cf:22:2e:7d +# SHA256 Fingerprint: 88:ef:81:de:20:2e:b0:18:45:2e:43:f8:64:72:5c:ea:5f:bd:1f:c2:d9:d2:05:73:07:09:c5:d8:b8:69:0f:46 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00 +MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286IxSR +/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNu +FoM7pmRLMon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXR +U7Ox7sWTaYI+FrUoRqHe6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+c +ra1AdHkrAj80//ogaX3T7mH1urPnMNA3I4ZyYUUpSFlob3emLoG+B01vr87ERROR +FHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3UVDmrJqMz6nWB2i3ND0/k +A9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f75li59wzw +eyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634Ryl +sSqiMd5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBp +VzgeAVuNVejH38DMdyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0Q +A4XN8f+MFrXBsj6IbGB/kE+V9/YtrQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ +ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZIhvcNAQELBQAD +ggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px +KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnI +FUBhynLWcKzSt/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5Wvv +oxXqA/4Ti2Tk08HS6IT7SdEQTXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFg +u/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9DuDcpmvJRPpq3t/O5jrFc/ZSXPsoaP +0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGibIh6BJpsQBJFxwAYf +3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmDhPbl +8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+ +DhcI00iX0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HN +PlopNLk9hM6xZdRZkZFWdSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ +ywaZWWDYWGWVjUTR939+J399roD1B0y2PpxxVJkES/1Y+Zj0 +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G2" +# Serial: 15385348160840213938643033620894905419 +# MD5 Fingerprint: 92:38:b9:f8:63:24:82:65:2c:57:33:e6:fe:81:8f:9d +# SHA1 Fingerprint: a1:4b:48:d9:43:ee:0a:0e:40:90:4f:3c:e0:a4:c0:91:93:51:5d:3f +# SHA256 Fingerprint: 7d:05:eb:b6:82:33:9f:8c:94:51:ee:09:4e:eb:fe:fa:79:53:a1:14:ed:b2:f4:49:49:45:2f:ab:7d:2f:c1:85 +-----BEGIN CERTIFICATE----- +MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSA +n61UQbVH35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4Htecc +biJVMWWXvdMX0h5i89vqbFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9Hp +EgjAALAcKxHad3A2m67OeYfcgnDmCXRwVWmvo2ifv922ebPynXApVfSr/5Vh88lA +bx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OPYLfykqGxvYmJHzDNw6Yu +YjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+RnlTGNAgMB +AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQW +BBTOw0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPI +QW5pJ6d1Ee88hjZv0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I +0jJmwYrA8y8678Dj1JGG0VDjA9tzd29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4Gni +lmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAWhsI6yLETcDbYz+70CjTVW0z9 +B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0MjomZmWzwPDCv +ON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo +IhNzbM8m9Yop5w== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G3" +# Serial: 15459312981008553731928384953135426796 +# MD5 Fingerprint: 7c:7f:65:31:0c:81:df:8d:ba:3e:99:e2:5c:ad:6e:fb +# SHA1 Fingerprint: f5:17:a2:4f:9a:48:c6:c9:f8:a2:00:26:9f:dc:0f:48:2c:ab:30:89 +# SHA256 Fingerprint: 7e:37:cb:8b:4c:47:09:0c:ab:36:55:1b:a6:f4:5d:b8:40:68:0f:ba:16:6a:95:2d:b1:00:71:7f:43:05:3f:c2 +-----BEGIN CERTIFICATE----- +MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3Qg +RzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJf +Zn4f5dwbRXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17Q +RSAPWXYQ1qAk8C3eNvJsKTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgFUaFNN6KDec6NHSrkhDAKBggqhkjOPQQD +AwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5FyYZ5eEJJZVrmDxxDnOOlY +JjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy1vUhZscv +6pZjamVFkpUBtA== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G2" +# Serial: 4293743540046975378534879503202253541 +# MD5 Fingerprint: e4:a6:8a:c8:54:ac:52:42:46:0a:fd:72:48:1b:2a:44 +# SHA1 Fingerprint: df:3c:24:f9:bf:d6:66:76:1b:26:80:73:fe:06:d1:cc:8d:4f:82:a4 +# SHA256 Fingerprint: cb:3c:cb:b7:60:31:e5:e0:13:8f:8d:d3:9a:23:f9:de:47:ff:c3:5e:43:c1:14:4c:ea:27:d4:6a:5a:b1:cb:5f +-----BEGIN CERTIFICATE----- +MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH +MjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI +2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx +1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ +q2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz +tCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ +vIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP +BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV +5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY +1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4 +NeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG +Fdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91 +8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe +pLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl +MrY= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G3" +# Serial: 7089244469030293291760083333884364146 +# MD5 Fingerprint: f5:5d:a4:50:a5:fb:28:7e:1e:0f:0d:cc:96:57:56:ca +# SHA1 Fingerprint: 7e:04:de:89:6a:3e:66:6d:00:e6:87:d3:3f:fa:d9:3b:e8:3d:34:9e +# SHA256 Fingerprint: 31:ad:66:48:f8:10:41:38:c7:38:f3:9e:a4:32:01:33:39:3e:3a:18:cc:02:29:6e:f9:7c:2a:c9:ef:67:31:d0 +-----BEGIN CERTIFICATE----- +MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAe +Fw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUw +EwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20x +IDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0CAQYF +K4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FG +fp4tn+6OYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPO +Z9wj/wMco+I+o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAd +BgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNpYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIx +AK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y3maTD/HMsQmP3Wyr+mt/ +oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34VOKa5Vt8 +sycX +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Trusted Root G4" +# Serial: 7451500558977370777930084869016614236 +# MD5 Fingerprint: 78:f2:fc:aa:60:1f:2f:b4:eb:c9:37:ba:53:2e:75:49 +# SHA1 Fingerprint: dd:fb:16:cd:49:31:c9:73:a2:03:7d:3f:c8:3a:4d:7d:77:5d:05:e4 +# SHA256 Fingerprint: 55:2f:7b:dc:f1:a7:af:9e:6c:e6:72:01:7f:4f:12:ab:f7:72:40:c7:8e:76:1a:c2:03:d1:d9:d2:0a:c8:99:88 +-----BEGIN CERTIFICATE----- +MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBi +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3Qg +RzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBiMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3y +ithZwuEppz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1If +xp4VpX6+n6lXFllVcq9ok3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDV +ySAdYyktzuxeTsiT+CFhmzTrBcZe7FsavOvJz82sNEBfsXpm7nfISKhmV1efVFiO +DCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGYQJB5w3jHtrHEtWoYOAMQ +jdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6MUSaM0C/ +CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCi +EhtmmnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADM +fRyVw4/3IbKyEbe7f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QY +uKZ3AeEPlAwhHbJUKSWJbOUOUlFHdL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXK +chYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8oR7FwI+isX4KJpn15GkvmB0t +9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +hjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD +ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2 +SV1EY+CtnJYYZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd ++SeuMIW59mdNOj6PWTkiU0TryF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWc +fFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy7zBZLq7gcfJW5GqXb5JQbZaNaHqa +sjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iahixTXTBmyUEFxPT9N +cCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN5r5N +0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie +4u1Ki7wb/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mI +r/OSmbaz5mEP0oUA51Aa5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1 +/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tKG48BtieVU+i2iW1bvGjUI+iLUaJW+fCm +gKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP82Z+ +-----END CERTIFICATE----- + +# Issuer: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Label: "COMODO RSA Certification Authority" +# Serial: 101909084537582093308941363524873193117 +# MD5 Fingerprint: 1b:31:b0:71:40:36:cc:14:36:91:ad:c4:3e:fd:ec:18 +# SHA1 Fingerprint: af:e5:d2:44:a8:d1:19:42:30:ff:47:9f:e2:f8:97:bb:cd:7a:8c:b4 +# SHA256 Fingerprint: 52:f0:e1:c4:e5:8e:c6:29:29:1b:60:31:7f:07:46:71:b8:5d:7e:a8:0d:5b:07:27:34:63:53:4b:32:b4:02:34 +-----BEGIN CERTIFICATE----- +MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCB +hTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNV +BAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMTE5 +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgT +EkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR +Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR +6FSS0gpWsawNJN3Fz0RndJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8X +pz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZFGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC +9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+5eNu/Nio5JIk2kNrYrhV +/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pGx8cgoLEf +Zd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z ++pUX2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7w +qP/0uK3pN/u6uPQLOvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZah +SL0896+1DSJMwBGB7FY79tOi4lu3sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVIC +u9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+CGCe01a60y1Dma/RMhnEw6abf +Fobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5WdYgGq/yapiq +crxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E +FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB +/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvl +wFTPoCWOAvn9sKIN9SCYPBMtrFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM +4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+nq6PK7o9mfjYcwlYRm6mnPTXJ9OV +2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSgtZx8jb8uk2Intzna +FxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwWsRqZ +CuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiK +boHGhfKppC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmcke +jkk9u+UJueBPSZI9FoJAzMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yL +S0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHqZJx64SIDqZxubw5lT2yHh17zbqD5daWb +QOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk527RH89elWsn2/x20Kk4yl +0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7ILaZRfyHB +NVOFBkpdn627G190 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Label: "USERTrust RSA Certification Authority" +# Serial: 2645093764781058787591871645665788717 +# MD5 Fingerprint: 1b:fe:69:d1:91:b7:19:33:a3:72:a8:0f:e1:55:e5:b5 +# SHA1 Fingerprint: 2b:8f:1b:57:33:0d:bb:a2:d0:7a:6c:51:f7:0e:e9:0d:da:b9:ad:8e +# SHA256 Fingerprint: e7:93:c9:b0:2f:d8:aa:13:e2:1c:31:22:8a:cc:b0:81:19:64:3b:74:9c:89:89:64:b1:74:6d:46:c3:d4:cb:d2 +-----BEGIN CERTIFICATE----- +MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCB +iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl +cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV +BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAw +MjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNV +BAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU +aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCAEmUXNg7D2wiz0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B +3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2jY0K2dvKpOyuR+OJv0OwWIJAJPuLodMkY +tJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFnRghRy4YUVD+8M/5+bJz/ +Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O+T23LLb2 +VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT +79uq/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6 +c0Plfg6lZrEpfDKEY1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmT +Yo61Zs8liM2EuLE/pDkP2QKe6xJMlXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97l +c6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8yexDJtC/QV9AqURE9JnnV4ee +UB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+eLf8ZxXhyVeE +Hg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd +BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8G +A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPF +Up/L+M+ZBn8b2kMVn54CVVeWFPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KO +VWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ7l8wXEskEVX/JJpuXior7gtNn3/3 +ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQEg9zKC7F4iRO/Fjs +8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR +iQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYze +Sf7dNXGiFSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZ +XHlKYC6SQK5MNyosycdiyA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/ +qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9cJ2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRB +VXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGwsAvgnEzDHNb842m1R0aB +L6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gxQ+6IHdfG +jjxDah2nGN59PRbxYvnKkKj9 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Label: "USERTrust ECC Certification Authority" +# Serial: 123013823720199481456569720443997572134 +# MD5 Fingerprint: fa:68:bc:d9:b5:7f:ad:fd:c9:1d:06:83:28:cc:24:c1 +# SHA1 Fingerprint: d1:cb:ca:5d:b2:d5:2a:7f:69:3b:67:4d:e5:f0:5a:1d:0c:95:7d:f0 +# SHA256 Fingerprint: 4f:f4:60:d5:4b:9c:86:da:bf:bc:fc:57:12:e0:40:0d:2b:ed:3f:bc:4d:4f:bd:aa:86:e0:6a:dc:d2:a9:ad:7a +-----BEGIN CERTIFICATE----- +MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNl +eSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMT +JVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMjAx +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgT +Ck5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVUaGUg +VVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqflo +I+d61SRvU8Za2EurxtW20eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinng +o4N+LZfQYcTxmdwlkWOrfzCjtHDix6EznPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0G +A1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBBHU6+4WMB +zzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbW +RNZu9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Label: "GlobalSign ECC Root CA - R4" +# Serial: 14367148294922964480859022125800977897474 +# MD5 Fingerprint: 20:f0:27:68:d1:7e:a0:9d:0e:e6:2a:ca:df:5c:89:8e +# SHA1 Fingerprint: 69:69:56:2e:40:80:f4:24:a1:e7:19:9f:14:ba:f3:ee:58:ab:6a:bb +# SHA256 Fingerprint: be:c9:49:11:c2:95:56:76:db:6c:0a:55:09:86:d7:6e:3b:a0:05:66:7c:44:2c:97:62:b4:fb:b7:73:de:22:8c +-----BEGIN CERTIFICATE----- +MIIB4TCCAYegAwIBAgIRKjikHJYKBN5CsiilC+g0mAIwCgYIKoZIzj0EAwIwUDEk +MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpH +bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX +DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD +QSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuMZ5049sJQ6fLjkZHAOkrprlOQcJ +FspjsbmG+IpXwVfOQvpzofdlQv8ewQCybnMO/8ch5RikqtlxP6jUuc6MHaNCMEAw +DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFFSwe61F +uOJAf/sKbvu+M8k8o4TVMAoGCCqGSM49BAMCA0gAMEUCIQDckqGgE6bPA7DmxCGX +kPoUVy0D7O48027KqGx2vKLeuwIgJ6iFJzWbVsaj8kfSt24bAgAXqmemFZHe+pTs +ewv4n4Q= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Label: "GlobalSign ECC Root CA - R5" +# Serial: 32785792099990507226680698011560947931244 +# MD5 Fingerprint: 9f:ad:3b:1c:02:1e:8a:ba:17:74:38:81:0c:a2:bc:08 +# SHA1 Fingerprint: 1f:24:c6:30:cd:a4:18:ef:20:69:ff:ad:4f:dd:5f:46:3a:1b:69:aa +# SHA256 Fingerprint: 17:9f:bc:14:8a:3d:d0:0f:d2:4e:a1:34:58:cc:43:bf:a7:f5:9c:81:82:d7:83:a5:13:f6:eb:ec:10:0c:89:24 +-----BEGIN CERTIFICATE----- +MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEk +MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpH +bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX +DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD +QSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu +MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6SFkc +8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8ke +hOvRnkmSh5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYI +KoZIzj0EAwMDaAAwZQIxAOVpEslu28YxuglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg +515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7yFz9SO8NdCKoCOJuxUnO +xwy8p2Fp8fc74SrL+SvzZpA3 +-----END CERTIFICATE----- + +# Issuer: CN=Staat der Nederlanden Root CA - G3 O=Staat der Nederlanden +# Subject: CN=Staat der Nederlanden Root CA - G3 O=Staat der Nederlanden +# Label: "Staat der Nederlanden Root CA - G3" +# Serial: 10003001 +# MD5 Fingerprint: 0b:46:67:07:db:10:2f:19:8c:35:50:60:d1:0b:f4:37 +# SHA1 Fingerprint: d8:eb:6b:41:51:92:59:e0:f3:e7:85:00:c0:3d:b6:88:97:c9:ee:fc +# SHA256 Fingerprint: 3c:4f:b0:b9:5a:b8:b3:00:32:f4:32:b8:6f:53:5f:e1:72:c1:85:d0:fd:39:86:58:37:cf:36:18:7f:a6:f4:28 +-----BEGIN CERTIFICATE----- +MIIFdDCCA1ygAwIBAgIEAJiiOTANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJO +TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFh +dCBkZXIgTmVkZXJsYW5kZW4gUm9vdCBDQSAtIEczMB4XDTEzMTExNDExMjg0MloX +DTI4MTExMzIzMDAwMFowWjELMAkGA1UEBhMCTkwxHjAcBgNVBAoMFVN0YWF0IGRl +ciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5lZGVybGFuZGVuIFJv +b3QgQ0EgLSBHMzCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL4yolQP +cPssXFnrbMSkUeiFKrPMSjTysF/zDsccPVMeiAho2G89rcKezIJnByeHaHE6n3WW +IkYFsO2tx1ueKt6c/DrGlaf1F2cY5y9JCAxcz+bMNO14+1Cx3Gsy8KL+tjzk7FqX +xz8ecAgwoNzFs21v0IJyEavSgWhZghe3eJJg+szeP4TrjTgzkApyI/o1zCZxMdFy +KJLZWyNtZrVtB0LrpjPOktvA9mxjeM3KTj215VKb8b475lRgsGYeCasH/lSJEULR +9yS6YHgamPfJEf0WwTUaVHXvQ9Plrk7O53vDxk5hUUurmkVLoR9BvUhTFXFkC4az +5S6+zqQbwSmEorXLCCN2QyIkHxcE1G6cxvx/K2Ya7Irl1s9N9WMJtxU51nus6+N8 +6U78dULI7ViVDAZCopz35HCz33JvWjdAidiFpNfxC95DGdRKWCyMijmev4SH8RY7 +Ngzp07TKbBlBUgmhHbBqv4LvcFEhMtwFdozL92TkA1CvjJFnq8Xy7ljY3r735zHP +bMk7ccHViLVlvMDoFxcHErVc0qsgk7TmgoNwNsXNo42ti+yjwUOH5kPiNL6VizXt +BznaqB16nzaeErAMZRKQFWDZJkBE41ZgpRDUajz9QdwOWke275dhdU/Z/seyHdTt +XUmzqWrLZoQT1Vyg3N9udwbRcXXIV2+vD3dbAgMBAAGjQjBAMA8GA1UdEwEB/wQF +MAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRUrfrHkleuyjWcLhL75Lpd +INyUVzANBgkqhkiG9w0BAQsFAAOCAgEAMJmdBTLIXg47mAE6iqTnB/d6+Oea31BD +U5cqPco8R5gu4RV78ZLzYdqQJRZlwJ9UXQ4DO1t3ApyEtg2YXzTdO2PCwyiBwpwp +LiniyMMB8jPqKqrMCQj3ZWfGzd/TtiunvczRDnBfuCPRy5FOCvTIeuXZYzbB1N/8 +Ipf3YF3qKS9Ysr1YvY2WTxB1v0h7PVGHoTx0IsL8B3+A3MSs/mrBcDCw6Y5p4ixp +gZQJut3+TcCDjJRYwEYgr5wfAvg1VUkvRtTA8KCWAg8zxXHzniN9lLf9OtMJgwYh +/WA9rjLA0u6NpvDntIJ8CsxwyXmA+P5M9zWEGYox+wrZ13+b8KKaa8MFSu1BYBQw +0aoRQm7TIwIEC8Zl3d1Sd9qBa7Ko+gE4uZbqKmxnl4mUnrzhVNXkanjvSr0rmj1A +fsbAddJu+2gw7OyLnflJNZoaLNmzlTnVHpL3prllL+U9bTpITAjc5CgSKL59NVzq +4BZ+Extq1z7XnvwtdbLBFNUjA9tbbws+eC8N3jONFrdI54OagQ97wUNNVQQXOEpR +1VmiiXTTn74eS9fGbbeIJG9gkaSChVtWQbzQRKtqE77RLFi3EjNYsjdj3BP1lB0/ +QFH1T/U67cjF68IeHRaVesd+QnGTbksVtzDfqu1XhUisHWrdOWnk4Xl4vs4Fv6EM +94B7IWcnMFk= +-----END CERTIFICATE----- + +# Issuer: CN=Staat der Nederlanden EV Root CA O=Staat der Nederlanden +# Subject: CN=Staat der Nederlanden EV Root CA O=Staat der Nederlanden +# Label: "Staat der Nederlanden EV Root CA" +# Serial: 10000013 +# MD5 Fingerprint: fc:06:af:7b:e8:1a:f1:9a:b4:e8:d2:70:1f:c0:f5:ba +# SHA1 Fingerprint: 76:e2:7e:c1:4f:db:82:c1:c0:a6:75:b5:05:be:3d:29:b4:ed:db:bb +# SHA256 Fingerprint: 4d:24:91:41:4c:fe:95:67:46:ec:4c:ef:a6:cf:6f:72:e2:8a:13:29:43:2f:9d:8a:90:7a:c4:cb:5d:ad:c1:5a +-----BEGIN CERTIFICATE----- +MIIFcDCCA1igAwIBAgIEAJiWjTANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJO +TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSkwJwYDVQQDDCBTdGFh +dCBkZXIgTmVkZXJsYW5kZW4gRVYgUm9vdCBDQTAeFw0xMDEyMDgxMTE5MjlaFw0y +MjEyMDgxMTEwMjhaMFgxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIg +TmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRlcmxhbmRlbiBFViBS +b290IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA48d+ifkkSzrS +M4M1LGns3Amk41GoJSt5uAg94JG6hIXGhaTK5skuU6TJJB79VWZxXSzFYGgEt9nC +UiY4iKTWO0Cmws0/zZiTs1QUWJZV1VD+hq2kY39ch/aO5ieSZxeSAgMs3NZmdO3d +Z//BYY1jTw+bbRcwJu+r0h8QoPnFfxZpgQNH7R5ojXKhTbImxrpsX23Wr9GxE46p +rfNeaXUmGD5BKyF/7otdBwadQ8QpCiv8Kj6GyzyDOvnJDdrFmeK8eEEzduG/L13l +pJhQDBXd4Pqcfzho0LKmeqfRMb1+ilgnQ7O6M5HTp5gVXJrm0w912fxBmJc+qiXb +j5IusHsMX/FjqTf5m3VpTCgmJdrV8hJwRVXj33NeN/UhbJCONVrJ0yPr08C+eKxC +KFhmpUZtcALXEPlLVPxdhkqHz3/KRawRWrUgUY0viEeXOcDPusBCAUCZSCELa6fS +/ZbV0b5GnUngC6agIk440ME8MLxwjyx1zNDFjFE7PZQIZCZhfbnDZY8UnCHQqv0X +cgOPvZuM5l5Tnrmd74K74bzickFbIZTTRTeU0d8JOV3nI6qaHcptqAqGhYqCvkIH +1vI4gnPah1vlPNOePqc7nvQDs/nxfRN0Av+7oeX6AHkcpmZBiFxgV6YuCcS6/ZrP +px9Aw7vMWgpVSzs4dlG4Y4uElBbmVvMCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFP6rAJCYniT8qcwaivsnuL8wbqg7 +MA0GCSqGSIb3DQEBCwUAA4ICAQDPdyxuVr5Os7aEAJSrR8kN0nbHhp8dB9O2tLsI +eK9p0gtJ3jPFrK3CiAJ9Brc1AsFgyb/E6JTe1NOpEyVa/m6irn0F3H3zbPB+po3u +2dfOWBfoqSmuc0iH55vKbimhZF8ZE/euBhD/UcabTVUlT5OZEAFTdfETzsemQUHS +v4ilf0X8rLiltTMMgsT7B/Zq5SWEXwbKwYY5EdtYzXc7LMJMD16a4/CrPmEbUCTC +wPTxGfARKbalGAKb12NMcIxHowNDXLldRqANb/9Zjr7dn3LDWyvfjFvO5QxGbJKy +CqNMVEIYFRIYvdr8unRu/8G2oGTYqV9Vrp9canaW2HNnh/tNf1zuacpzEPuKqf2e +vTY4SUmH9A4U8OmHuD+nT3pajnnUk+S7aFKErGzp85hwVXIy+TSrK0m1zSBi5Dp6 +Z2Orltxtrpfs/J92VoguZs9btsmksNcFuuEnL5O7Jiqik7Ab846+HUCjuTaPPoIa +Gl6I6lD4WeKDRikL40Rc4ZW2aZCaFG+XroHPaO+Zmr615+F/+PoTRxZMzG0IQOeL +eG9QgkRQP2YGiqtDhFZKDyAthg710tvSeopLzaXoTvFeJiUBWSOgftL2fiFX1ye8 +FVdMpEbB4IMeDExNH08GGeL5qPQ6gqGyeUN51q1veieQA6TqJIc/2b3Z6fJfUEkc +7uzXLg== +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Label: "IdenTrust Commercial Root CA 1" +# Serial: 13298821034946342390520003877796839426 +# MD5 Fingerprint: b3:3e:77:73:75:ee:a0:d3:e3:7e:49:63:49:59:bb:c7 +# SHA1 Fingerprint: df:71:7e:aa:4a:d9:4e:c9:55:84:99:60:2d:48:de:5f:bc:f0:3a:25 +# SHA256 Fingerprint: 5d:56:49:9b:e4:d2:e0:8b:cf:ca:d0:8a:3e:38:72:3d:50:50:3b:de:70:69:48:e4:2f:55:60:30:19:e5:28:ae +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBK +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVu +VHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQw +MTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScw +JQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ldhNlT +3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU ++ehcCuz/mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gp +S0l4PJNgiCL8mdo2yMKi1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1 +bVoE/c40yiTcdCMbXTMTEl3EASX2MN0CXZ/g1Ue9tOsbobtJSdifWwLziuQkkORi +T0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl3ZBWzvurpWCdxJ35UrCL +vYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzyNeVJSQjK +Vsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZK +dHzVWYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHT +c+XvvqDtMwt0viAgxGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hv +l7yTmvmcEpB4eoCHFddydJxVdHixuuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5N +iGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZIhvcNAQELBQAD +ggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH +6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwt +LRvM7Kqas6pgghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93 +nAbowacYXVKV7cndJZ5t+qntozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3 ++wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmVYjzlVYA211QC//G5Xc7UI2/YRYRK +W2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUXfeu+h1sXIFRRk0pT +AwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/rokTLq +l1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG +4iZZRHUe2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZ +mUlO+KWA2yUPHGNiiskzZ2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A +7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7RcGzM7vRX+Bi6hG6H +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Label: "IdenTrust Public Sector Root CA 1" +# Serial: 13298821034946342390521976156843933698 +# MD5 Fingerprint: 37:06:a5:b0:fc:89:9d:ba:f4:6b:8c:1a:64:cd:d5:ba +# SHA1 Fingerprint: ba:29:41:60:77:98:3f:f4:f3:ef:f2:31:05:3b:2e:ea:6d:4d:45:fd +# SHA256 Fingerprint: 30:d0:89:5a:9a:44:8a:26:20:91:63:55:22:d1:f5:20:10:b5:86:7a:ca:e1:2c:78:ef:95:8f:d4:f4:38:9f:2f +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBN +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVu +VHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcN +MzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0 +MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTyP4o7 +ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGy +RBb06tD6Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlS +bdsHyo+1W/CD80/HLaXIrcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF +/YTLNiCBWS2ab21ISGHKTN9T0a9SvESfqy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R +3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoSmJxZZoY+rfGwyj4GD3vw +EUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFnol57plzy +9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9V +GxyhLrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ +2fjXctscvG29ZV/viDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsV +WaFHVCkugyhfHMKiq3IXAAaOReyL4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gD +W/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMwDQYJKoZIhvcN +AQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj +t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHV +DRDtfULAj+7AmgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9 +TaDKQGXSc3z1i9kKlT/YPyNtGtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8G +lwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFtm6/n6J91eEyrRjuazr8FGF1NFTwW +mhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMxNRF4eKLg6TCMf4Df +WN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4Mhn5 ++bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJ +tshquDDIajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhA +GaQdp/lLQzfcaFpPz+vCZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv +8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ3Wl9af0AVqW3rLatt8o+Ae+c +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G2" +# Serial: 1246989352 +# MD5 Fingerprint: 4b:e2:c9:91:96:65:0c:f4:0e:5a:93:92:a0:0a:fe:b2 +# SHA1 Fingerprint: 8c:f4:27:fd:79:0c:3a:d1:66:06:8d:e8:1e:57:ef:bb:93:22:72:d4 +# SHA256 Fingerprint: 43:df:57:74:b0:3e:7f:ef:5f:e4:0d:93:1a:7b:ed:f1:bb:2e:6b:42:73:8c:4e:6d:38:41:10:3d:3a:a7:f3:39 +-----BEGIN CERTIFICATE----- +MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50 +cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3Qs +IEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVz +dCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwHhcNMDkwNzA3MTcy +NTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUVu +dHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwt +dGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0 +aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP/vaCeb9zYQYKpSfYs1/T +RU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXzHHfV1IWN +cCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hW +wcKUs/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1 +U1+cPvQXLOZprE4yTGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0 +jaWvYkxN4FisZDQSA/i2jZRjJKRxAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ60B7vfec7aVHUbI2fkBJmqzAN +BgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5ZiXMRrEPR9RP/ +jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ +Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v +1fN2D807iDginWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4R +nAuknZoh8/CbCzB428Hch0P+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmH +VHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xOe4pIb4tF9g== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - EC1" +# Serial: 51543124481930649114116133369 +# MD5 Fingerprint: b6:7e:1d:f0:58:c5:49:6c:24:3b:3d:ed:98:18:ed:bc +# SHA1 Fingerprint: 20:d8:06:40:df:9b:25:f5:12:25:3a:11:ea:f7:59:8a:eb:14:b5:47 +# SHA256 Fingerprint: 02:ed:0e:b2:8c:14:da:45:16:5c:56:67:91:70:0d:64:51:d7:fb:56:f0:b2:ab:1d:3b:8e:b0:70:e5:6e:df:f5 +-----BEGIN CERTIFICATE----- +MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkG +A1UEBhMCVVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3 +d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVu +dHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEzMDEGA1UEAxMq +RW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRUMxMB4XDTEy +MTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYwFAYD +VQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0 +L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0g +Zm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDMTB2MBAGByqGSM49AgEGBSuBBAAi +A2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHyAsWfoPZb1YsGGYZPUxBt +ByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef9eNi1KlH +Bz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O +BBYEFLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVC +R98crlOZF7ZvHH3hvxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nX +hTcGtXsI/esni0qU+eH6p44mCOh8kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G +-----END CERTIFICATE----- + +# Issuer: CN=CFCA EV ROOT O=China Financial Certification Authority +# Subject: CN=CFCA EV ROOT O=China Financial Certification Authority +# Label: "CFCA EV ROOT" +# Serial: 407555286 +# MD5 Fingerprint: 74:e1:b6:ed:26:7a:7a:44:30:33:94:ab:7b:27:81:30 +# SHA1 Fingerprint: e2:b8:29:4b:55:84:ab:6b:58:c2:90:46:6c:ac:3f:b8:39:8f:84:83 +# SHA256 Fingerprint: 5c:c3:d7:8e:4e:1d:5e:45:54:7a:04:e6:87:3e:64:f9:0c:f9:53:6d:1c:cc:2e:f8:00:f3:55:c4:c5:fd:70:fd +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJD +TjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9y +aXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkx +MjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5j +aWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJP +T1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnVBU03 +sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpL +TIpTUnrD7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5 +/ZOkVIBMUtRSqy5J35DNuF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp +7hZZLDRJGqgG16iI0gNyejLi6mhNbiyWZXvKWfry4t3uMCz7zEasxGPrb382KzRz +EpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7xzbh72fROdOXW3NiGUgt +hxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9fpy25IGvP +a931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqot +aK8KgWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNg +TnYGmE69g60dWIolhdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfV +PKPtl8MeNPo4+QgO48BdK4PRVmrJtqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hv +cWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAfBgNVHSMEGDAWgBTj/i39KNAL +tbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAd +BgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB +ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObT +ej/tUxPQ4i9qecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdL +jOztUmCypAbqTuv0axn96/Ua4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBS +ESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sGE5uPhnEFtC+NiWYzKXZUmhH4J/qy +P5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfXBDrDMlI1Dlb4pd19 +xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjnaH9d +Ci77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN +5mydLIhyPDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe +/v5WOaHIz16eGWRGENoXkbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+Z +AAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3CekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ +5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GB CA" +# Serial: 157768595616588414422159278966750757568 +# MD5 Fingerprint: a4:eb:b9:61:28:2e:b7:2f:98:b0:35:26:90:99:51:1d +# SHA1 Fingerprint: 0f:f9:40:76:18:d3:d7:6a:4b:98:f0:a8:35:9e:0c:fd:27:ac:cc:ed +# SHA256 Fingerprint: 6b:9c:08:e8:6e:b0:f7:67:cf:ad:65:cd:98:b6:21:49:e5:49:4a:67:f5:84:5e:7b:d1:ed:01:9f:27:b8:6b:d6 +-----BEGIN CERTIFICATE----- +MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBt +MQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUg +Rm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9i +YWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAwMzJaFw0zOTEyMDExNTEwMzFaMG0x +CzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBG +b3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh +bCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3 +HEokKtaXscriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGx +WuR51jIjK+FTzJlFXHtPrby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX +1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNk +u7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4oQnc/nSMbsrY9gBQHTC5P +99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvgGUpuuy9r +M2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUB +BAMCAQAwDQYJKoZIhvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrgh +cViXfa43FK8+5/ea4n32cZiZBKpDdHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5 +gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0VQreUGdNZtGn//3ZwLWoo4rO +ZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEuiHZeeevJuQHHf +aPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic +Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= +-----END CERTIFICATE----- + +# Issuer: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Subject: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Label: "SZAFIR ROOT CA2" +# Serial: 357043034767186914217277344587386743377558296292 +# MD5 Fingerprint: 11:64:c1:89:b0:24:b1:8c:b1:07:7e:89:9e:51:9e:99 +# SHA1 Fingerprint: e2:52:fa:95:3f:ed:db:24:60:bd:6e:28:f3:9c:cc:cf:5e:b3:3f:de +# SHA256 Fingerprint: a1:33:9d:33:28:1a:0b:56:e5:57:d3:d3:2b:1c:e7:f9:36:7e:b0:94:bd:5f:a7:2a:7e:50:04:c8:de:d7:ca:fe +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQEL +BQAwUTELMAkGA1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6 +ZW5pb3dhIFMuQS4xGDAWBgNVBAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkw +NzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJBgNVBAYTAlBMMSgwJgYDVQQKDB9L +cmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYDVQQDDA9TWkFGSVIg +Uk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5QqEvN +QLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT +3PSQ1hNKDJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw +3gAeqDRHu5rr/gsUvTaE2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr6 +3fE9biCloBK0TXC5ztdyO4mTp4CEHCdJckm1/zuVnsHMyAHs6A6KCpbns6aH5db5 +BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwiieDhZNRnvDF5YTy7ykHN +XGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsF +AAOCAQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw +8PRBEew/R40/cof5O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOG +nXkZ7/e7DDWQw4rtTw/1zBLZpD67oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCP +oky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul4+vJhaAlIDf7js4MNIThPIGy +d05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6+/NNIxuZMzSg +LvWpCz/UXeHPhJ/iGcJfitYgHuNztw== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA 2" +# Serial: 44979900017204383099463764357512596969 +# MD5 Fingerprint: 6d:46:9e:d9:25:6d:08:23:5b:5e:74:7d:1e:27:db:f2 +# SHA1 Fingerprint: d3:dd:48:3e:2b:bf:4c:05:e8:af:10:f5:fa:76:26:cf:d3:dc:30:92 +# SHA256 Fingerprint: b6:76:f2:ed:da:e8:77:5c:d3:6c:b0:f6:3c:d1:d4:60:39:61:f4:9e:62:65:ba:01:3a:2f:03:07:b6:d0:b8:04 +-----BEGIN CERTIFICATE----- +MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCB +gDELMAkGA1UEBhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMu +QS4xJzAlBgNVBAsTHkNlcnR1bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIG +A1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29yayBDQSAyMCIYDzIwMTExMDA2MDgz +OTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZ +VW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3 +b3JrIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWA +DGSdhhuWZGc/IjoedQF97/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn +0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+oCgCXhVqqndwpyeI1B+twTUrWwbNWuKFB +OJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40bRr5HMNUuctHFY9rnY3lE +fktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2puTRZCr+E +Sv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1m +o130GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02i +sx7QBlrd9pPPV3WZ9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOW +OZV7bIBaTxNyxtd9KXpEulKkKtVBRgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgez +Tv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pyehizKV/Ma5ciSixqClnrDvFAS +adgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vMBhBgu4M1t15n +3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQ +F/xlhMcQSZDe28cmk4gmb3DWAl45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTf +CVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuAL55MYIR4PSFk1vtBHxgP58l1cb29 +XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMoclm2q8KMZiYcdywm +djWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tMpkT/ +WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jb +AoJnwTnbw3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksq +P/ujmv5zMnHCnsZy4YpoJ/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Ko +b7a6bINDd82Kkhehnlt4Fj1F4jNy3eFmypnTycUm/Q1oBEauttmbjL4ZvrHG8hnj +XALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLXis7VmFxWlgPF7ncGNf/P +5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7zAYspsbi +DrW5viSP +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: ca:ff:e2:db:03:d9:cb:4b:e9:0f:ad:84:fd:7b:18:ce +# SHA1 Fingerprint: 01:0c:06:95:a6:98:19:14:ff:bf:5f:c6:b0:b6:95:ea:29:e9:12:a6 +# SHA256 Fingerprint: a0:40:92:9a:02:ce:53:b4:ac:f4:f2:ff:c6:98:1c:e4:49:6f:75:5e:6d:45:fe:0b:2a:69:2b:cd:52:52:3f:36 +-----BEGIN CERTIFICATE----- +MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1Ix +DzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5k +IFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMT +N0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9v +dENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAxMTIxWjCBpjELMAkG +A1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNh +ZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkx +QDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 +dGlvbnMgUm9vdENBIDIwMTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC +AQDC+Kk/G4n8PDwEXT2QNrCROnk8ZlrvbTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA +4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+ehiGsxr/CL0BgzuNtFajT0 +AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+6PAQZe10 +4S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06C +ojXdFPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV +9Cz82XBST3i4vTwri5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrD +gfgXy5I2XdGj2HUb4Ysn6npIQf1FGQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6 +Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2fu/Z8VFRfS0myGlZYeCsargq +NhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9muiNX6hME6wGko +LfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc +Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVd +ctA4GGqd83EkVAswDQYJKoZIhvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0I +XtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+D1hYc2Ryx+hFjtyp8iY/xnmMsVMI +M4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrMd/K4kPFox/la/vot +9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+yd+2V +Z5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/ea +j8GsGsVn82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnh +X9izjFk0WaSrT2y7HxjbdavYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQ +l033DlZdwJVqwjbDG2jJ9SrcR5q+ss7FJej6A7na+RZukYT1HCjI/CbM1xyQVqdf +bzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVtJ94Cj8rDtSvK6evIIVM4 +pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGaJI7ZjnHK +e7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0 +vm9qp/UsQu0yrbYhnr68 +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions ECC RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: 81:e5:b4:17:eb:c2:f5:e1:4b:0d:41:7b:49:92:fe:ef +# SHA1 Fingerprint: 9f:f1:71:8d:92:d5:9a:f3:7d:74:97:b4:bc:6f:84:68:0b:ba:b6:66 +# SHA256 Fingerprint: 44:b5:45:aa:8a:25:e6:5a:73:ca:15:dc:27:fc:36:d2:4c:1c:b9:95:3a:06:65:39:b1:15:82:dc:48:7b:48:33 +-----BEGIN CERTIFICATE----- +MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzAN +BgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hl +bGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgRUNDIFJv +b3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEwMzcxMlowgaoxCzAJ +BgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmljIEFj +YWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5 +MUQwQgYDVQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0 +dXRpb25zIEVDQyBSb290Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKg +QehLgoRc4vgxEZmGZE4JJS+dQS8KrjVPdJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJa +jq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoKVlp8aQuqgAkkbH7BRqNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFLQi +C4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaep +lSTAGiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7Sof +TUwJCA3sS61kFyjndc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR +-----END CERTIFICATE----- + +# Issuer: CN=ISRG Root X1 O=Internet Security Research Group +# Subject: CN=ISRG Root X1 O=Internet Security Research Group +# Label: "ISRG Root X1" +# Serial: 172886928669790476064670243504169061120 +# MD5 Fingerprint: 0c:d2:f9:e0:da:17:73:e9:ed:86:4d:a5:e3:70:e7:4e +# SHA1 Fingerprint: ca:bd:2a:79:a1:07:6a:31:f2:1d:25:36:35:cb:03:9d:43:29:a5:e8 +# SHA256 Fingerprint: 96:bc:ec:06:26:49:76:f3:74:60:77:9a:cf:28:c5:a7:cf:e8:a3:c0:aa:e1:1a:8f:fc:ee:05:c0:bd:df:08:c6 +-----BEGIN CERTIFICATE----- +MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw +TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh +cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4 +WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJu +ZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBY +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygc +h77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+ +0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6U +A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW +T8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyH +B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC +B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv +KBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWn +OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn +jh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbw +qHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CI +rU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkq +hkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL +ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ +3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KK +NFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5 +ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7Ur +TkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdC +jNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVc +oyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq +4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA +mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d +emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc= +-----END CERTIFICATE----- + +# Issuer: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Subject: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Label: "AC RAIZ FNMT-RCM" +# Serial: 485876308206448804701554682760554759 +# MD5 Fingerprint: e2:09:04:b4:d3:bd:d1:a0:14:fd:1a:d2:47:c4:57:1d +# SHA1 Fingerprint: ec:50:35:07:b2:15:c4:95:62:19:e2:a8:9a:5b:42:99:2c:4c:2c:20 +# SHA256 Fingerprint: eb:c5:57:0c:29:01:8c:4d:67:b1:aa:12:7b:af:12:f7:03:b4:61:1e:bc:17:b7:da:b5:57:38:94:17:9b:93:fa +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIPXZONMGc2yAYdGsdUhGkHMA0GCSqGSIb3DQEBCwUAMDsx +CzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJ +WiBGTk1ULVJDTTAeFw0wODEwMjkxNTU5NTZaFw0zMDAxMDEwMDAwMDBaMDsxCzAJ +BgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBG +Tk1ULVJDTTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALpxgHpMhm5/ +yBNtwMZ9HACXjywMI7sQmkCpGreHiPibVmr75nuOi5KOpyVdWRHbNi63URcfqQgf +BBckWKo3Shjf5TnUV/3XwSyRAZHiItQDwFj8d0fsjz50Q7qsNI1NOHZnjrDIbzAz +WHFctPVrbtQBULgTfmxKo0nRIBnuvMApGGWn3v7v3QqQIecaZ5JCEJhfTzC8PhxF +tBDXaEAUwED653cXeuYLj2VbPNmaUtu1vZ5Gzz3rkQUCwJaydkxNEJY7kvqcfw+Z +374jNUUeAlz+taibmSXaXvMiwzn15Cou08YfxGyqxRxqAQVKL9LFwag0Jl1mpdIC +IfkYtwb1TplvqKtMUejPUBjFd8g5CSxJkjKZqLsXF3mwWsXmo8RZZUc1g16p6DUL +mbvkzSDGm0oGObVo/CK67lWMK07q87Hj/LaZmtVC+nFNCM+HHmpxffnTtOmlcYF7 +wk5HlqX2doWjKI/pgG6BU6VtX7hI+cL5NqYuSf+4lsKMB7ObiFj86xsc3i1w4peS +MKGJ47xVqCfWS+2QrYv6YyVZLag13cqXM7zlzced0ezvXg5KkAYmY6252TUtB7p2 +ZSysV4999AeU14ECll2jB0nVetBX+RvnU0Z1qrB5QstocQjpYL05ac70r8NWQMet +UqIJ5G+GR4of6ygnXYMgrwTJbFaai0b1AgMBAAGjgYMwgYAwDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFPd9xf3E6Jobd2Sn9R2gzL+H +YJptMD4GA1UdIAQ3MDUwMwYEVR0gADArMCkGCCsGAQUFBwIBFh1odHRwOi8vd3d3 +LmNlcnQuZm5tdC5lcy9kcGNzLzANBgkqhkiG9w0BAQsFAAOCAgEAB5BK3/MjTvDD +nFFlm5wioooMhfNzKWtN/gHiqQxjAb8EZ6WdmF/9ARP67Jpi6Yb+tmLSbkyU+8B1 +RXxlDPiyN8+sD8+Nb/kZ94/sHvJwnvDKuO+3/3Y3dlv2bojzr2IyIpMNOmqOFGYM +LVN0V2Ue1bLdI4E7pWYjJ2cJj+F3qkPNZVEI7VFY/uY5+ctHhKQV8Xa7pO6kO8Rf +77IzlhEYt8llvhjho6Tc+hj507wTmzl6NLrTQfv6MooqtyuGC2mDOL7Nii4LcK2N +JpLuHvUBKwrZ1pebbuCoGRw6IYsMHkCtA+fdZn71uSANA+iW+YJF1DngoABd15jm +fZ5nc8OaKveri6E6FO80vFIOiZiaBECEHX5FaZNXzuvO+FB8TxxuBEOb+dY7Ixjp +6o7RTUaN8Tvkasq6+yO3m/qZASlaWFot4/nUbQ4mrcFuNLwy+AwF+mWj2zs3gyLp +1txyM/1d8iC9djwj2ij3+RvrWWTV3F9yfiD8zYm1kGdNYno/Tq0dwzn+evQoFt9B +9kiABdcPUXmsEKvU7ANm5mqwujGSQkBqvjrTcuFqN1W8rB2Vt2lh8kORdOag0wok +RqEIr9baRRmW1FMdW4R58MD3R++Lj8UGrp1MYp3/RgT408m2ECVAdf4WqslKYIYv +uu8wd+RU4riEmViAqhOLUTpPSPaLtrM= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 1 O=Amazon +# Subject: CN=Amazon Root CA 1 O=Amazon +# Label: "Amazon Root CA 1" +# Serial: 143266978916655856878034712317230054538369994 +# MD5 Fingerprint: 43:c6:bf:ae:ec:fe:ad:2f:18:c6:88:68:30:fc:c8:e6 +# SHA1 Fingerprint: 8d:a7:f9:65:ec:5e:fc:37:91:0f:1c:6e:59:fd:c1:cc:6a:6e:de:16 +# SHA256 Fingerprint: 8e:cd:e6:88:4f:3d:87:b1:12:5b:a3:1a:c3:fc:b1:3d:70:16:de:7f:57:cc:90:4f:e1:cb:97:c6:ae:98:19:6e +-----BEGIN CERTIFICATE----- +MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAxMB4XDTE1MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXj +ca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM +9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qw +IFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6 +VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L +93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQm +jgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3DQEBCwUA +A4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDI +U5PMCCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUs +N+gDS63pYaACbvXy8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vv +o/ufQJVtMVT8QtPHRh8jrdkPSHCa2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU +5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2xJNDd2ZhwLnoQdeXeGADbkpy +rqXRfboQnoZsG4q5WTP468SQvvG5 +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 2 O=Amazon +# Subject: CN=Amazon Root CA 2 O=Amazon +# Label: "Amazon Root CA 2" +# Serial: 143266982885963551818349160658925006970653239 +# MD5 Fingerprint: c8:e5:8d:ce:a8:42:e2:7a:c0:2a:5c:7c:9e:26:bf:66 +# SHA1 Fingerprint: 5a:8c:ef:45:d7:a6:98:59:76:7a:8c:8b:44:96:b5:78:cf:47:4b:1a +# SHA256 Fingerprint: 1b:a5:b2:aa:8c:65:40:1a:82:96:01:18:f8:0b:ec:4f:62:30:4d:83:ce:c4:71:3a:19:c3:9c:01:1e:a4:6d:b4 +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgITBmyf0pY1hp8KD+WGePhbJruKNzANBgkqhkiG9w0BAQwF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAyMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK2Wny2cSkxK +gXlRmeyKy2tgURO8TW0G/LAIjd0ZEGrHJgw12MBvIITplLGbhQPDW9tK6Mj4kHbZ +W0/jTOgGNk3Mmqw9DJArktQGGWCsN0R5hYGCrVo34A3MnaZMUnbqQ523BNFQ9lXg +1dKmSYXpN+nKfq5clU1Imj+uIFptiJXZNLhSGkOQsL9sBbm2eLfq0OQ6PBJTYv9K +8nu+NQWpEjTj82R0Yiw9AElaKP4yRLuH3WUnAnE72kr3H9rN9yFVkE8P7K6C4Z9r +2UXTu/Bfh+08LDmG2j/e7HJV63mjrdvdfLC6HM783k81ds8P+HgfajZRRidhW+me +z/CiVX18JYpvL7TFz4QuK/0NURBs+18bvBt+xa47mAExkv8LV/SasrlX6avvDXbR +8O70zoan4G7ptGmh32n2M8ZpLpcTnqWHsFcQgTfJU7O7f/aS0ZzQGPSSbtqDT6Zj +mUyl+17vIWR6IF9sZIUVyzfpYgwLKhbcAS4y2j5L9Z469hdAlO+ekQiG+r5jqFoz +7Mt0Q5X5bGlSNscpb/xVA1wf+5+9R+vnSUeVC06JIglJ4PVhHvG/LopyboBZ/1c6 ++XUyo05f7O0oYtlNc/LMgRdg7c3r3NunysV+Ar3yVAhU/bQtCSwXVEqY0VThUWcI +0u1ufm8/0i2BWSlmy5A5lREedCf+3euvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB +Af8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSwDPBMMPQFWAJI/TPlUq9LhONm +UjANBgkqhkiG9w0BAQwFAAOCAgEAqqiAjw54o+Ci1M3m9Zh6O+oAA7CXDpO8Wqj2 +LIxyh6mx/H9z/WNxeKWHWc8w4Q0QshNabYL1auaAn6AFC2jkR2vHat+2/XcycuUY ++gn0oJMsXdKMdYV2ZZAMA3m3MSNjrXiDCYZohMr/+c8mmpJ5581LxedhpxfL86kS +k5Nrp+gvU5LEYFiwzAJRGFuFjWJZY7attN6a+yb3ACfAXVU3dJnJUH/jWS5E4ywl +7uxMMne0nxrpS10gxdr9HIcWxkPo1LsmmkVwXqkLN1PiRnsn/eBG8om3zEK2yygm +btmlyTrIQRNg91CMFa6ybRoVGld45pIq2WWQgj9sAq+uEjonljYE1x2igGOpm/Hl +urR8FLBOybEfdF849lHqm/osohHUqS0nGkWxr7JOcQ3AWEbWaQbLU8uz/mtBzUF+ +fUwPfHJ5elnNXkoOrJupmHN5fLT0zLm4BwyydFy4x2+IoZCn9Kr5v2c69BoVYh63 +n749sSmvZ6ES8lgQGVMDMBu4Gon2nL2XA46jCfMdiyHxtN/kHNGfZQIG6lzWE7OE +76KlXIx3KadowGuuQNKotOrN8I1LOJwZmhsoVLiJkO/KdYE+HvJkJMcYr07/R54H +9jVlpNMKVv/1F2Rs76giJUmTtt8AF9pYfl3uxRuw0dFfIRDH+fO6AgonB8Xx1sfT +4PsJYGw= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 3 O=Amazon +# Subject: CN=Amazon Root CA 3 O=Amazon +# Label: "Amazon Root CA 3" +# Serial: 143266986699090766294700635381230934788665930 +# MD5 Fingerprint: a0:d4:ef:0b:f7:b5:d8:49:95:2a:ec:f5:c4:fc:81:87 +# SHA1 Fingerprint: 0d:44:dd:8c:3c:8c:1a:1a:58:75:64:81:e9:0f:2e:2a:ff:b3:d2:6e +# SHA256 Fingerprint: 18:ce:6c:fe:7b:f1:4e:60:b2:e3:47:b8:df:e8:68:cb:31:d0:2e:bb:3a:da:27:15:69:f5:03:43:b4:6d:b3:a4 +-----BEGIN CERTIFICATE----- +MIIBtjCCAVugAwIBAgITBmyf1XSXNmY/Owua2eiedgPySjAKBggqhkjOPQQDAjA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSAzMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgMzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCmXp8ZBf8ANm+gBG1bG8lKl +ui2yEujSLtf6ycXYqm0fc4E7O5hrOXwzpcVOho6AF2hiRVd9RFgdszflZwjrZt6j +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSr +ttvXBp43rDCGB5Fwx5zEGbF4wDAKBggqhkjOPQQDAgNJADBGAiEA4IWSoxe3jfkr +BqWTrBqYaGFy+uGh0PsceGCmQ5nFuMQCIQCcAu/xlJyzlvnrxir4tiz+OpAUFteM +YyRIHN8wfdVoOw== +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 4 O=Amazon +# Subject: CN=Amazon Root CA 4 O=Amazon +# Label: "Amazon Root CA 4" +# Serial: 143266989758080763974105200630763877849284878 +# MD5 Fingerprint: 89:bc:27:d5:eb:17:8d:06:6a:69:d5:fd:89:47:b4:cd +# SHA1 Fingerprint: f6:10:84:07:d6:f8:bb:67:98:0c:c2:e2:44:c2:eb:ae:1c:ef:63:be +# SHA256 Fingerprint: e3:5d:28:41:9e:d0:20:25:cf:a6:90:38:cd:62:39:62:45:8d:a5:c6:95:fb:de:a3:c2:2b:0b:fb:25:89:70:92 +-----BEGIN CERTIFICATE----- +MIIB8jCCAXigAwIBAgITBmyf18G7EEwpQ+Vxe3ssyBrBDjAKBggqhkjOPQQDAzA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSA0MB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgNDB2MBAGByqGSM49AgEGBSuBBAAiA2IABNKrijdPo1MN/sGKe0uoe0ZLY7Bi +9i0b2whxIdIA6GO9mif78DluXeo9pcmBqqNbIJhFXRbb/egQbeOc4OO9X4Ri83Bk +M6DLJC9wuoihKqB1+IGuYgbEgds5bimwHvouXKNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFNPsxzplbszh2naaVvuc84ZtV+WB +MAoGCCqGSM49BAMDA2gAMGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlw +CkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1AE47xDqUEpHJWEadIRNyp4iciuRMStuW +1KyLa2tJElMzrdfkviT8tQp21KW8EA== +-----END CERTIFICATE----- + +# Issuer: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Subject: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Label: "TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1" +# Serial: 1 +# MD5 Fingerprint: dc:00:81:dc:69:2f:3e:2f:b0:3b:f6:3d:5a:91:8e:49 +# SHA1 Fingerprint: 31:43:64:9b:ec:ce:27:ec:ed:3a:3f:0b:8f:0d:e4:e8:91:dd:ee:ca +# SHA256 Fingerprint: 46:ed:c3:68:90:46:d5:3a:45:3f:b3:10:4a:b8:0d:ca:ec:65:8b:26:60:ea:16:29:dd:7e:86:79:90:64:87:16 +-----BEGIN CERTIFICATE----- +MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIx +GDAWBgNVBAcTD0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxp +bXNlbCB2ZSBUZWtub2xvamlrIEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0w +KwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24gTWVya2V6aSAtIEthbXUgU00xNjA0 +BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRpZmlrYXNpIC0gU3Vy +dW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYDVQQG +EwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXll +IEJpbGltc2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklU +QUsxLTArBgNVBAsTJEthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBT +TTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11IFNNIFNTTCBLb2sgU2VydGlmaWthc2kg +LSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr3UwM6q7 +a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y86Ij5iySr +LqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INr +N3wcwv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2X +YacQuFWQfw4tJzh03+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/ +iSIzL+aFCr2lqBs23tPcLG07xxO9WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4f +AJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQUZT/HiobGPN08VFw1+DrtUgxH +V8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh +AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPf +IPP54+M638yclNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4 +lzwDGrpDxpa5RXI4s6ehlj2Re37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c +8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0jq5Rm+K37DwhuJi1/FwcJsoz7UMCf +lo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM= +-----END CERTIFICATE----- + +# Issuer: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Subject: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Label: "GDCA TrustAUTH R5 ROOT" +# Serial: 9009899650740120186 +# MD5 Fingerprint: 63:cc:d9:3d:34:35:5c:6f:53:a3:e2:08:70:48:1f:b4 +# SHA1 Fingerprint: 0f:36:38:5b:81:1a:25:c3:9b:31:4e:83:ca:e9:34:66:70:cc:74:b4 +# SHA256 Fingerprint: bf:ff:8f:d0:44:33:48:7d:6a:8a:a6:0c:1a:29:76:7a:9f:c2:bb:b0:5e:42:0f:71:3a:13:b9:92:89:1d:38:93 +-----BEGIN CERTIFICATE----- +MIIFiDCCA3CgAwIBAgIIfQmX/vBH6nowDQYJKoZIhvcNAQELBQAwYjELMAkGA1UE +BhMCQ04xMjAwBgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZ +IENPLixMVEQuMR8wHQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMB4XDTE0 +MTEyNjA1MTMxNVoXDTQwMTIzMTE1NTk1OVowYjELMAkGA1UEBhMCQ04xMjAwBgNV +BAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZIENPLixMVEQuMR8w +HQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA2aMW8Mh0dHeb7zMNOwZ+Vfy1YI92hhJCfVZmPoiC7XJj +Dp6L3TQsAlFRwxn9WVSEyfFrs0yw6ehGXTjGoqcuEVe6ghWinI9tsJlKCvLriXBj +TnnEt1u9ol2x8kECK62pOqPseQrsXzrj/e+APK00mxqriCZ7VqKChh/rNYmDf1+u +KU49tm7srsHwJ5uu4/Ts765/94Y9cnrrpftZTqfrlYwiOXnhLQiPzLyRuEH3FMEj +qcOtmkVEs7LXLM3GKeJQEK5cy4KOFxg2fZfmiJqwTTQJ9Cy5WmYqsBebnh52nUpm +MUHfP/vFBu8btn4aRjb3ZGM74zkYI+dndRTVdVeSN72+ahsmUPI2JgaQxXABZG12 +ZuGR224HwGGALrIuL4xwp9E7PLOR5G62xDtw8mySlwnNR30YwPO7ng/Wi64HtloP +zgsMR6flPri9fcebNaBhlzpBdRfMK5Z3KpIhHtmVdiBnaM8Nvd/WHwlqmuLMc3Gk +L30SgLdTMEZeS1SZD2fJpcjyIMGC7J0R38IC+xo70e0gmu9lZJIQDSri3nDxGGeC +jGHeuLzRL5z7D9Ar7Rt2ueQ5Vfj4oR24qoAATILnsn8JuLwwoC8N9VKejveSswoA +HQBUlwbgsQfZxw9cZX08bVlX5O2ljelAU58VS6Bx9hoh49pwBiFYFIeFd3mqgnkC +AwEAAaNCMEAwHQYDVR0OBBYEFOLJQJ9NzuiaoXzPDj9lxSmIahlRMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQDRSVfg +p8xoWLoBDysZzY2wYUWsEe1jUGn4H3++Fo/9nesLqjJHdtJnJO29fDMylyrHBYZm +DRd9FBUb1Ov9H5r2XpdptxolpAqzkT9fNqyL7FeoPueBihhXOYV0GkLH6VsTX4/5 +COmSdI31R9KrO9b7eGZONn356ZLpBN79SWP8bfsUcZNnL0dKt7n/HipzcEYwv1ry +L3ml4Y0M2fmyYzeMN2WFcGpcWwlyua1jPLHd+PwyvzeG5LuOmCd+uh8W4XAR8gPf +JWIyJyYYMoSf/wA6E7qaTfRPuBRwIrHKK5DOKcFw9C+df/KQHtZa37dG/OaG+svg +IHZ6uqbL9XzeYqWxi+7egmaKTjowHz+Ay60nugxe19CxVsp3cbK1daFQqUBDF8Io +2c9Si1vIY9RCPqAzekYu9wogRlR+ak8x8YF+QnQ4ZXMn7sZ8uI7XpTrXmKGcjBBV +09tL7ECQ8s1uV9JiDnxXk7Gnbc2dg7sq5+W2O3FYrf3RRbxake5TFW/TRQl1brqQ +XR4EzzffHqhmsYzmIGrv/EhOdJhCrylvLmrH+33RZjEizIYAfmaDDEL0vTSSwxrq +T8p+ck0LcIymSLumoRT2+1hEmRSuqguTaaApJUqlyyvdimYHFngVV3Eb7PVHhPOe +MTd61X8kreS8/f3MboPoDKi3QWwH3b08hpcv0g== +-----END CERTIFICATE----- + +# Issuer: CN=TrustCor RootCert CA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Subject: CN=TrustCor RootCert CA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Label: "TrustCor RootCert CA-1" +# Serial: 15752444095811006489 +# MD5 Fingerprint: 6e:85:f1:dc:1a:00:d3:22:d5:b2:b2:ac:6b:37:05:45 +# SHA1 Fingerprint: ff:bd:cd:e7:82:c8:43:5e:3c:6f:26:86:5c:ca:a8:3a:45:5b:c3:0a +# SHA256 Fingerprint: d4:0e:9c:86:cd:8f:e4:68:c1:77:69:59:f4:9e:a7:74:fa:54:86:84:b6:c4:06:f3:90:92:61:f4:dc:e2:57:5c +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIJANqb7HHzA7AZMA0GCSqGSIb3DQEBCwUAMIGkMQswCQYD +VQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEk +MCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5U +cnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxHzAdBgNVBAMMFlRydXN0Q29y +IFJvb3RDZXJ0IENBLTEwHhcNMTYwMjA0MTIzMjE2WhcNMjkxMjMxMTcyMzE2WjCB +pDELMAkGA1UEBhMCUEExDzANBgNVBAgMBlBhbmFtYTEUMBIGA1UEBwwLUGFuYW1h +IENpdHkxJDAiBgNVBAoMG1RydXN0Q29yIFN5c3RlbXMgUy4gZGUgUi5MLjEnMCUG +A1UECwweVHJ1c3RDb3IgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MR8wHQYDVQQDDBZU +cnVzdENvciBSb290Q2VydCBDQS0xMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEAv463leLCJhJrMxnHQFgKq1mqjQCj/IDHUHuO1CAmujIS2CNUSSUQIpid +RtLByZ5OGy4sDjjzGiVoHKZaBeYei0i/mJZ0PmnK6bV4pQa81QBeCQryJ3pS/C3V +seq0iWEk8xoT26nPUu0MJLq5nux+AHT6k61sKZKuUbS701e/s/OojZz0JEsq1pme +9J7+wH5COucLlVPat2gOkEz7cD+PSiyU8ybdY2mplNgQTsVHCJCZGxdNuWxu72CV +EY4hgLW9oHPY0LJ3xEXqWib7ZnZ2+AYfYW0PVcWDtxBWcgYHpfOxGgMFZA6dWorW +hnAbJN7+KIor0Gqw/Hqi3LJ5DotlDwIDAQABo2MwYTAdBgNVHQ4EFgQU7mtJPHo/ +DeOxCbeKyKsZn3MzUOcwHwYDVR0jBBgwFoAU7mtJPHo/DeOxCbeKyKsZn3MzUOcw +DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQAD +ggEBACUY1JGPE+6PHh0RU9otRCkZoB5rMZ5NDp6tPVxBb5UrJKF5mDo4Nvu7Zp5I +/5CQ7z3UuJu0h3U/IJvOcs+hVcFNZKIZBqEHMwwLKeXx6quj7LUKdJDHfXLy11yf +ke+Ri7fc7Waiz45mO7yfOgLgJ90WmMCV1Aqk5IGadZQ1nJBfiDcGrVmVCrDRZ9MZ +yonnMlo2HD6CqFqTvsbQZJG2z9m2GM/bftJlo6bEjhcxwft+dtvTheNYsnd6djts +L1Ac59v2Z3kf9YKVmgenFK+P3CghZwnS1k1aHBkcjndcw5QkPTJrS37UeJSDvjdN +zl/HHk484IkzlQsPpTLWPFp5LBk= +-----END CERTIFICATE----- + +# Issuer: CN=TrustCor RootCert CA-2 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Subject: CN=TrustCor RootCert CA-2 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Label: "TrustCor RootCert CA-2" +# Serial: 2711694510199101698 +# MD5 Fingerprint: a2:e1:f8:18:0b:ba:45:d5:c7:41:2a:bb:37:52:45:64 +# SHA1 Fingerprint: b8:be:6d:cb:56:f1:55:b9:63:d4:12:ca:4e:06:34:c7:94:b2:1c:c0 +# SHA256 Fingerprint: 07:53:e9:40:37:8c:1b:d5:e3:83:6e:39:5d:ae:a5:cb:83:9e:50:46:f1:bd:0e:ae:19:51:cf:10:fe:c7:c9:65 +-----BEGIN CERTIFICATE----- +MIIGLzCCBBegAwIBAgIIJaHfyjPLWQIwDQYJKoZIhvcNAQELBQAwgaQxCzAJBgNV +BAYTAlBBMQ8wDQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5MSQw +IgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRy +dXN0Q29yIENlcnRpZmljYXRlIEF1dGhvcml0eTEfMB0GA1UEAwwWVHJ1c3RDb3Ig +Um9vdENlcnQgQ0EtMjAeFw0xNjAyMDQxMjMyMjNaFw0zNDEyMzExNzI2MzlaMIGk +MQswCQYDVQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEg +Q2l0eTEkMCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYD +VQQLDB5UcnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxHzAdBgNVBAMMFlRy +dXN0Q29yIFJvb3RDZXJ0IENBLTIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCnIG7CKqJiJJWQdsg4foDSq8GbZQWU9MEKENUCrO2fk8eHyLAnK0IMPQo+ +QVqedd2NyuCb7GgypGmSaIwLgQ5WoD4a3SwlFIIvl9NkRvRUqdw6VC0xK5mC8tkq +1+9xALgxpL56JAfDQiDyitSSBBtlVkxs1Pu2YVpHI7TYabS3OtB0PAx1oYxOdqHp +2yqlO/rOsP9+aij9JxzIsekp8VduZLTQwRVtDr4uDkbIXvRR/u8OYzo7cbrPb1nK +DOObXUm4TOJXsZiKQlecdu/vvdFoqNL0Cbt3Nb4lggjEFixEIFapRBF37120Hape +az6LMvYHL1cEksr1/p3C6eizjkxLAjHZ5DxIgif3GIJ2SDpxsROhOdUuxTTCHWKF +3wP+TfSvPd9cW436cOGlfifHhi5qjxLGhF5DUVCcGZt45vz27Ud+ez1m7xMTiF88 +oWP7+ayHNZ/zgp6kPwqcMWmLmaSISo5uZk3vFsQPeSghYA2FFn3XVDjxklb9tTNM +g9zXEJ9L/cb4Qr26fHMC4P99zVvh1Kxhe1fVSntb1IVYJ12/+CtgrKAmrhQhJ8Z3 +mjOAPF5GP/fDsaOGM8boXg25NSyqRsGFAnWAoOsk+xWq5Gd/bnc/9ASKL3x74xdh +8N0JqSDIvgmk0H5Ew7IwSjiqqewYmgeCK9u4nBit2uBGF6zPXQIDAQABo2MwYTAd +BgNVHQ4EFgQU2f4hQG6UnrybPZx9mCAZ5YwwYrIwHwYDVR0jBBgwFoAU2f4hQG6U +nrybPZx9mCAZ5YwwYrIwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYw +DQYJKoZIhvcNAQELBQADggIBAJ5Fngw7tu/hOsh80QA9z+LqBrWyOrsGS2h60COX +dKcs8AjYeVrXWoSK2BKaG9l9XE1wxaX5q+WjiYndAfrs3fnpkpfbsEZC89NiqpX+ +MWcUaViQCqoL7jcjx1BRtPV+nuN79+TMQjItSQzL/0kMmx40/W5ulop5A7Zv2wnL +/V9lFDfhOPXzYRZY5LVtDQsEGz9QLX+zx3oaFoBg+Iof6Rsqxvm6ARppv9JYx1RX +CI/hOWB3S6xZhBqI8d3LT3jX5+EzLfzuQfogsL7L9ziUwOHQhQ+77Sxzq+3+knYa +ZH9bDTMJBzN7Bj8RpFxwPIXAz+OQqIN3+tvmxYxoZxBnpVIt8MSZj3+/0WvitUfW +2dCFmU2Umw9Lje4AWkcdEQOsQRivh7dvDDqPys/cA8GiCcjl/YBeyGBCARsaU1q7 +N6a3vLqE6R5sGtRk2tRD/pOLS/IseRYQ1JMLiI+h2IYURpFHmygk71dSTlxCnKr3 +Sewn6EAes6aJInKc9Q0ztFijMDvd1GpUk74aTfOTlPf8hAs/hCBcNANExdqtvArB +As8e5ZTZ845b2EzwnexhF7sUMlQMAimTHpKG9n/v55IFDlndmQguLvqcAFLTxWYp +5KeXRKQOKIETNcX2b2TmQcTVL8w0RSXPQQCWPUouwpaYT05KnJe32x+SMsj/D1Fu +1uwJ +-----END CERTIFICATE----- + +# Issuer: CN=TrustCor ECA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Subject: CN=TrustCor ECA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Label: "TrustCor ECA-1" +# Serial: 9548242946988625984 +# MD5 Fingerprint: 27:92:23:1d:0a:f5:40:7c:e9:e6:6b:9d:d8:f5:e7:6c +# SHA1 Fingerprint: 58:d1:df:95:95:67:6b:63:c0:f0:5b:1c:17:4d:8b:84:0b:c8:78:bd +# SHA256 Fingerprint: 5a:88:5d:b1:9c:01:d9:12:c5:75:93:88:93:8c:af:bb:df:03:1a:b2:d4:8e:91:ee:15:58:9b:42:97:1d:03:9c +-----BEGIN CERTIFICATE----- +MIIEIDCCAwigAwIBAgIJAISCLF8cYtBAMA0GCSqGSIb3DQEBCwUAMIGcMQswCQYD +VQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEk +MCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5U +cnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxFzAVBgNVBAMMDlRydXN0Q29y +IEVDQS0xMB4XDTE2MDIwNDEyMzIzM1oXDTI5MTIzMTE3MjgwN1owgZwxCzAJBgNV +BAYTAlBBMQ8wDQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5MSQw +IgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRy +dXN0Q29yIENlcnRpZmljYXRlIEF1dGhvcml0eTEXMBUGA1UEAwwOVHJ1c3RDb3Ig +RUNBLTEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPj+ARtZ+odnbb +3w9U73NjKYKtR8aja+3+XzP4Q1HpGjORMRegdMTUpwHmspI+ap3tDvl0mEDTPwOA +BoJA6LHip1GnHYMma6ve+heRK9jGrB6xnhkB1Zem6g23xFUfJ3zSCNV2HykVh0A5 +3ThFEXXQmqc04L/NyFIduUd+Dbi7xgz2c1cWWn5DkR9VOsZtRASqnKmcp0yJF4Ou +owReUoCLHhIlERnXDH19MURB6tuvsBzvgdAsxZohmz3tQjtQJvLsznFhBmIhVE5/ +wZ0+fyCMgMsq2JdiyIMzkX2woloPV+g7zPIlstR8L+xNxqE6FXrntl019fZISjZF +ZtS6mFjBAgMBAAGjYzBhMB0GA1UdDgQWBBREnkj1zG1I1KBLf/5ZJC+Dl5mahjAf +BgNVHSMEGDAWgBREnkj1zG1I1KBLf/5ZJC+Dl5mahjAPBgNVHRMBAf8EBTADAQH/ +MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAQEABT41XBVwm8nHc2Fv +civUwo/yQ10CzsSUuZQRg2dd4mdsdXa/uwyqNsatR5Nj3B5+1t4u/ukZMjgDfxT2 +AHMsWbEhBuH7rBiVDKP/mZb3Kyeb1STMHd3BOuCYRLDE5D53sXOpZCz2HAF8P11F +hcCF5yWPldwX8zyfGm6wyuMdKulMY/okYWLW2n62HGz1Ah3UKt1VkOsqEUc8Ll50 +soIipX1TH0XsJ5F95yIW6MBoNtjG8U+ARDL54dHRHareqKucBK+tIA5kmE2la8BI +WJZpTdwHjFGTot+fDz2LYLSCjaoITmJF4PkL0uDgPFveXHEnJcLmA4GLEFPjx1Wi +tJ/X5g== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Label: "SSL.com Root Certification Authority RSA" +# Serial: 8875640296558310041 +# MD5 Fingerprint: 86:69:12:c0:70:f1:ec:ac:ac:c2:d5:bc:a5:5b:a1:29 +# SHA1 Fingerprint: b7:ab:33:08:d1:ea:44:77:ba:14:80:12:5a:6f:bd:a9:36:49:0c:bb +# SHA256 Fingerprint: 85:66:6a:56:2e:e0:be:5c:e9:25:c1:d8:89:0a:6f:76:a8:7e:c1:6d:4d:7d:5f:29:ea:74:19:cf:20:12:3b:69 +-----BEGIN CERTIFICATE----- +MIIF3TCCA8WgAwIBAgIIeyyb0xaAMpkwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UE +BhMCVVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQK +DA9TU0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBSU0EwHhcNMTYwMjEyMTczOTM5WhcNNDEwMjEyMTcz +OTM5WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNv +bSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTCCAiIwDQYJKoZIhvcN +AQEBBQADggIPADCCAgoCggIBAPkP3aMrfcvQKv7sZ4Wm5y4bunfh4/WvpOz6Sl2R +xFdHaxh3a3by/ZPkPQ/CFp4LZsNWlJ4Xg4XOVu/yFv0AYvUiCVToZRdOQbngT0aX +qhvIuG5iXmmxX9sqAn78bMrzQdjt0Oj8P2FI7bADFB0QDksZ4LtO7IZl/zbzXmcC +C52GVWH9ejjt/uIZALdvoVBidXQ8oPrIJZK0bnoix/geoeOy3ZExqysdBP+lSgQ3 +6YWkMyv94tZVNHwZpEpox7Ko07fKoZOI68GXvIz5HdkihCR0xwQ9aqkpk8zruFvh +/l8lqjRYyMEjVJ0bmBHDOJx+PYZspQ9AhnwC9FwCTyjLrnGfDzrIM/4RJTXq/LrF +YD3ZfBjVsqnTdXgDciLKOsMf7yzlLqn6niy2UUb9rwPW6mBo6oUWNmuF6R7As93E +JNyAKoFBbZQ+yODJgUEAnl6/f8UImKIYLEJAs/lvOCdLToD0PYFH4Ih86hzOtXVc +US4cK38acijnALXRdMbX5J+tB5O2UzU1/Dfkw/ZdFr4hc96SCvigY2q8lpJqPvi8 +ZVWb3vUNiSYE/CUapiVpy8JtynziWV+XrOvvLsi81xtZPCvM8hnIk2snYxnP/Okm ++Mpxm3+T/jRnhE6Z6/yzeAkzcLpmpnbtG3PrGqUNxCITIJRWCk4sbE6x/c+cCbqi +M+2HAgMBAAGjYzBhMB0GA1UdDgQWBBTdBAkHovV6fVJTEpKV7jiAJQ2mWTAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFN0ECQei9Xp9UlMSkpXuOIAlDaZZMA4G +A1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAIBgRlCn7Jp0cHh5wYfGV +cpNxJK1ok1iOMq8bs3AD/CUrdIWQPXhq9LmLpZc7tRiRux6n+UBbkflVma8eEdBc +Hadm47GUBwwyOabqG7B52B2ccETjit3E+ZUfijhDPwGFpUenPUayvOUiaPd7nNgs +PgohyC0zrL/FgZkxdMF1ccW+sfAjRfSda/wZY52jvATGGAslu1OJD7OAUN5F7kR/ +q5R4ZJjT9ijdh9hwZXT7DrkT66cPYakylszeu+1jTBi7qUD3oFRuIIhxdRjqerQ0 +cuAjJ3dctpDqhiVAq+8zD8ufgr6iIPv2tS0a5sKFsXQP+8hlAqRSAUfdSSLBv9jr +a6x+3uxjMxW3IwiPxg+NQVrdjsW5j+VFP3jbutIbQLH+cU0/4IGiul607BXgk90I +H37hVZkLId6Tngr75qNJvTYw/ud3sqB1l7UtgYgXZSD32pAAn8lSzDLKNXz1PQ/Y +K9f1JmzJBjSWFupwWRoyeXkLtoh/D1JIPb9s2KJELtFOt3JY04kTlf5Eq/jXixtu +nLwsoFvVagCvXzfh1foQC5ichucmj87w7G6KVwuA406ywKBjYZC6VWg3dGq2ktuf +oYYitmUnDuy2n0Jg5GfCtdpBC8TTi2EbvPofkSvXRAdeuims2cXp71NIWuuA8ShY +Ic2wBlX7Jz9TkHCpBB5XJ7k= +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com Root Certification Authority ECC" +# Serial: 8495723813297216424 +# MD5 Fingerprint: 2e:da:e4:39:7f:9c:8f:37:d1:70:9f:26:17:51:3a:8e +# SHA1 Fingerprint: c3:19:7c:39:24:e6:54:af:1b:c4:ab:20:95:7a:e2:c3:0e:13:02:6a +# SHA256 Fingerprint: 34:17:bb:06:cc:60:07:da:1b:96:1c:92:0b:8a:b4:ce:3f:ad:82:0e:4a:a3:0b:9a:cb:c4:a7:4e:bd:ce:bc:65 +-----BEGIN CERTIFICATE----- +MIICjTCCAhSgAwIBAgIIdebfy8FoW6gwCgYIKoZIzj0EAwIwfDELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNDAzWhcNNDEwMjEyMTgxNDAz +WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0 +b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNvbSBS +b290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABEVuqVDEpiM2nl8ojRfLliJkP9x6jh3MCLOicSS6jkm5BBtHllirLZXI +7Z4INcgn64mMU1jrYor+8FsPazFSY0E7ic3s7LaNGdM0B9y7xgZ/wkWV7Mt/qCPg +CemB+vNH06NjMGEwHQYDVR0OBBYEFILRhXMw5zUE044CkvvlpNHEIejNMA8GA1Ud +EwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUgtGFczDnNQTTjgKS++Wk0cQh6M0wDgYD +VR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2cAMGQCMG/n61kRpGDPYbCWe+0F+S8T +kdzt5fxQaxFGRrMcIQBiu77D5+jNB5n5DQtdcj7EqgIwH7y6C+IwJPt8bYBVCpk+ +gA0z5Wajs6O7pdWLjwkspl1+4vAHCGht0nxpbl/f5Wpl +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority RSA R2" +# Serial: 6248227494352943350 +# MD5 Fingerprint: e1:1e:31:58:1a:ae:54:53:02:f6:17:6a:11:7b:4d:95 +# SHA1 Fingerprint: 74:3a:f0:52:9b:d0:32:a0:f4:4a:83:cd:d4:ba:a9:7b:7c:2e:c4:9a +# SHA256 Fingerprint: 2e:7b:f1:6c:c2:24:85:a7:bb:e2:aa:86:96:75:07:61:b0:ae:39:be:3b:2f:e9:d0:cc:6d:4e:f7:34:91:42:5c +-----BEGIN CERTIFICATE----- +MIIF6zCCA9OgAwIBAgIIVrYpzTS8ePYwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNV +BAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UE +CgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQDDC5TU0wuY29tIEVWIFJvb3QgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIyMB4XDTE3MDUzMTE4MTQzN1oXDTQy +MDUzMDE4MTQzN1owgYIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4G +A1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQD +DC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIy +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAjzZlQOHWTcDXtOlG2mvq +M0fNTPl9fb69LT3w23jhhqXZuglXaO1XPqDQCEGD5yhBJB/jchXQARr7XnAjssuf +OePPxU7Gkm0mxnu7s9onnQqG6YE3Bf7wcXHswxzpY6IXFJ3vG2fThVUCAtZJycxa +4bH3bzKfydQ7iEGonL3Lq9ttewkfokxykNorCPzPPFTOZw+oz12WGQvE43LrrdF9 +HSfvkusQv1vrO6/PgN3B0pYEW3p+pKk8OHakYo6gOV7qd89dAFmPZiw+B6KjBSYR +aZfqhbcPlgtLyEDhULouisv3D5oi53+aNxPN8k0TayHRwMwi8qFG9kRpnMphNQcA +b9ZhCBHqurj26bNg5U257J8UZslXWNvNh2n4ioYSA0e/ZhN2rHd9NCSFg83XqpyQ +Gp8hLH94t2S42Oim9HizVcuE0jLEeK6jj2HdzghTreyI/BXkmg3mnxp3zkyPuBQV +PWKchjgGAGYS5Fl2WlPAApiiECtoRHuOec4zSnaqW4EWG7WK2NAAe15itAnWhmMO +pgWVSbooi4iTsjQc2KRVbrcc0N6ZVTsj9CLg+SlmJuwgUHfbSguPvuUCYHBBXtSu +UDkiFCbLsjtzdFVHB3mBOagwE0TlBIqulhMlQg+5U8Sb/M3kHN48+qvWBkofZ6aY +MBzdLNvcGJVXZsb/XItW9XcCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNV +HSMEGDAWgBT5YLvU49U09rj1BoAlp3PbRmmonjAdBgNVHQ4EFgQU+WC71OPVNPa4 +9QaAJadz20ZpqJ4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQBW +s47LCp1Jjr+kxJG7ZhcFUZh1++VQLHqe8RT6q9OKPv+RKY9ji9i0qVQBDb6Thi/5 +Sm3HXvVX+cpVHBK+Rw82xd9qt9t1wkclf7nxY/hoLVUE0fKNsKTPvDxeH3jnpaAg +cLAExbf3cqfeIg29MyVGjGSSJuM+LmOW2puMPfgYCdcDzH2GguDKBAdRUNf/ktUM +79qGn5nX67evaOI5JpS6aLe/g9Pqemc9YmeuJeVy6OLk7K4S9ksrPJ/psEDzOFSz +/bdoyNrGj1E8svuR3Bznm53htw1yj+KkxKl4+esUrMZDBcJlOSgYAsOCsp0FvmXt +ll9ldDz7CTUue5wT/RsPXcdtgTpWD8w74a8CLyKsRspGPKAcTNZEtF4uXBVmCeEm +Kf7GUmG6sXP/wwyc5WxqlD8UykAWlYTzWamsX0xhk23RO8yilQwipmdnRC652dKK +QbNmC1r7fSOl8hqw/96bg5Qu0T/fkreRrwU7ZcegbLHNYhLDkBvjJc40vG93drEQ +w/cFGsDWr3RiSBd3kmmQYRzelYB0VI8YHMPzA9C/pEN1hlMYegouCRw2n5H9gooi +S9EOUCXdywMMF8mDAAhONU2Ki+3wApRmLER/y5UnlhetCTCstnEXbosX9hwJ1C07 +mKVx01QT2WDz9UtmT/rx7iASjbSsV7FFY6GsdqnC+w== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority ECC" +# Serial: 3182246526754555285 +# MD5 Fingerprint: 59:53:22:65:83:42:01:54:c0:ce:42:b9:5a:7c:f2:90 +# SHA1 Fingerprint: 4c:dd:51:a3:d1:f5:20:32:14:b0:c6:c5:32:23:03:91:c7:46:42:6d +# SHA256 Fingerprint: 22:a2:c1:f7:bd:ed:70:4c:c1:e7:01:b5:f4:08:c3:10:88:0f:e9:56:b5:de:2a:4a:44:f9:9c:87:3a:25:a7:c8 +-----BEGIN CERTIFICATE----- +MIIClDCCAhqgAwIBAgIILCmcWxbtBZUwCgYIKoZIzj0EAwIwfzELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xNDAyBgNVBAMMK1NTTC5jb20gRVYgUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNTIzWhcNNDEwMjEyMTgx +NTIzWjB/MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE0MDIGA1UEAwwrU1NMLmNv +bSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49 +AgEGBSuBBAAiA2IABKoSR5CYG/vvw0AHgyBO8TCCogbR8pKGYfL2IWjKAMTH6kMA +VIbc/R/fALhBYlzccBYy3h+Z1MzFB8gIH2EWB1E9fVwHU+M1OIzfzZ/ZLg1Kthku +WnBaBu2+8KGwytAJKaNjMGEwHQYDVR0OBBYEFFvKXuXe0oGqzagtZFG22XKbl+ZP +MA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUW8pe5d7SgarNqC1kUbbZcpuX +5k8wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2gAMGUCMQCK5kCJN+vp1RPZ +ytRrJPOwPYdGWBrssd9v+1a6cGvHOMzosYxPD/fxZ3YOg9AeUY8CMD32IygmTMZg +h5Mmm7I1HrrW9zzRHM76JTymGoEVW/MSD2zuZYrJh6j5B+BimoxcSg== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Label: "GlobalSign Root CA - R6" +# Serial: 1417766617973444989252670301619537 +# MD5 Fingerprint: 4f:dd:07:e4:d4:22:64:39:1e:0c:37:42:ea:d1:c6:ae +# SHA1 Fingerprint: 80:94:64:0e:b5:a7:a1:ca:11:9c:1f:dd:d5:9f:81:02:63:a7:fb:d1 +# SHA256 Fingerprint: 2c:ab:ea:fe:37:d0:6c:a2:2a:ba:73:91:c0:03:3d:25:98:29:52:c4:53:64:73:49:76:3a:3a:b5:ad:6c:cf:69 +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIORea7A4Mzw4VlSOb/RVEwDQYJKoZIhvcNAQEMBQAwTDEg +MB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjYxEzARBgNVBAoTCkdsb2Jh +bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTQxMjEwMDAwMDAwWhcNMzQx +MjEwMDAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSNjET +MBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAJUH6HPKZvnsFMp7PPcNCPG0RQssgrRI +xutbPK6DuEGSMxSkb3/pKszGsIhrxbaJ0cay/xTOURQh7ErdG1rG1ofuTToVBu1k +ZguSgMpE3nOUTvOniX9PeGMIyBJQbUJmL025eShNUhqKGoC3GYEOfsSKvGRMIRxD +aNc9PIrFsmbVkJq3MQbFvuJtMgamHvm566qjuL++gmNQ0PAYid/kD3n16qIfKtJw +LnvnvJO7bVPiSHyMEAc4/2ayd2F+4OqMPKq0pPbzlUoSB239jLKJz9CgYXfIWHSw +1CM69106yqLbnQneXUQtkPGBzVeS+n68UARjNN9rkxi+azayOeSsJDa38O+2HBNX +k7besvjihbdzorg1qkXy4J02oW9UivFyVm4uiMVRQkQVlO6jxTiWm05OWgtH8wY2 +SXcwvHE35absIQh1/OZhFj931dmRl4QKbNQCTXTAFO39OfuD8l4UoQSwC+n+7o/h +bguyCLNhZglqsQY6ZZZZwPA1/cnaKI0aEYdwgQqomnUdnjqGBQCe24DWJfncBZ4n +WUx2OVvq+aWh2IMP0f/fMBH5hc8zSPXKbWQULHpYT9NLCEnFlWQaYw55PfWzjMpY +rZxCRXluDocZXFSxZba/jJvcE+kNb7gu3GduyYsRtYQUigAZcIN5kZeR1Bonvzce +MgfYFGM8KEyvAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBSubAWjkxPioufi1xzWx/B/yGdToDAfBgNVHSMEGDAWgBSu +bAWjkxPioufi1xzWx/B/yGdToDANBgkqhkiG9w0BAQwFAAOCAgEAgyXt6NH9lVLN +nsAEoJFp5lzQhN7craJP6Ed41mWYqVuoPId8AorRbrcWc+ZfwFSY1XS+wc3iEZGt +Ixg93eFyRJa0lV7Ae46ZeBZDE1ZXs6KzO7V33EByrKPrmzU+sQghoefEQzd5Mr61 +55wsTLxDKZmOMNOsIeDjHfrYBzN2VAAiKrlNIC5waNrlU/yDXNOd8v9EDERm8tLj +vUYAGm0CuiVdjaExUd1URhxN25mW7xocBFymFe944Hn+Xds+qkxV/ZoVqW/hpvvf +cDDpw+5CRu3CkwWJ+n1jez/QcYF8AOiYrg54NMMl+68KnyBr3TsTjxKM4kEaSHpz +oHdpx7Zcf4LIHv5YGygrqGytXm3ABdJ7t+uA/iU3/gKbaKxCXcPu9czc8FB10jZp +nOZ7BN9uBmm23goJSFmH63sUYHpkqmlD75HHTOwY3WzvUy2MmeFe8nI+z1TIvWfs +pA9MRf/TuTAjB0yPEL+GltmZWrSZVxykzLsViVO6LAUP5MSeGbEYNNVMnbrt9x+v +JJUEeKgDu+6B5dpffItKoZB0JaezPkvILFa9x8jvOOJckvB595yEunQtYQEgfn7R +8k8HWV+LLUNS60YMlOH1Zkd5d9VUWx+tJDfLRVpOoERIyNiwmcUVhAn21klJwGW4 +5hpxbqCo8YLoRT5s1gLXCmeDBVrJpBA= +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GC CA" +# Serial: 44084345621038548146064804565436152554 +# MD5 Fingerprint: a9:d6:b9:2d:2f:93:64:f8:a5:69:ca:91:e9:68:07:23 +# SHA1 Fingerprint: e0:11:84:5e:34:de:be:88:81:b9:9c:f6:16:26:d1:96:1f:c3:b9:31 +# SHA256 Fingerprint: 85:60:f9:1c:36:24:da:ba:95:70:b5:fe:a0:db:e3:6f:f1:1a:83:23:be:94:86:85:4f:b3:f3:4a:55:71:19:8d +-----BEGIN CERTIFICATE----- +MIICaTCCAe+gAwIBAgIQISpWDK7aDKtARb8roi066jAKBggqhkjOPQQDAzBtMQsw +CQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91 +bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwg +Um9vdCBHQyBDQTAeFw0xNzA1MDkwOTQ4MzRaFw00MjA1MDkwOTU4MzNaMG0xCzAJ +BgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBGb3Vu +ZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2JhbCBS +b290IEdDIENBMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAETOlQwMYPchi82PG6s4ni +eUqjFqdrVCTbUf/q9Akkwwsin8tqJ4KBDdLArzHkdIJuyiXZjHWd8dvQmqJLIX4W +p2OQ0jnUsYd4XxiWD1AbNTcPasbc2RNNpI6QN+a9WzGRo1QwUjAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUSIcUrOPDnpBgOtfKie7T +rYy0UGYwEAYJKwYBBAGCNxUBBAMCAQAwCgYIKoZIzj0EAwMDaAAwZQIwJsdpW9zV +57LnyAyMjMPdeYwbY9XJUpROTYJKcx6ygISpJcBMWm1JKWB4E+J+SOtkAjEA2zQg +Mgj/mkkCtojeFK9dbJlxjRo/i9fgojaGHAeCOnZT/cKi7e97sIBPWA9LUzm9 +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R1 O=Google Trust Services LLC +# Subject: CN=GTS Root R1 O=Google Trust Services LLC +# Label: "GTS Root R1" +# Serial: 146587175971765017618439757810265552097 +# MD5 Fingerprint: 82:1a:ef:d4:d2:4a:f2:9f:e2:3d:97:06:14:70:72:85 +# SHA1 Fingerprint: e1:c9:50:e6:ef:22:f8:4c:56:45:72:8b:92:20:60:d7:d5:a7:a3:e8 +# SHA256 Fingerprint: 2a:57:54:71:e3:13:40:bc:21:58:1c:bd:2c:f1:3e:15:84:63:20:3e:ce:94:bc:f9:d3:cc:19:6b:f0:9a:54:72 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQbkepxUtHDA3sM9CJuRz04TANBgkqhkiG9w0BAQwFADBH +MQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExM +QzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIy +MDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNl +cnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQC2EQKLHuOhd5s73L+UPreVp0A8of2C+X0yBoJx9vaM +f/vo27xqLpeXo4xL+Sv2sfnOhB2x+cWX3u+58qPpvBKJXqeqUqv4IyfLpLGcY9vX +mX7wCl7raKb0xlpHDU0QM+NOsROjyBhsS+z8CZDfnWQpJSMHobTSPS5g4M/SCYe7 +zUjwTcLCeoiKu7rPWRnWr4+wB7CeMfGCwcDfLqZtbBkOtdh+JhpFAz2weaSUKK0P +fyblqAj+lug8aJRT7oM6iCsVlgmy4HqMLnXWnOunVmSPlk9orj2XwoSPwLxAwAtc +vfaHszVsrBhQf4TgTM2S0yDpM7xSma8ytSmzJSq0SPly4cpk9+aCEI3oncKKiPo4 +Zor8Y/kB+Xj9e1x3+naH+uzfsQ55lVe0vSbv1gHR6xYKu44LtcXFilWr06zqkUsp +zBmkMiVOKvFlRNACzqrOSbTqn3yDsEB750Orp2yjj32JgfpMpf/VjsPOS+C12LOO +Rc92wO1AK/1TD7Cn1TsNsYqiA94xrcx36m97PtbfkSIS5r762DL8EGMUUXLeXdYW +k70paDPvOmbsB4om3xPXV2V4J95eSRQAogB/mqghtqmxlbCluQ0WEdrHbEg8QOB+ +DVrNVjzRlwW5y0vtOUucxD/SVRNuJLDWcfr0wbrM7Rv1/oFB2ACYPTrIrnqYNxgF +lQIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQU5K8rJnEaK0gnhS9SZizv8IkTcT4wDQYJKoZIhvcNAQEMBQADggIBADiW +Cu49tJYeX++dnAsznyvgyv3SjgofQXSlfKqE1OXyHuY3UjKcC9FhHb8owbZEKTV1 +d5iyfNm9dKyKaOOpMQkpAWBz40d8U6iQSifvS9efk+eCNs6aaAyC58/UEBZvXw6Z +XPYfcX3v73svfuo21pdwCxXu11xWajOl40k4DLh9+42FpLFZXvRq4d2h9mREruZR +gyFmxhE+885H7pwoHyXa/6xmld01D1zvICxi/ZG6qcz8WpyTgYMpl0p8WnK0OdC3 +d8t5/Wk6kjftbjhlRn7pYL15iJdfOBL07q9bgsiG1eGZbYwE8na6SfZu6W0eX6Dv +J4J2QPim01hcDyxC2kLGe4g0x8HYRZvBPsVhHdljUEn2NIVq4BjFbkerQUIpm/Zg +DdIx02OYI5NaAIFItO/Nis3Jz5nu2Z6qNuFoS3FJFDYoOj0dzpqPJeaAcWErtXvM ++SUWgeExX6GjfhaknBZqlxi9dnKlC54dNuYvoS++cJEPqOba+MSSQGwlfnuzCdyy +F62ARPBopY+Udf90WuioAnwMCeKpSwughQtiue+hMZL77/ZRBIls6Kl0obsXs7X9 +SQ98POyDGCBDTtWTurQ0sR8WNh8M5mQ5Fkzc4P4dyKliPUDqysU0ArSuiYgzNdws +E3PYJ/HQcu51OyLemGhmW/HGY0dVHLqlCFF1pkgl +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R2 O=Google Trust Services LLC +# Subject: CN=GTS Root R2 O=Google Trust Services LLC +# Label: "GTS Root R2" +# Serial: 146587176055767053814479386953112547951 +# MD5 Fingerprint: 44:ed:9a:0e:a4:09:3b:00:f2:ae:4c:a3:c6:61:b0:8b +# SHA1 Fingerprint: d2:73:96:2a:2a:5e:39:9f:73:3f:e1:c7:1e:64:3f:03:38:34:fc:4d +# SHA256 Fingerprint: c4:5d:7b:b0:8e:6d:67:e6:2e:42:35:11:0b:56:4e:5f:78:fd:92:ef:05:8c:84:0a:ea:4e:64:55:d7:58:5c:60 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQbkepxlqz5yDFMJo/aFLybzANBgkqhkiG9w0BAQwFADBH +MQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExM +QzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIy +MDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNl +cnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQDO3v2m++zsFDQ8BwZabFn3GTXd98GdVarTzTukk3Lv +CvptnfbwhYBboUhSnznFt+4orO/LdmgUud+tAWyZH8QiHZ/+cnfgLFuv5AS/T3Kg +GjSY6Dlo7JUle3ah5mm5hRm9iYz+re026nO8/4Piy33B0s5Ks40FnotJk9/BW9Bu +XvAuMC6C/Pq8tBcKSOWIm8Wba96wyrQD8Nr0kLhlZPdcTK3ofmZemde4wj7I0BOd +re7kRXuJVfeKH2JShBKzwkCX44ofR5GmdFrS+LFjKBC4swm4VndAoiaYecb+3yXu +PuWgf9RhD1FLPD+M2uFwdNjCaKH5wQzpoeJ/u1U8dgbuak7MkogwTZq9TwtImoS1 +mKPV+3PBV2HdKFZ1E66HjucMUQkQdYhMvI35ezzUIkgfKtzra7tEscszcTJGr61K +8YzodDqs5xoic4DSMPclQsciOzsSrZYuxsN2B6ogtzVJV+mSSeh2FnIxZyuWfoqj +x5RWIr9qS34BIbIjMt/kmkRtWVtd9QCgHJvGeJeNkP+byKq0rxFROV7Z+2et1VsR +nTKaG73VululycslaVNVJ1zgyjbLiGH7HrfQy+4W+9OmTN6SpdTi3/UGVN4unUu0 +kzCqgc7dGtxRcw1PcOnlthYhGXmy5okLdWTK1au8CcEYof/UVKGFPP0UJAOyh9Ok +twIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUu//KjiOfT5nK2+JopqUVJxce2Q4wDQYJKoZIhvcNAQEMBQADggIBALZp +8KZ3/p7uC4Gt4cCpx/k1HUCCq+YEtN/L9x0Pg/B+E02NjO7jMyLDOfxA325BS0JT +vhaI8dI4XsRomRyYUpOM52jtG2pzegVATX9lO9ZY8c6DR2Dj/5epnGB3GFW1fgiT +z9D2PGcDFWEJ+YF59exTpJ/JjwGLc8R3dtyDovUMSRqodt6Sm2T4syzFJ9MHwAiA +pJiS4wGWAqoC7o87xdFtCjMwc3i5T1QWvwsHoaRc5svJXISPD+AVdyx+Jn7axEvb +pxZ3B7DNdehyQtaVhJ2Gg/LkkM0JR9SLA3DaWsYDQvTtN6LwG1BUSw7YhN4ZKJmB +R64JGz9I0cNv4rBgF/XuIwKl2gBbbZCr7qLpGzvpx0QnRY5rn/WkhLx3+WuXrD5R +RaIRpsyF7gpo8j5QOHokYh4XIDdtak23CZvJ/KRY9bb7nE4Yu5UC56GtmwfuNmsk +0jmGwZODUNKBRqhfYlcsu2xkiAhu7xNUX90txGdj08+JN7+dIPT7eoOboB6BAFDC +5AwiWVIQ7UNWhwD4FFKnHYuTjKJNRn8nxnGbJN7k2oaLDX5rIMHAnuFl2GqjpuiF +izoHCBy69Y9Vmhh1fuXsgWbRIXOhNUQLgD1bnF5vKheW0YMjiGZt5obicDIvUiLn +yOd/xCxgXS/Dr55FBcOEArf9LAhST4Ldo/DUhgkC +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R3 O=Google Trust Services LLC +# Subject: CN=GTS Root R3 O=Google Trust Services LLC +# Label: "GTS Root R3" +# Serial: 146587176140553309517047991083707763997 +# MD5 Fingerprint: 1a:79:5b:6b:04:52:9c:5d:c7:74:33:1b:25:9a:f9:25 +# SHA1 Fingerprint: 30:d4:24:6f:07:ff:db:91:89:8a:0b:e9:49:66:11:eb:8c:5e:46:e5 +# SHA256 Fingerprint: 15:d5:b8:77:46:19:ea:7d:54:ce:1c:a6:d0:b0:c4:03:e0:37:a9:17:f1:31:e8:a0:4e:1e:6b:7a:71:ba:bc:e5 +-----BEGIN CERTIFICATE----- +MIICDDCCAZGgAwIBAgIQbkepx2ypcyRAiQ8DVd2NHTAKBggqhkjOPQQDAzBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjMwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjMwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAQfTzOHMymKoYTey8chWEGJ6ladK0uFxh1MJ7x/JlFyb+Kf1qPKzEUURout +736GjOyxfi//qXGdGIRFBEFVbivqJn+7kAHjSxm65FSWRQmx1WyRRK2EE46ajA2A +DDL24CejQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud +DgQWBBTB8Sa6oC2uhYHP0/EqEr24Cmf9vDAKBggqhkjOPQQDAwNpADBmAjEAgFuk +fCPAlaUs3L6JbyO5o91lAFJekazInXJ0glMLfalAvWhgxeG4VDvBNhcl2MG9AjEA +njWSdIUlUfUk7GRSJFClH9voy8l27OyCbvWFGFPouOOaKaqW04MjyaR7YbPMAuhd +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R4 O=Google Trust Services LLC +# Subject: CN=GTS Root R4 O=Google Trust Services LLC +# Label: "GTS Root R4" +# Serial: 146587176229350439916519468929765261721 +# MD5 Fingerprint: 5d:b6:6a:c4:60:17:24:6a:1a:99:a8:4b:ee:5e:b4:26 +# SHA1 Fingerprint: 2a:1d:60:27:d9:4a:b1:0a:1c:4d:91:5c:cd:33:a0:cb:3e:2d:54:cb +# SHA256 Fingerprint: 71:cc:a5:39:1f:9e:79:4b:04:80:25:30:b3:63:e1:21:da:8a:30:43:bb:26:66:2f:ea:4d:ca:7f:c9:51:a4:bd +-----BEGIN CERTIFICATE----- +MIICCjCCAZGgAwIBAgIQbkepyIuUtui7OyrYorLBmTAKBggqhkjOPQQDAzBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjQwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjQwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAATzdHOnaItgrkO4NcWBMHtLSZ37wWHO5t5GvWvVYRg1rkDdc/eJkTBa6zzu +hXyiQHY7qca4R9gq55KRanPpsXI5nymfopjTX15YhmUPoYRlBtHci8nHc8iMai/l +xKvRHYqjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud +DgQWBBSATNbrdP9JNqPV2Py1PsVq8JQdjDAKBggqhkjOPQQDAwNnADBkAjBqUFJ0 +CMRw3J5QdCHojXohw0+WbhXRIjVhLfoIN+4Zba3bssx9BzT1YBkstTTZbyACMANx +sbqjYAuG7ZoIapVon+Kz4ZNkfF6Tpt95LY2F45TPI11xzPKwTdb+mciUqXWi4w== +-----END CERTIFICATE----- + +# Issuer: CN=UCA Global G2 Root O=UniTrust +# Subject: CN=UCA Global G2 Root O=UniTrust +# Label: "UCA Global G2 Root" +# Serial: 124779693093741543919145257850076631279 +# MD5 Fingerprint: 80:fe:f0:c4:4a:f0:5c:62:32:9f:1c:ba:78:a9:50:f8 +# SHA1 Fingerprint: 28:f9:78:16:19:7a:ff:18:25:18:aa:44:fe:c1:a0:ce:5c:b6:4c:8a +# SHA256 Fingerprint: 9b:ea:11:c9:76:fe:01:47:64:c1:be:56:a6:f9:14:b5:a5:60:31:7a:bd:99:88:39:33:82:e5:16:1a:a0:49:3c +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIQXd+x2lqj7V2+WmUgZQOQ7zANBgkqhkiG9w0BAQsFADA9 +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxGzAZBgNVBAMMElVDQSBH +bG9iYWwgRzIgUm9vdDAeFw0xNjAzMTEwMDAwMDBaFw00MDEyMzEwMDAwMDBaMD0x +CzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEbMBkGA1UEAwwSVUNBIEds +b2JhbCBHMiBSb290MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxeYr +b3zvJgUno4Ek2m/LAfmZmqkywiKHYUGRO8vDaBsGxUypK8FnFyIdK+35KYmToni9 +kmugow2ifsqTs6bRjDXVdfkX9s9FxeV67HeToI8jrg4aA3++1NDtLnurRiNb/yzm +VHqUwCoV8MmNsHo7JOHXaOIxPAYzRrZUEaalLyJUKlgNAQLx+hVRZ2zA+te2G3/R +VogvGjqNO7uCEeBHANBSh6v7hn4PJGtAnTRnvI3HLYZveT6OqTwXS3+wmeOwcWDc +C/Vkw85DvG1xudLeJ1uK6NjGruFZfc8oLTW4lVYa8bJYS7cSN8h8s+1LgOGN+jIj +tm+3SJUIsUROhYw6AlQgL9+/V087OpAh18EmNVQg7Mc/R+zvWr9LesGtOxdQXGLY +D0tK3Cv6brxzks3sx1DoQZbXqX5t2Okdj4q1uViSukqSKwxW/YDrCPBeKW4bHAyv +j5OJrdu9o54hyokZ7N+1wxrrFv54NkzWbtA+FxyQF2smuvt6L78RHBgOLXMDj6Dl +NaBa4kx1HXHhOThTeEDMg5PXCp6dW4+K5OXgSORIskfNTip1KnvyIvbJvgmRlld6 +iIis7nCs+dwp4wwcOxJORNanTrAmyPPZGpeRaOrvjUYG0lZFWJo8DA+DuAUlwznP +O6Q0ibd5Ei9Hxeepl2n8pndntd978XplFeRhVmUCAwEAAaNCMEAwDgYDVR0PAQH/ +BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFIHEjMz15DD/pQwIX4wV +ZyF0Ad/fMA0GCSqGSIb3DQEBCwUAA4ICAQATZSL1jiutROTL/7lo5sOASD0Ee/oj +L3rtNtqyzm325p7lX1iPyzcyochltq44PTUbPrw7tgTQvPlJ9Zv3hcU2tsu8+Mg5 +1eRfB70VVJd0ysrtT7q6ZHafgbiERUlMjW+i67HM0cOU2kTC5uLqGOiiHycFutfl +1qnN3e92mI0ADs0b+gO3joBYDic/UvuUospeZcnWhNq5NXHzJsBPd+aBJ9J3O5oU +b3n09tDh05S60FdRvScFDcH9yBIw7m+NESsIndTUv4BFFJqIRNow6rSn4+7vW4LV +PtateJLbXDzz2K36uGt/xDYotgIVilQsnLAXc47QN6MUPJiVAAwpBVueSUmxX8fj +y88nZY41F7dXyDDZQVu5FLbowg+UMaeUmMxq67XhJ/UQqAHojhJi6IjMtX9Gl8Cb +EGY4GjZGXyJoPd/JxhMnq1MGrKI8hgZlb7F+sSlEmqO6SWkoaY/X5V+tBIZkbxqg +DMUIYs6Ao9Dz7GjevjPHF1t/gMRMTLGmhIrDO7gJzRSBuhjjVFc2/tsvfEehOjPI ++Vg7RE+xygKJBJYoaMVLuCaJu9YzL1DV/pqJuhgyklTGW+Cd+V7lDSKb9triyCGy +YiGqhkCyLmTTX8jjfhFnRR8F/uOi77Oos/N9j/gMHyIfLXC0uAE0djAA5SN4p1bX +UB+K+wb1whnw0A== +-----END CERTIFICATE----- + +# Issuer: CN=UCA Extended Validation Root O=UniTrust +# Subject: CN=UCA Extended Validation Root O=UniTrust +# Label: "UCA Extended Validation Root" +# Serial: 106100277556486529736699587978573607008 +# MD5 Fingerprint: a1:f3:5f:43:c6:34:9b:da:bf:8c:7e:05:53:ad:96:e2 +# SHA1 Fingerprint: a3:a1:b0:6f:24:61:23:4a:e3:36:a5:c2:37:fc:a6:ff:dd:f0:d7:3a +# SHA256 Fingerprint: d4:3a:f9:b3:54:73:75:5c:96:84:fc:06:d7:d8:cb:70:ee:5c:28:e7:73:fb:29:4e:b4:1e:e7:17:22:92:4d:24 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQT9Irj/VkyDOeTzRYZiNwYDANBgkqhkiG9w0BAQsFADBH +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBF +eHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwHhcNMTUwMzEzMDAwMDAwWhcNMzgxMjMx +MDAwMDAwWjBHMQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNV +BAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCpCQcoEwKwmeBkqh5DFnpzsZGgdT6o+uM4AHrsiWog +D4vFsJszA1qGxliG1cGFu0/GnEBNyr7uaZa4rYEwmnySBesFK5pI0Lh2PpbIILvS +sPGP2KxFRv+qZ2C0d35qHzwaUnoEPQc8hQ2E0B92CvdqFN9y4zR8V05WAT558aop +O2z6+I9tTcg1367r3CTueUWnhbYFiN6IXSV8l2RnCdm/WhUFhvMJHuxYMjMR83dk +sHYf5BA1FxvyDrFspCqjc/wJHx4yGVMR59mzLC52LqGj3n5qiAno8geK+LLNEOfi +c0CTuwjRP+H8C5SzJe98ptfRr5//lpr1kXuYC3fUfugH0mK1lTnj8/FtDw5lhIpj +VMWAtuCeS31HJqcBCF3RiJ7XwzJE+oJKCmhUfzhTA8ykADNkUVkLo4KRel7sFsLz +KuZi2irbWWIQJUoqgQtHB0MGcIfS+pMRKXpITeuUx3BNr2fVUbGAIAEBtHoIppB/ +TuDvB0GHr2qlXov7z1CymlSvw4m6WC31MJixNnI5fkkE/SmnTHnkBVfblLkWU41G +sx2VYVdWf6/wFlthWG82UBEL2KwrlRYaDh8IzTY0ZRBiZtWAXxQgXy0MoHgKaNYs +1+lvK9JKBZP8nm9rZ/+I8U6laUpSNwXqxhaN0sSZ0YIrO7o1dfdRUVjzyAfd5LQD +fwIDAQABo0IwQDAdBgNVHQ4EFgQU2XQ65DA9DfcS3H5aBZ8eNJr34RQwDwYDVR0T +AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBADaN +l8xCFWQpN5smLNb7rhVpLGsaGvdftvkHTFnq88nIua7Mui563MD1sC3AO6+fcAUR +ap8lTwEpcOPlDOHqWnzcSbvBHiqB9RZLcpHIojG5qtr8nR/zXUACE/xOHAbKsxSQ +VBcZEhrxH9cMaVr2cXj0lH2RC47skFSOvG+hTKv8dGT9cZr4QQehzZHkPJrgmzI5 +c6sq1WnIeJEmMX3ixzDx/BR4dxIOE/TdFpS/S2d7cFOFyrC78zhNLJA5wA3CXWvp +4uXViI3WLL+rG761KIcSF3Ru/H38j9CHJrAb+7lsq+KePRXBOy5nAliRn+/4Qh8s +t2j1da3Ptfb/EX3C8CSlrdP6oDyp+l3cpaDvRKS+1ujl5BOWF3sGPjLtx7dCvHaj +2GU4Kzg1USEODm8uNBNA4StnDG1KQTAYI1oyVZnJF+A83vbsea0rWBmirSwiGpWO +vpaQXUJXxPkUAzUrHC1RVwinOt4/5Mi0A3PCwSaAuwtCH60NryZy2sy+s6ODWA2C +xR9GUeOcGMyNm43sSet1UNWMKFnKdDTajAshqx7qG+XH/RU+wBeq+yNuJkbL+vmx +cmtpzyKEC2IPrNkZAJSidjzULZrtBJ4tBmIQN1IchXIbJ+XMxjHsN+xjWZsLHXbM +fjKaiJUINlK73nZfdklJrX+9ZSCyycErdhh2n1ax +-----END CERTIFICATE----- + +# Issuer: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Subject: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Label: "Certigna Root CA" +# Serial: 269714418870597844693661054334862075617 +# MD5 Fingerprint: 0e:5c:30:62:27:eb:5b:bc:d7:ae:62:ba:e9:d5:df:77 +# SHA1 Fingerprint: 2d:0d:52:14:ff:9e:ad:99:24:01:74:20:47:6e:6c:85:27:27:f5:43 +# SHA256 Fingerprint: d4:8d:3d:23:ee:db:50:a4:59:e5:51:97:60:1c:27:77:4b:9d:7b:18:c9:4d:5a:05:95:11:a1:02:50:b9:31:68 +-----BEGIN CERTIFICATE----- +MIIGWzCCBEOgAwIBAgIRAMrpG4nxVQMNo+ZBbcTjpuEwDQYJKoZIhvcNAQELBQAw +WjELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczEcMBoGA1UECwwTMDAw +MiA0ODE0NjMwODEwMDAzNjEZMBcGA1UEAwwQQ2VydGlnbmEgUm9vdCBDQTAeFw0x +MzEwMDEwODMyMjdaFw0zMzEwMDEwODMyMjdaMFoxCzAJBgNVBAYTAkZSMRIwEAYD +VQQKDAlEaGlteW90aXMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxGTAX +BgNVBAMMEENlcnRpZ25hIFJvb3QgQ0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +ggIKAoICAQDNGDllGlmx6mQWDoyUJJV8g9PFOSbcDO8WV43X2KyjQn+Cyu3NW9sO +ty3tRQgXstmzy9YXUnIo245Onoq2C/mehJpNdt4iKVzSs9IGPjA5qXSjklYcoW9M +CiBtnyN6tMbaLOQdLNyzKNAT8kxOAkmhVECe5uUFoC2EyP+YbNDrihqECB63aCPu +I9Vwzm1RaRDuoXrC0SIxwoKF0vJVdlB8JXrJhFwLrN1CTivngqIkicuQstDuI7pm +TLtipPlTWmR7fJj6o0ieD5Wupxj0auwuA0Wv8HT4Ks16XdG+RCYyKfHx9WzMfgIh +C59vpD++nVPiz32pLHxYGpfhPTc3GGYo0kDFUYqMwy3OU4gkWGQwFsWq4NYKpkDf +ePb1BHxpE4S80dGnBs8B92jAqFe7OmGtBIyT46388NtEbVncSVmurJqZNjBBe3Yz +IoejwpKGbvlw7q6Hh5UbxHq9MfPU0uWZ/75I7HX1eBYdpnDBfzwboZL7z8g81sWT +Co/1VTp2lc5ZmIoJlXcymoO6LAQ6l73UL77XbJuiyn1tJslV1c/DeVIICZkHJC1k +JWumIWmbat10TWuXekG9qxf5kBdIjzb5LdXF2+6qhUVB+s06RbFo5jZMm5BX7CO5 +hwjCxAnxl4YqKE3idMDaxIzb3+KhF1nOJFl0Mdp//TBt2dzhauH8XwIDAQABo4IB +GjCCARYwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FBiHVuBud+4kNTxOc5of1uHieX4rMB8GA1UdIwQYMBaAFBiHVuBud+4kNTxOc5of +1uHieX4rMEQGA1UdIAQ9MDswOQYEVR0gADAxMC8GCCsGAQUFBwIBFiNodHRwczov +L3d3d3cuY2VydGlnbmEuZnIvYXV0b3JpdGVzLzBtBgNVHR8EZjBkMC+gLaArhilo +dHRwOi8vY3JsLmNlcnRpZ25hLmZyL2NlcnRpZ25hcm9vdGNhLmNybDAxoC+gLYYr +aHR0cDovL2NybC5kaGlteW90aXMuY29tL2NlcnRpZ25hcm9vdGNhLmNybDANBgkq +hkiG9w0BAQsFAAOCAgEAlLieT/DjlQgi581oQfccVdV8AOItOoldaDgvUSILSo3L +6btdPrtcPbEo/uRTVRPPoZAbAh1fZkYJMyjhDSSXcNMQH+pkV5a7XdrnxIxPTGRG +HVyH41neQtGbqH6mid2PHMkwgu07nM3A6RngatgCdTer9zQoKJHyBApPNeNgJgH6 +0BGM+RFq7q89w1DTj18zeTyGqHNFkIwgtnJzFyO+B2XleJINugHA64wcZr+shncB +lA2c5uk5jR+mUYyZDDl34bSb+hxnV29qao6pK0xXeXpXIs/NX2NGjVxZOob4Mkdi +o2cNGJHc+6Zr9UhhcyNZjgKnvETq9Emd8VRY+WCv2hikLyhF3HqgiIZd8zvn/yk1 +gPxkQ5Tm4xxvvq0OKmOZK8l+hfZx6AYDlf7ej0gcWtSS6Cvu5zHbugRqh5jnxV/v +faci9wHYTfmJ0A6aBVmknpjZbyvKcL5kwlWj9Omvw5Ip3IgWJJk8jSaYtlu3zM63 +Nwf9JtmYhST/WSMDmu2dnajkXjjO11INb9I/bbEFa0nOipFGc/T2L/Coc3cOZayh +jWZSaX5LaAzHHjcng6WMxwLkFM1JAbBzs/3GkDpv0mztO+7skb6iQ12LAEpmJURw +3kAP+HwV96LOPNdeE4yBFxgX0b3xdxA61GU5wSesVywlVP+i2k+KYTlerj1KjL0= +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign Root CA - G1" +# Serial: 235931866688319308814040 +# MD5 Fingerprint: 9c:42:84:57:dd:cb:0b:a7:2e:95:ad:b6:f3:da:bc:ac +# SHA1 Fingerprint: 8a:c7:ad:8f:73:ac:4e:c1:b5:75:4d:a5:40:f4:fc:cf:7c:b5:8e:8c +# SHA256 Fingerprint: 40:f6:af:03:46:a9:9a:a1:cd:1d:55:5a:4e:9c:ce:62:c7:f9:63:46:03:ee:40:66:15:83:3d:c8:c8:d0:03:67 +-----BEGIN CERTIFICATE----- +MIIDlDCCAnygAwIBAgIKMfXkYgxsWO3W2DANBgkqhkiG9w0BAQsFADBnMQswCQYD +VQQGEwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBU +ZWNobm9sb2dpZXMgTGltaXRlZDEcMBoGA1UEAxMTZW1TaWduIFJvb3QgQ0EgLSBH +MTAeFw0xODAyMTgxODMwMDBaFw00MzAyMTgxODMwMDBaMGcxCzAJBgNVBAYTAklO +MRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xv +Z2llcyBMaW1pdGVkMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEcxMIIBIjAN +BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk0u76WaK7p1b1TST0Bsew+eeuGQz +f2N4aLTNLnF115sgxk0pvLZoYIr3IZpWNVrzdr3YzZr/k1ZLpVkGoZM0Kd0WNHVO +8oG0x5ZOrRkVUkr+PHB1cM2vK6sVmjM8qrOLqs1D/fXqcP/tzxE7lM5OMhbTI0Aq +d7OvPAEsbO2ZLIvZTmmYsvePQbAyeGHWDV/D+qJAkh1cF+ZwPjXnorfCYuKrpDhM +tTk1b+oDafo6VGiFbdbyL0NVHpENDtjVaqSW0RM8LHhQ6DqS0hdW5TUaQBw+jSzt +Od9C4INBdN+jzcKGYEho42kLVACL5HZpIQ15TjQIXhTCzLG3rdd8cIrHhQIDAQAB +o0IwQDAdBgNVHQ4EFgQU++8Nhp6w492pufEhF38+/PB3KxowDgYDVR0PAQH/BAQD +AgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAFn/8oz1h31x +PaOfG1vR2vjTnGs2vZupYeveFix0PZ7mddrXuqe8QhfnPZHr5X3dPpzxz5KsbEjM +wiI/aTvFthUvozXGaCocV685743QNcMYDHsAVhzNixl03r4PEuDQqqE/AjSxcM6d +GNYIAwlG7mDgfrbESQRRfXBgvKqy/3lyeqYdPV8q+Mri/Tm3R7nrft8EI6/6nAYH +6ftjk4BAtcZsCjEozgyfz7MjNYBBjWzEN3uBL4ChQEKF6dk4jeihU80Bv2noWgby +RQuQ+q7hv53yrlc8pa6yVvSLZUDp/TGBLPQ5Cdjua6e0ph0VpZj3AYHYhX3zUVxx +iN66zB+Afko= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign ECC Root CA - G3" +# Serial: 287880440101571086945156 +# MD5 Fingerprint: ce:0b:72:d1:9f:88:8e:d0:50:03:e8:e3:b8:8b:67:40 +# SHA1 Fingerprint: 30:43:fa:4f:f2:57:dc:a0:c3:80:ee:2e:58:ea:78:b2:3f:e6:bb:c1 +# SHA256 Fingerprint: 86:a1:ec:ba:08:9c:4a:8d:3b:be:27:34:c6:12:ba:34:1d:81:3e:04:3c:f9:e8:a8:62:cd:5c:57:a3:6b:be:6b +-----BEGIN CERTIFICATE----- +MIICTjCCAdOgAwIBAgIKPPYHqWhwDtqLhDAKBggqhkjOPQQDAzBrMQswCQYDVQQG +EwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNo +bm9sb2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0g +RzMwHhcNMTgwMjE4MTgzMDAwWhcNNDMwMjE4MTgzMDAwWjBrMQswCQYDVQQGEwJJ +TjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9s +b2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0gRzMw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAAQjpQy4LRL1KPOxst3iAhKAnjlfSU2fySU0 +WXTsuwYc58Byr+iuL+FBVIcUqEqy6HyC5ltqtdyzdc6LBtCGI79G1Y4PPwT01xyS +fvalY8L1X44uT6EYGQIrMgqCZH0Wk9GjQjBAMB0GA1UdDgQWBBR8XQKEE9TMipuB +zhccLikenEhjQjAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggq +hkjOPQQDAwNpADBmAjEAvvNhzwIQHWSVB7gYboiFBS+DCBeQyh+KTOgNG3qxrdWB +CUfvO6wIBHxcmbHtRwfSAjEAnbpV/KlK6O3t5nYBQnvI+GDZjVGLVTv7jHvrZQnD ++JbNR6iC8hZVdyR+EhCVBCyj +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Label: "emSign Root CA - C1" +# Serial: 825510296613316004955058 +# MD5 Fingerprint: d8:e3:5d:01:21:fa:78:5a:b0:df:ba:d2:ee:2a:5f:68 +# SHA1 Fingerprint: e7:2e:f1:df:fc:b2:09:28:cf:5d:d4:d5:67:37:b1:51:cb:86:4f:01 +# SHA256 Fingerprint: 12:56:09:aa:30:1d:a0:a2:49:b9:7a:82:39:cb:6a:34:21:6f:44:dc:ac:9f:39:54:b1:42:92:f2:e8:c8:60:8f +-----BEGIN CERTIFICATE----- +MIIDczCCAlugAwIBAgILAK7PALrEzzL4Q7IwDQYJKoZIhvcNAQELBQAwVjELMAkG +A1UEBhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEg +SW5jMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEMxMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowVjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQDExNlbVNpZ24gUm9v +dCBDQSAtIEMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz+upufGZ +BczYKCFK83M0UYRWEPWgTywS4/oTmifQz/l5GnRfHXk5/Fv4cI7gklL35CX5VIPZ +HdPIWoU/Xse2B+4+wM6ar6xWQio5JXDWv7V7Nq2s9nPczdcdioOl+yuQFTdrHCZH +3DspVpNqs8FqOp099cGXOFgFixwR4+S0uF2FHYP+eF8LRWgYSKVGczQ7/g/IdrvH +GPMF0Ybzhe3nudkyrVWIzqa2kbBPrH4VI5b2P/AgNBbeCsbEBEV5f6f9vtKppa+c +xSMq9zwhbL2vj07FOrLzNBL834AaSaTUqZX3noleoomslMuoaJuvimUnzYnu3Yy1 +aylwQ6BpC+S5DwIDAQABo0IwQDAdBgNVHQ4EFgQU/qHgcB4qAzlSWkK+XJGFehiq +TbUwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBAMJKVvoVIXsoounlHfv4LcQ5lkFMOycsxGwYFYDGrK9HWS8mC+M2sO87 +/kOXSTKZEhVb3xEp/6tT+LvBeA+snFOvV71ojD1pM/CjoCNjO2RnIkSt1XHLVip4 +kqNPEjE2NuLe/gDEo2APJ62gsIq1NnpSob0n9CAnYuhNlCQT5AoE6TyrLshDCUrG +YQTlSTR+08TI9Q/Aqum6VF7zYytPT1DU/rl7mYw9wC68AivTxEDkigcxHpvOJpkT ++xHqmiIMERnHXhuBUDDIlhJu58tBf5E7oke3VIAb3ADMmpDqw8NQBmIMMMAVSKeo +WXzhriKi4gp6D/piq1JM4fHfyr6DDUI= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Label: "emSign ECC Root CA - C3" +# Serial: 582948710642506000014504 +# MD5 Fingerprint: 3e:53:b3:a3:81:ee:d7:10:f8:d3:b0:1d:17:92:f5:d5 +# SHA1 Fingerprint: b6:af:43:c2:9b:81:53:7d:f6:ef:6b:c3:1f:1f:60:15:0c:ee:48:66 +# SHA256 Fingerprint: bc:4d:80:9b:15:18:9d:78:db:3e:1d:8c:f4:f9:72:6a:79:5d:a1:64:3c:a5:f1:35:8e:1d:db:0e:dc:0d:7e:b3 +-----BEGIN CERTIFICATE----- +MIICKzCCAbGgAwIBAgIKe3G2gla4EnycqDAKBggqhkjOPQQDAzBaMQswCQYDVQQG +EwJVUzETMBEGA1UECxMKZW1TaWduIFBLSTEUMBIGA1UEChMLZU11ZGhyYSBJbmMx +IDAeBgNVBAMTF2VtU2lnbiBFQ0MgUm9vdCBDQSAtIEMzMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowWjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMSAwHgYDVQQDExdlbVNpZ24gRUND +IFJvb3QgQ0EgLSBDMzB2MBAGByqGSM49AgEGBSuBBAAiA2IABP2lYa57JhAd6bci +MK4G9IGzsUJxlTm801Ljr6/58pc1kjZGDoeVjbk5Wum739D+yAdBPLtVb4Ojavti +sIGJAnB9SMVK4+kiVCJNk7tCDK93nCOmfddhEc5lx/h//vXyqaNCMEAwHQYDVR0O +BBYEFPtaSNCAIEDyqOkAB2kZd6fmw/TPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMB +Af8EBTADAQH/MAoGCCqGSM49BAMDA2gAMGUCMQC02C8Cif22TGK6Q04ThHK1rt0c +3ta13FaPWEBaLd4gTCKDypOofu4SQMfWh0/434UCMBwUZOR8loMRnLDRWmFLpg9J +0wD8ofzkpf9/rdcw0Md3f76BB1UwUCAU9Vc4CqgxUQ== +-----END CERTIFICATE----- + +# Issuer: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Subject: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Label: "Hongkong Post Root CA 3" +# Serial: 46170865288971385588281144162979347873371282084 +# MD5 Fingerprint: 11:fc:9f:bd:73:30:02:8a:fd:3f:f3:58:b9:cb:20:f0 +# SHA1 Fingerprint: 58:a2:d0:ec:20:52:81:5b:c1:f3:f8:64:02:24:4e:c2:8e:02:4b:02 +# SHA256 Fingerprint: 5a:2f:c0:3f:0c:83:b0:90:bb:fa:40:60:4b:09:88:44:6c:76:36:18:3d:f9:84:6e:17:10:1a:44:7f:b8:ef:d6 +-----BEGIN CERTIFICATE----- +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 +mpv0 +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G4" +# Serial: 289383649854506086828220374796556676440 +# MD5 Fingerprint: 89:53:f1:83:23:b7:7c:8e:05:f1:8c:71:38:4e:1f:88 +# SHA1 Fingerprint: 14:88:4e:86:26:37:b0:26:af:59:62:5c:40:77:ec:35:29:ba:96:01 +# SHA256 Fingerprint: db:35:17:d1:f6:73:2a:2d:5a:b9:7c:53:3e:c7:07:79:ee:32:70:a6:2f:b4:ac:42:38:37:24:60:e6:f0:1e:88 +-----BEGIN CERTIFICATE----- +MIIGSzCCBDOgAwIBAgIRANm1Q3+vqTkPAAAAAFVlrVgwDQYJKoZIhvcNAQELBQAw +gb4xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQL +Ex9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykg +MjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAw +BgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0 +MB4XDTE1MDUyNzExMTExNloXDTM3MTIyNzExNDExNlowgb4xCzAJBgNVBAYTAlVT +MRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1 +c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJ +bmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3Qg +Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0MIICIjANBgkqhkiG9w0B +AQEFAAOCAg8AMIICCgKCAgEAsewsQu7i0TD/pZJH4i3DumSXbcr3DbVZwbPLqGgZ +2K+EbTBwXX7zLtJTmeH+H17ZSK9dE43b/2MzTdMAArzE+NEGCJR5WIoV3imz/f3E +T+iq4qA7ec2/a0My3dl0ELn39GjUu9CH1apLiipvKgS1sqbHoHrmSKvS0VnM1n4j +5pds8ELl3FFLFUHtSUrJ3hCX1nbB76W1NhSXNdh4IjVS70O92yfbYVaCNNzLiGAM +C1rlLAHGVK/XqsEQe9IFWrhAnoanw5CGAlZSCXqc0ieCU0plUmr1POeo8pyvi73T +DtTUXm6Hnmo9RR3RXRv06QqsYJn7ibT/mCzPfB3pAqoEmh643IhuJbNsZvc8kPNX +wbMv9W3y+8qh+CmdRouzavbmZwe+LGcKKh9asj5XxNMhIWNlUpEbsZmOeX7m640A +2Vqq6nPopIICR5b+W45UYaPrL0swsIsjdXJ8ITzI9vF01Bx7owVV7rtNOzK+mndm +nqxpkCIHH2E6lr7lmk/MBTwoWdPBDFSoWWG9yHJM6Nyfh3+9nEg2XpWjDrk4JFX8 +dWbrAuMINClKxuMrLzOg2qOGpRKX/YAr2hRC45K9PvJdXmd0LhyIRyk0X+IyqJwl +N4y6mACXi0mWHv0liqzc2thddG5msP9E36EYxr5ILzeUePiVSj9/E15dWf10hkNj +c0kCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFJ84xFYjwznooHFs6FRM5Og6sb9nMA0GCSqGSIb3DQEBCwUAA4ICAQAS +5UKme4sPDORGpbZgQIeMJX6tuGguW8ZAdjwD+MlZ9POrYs4QjbRaZIxowLByQzTS +Gwv2LFPSypBLhmb8qoMi9IsabyZIrHZ3CL/FmFz0Jomee8O5ZDIBf9PD3Vht7LGr +hFV0d4QEJ1JrhkzO3bll/9bGXp+aEJlLdWr+aumXIOTkdnrG0CSqkM0gkLpHZPt/ +B7NTeLUKYvJzQ85BK4FqLoUWlFPUa19yIqtRLULVAJyZv967lDtX/Zr1hstWO1uI +AeV8KEsD+UmDfLJ/fOPtjqF/YFOOVZ1QNBIPt5d7bIdKROf1beyAN/BYGW5KaHbw +H5Lk6rWS02FREAutp9lfx1/cH6NcjKF+m7ee01ZvZl4HliDtC3T7Zk6LERXpgUl+ +b7DUUH8i119lAg2m9IUe2K4GS0qn0jFmwvjO5QimpAKWRGhXxNUzzxkvFMSUHHuk +2fCfDrGA4tGeEWSpiBE6doLlYsKA2KSD7ZPvfC+QsDJMlhVoSFLUmQjAJOgc47Ol +IQ6SwJAfzyBfyjs4x7dtOvPmRLgOMWuIjnDrnBdSqEGULoe256YSxXXfW8AKbnuk +5F6G+TaU33fD6Q3AOfF5u0aOq0NZJ7cguyPpVkAh7DE9ZapD8j3fcEThuk0mEDuY +n/PIjhs4ViFqUZPTkcpG2om3PVODLAgfi49T3f+sHw== +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft ECC Root Certificate Authority 2017" +# Serial: 136839042543790627607696632466672567020 +# MD5 Fingerprint: dd:a1:03:e6:4a:93:10:d1:bf:f0:19:42:cb:fe:ed:67 +# SHA1 Fingerprint: 99:9a:64:c3:7f:f4:7d:9f:ab:95:f1:47:69:89:14:60:ee:c4:c3:c5 +# SHA256 Fingerprint: 35:8d:f3:9d:76:4a:f9:e1:b7:66:e9:c9:72:df:35:2e:e1:5c:fa:c2:27:af:6a:d1:d7:0e:8e:4a:6e:dc:ba:02 +-----BEGIN CERTIFICATE----- +MIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYD +VQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIw +MTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4MjMxNjA0WjBlMQswCQYDVQQGEwJV +UzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNy +b3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZR +ogPZnZH6thaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYb +hGBKia/teQ87zvH2RPUBeMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBTIy5lycFIM+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3 +FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlfXu5gKcs68tvWMoQZP3zV +L8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaReNtUjGUB +iudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M= +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft RSA Root Certificate Authority 2017" +# Serial: 40975477897264996090493496164228220339 +# MD5 Fingerprint: 10:ff:00:ff:cf:c9:f8:c7:7a:c0:ee:35:8e:c9:0f:47 +# SHA1 Fingerprint: 73:a5:e6:4a:3b:ff:83:16:ff:0e:dc:cc:61:8a:90:6e:4e:ae:4d:74 +# SHA256 Fingerprint: c7:41:f7:0f:4b:2a:8d:88:bf:2e:71:c1:41:22:ef:53:ef:10:eb:a0:cf:a5:e6:4c:fa:20:f4:18:85:30:73:e0 +-----BEGIN CERTIFICATE----- +MIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBl +MQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw +NAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5 +IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIwNzE4MjMwMDIzWjBlMQswCQYDVQQG +EwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1N +aWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZ +Nt9GkMml7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0 +ZdDMbRnMlfl7rEqUrQ7eS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1 +HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw71VdyvD/IybLeS2v4I2wDwAW9lcfNcztm +gGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+dkC0zVJhUXAoP8XFWvLJ +jEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49FyGcohJUc +aDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaG +YaRSMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6 +W6IYZVcSn2i51BVrlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4K +UGsTuqwPN1q3ErWQgR5WrlcihtnJ0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH ++FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJClTUFLkqqNfs+avNJVgyeY+Q +W5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZC +LgLNFgVZJ8og6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OC +gMNPOsduET/m4xaRhPtthH80dK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6 +tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk+ONVFT24bcMKpBLBaYVu32TxU5nh +SnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex/2kskZGT4d9Mozd2 +TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDyAmH3 +pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGR +xpl/j8nWZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiApp +GWSZI1b7rCoucL5mxAyE7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9 +dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKTc0QWbej09+CVgI+WXTik9KveCjCHk9hN +AHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D5KbvtwEwXlGjefVwaaZB +RA+GsCyRxj3qrg+E +-----END CERTIFICATE----- + +# Issuer: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Subject: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Label: "e-Szigno Root CA 2017" +# Serial: 411379200276854331539784714 +# MD5 Fingerprint: de:1f:f6:9e:84:ae:a7:b4:21:ce:1e:58:7d:d1:84:98 +# SHA1 Fingerprint: 89:d4:83:03:4f:9e:9a:48:80:5f:72:37:d4:a9:a6:ef:cb:7c:1f:d1 +# SHA256 Fingerprint: be:b0:0b:30:83:9b:9b:c3:2c:32:e4:44:79:05:95:06:41:f2:64:21:b1:5e:d0:89:19:8b:51:8a:e2:ea:1b:99 +-----BEGIN CERTIFICATE----- +MIICQDCCAeWgAwIBAgIMAVRI7yH9l1kN9QQKMAoGCCqGSM49BAMCMHExCzAJBgNV +BAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRk +LjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25vIFJv +b3QgQ0EgMjAxNzAeFw0xNzA4MjIxMjA3MDZaFw00MjA4MjIxMjA3MDZaMHExCzAJ +BgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMg +THRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25v +IFJvb3QgQ0EgMjAxNzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJbcPYrYsHtv +xie+RJCxs1YVe45DJH0ahFnuY2iyxl6H0BVIHqiQrb1TotreOpCmYF9oMrWGQd+H +Wyx7xf58etqjYzBhMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBSHERUI0arBeAyxr87GyZDvvzAEwDAfBgNVHSMEGDAWgBSHERUI0arB +eAyxr87GyZDvvzAEwDAKBggqhkjOPQQDAgNJADBGAiEAtVfd14pVCzbhhkT61Nlo +jbjcI4qKDdQvfepz7L9NbKgCIQDLpbQS+ue16M9+k/zzNY9vTlp8tLxOsvxyqltZ ++efcMQ== +-----END CERTIFICATE----- + +# Issuer: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Subject: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Label: "certSIGN Root CA G2" +# Serial: 313609486401300475190 +# MD5 Fingerprint: 8c:f1:75:8a:c6:19:cf:94:b7:f7:65:20:87:c3:97:c7 +# SHA1 Fingerprint: 26:f9:93:b4:ed:3d:28:27:b0:b9:4b:a7:e9:15:1d:a3:8d:92:e5:32 +# SHA256 Fingerprint: 65:7c:fe:2f:a7:3f:aa:38:46:25:71:f3:32:a2:36:3a:46:fc:e7:02:09:51:71:07:02:cd:fb:b6:ee:da:33:05 +-----BEGIN CERTIFICATE----- +MIIFRzCCAy+gAwIBAgIJEQA0tk7GNi02MA0GCSqGSIb3DQEBCwUAMEExCzAJBgNV +BAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJR04g +Uk9PVCBDQSBHMjAeFw0xNzAyMDYwOTI3MzVaFw00MjAyMDYwOTI3MzVaMEExCzAJ +BgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJ +R04gUk9PVCBDQSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDF +dRmRfUR0dIf+DjuW3NgBFszuY5HnC2/OOwppGnzC46+CjobXXo9X69MhWf05N0Iw +vlDqtg+piNguLWkh59E3GE59kdUWX2tbAMI5Qw02hVK5U2UPHULlj88F0+7cDBrZ +uIt4ImfkabBoxTzkbFpG583H+u/E7Eu9aqSs/cwoUe+StCmrqzWaTOTECMYmzPhp +n+Sc8CnTXPnGFiWeI8MgwT0PPzhAsP6CRDiqWhqKa2NYOLQV07YRaXseVO6MGiKs +cpc/I1mbySKEwQdPzH/iV8oScLumZfNpdWO9lfsbl83kqK/20U6o2YpxJM02PbyW +xPFsqa7lzw1uKA2wDrXKUXt4FMMgL3/7FFXhEZn91QqhngLjYl/rNUssuHLoPj1P +rCy7Lobio3aP5ZMqz6WryFyNSwb/EkaseMsUBzXgqd+L6a8VTxaJW732jcZZroiF +DsGJ6x9nxUWO/203Nit4ZoORUSs9/1F3dmKh7Gc+PoGD4FapUB8fepmrY7+EF3fx +DTvf95xhszWYijqy7DwaNz9+j5LP2RIUZNoQAhVB/0/E6xyjyfqZ90bp4RjZsbgy +LcsUDFDYg2WD7rlcz8sFWkz6GZdr1l0T08JcVLwyc6B49fFtHsufpaafItzRUZ6C +eWRgKRM+o/1Pcmqr4tTluCRVLERLiohEnMqE0yo7AgMBAAGjQjBAMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSCIS1mxteg4BXrzkwJ +d8RgnlRuAzANBgkqhkiG9w0BAQsFAAOCAgEAYN4auOfyYILVAzOBywaK8SJJ6ejq +kX/GM15oGQOGO0MBzwdw5AgeZYWR5hEit/UCI46uuR59H35s5r0l1ZUa8gWmr4UC +b6741jH/JclKyMeKqdmfS0mbEVeZkkMR3rYzpMzXjWR91M08KCy0mpbqTfXERMQl +qiCA2ClV9+BB/AYm/7k29UMUA2Z44RGx2iBfRgB4ACGlHgAoYXhvqAEBj500mv/0 +OJD7uNGzcgbJceaBxXntC6Z58hMLnPddDnskk7RI24Zf3lCGeOdA5jGokHZwYa+c +NywRtYK3qq4kNFtyDGkNzVmf9nGvnAvRCjj5BiKDUyUM/FHE5r7iOZULJK2v0ZXk +ltd0ZGtxTgI8qoXzIKNDOXZbbFD+mpwUHmUUihW9o4JFWklWatKcsWMy5WHgUyIO +pwpJ6st+H6jiYoD2EEVSmAYY3qXNL3+q1Ok+CHLsIwMCPKaq2LxndD0UF/tUSxfj +03k9bWtJySgOLnRQvwzZRjoQhsmnP+mg7H/rpXdYaXHmgwo38oZJar55CJD2AhZk +PuXaTH4MNMn5X7azKFGnpyuqSfqNZSlO42sTp5SjLVFteAxEy9/eCG/Oo2Sr05WE +1LlSVHJ7liXMvGnjSG4N0MedJ5qq+BOS3R7fY581qRY27Iy4g/Q9iY/NtBde17MX +QRBdJ3NghVdJIgc= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global Certification Authority" +# Serial: 1846098327275375458322922162 +# MD5 Fingerprint: f8:1c:18:2d:2f:ba:5f:6d:a1:6c:bc:c7:ab:91:c7:0e +# SHA1 Fingerprint: 2f:8f:36:4f:e1:58:97:44:21:59:87:a5:2a:9a:d0:69:95:26:7f:b5 +# SHA256 Fingerprint: 97:55:20:15:f5:dd:fc:3c:87:88:c0:06:94:45:55:40:88:94:45:00:84:f1:00:86:70:86:bc:1a:2b:b5:8d:c8 +-----BEGIN CERTIFICATE----- +MIIF2jCCA8KgAwIBAgIMBfcOhtpJ80Y1LrqyMA0GCSqGSIb3DQEBCwUAMIGIMQsw +CQYDVQQGEwJVUzERMA8GA1UECAwISWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28x +ITAfBgNVBAoMGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1 +c3R3YXZlIEdsb2JhbCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0xNzA4MjMx +OTM0MTJaFw00MjA4MjMxOTM0MTJaMIGIMQswCQYDVQQGEwJVUzERMA8GA1UECAwI +SWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28xITAfBgNVBAoMGFRydXN0d2F2ZSBI +b2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1c3R3YXZlIEdsb2JhbCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIB +ALldUShLPDeS0YLOvR29zd24q88KPuFd5dyqCblXAj7mY2Hf8g+CY66j96xz0Xzn +swuvCAAJWX/NKSqIk4cXGIDtiLK0thAfLdZfVaITXdHG6wZWiYj+rDKd/VzDBcdu +7oaJuogDnXIhhpCujwOl3J+IKMujkkkP7NAP4m1ET4BqstTnoApTAbqOl5F2brz8 +1Ws25kCI1nsvXwXoLG0R8+eyvpJETNKXpP7ScoFDB5zpET71ixpZfR9oWN0EACyW +80OzfpgZdNmcc9kYvkHHNHnZ9GLCQ7mzJ7Aiy/k9UscwR7PJPrhq4ufogXBeQotP +JqX+OsIgbrv4Fo7NDKm0G2x2EOFYeUY+VM6AqFcJNykbmROPDMjWLBz7BegIlT1l +RtzuzWniTY+HKE40Cz7PFNm73bZQmq131BnW2hqIyE4bJ3XYsgjxroMwuREOzYfw +hI0Vcnyh78zyiGG69Gm7DIwLdVcEuE4qFC49DxweMqZiNu5m4iK4BUBjECLzMx10 +coos9TkpoNPnG4CELcU9402x/RpvumUHO1jsQkUm+9jaJXLE9gCxInm943xZYkqc +BW89zubWR2OZxiRvchLIrH+QtAuRcOi35hYQcRfO3gZPSEF9NUqjifLJS3tBEW1n +twiYTOURGa5CgNz7kAXU+FDKvuStx8KU1xad5hePrzb7AgMBAAGjQjBAMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFJngGWcNYtt2s9o9uFvo/ULSMQ6HMA4GA1Ud +DwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAmHNw4rDT7TnsTGDZqRKGFx6W +0OhUKDtkLSGm+J1WE2pIPU/HPinbbViDVD2HfSMF1OQc3Og4ZYbFdada2zUFvXfe +uyk3QAUHw5RSn8pk3fEbK9xGChACMf1KaA0HZJDmHvUqoai7PF35owgLEQzxPy0Q +lG/+4jSHg9bP5Rs1bdID4bANqKCqRieCNqcVtgimQlRXtpla4gt5kNdXElE1GYhB +aCXUNxeEFfsBctyV3lImIJgm4nb1J2/6ADtKYdkNy1GTKv0WBpanI5ojSP5RvbbE +sLFUzt5sQa0WZ37b/TjNuThOssFgy50X31ieemKyJo90lZvkWx3SD92YHJtZuSPT +MaCm/zjdzyBP6VhWOmfD0faZmZ26NraAL4hHT4a/RDqA5Dccprrql5gR0IRiR2Qe +qu5AvzSxnI9O4fKSTx+O856X3vOmeWqJcU9LJxdI/uz0UA9PSX3MReO9ekDFQdxh +VicGaeVyQYHTtgGJoC86cnn+OjC/QezHYj6RS8fZMXZC+fc8Y+wmjHMMfRod6qh8 +h6jCJ3zhM0EPz8/8AKAigJ5Kp28AsEFFtyLKaEjFQqKu3R3y4G5OBVixwJAWKqQ9 +EEC+j2Jjg6mcgn0tAumDMHzLJ8n9HmYAsC7TIS+OMxZsmO0QqAfWzJPP29FpHOTK +yeC2nOnOcXHebD8WpHk= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P256 Certification Authority" +# Serial: 4151900041497450638097112925 +# MD5 Fingerprint: 5b:44:e3:8d:5d:36:86:26:e8:0d:05:d2:59:a7:83:54 +# SHA1 Fingerprint: b4:90:82:dd:45:0c:be:8b:5b:b1:66:d3:e2:a4:08:26:cd:ed:42:cf +# SHA256 Fingerprint: 94:5b:bc:82:5e:a5:54:f4:89:d1:fd:51:a7:3d:df:2e:a6:24:ac:70:19:a0:52:05:22:5c:22:a7:8c:cf:a8:b4 +-----BEGIN CERTIFICATE----- +MIICYDCCAgegAwIBAgIMDWpfCD8oXD5Rld9dMAoGCCqGSM49BAMCMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM1MTBaFw00MjA4MjMxOTM1MTBaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABH77bOYj43MyCMpg5lOcunSNGLB4kFKA3TjASh3RqMyTpJcGOMoN +FWLGjgEqZZ2q3zSRLoHB5DOSMcT9CTqmP62jQzBBMA8GA1UdEwEB/wQFMAMBAf8w +DwYDVR0PAQH/BAUDAwcGADAdBgNVHQ4EFgQUo0EGrJBt0UrrdaVKEJmzsaGLSvcw +CgYIKoZIzj0EAwIDRwAwRAIgB+ZU2g6gWrKuEZ+Hxbb/ad4lvvigtwjzRM4q3wgh +DDcCIC0mA6AFvWvR9lz4ZcyGbbOcNEhjhAnFjXca4syc4XR7 +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P384 Certification Authority" +# Serial: 2704997926503831671788816187 +# MD5 Fingerprint: ea:cf:60:c4:3b:b9:15:29:40:a1:97:ed:78:27:93:d6 +# SHA1 Fingerprint: e7:f3:a3:c8:cf:6f:c3:04:2e:6d:0e:67:32:c5:9e:68:95:0d:5e:d2 +# SHA256 Fingerprint: 55:90:38:59:c8:c0:c3:eb:b8:75:9e:ce:4e:25:57:22:5f:f5:75:8b:bd:38:eb:d4:82:76:60:1e:1b:d5:80:97 +-----BEGIN CERTIFICATE----- +MIICnTCCAiSgAwIBAgIMCL2Fl2yZJ6SAaEc7MAoGCCqGSM49BAMDMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM2NDNaFw00MjA4MjMxOTM2NDNaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTB2MBAGByqGSM49AgEGBSuB +BAAiA2IABGvaDXU1CDFHBa5FmVXxERMuSvgQMSOjfoPTfygIOiYaOs+Xgh+AtycJ +j9GOMMQKmw6sWASr9zZ9lCOkmwqKi6vr/TklZvFe/oyujUF5nQlgziip04pt89ZF +1PKYhDhloKNDMEEwDwYDVR0TAQH/BAUwAwEB/zAPBgNVHQ8BAf8EBQMDBwYAMB0G +A1UdDgQWBBRVqYSJ0sEyvRjLbKYHTsjnnb6CkDAKBggqhkjOPQQDAwNnADBkAjA3 +AZKXRRJ+oPM+rRk6ct30UJMDEr5E0k9BpIycnR+j9sKS50gU/k6bpZFXrsY3crsC +MGclCrEMXu6pY5Jv5ZAL/mYiykf9ijH3g/56vxC+GCsej/YpHpRZ744hN8tRmKVu +Sw== +-----END CERTIFICATE----- + +# Issuer: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Subject: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Label: "NAVER Global Root Certification Authority" +# Serial: 9013692873798656336226253319739695165984492813 +# MD5 Fingerprint: c8:7e:41:f6:25:3b:f5:09:b3:17:e8:46:3d:bf:d0:9b +# SHA1 Fingerprint: 8f:6b:f2:a9:27:4a:da:14:a0:c4:f4:8e:61:27:f9:c0:1e:78:5d:d1 +# SHA256 Fingerprint: 88:f4:38:dc:f8:ff:d1:fa:8f:42:91:15:ff:e5:f8:2a:e1:e0:6e:0c:70:c3:75:fa:ad:71:7b:34:a4:9e:72:65 +-----BEGIN CERTIFICATE----- +MIIFojCCA4qgAwIBAgIUAZQwHqIL3fXFMyqxQ0Rx+NZQTQ0wDQYJKoZIhvcNAQEM +BQAwaTELMAkGA1UEBhMCS1IxJjAkBgNVBAoMHU5BVkVSIEJVU0lORVNTIFBMQVRG +T1JNIENvcnAuMTIwMAYDVQQDDClOQVZFUiBHbG9iYWwgUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eTAeFw0xNzA4MTgwODU4NDJaFw0zNzA4MTgyMzU5NTlaMGkx +CzAJBgNVBAYTAktSMSYwJAYDVQQKDB1OQVZFUiBCVVNJTkVTUyBQTEFURk9STSBD +b3JwLjEyMDAGA1UEAwwpTkFWRVIgR2xvYmFsIFJvb3QgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC21PGTXLVA +iQqrDZBbUGOukJR0F0Vy1ntlWilLp1agS7gvQnXp2XskWjFlqxcX0TM62RHcQDaH +38dq6SZeWYp34+hInDEW+j6RscrJo+KfziFTowI2MMtSAuXaMl3Dxeb57hHHi8lE +HoSTGEq0n+USZGnQJoViAbbJAh2+g1G7XNr4rRVqmfeSVPc0W+m/6imBEtRTkZaz +kVrd/pBzKPswRrXKCAfHcXLJZtM0l/aM9BhK4dA9WkW2aacp+yPOiNgSnABIqKYP +szuSjXEOdMWLyEz59JuOuDxp7W87UC9Y7cSw0BwbagzivESq2M0UXZR4Yb8Obtoq +vC8MC3GmsxY/nOb5zJ9TNeIDoKAYv7vxvvTWjIcNQvcGufFt7QSUqP620wbGQGHf +nZ3zVHbOUzoBppJB7ASjjw2i1QnK1sua8e9DXcCrpUHPXFNwcMmIpi3Ua2FzUCaG +YQ5fG8Ir4ozVu53BA0K6lNpfqbDKzE0K70dpAy8i+/Eozr9dUGWokG2zdLAIx6yo +0es+nPxdGoMuK8u180SdOqcXYZaicdNwlhVNt0xz7hlcxVs+Qf6sdWA7G2POAN3a +CJBitOUt7kinaxeZVL6HSuOpXgRM6xBtVNbv8ejyYhbLgGvtPe31HzClrkvJE+2K +AQHJuFFYwGY6sWZLxNUxAmLpdIQM201GLQIDAQABo0IwQDAdBgNVHQ4EFgQU0p+I +36HNLL3s9TsBAZMzJ7LrYEswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMB +Af8wDQYJKoZIhvcNAQEMBQADggIBADLKgLOdPVQG3dLSLvCkASELZ0jKbY7gyKoN +qo0hV4/GPnrK21HUUrPUloSlWGB/5QuOH/XcChWB5Tu2tyIvCZwTFrFsDDUIbatj +cu3cvuzHV+YwIHHW1xDBE1UBjCpD5EHxzzp6U5LOogMFDTjfArsQLtk70pt6wKGm ++LUx5vR1yblTmXVHIloUFcd4G7ad6Qz4G3bxhYTeodoS76TiEJd6eN4MUZeoIUCL +hr0N8F5OSza7OyAfikJW4Qsav3vQIkMsRIz75Sq0bBwcupTgE34h5prCy8VCZLQe +lHsIJchxzIdFV4XTnyliIoNRlwAYl3dqmJLJfGBs32x9SuRwTMKeuB330DTHD8z7 +p/8Dvq1wkNoL3chtl1+afwkyQf3NosxabUzyqkn+Zvjp2DXrDige7kgvOtB5CTh8 +piKCk5XQA76+AqAF3SAi428diDRgxuYKuQl1C/AH6GmWNcf7I4GOODm4RStDeKLR +LBT/DShycpWbXgnbiUSYqqFJu3FS8r/2/yehNq+4tneI3TqkbZs0kNwUXTC/t+sX +5Ie3cdCh13cV1ELX8vMxmV2b3RZtP+oGI/hGoiLtk/bdmuYqh7GYVPEi92tF4+KO +dh2ajcQGjTa3FPOdVGm3jjzVpG2Tgbet9r1ke8LJaDmgkpzNNIaRkPpkUZ3+/uul +9XXeifdy +-----END CERTIFICATE----- diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/certifi/core.py b/venv/lib/python3.8/site-packages/pip/_vendor/certifi/core.py new file mode 100644 index 00000000..b8140cf1 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/certifi/core.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- + +""" +certifi.py +~~~~~~~~~~ + +This module returns the installation location of cacert.pem or its contents. +""" +import os + + +class _PipPatchedCertificate(Exception): + pass + + +try: + # Return a certificate file on disk for a standalone pip zipapp running in + # an isolated build environment to use. Passing --cert to the standalone + # pip does not work since requests calls where() unconditionally on import. + _PIP_STANDALONE_CERT = os.environ.get("_PIP_STANDALONE_CERT") + if _PIP_STANDALONE_CERT: + def where(): + return _PIP_STANDALONE_CERT + raise _PipPatchedCertificate() + + from importlib.resources import path as get_path, read_text + + _CACERT_CTX = None + _CACERT_PATH = None + + def where(): + # This is slightly terrible, but we want to delay extracting the file + # in cases where we're inside of a zipimport situation until someone + # actually calls where(), but we don't want to re-extract the file + # on every call of where(), so we'll do it once then store it in a + # global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you to + # manage the cleanup of this file, so it doesn't actually return a + # path, it returns a context manager that will give you the path + # when you enter it and will do any cleanup when you leave it. In + # the common case of not needing a temporary file, it will just + # return the file system location and the __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = get_path("pip._vendor.certifi", "cacert.pem") + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + + return _CACERT_PATH + +except _PipPatchedCertificate: + pass + +except ImportError: + # This fallback will work for Python versions prior to 3.7 that lack the + # importlib.resources module but relies on the existing `where` function + # so won't address issues with environments like PyOxidizer that don't set + # __file__ on modules. + def read_text(_module, _path, encoding="ascii"): + with open(where(), "r", encoding=encoding) as data: + return data.read() + + # If we don't have importlib.resources, then we will just do the old logic + # of assuming we're on the filesystem and munge the path directly. + def where(): + f = os.path.dirname(__file__) + + return os.path.join(f, "cacert.pem") + + +def contents(): + return read_text("certifi", "cacert.pem", encoding="ascii") diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__init__.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__init__.py new file mode 100644 index 00000000..80ad2546 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__init__.py @@ -0,0 +1,83 @@ +######################## BEGIN LICENSE BLOCK ######################## +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + + +from .universaldetector import UniversalDetector +from .enums import InputState +from .version import __version__, VERSION + + +__all__ = ['UniversalDetector', 'detect', 'detect_all', '__version__', 'VERSION'] + + +def detect(byte_str): + """ + Detect the encoding of the given byte string. + + :param byte_str: The byte sequence to examine. + :type byte_str: ``bytes`` or ``bytearray`` + """ + if not isinstance(byte_str, bytearray): + if not isinstance(byte_str, bytes): + raise TypeError('Expected object of type bytes or bytearray, got: ' + '{}'.format(type(byte_str))) + else: + byte_str = bytearray(byte_str) + detector = UniversalDetector() + detector.feed(byte_str) + return detector.close() + + +def detect_all(byte_str): + """ + Detect all the possible encodings of the given byte string. + + :param byte_str: The byte sequence to examine. + :type byte_str: ``bytes`` or ``bytearray`` + """ + if not isinstance(byte_str, bytearray): + if not isinstance(byte_str, bytes): + raise TypeError('Expected object of type bytes or bytearray, got: ' + '{}'.format(type(byte_str))) + else: + byte_str = bytearray(byte_str) + + detector = UniversalDetector() + detector.feed(byte_str) + detector.close() + + if detector._input_state == InputState.HIGH_BYTE: + results = [] + for prober in detector._charset_probers: + if prober.get_confidence() > detector.MINIMUM_THRESHOLD: + charset_name = prober.charset_name + lower_charset_name = prober.charset_name.lower() + # Use Windows encoding name instead of ISO-8859 if we saw any + # extra Windows-specific bytes + if lower_charset_name.startswith('iso-8859'): + if detector._has_win_bytes: + charset_name = detector.ISO_WIN_MAP.get(lower_charset_name, + charset_name) + results.append({ + 'encoding': charset_name, + 'confidence': prober.get_confidence(), + 'language': prober.language, + }) + if len(results) > 0: + return sorted(results, key=lambda result: -result['confidence']) + + return [detector.result] diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bf4bd01e8740e3452319347b3704ba97c9a727a8 GIT binary patch literal 1857 zcmd5-&2Jk;6rb5Iuh)*7q@^XmVZ{kcO@f4w(x{3GBqBy6fjR+diLN)EiL=grWp+%O zu)dHYPW%T5+2X{Jzk+|Drx7B*}@S=UVn|!D+y~ zBXvf{hBR|>PABx7en(?lQj|tSTIXa$b2_f%WC8~OoIN4%E85vFjtgIzzbg;9%i~_c zg1GM{2Zh{+UyR-TQ_0;-3fNe33X|2;7k*T1c(AdGZrojPP^$9dA$a1hOkDoNkAj#l zm1goZEp;xf+-?_*vToN+#D(As;h%Q9h0TliHlCz#zMQ$q{s5RFx2c~DjnKX@x$E{5 zx$1s9YF3pKWI>!sAM#MuR~pJJf~o2*c-Rmk5z0D9MC40lU~=W{7zdm)W%j}(!+W&R z1~XQ6d0mP4m57^g7cU+x%P3t=gLH8ir+)83K`(sj$G!n|QbLKuE=*4z;ND($;O59eNE5s9S+iVBrs7{u?YHCI(gM z3~EQ3c-AK)4dnVd`TDDop6lb83GO$J4DmSE2RB9r((&wsjLh5|&oOO6#m}HIU(lQ5 zTe+DV6AkpV@oPC~7asJ%ZKnUEBLa^f%R9MtPMHBdpUKyA4a@E+VU-`XHpW`$Q^2Qv z_S;o_LWvZZOp`1N_QOlC0tWs!Xcacx%9$Nx$>Pe&`}dlkHwEg--eN4lgpudEs$DKvfJV|tQ6RTc4G;i4MSOoCAkH=%Dx}^(LVFn zJ_qS98074&%RaMoKTLXln5_X*s(~l{h@Up!5LM6>7*o`cKw~9h21x@6W+iSQnFXTi zfMV!&P#DnegpNzq&DO`8-iMENH`J_$XwSIxQjzRK8&r)x2v^QvZmYH3+S=Rlb~hhx zv^RG?U03y~P3%WpnPGCmg>oQ(kl9Hf4^_iE^fT`yh`q9oYpwQ<_hoC_+xp-$r9%K^ z`DqH(ChlN9ddOpCWr=|HAr@ezX^ASzD`91Lg)+u#WX?Q|+ap8B_z__}ek-bXMDLI%;k>eMF{>rEEYZkB3oK vo@wRc4Y_#w!}E&fQDk!^L+nf90tZpTh9O_Wr2F@d6_n+6b z=FEwG_SxrrpL?CbS<^gW!gx`_zcLRW+9u^^QKDQE{QrMN4TH+zzdlJ4nhsG~Md=W= zRn!jAT1D#+y=jy@F*=9Y@UPpIf+#7XM9IwrS|Z}c4$WUN!|*@h6yBlG3*s_Om{5li$IW`$l>C<;8$og+eY@U80ckSe0RYH2binK6gl7=4WX~H@I!4=kRG(hHp92;ouPVII27a?re=79 zh^fF|U}FHf5UNNgRBVGil}axk1hQa>0H&Ca)XiXMOs7e z3fE|eYJ;$_eScQ{MEHcX;*^#T!=R|#N?Q)&lHfl4u!d(6{?xmDywZu2o6HdC=sI&ylcT1 zaLMIH@;395Bi-n*GtB)}*aks&A6F*c_slR)mPSWH3NnX$K_B6d6nx3dc8$k!U%BLR zxTN?_c!gg;mY`}MevT0{!)ZbP5FCU*;o(m$TwY3(g1okGMg%ud%>w=st_M~7fRBWH z!DP9P!g=8}f?C3lt@_Nxdxqd(oLqA1oAaufag&y6X8aC3-pG}5Kck8%d=8g6G(lHw zy%Y+8L{**bR*evpBJu-;Tj5&4Z@@Qcu4L&sa0_Yq#-LsVH3iA7V~t!2()P&p4rc@( z@#bnPNkLb=v3(nr@uibXYVQAd?|8RZOleviiE0y>sY=PE}-;0rE{2hP7;e(Oh=gz5oS%v%zgAeZW|jIx! zGDFv!@Vn_T=Y^C_0S41(zbJ z2wz5N_K+pWCb!@7RJUapBCCMB4BLY5RgWw5_0g=ux1MQkZY?sBsGj3pGBUaAer@T- z!lrN$NPpyQ3kL-qkfsbp28BZ}s3|;cw+E=IQ9n`d27?l5+sMl-cM7B~x$o#W4cy!w zQ51gVZNt~V(%+CV-!kh}%j?*L>RW}fa#hH^&MbG5OxiLtWz4u|?pL&N8e%7G< z+71ZU(6oy%@~SFqbICSx8$jY|I}-{DmKa_|ZlP*?g*arS zW_D2U(8vMKIhwSy_SlYZpxjTqU14u<166%2dkGqf;Esn{i#`Ra^_Fg{`VCd1f%gdq zGk1YMMVddX27~cU#4^&zsvsK>>@adC^S6#&yxq(mW+O;V9oulWBT^%SYyk6 za>rDMD@^b`w*&vMt&Wx5R{Rttu4J7&neiUZD*uhgKDB*M9VR_%fbthR|C!} z{KhqE(|3;ChmltkCM2?#yTsJHS+$9dyu5!A6vRB4s$<%AGT-7$MP!|jB`8K@9EJSO zv_v7Vuqmo!p$S%j?4tR7q`z4DSEdkL93AZ}*qfH!k-K@L)L|i*uJa?ZFG;SD9+SY z?{%v7p})bq$=qUYGo5J}q4!DTss?S9i)T=4RFimLhF)-)ss+OR_@;Q(slflx(pKSs z!ngFbGdwWk4s(|oLFtX~LP5wB{sNU-30KZT-IDuJSim0Xksid?Sngg34)jHg#L|b{ zbhbPMa+tXf(gx&_jk1xJ&2=9b6cy=1-aFd*BA89-C$>y4HwyDjUI)2;dT)U|#@C+r z2tgWW>V|Ki!WiLWg>_#43GXTMjG5|8nc$}JPK9R*I!CUmt+DT50j16HWw7*6EGHrl zi(qZo8+;XZ1l6=Pg&R$2dv{sl>_dP{pn9(3U#6N!LQZ3nFXoW8i0c~|c+q@|g*!dj+Hx8?WrrO>fK^#wuifP8|! zB+@t3_Y;;2y`X_<&xHRl@d=8nqqyPcNGogZ512nx?Zdo8H3{TfrXbuAA43LSBE$RR zJ4nkzkn;*hL58ayvg%mFGuo}Ms~uCFVUNSw#wZ+@Yp>&_WyX-Pi=fJ6ypo%#<0eRQ zEE{>R6%zCA0~fMU8R0D8B)m5uX%$YGae=;tz|RT)*YNUg)q$2|m~Vl+G`F;H09;D9 zuO@dAOLBL~r1v&(4`w~^k8*E~d}7A0=8ob0C)Wz@R7emk3QrO|ahKEh2Ac7Qhx%M@ zg=s&!!E4?b9oZFTTPrG-`U)K^SlHaY!tV^aCAZU4bQUIK-edkXV-A8S;U9QL%;l8@ zZWVbP8~uR!b9~tmbd038^jKP=YRfL%q%haPUf6eo;U#p8gZlv0S(*pXJXtlG-uAp9 zs_&W6#M!eOUM}Pd!eaQDp^pyN$&BdQVlbEdICs#t%b-)*S_nImk(9So;kLGzI+7SP zR@+M=W69MO?lB{_@EMjky#9L6d5XBg7j6}gH{M1`k-oz6E`sL>iW)i35$nlicH)9^ z3#ng-xhUL4h4`pmA|0U+E0h)-wC_Y=4sGw4@tg2G83}YGWD+sQyi8)=1=S?Hq|D?{ zxIaV;H+P6n&De~pK2;~(V6fhIfM2OLvuZNo1iM|t*TGY~wqSCFWgxd`*-d>LEGZOH zGQ%wR8r4{B#cY{MAvIG@$2h~&2-7m@m_a&PqN;~^zSC{v{fXr-COuqi^cg}g_}W^{ zE%+ht5mh@ZlM!wKg4+n*qo9G2Q$RAQ`sX?k%Y{32WVYKx`(_3Hl*k-lDib8rAFj~nwCX%9D<)!PmuO8X_tjrRR zZR{kINW0JLt0RZ%WVw$Fzp6K<+`ojE_rAG=$#})El(cG9;HkV33b{dk$G0(3bL54P zUgjkSS!Auwys<7cj>)5Ko)wZfNnT+-CW|n+rBhk@mrzx(msgg8x2{&o@Sn)|n9`}H zr8R9B1<`Dt+m>$(${)!LmkuO7^C`In6sGAdq@xQ+1tJS7{OTIN89vhR>2U8EnE}BX z9SK4~K^N6iq>a>DNN-9qzEgdpI$l^_@4vizOgRb)121-*SLFU~WJ)J_>jp(sKeMlY zo)nSM+>e{*A!!Bid%z=wnnR;I^1? z#f(a{0T}59; z*afa8^Ms)H6h624Re~BacU-(qI5HTB>Pz8x@B6W7(P*AUOIdtN-1I*Le>lWa;h(%K z)|#t#6)oj}JL)ZhWj2C2%rYJRnL)%&TfWe7S~yqr4)woKm4X)qxRJ0tz6#7W;EKE< z*7_}6E67cF8+=WStfaT4_n3#Y4h7fT>L%P@X;~3S?+&M z*DK5gZxQqXX$jI(Avr-a<+}6IlChld70f7u4g()0H-f1F*C_HmTy3U~ET;Vge4MKJ zg#W0p5=&3H?}4jC-azjcUST1=B>3VnRaF=0od!Ie`BrZ_R0V+l^E?gZjtO@dSxwsp z2dmC&!E0utX5pY9yjS=e6Tvm7+l_P*xq~UFq2szjPHk@$MkAf2<2SkU)=$HGY3_d@ z-&x_6@JlSUXt~Q=MIYPn?3A_;{>MatyJ1i-RDXg*(NU9vsF5tZn;_9$Bdb9d!x_QD z$cHB=o7^ps+e~%R3ZQE2JGhFuHkOV?UZ)^|Tr~7`6ehquLLY;vEB6`Zc+5h#e^)NL zju=cm;Ub0Xh7YBA67XWVy%dZT)(#87E=n)C%M1#ldVMbtafhjos;tu;A?+*l=g4TF za2KQw`rn9LgynC!+B)vQeQ%i*_MN8MP}@C_wZd^o8_6|h?klXKpc{fFa!oM*9-83i z$j>5jhLKU3iK-8@P2xS|z0$kHs?ktAl52{p8M7F{E$e^pqsieyUt4Q3kq5{Gg!volI}-E){XZb{6n-E#6ZMmsJ*vxye69Mew&%c? zg^N_1!6gp8AfsddYQ}OMEo^ib?q3}-^}a9n%)TvoE8vXhF#{F)k&%(oHagle?U;)AUL*L;mRa?F?rNi4?XI=P zgS-K0uj3S42e>i>jX|28iDCE&n}6UFC?gkBE*8^4Zx?*gsP8D;h-C+Te=F2g$fE77 zY3r%)1b05<3!V~`!5;U3H>hr8njz>6x89(nAUi>FD2xrmpoQN0RCR%iPULQbB7}Qv zbe5LQ%qFCUUFj7sj;!b@j$u&b!< zhTvc;`qUvLsLK1#(%rRvLEjjKe-!c<`I%+bY5PlVs@!QSY&7ymgC5#Ejt_Ib8C#hi zAz!dSM^DWCK?V>s(9%ai;_AqYFG~22I3hOT>jm7KneTpKD*Su5uoQxVOkd$+OHZ|1 zJS@qHOsl%ch5kX`N%#YAERlZzf1)=h8H214U+-pfGpp`~8?Nw|-l$YdhD`2wIXm4$F7I{Y+a2*PmC2w0x-cfDDiu&s*Un)38()4pfL{_)$u4 zgeKU8`8!({BW){HzZgD7Z+@hoYWoXINw_l1^vLUCiDs?M;TIN^M0GzL6zt?hHz1DBK4+~fMt%-bD3lRAH)9Jyxh%7qX=hMOGOhx*vEVGZU2w4!`qLa2 z^8mS(6wE*$TXnnYaSEa{@!)na>+o%-`8v6Ug*8I@U^y90Q7tyDv}qrxenIJArj{8$ z=}lvqTc%}k#4lCjn7c!@rb2UjjKVV0t-b<@kMC<f0*BHK-M(IYD+B`5M)?z<*($fF&N>cXC6R3m{eOww*UrZn5JeHar4zT5Anc z_y^=)Glr?|GGj7GbSum?BZl5y!ud=BX1Lx2l-^fO$QzC&DM2GttC$g=w7U2TGY{oH z1v#PZC-gThJz8%|-blTpn4L&R^LA5pOxq&_36SnmZKb2M+XZm5|8c1Wke4tZj`ImXmRjnE^ZkWF)iOM&s~}XBIliQn(Yee1sq=+yV57fM=OI zEWBi}l*scs-T^rXG6732kWmyQBB-GCZ-sM%UvP1Wt@}w%ztwrk>$jk)D*B z1TvXPX2wLz?9ovO=@f;ia8r5Pv{l7YSoH&|CZ?dY!ZeWS%nW8Ga}(bv%*mNTR23t9 zuNnIy_k~NLIvZ&cxtsWsU@q)aer#k<-hS1S2oCU)G6$L2AxrSL_1_UrGWRxpbI{La zMw^jL^#%ImyrgE#Q!VZ;^Lg)tx!@V9WUA#o)LMM$C`jeHtAUTZOG{5NS#^QlL}4K~ zthXA?hs;>0kkaradaqFbLhn`HMc!au5rdK&ImaQs*Re?NV&>ft=YNIU<(;%PE6~oAH>r=t9duy7ERdD}-@Ko2D%#<^pE)X3EG_cE6HD4icsUd7{Jr zDm@~;Tr7i%F#8lnnHCHEO7yFk6bh?DFL=)~msIx=dDtu5)lppN57#5U!92kmy~`_N z)gy4H&8V($$LDif$4!t`=uJ;<6!RY;Fpu$A80Om7`) zRgbE6mOI8f?9K_0&d1Ux#07mV6Pv0dVKq1_d~UaO2-Y(b%}pP<4BUIBE#-Y^h5XdV z5pDp!E4PuC%5HzU#zzE=vBGx4`-dGtdV_{*ORbQSzD?SW68SgMrwCGet<4IpEWHcW zY8#Evn?^O2-c!ICv~}ejmm33I*vKw6>Z0vykQ1tZQ~IOfGkG;Em`1q8w7BS(AV_P* z6idIvyj67@vzKM)UFsCNhwP=_N=2?F_X(!-z8}ti;3~==o zPAUv^zf)!mm77KBAX+M+x+3?lw*7XCXIejJ>LHgK?gTReE+48N4f;{_G}51}a8Aeg z5E3k-DjjfyYmCG<&NAz;9FUu>`YV?Bs@H_|cso%2fjJNG0$*4R2V1VX4lWguom5XE zSkK$3Eu*EA(Dz-WKDhr`u!%4$mMXx-klu5HUD^uhD1v#nFgx%PNUk_7b5UJTID+1I1l<(o+cK^1d8J!@jpaiMmQdB1s_9s2fRvCsZiN%fVc<8IPYO>l zKcinm?n8XzR4>bw)Vo&UG?QK~sxRlXwj2aykh^2#L#nO_7w|sNF^Sx(a=$QVw5?N! zM%qHSoFPll(KU`^IScYg;TIP_C+uan$8zU|-I2z{GT4?EiaKjku_s_zhaNb8GW zDDxLB1$4aQ22ZW^myT=91*)#|E{0yv%#2IC-n`$;xS^WOplpQyVbD%t1_yfuaueid zRJVA`?6z9rE4ZTsMKgRV^QXdOAIKDiro#KYf<%_qJ4fy|s*6SjywCKOQLTXVvS~|s z(|~*6`wzIOr8D45sj$?`?2$VS{Hbf)!FQJ_WaOVV`itq~_J1qHVXC}GJ4c=322|P+U;KgoV*vKNx1AM8>NDcRzS;X|jcaP@QI%Zqp zBPNr=6s9NKZy*n`Tyc#{a%oM=q3y2lk?IaJ9`mN^ZKFDw$gA3(DEz|vOh+@MpD;y< zEQarS;s-7FXR%^HyXj;?vl|mZK*HI6p?#|z@OhmEE8r4y`T!E zT|hEBL@(wnmXc;<1%8SCRcQRzkMI{+SPcsB&KRB!xGm-ql*V+}TlRgXnh^6+)z?_E z;mcyi8)0_gTi%MuFNaqgUneZ5ZIldE4!E3HR;e}!P2cdi;V&rRuO6y}j%TJtO%a-8 zdZ)NSG~xGfxez>u%MKTKoss#{qb-y@R;xem1rrM}l*c*Ic z{oXD)P3|9FF7&1G#naIa-(9&LNaM?`#NLH#jl3s!idP298sO8y1bWNL zCFK2p?_(?ctYg2;|3+06xEx#}xceZ9c}bXiAY=6I2^9qQtdK$YyZa^AdmkhZQyxnN z=0}iBwp>flPPeb9kQC`VOfn`pb3OzI6)-=*GF@9HG9C(3fUNNeyp>zx#Iu-5NP8Nz zTeY?eRR>uuSIM+T2%5{au=H4k3It6?P}XPhk3(#*M+1ESdVqK3YT&Dkr8xTb3hVUF zpsylt9hSyOb6$gc-!iEwNW-KscQ)pHyhpbDmA8bK4?$fc zuj{?RG!F~GNqlJ$WVFI<(|W*VMpc7?bgJo@3`|Y>GV*Hi5{7L-H!K@z?y2{gX&c<7 zgOg+ee&eAsxOj@t3ufzhB)myWP2YVMBQpcfwVPin5tXUG1yb9ztRU62)l%IWnqWSv z1Lh`_8&C7crfsC)h>f0y^g(I3ehPW0DyQQGuM%7qbBF8grBKJTBUEKo$YyRfUUp`V zurA0ZOXrY#>V7$SeW`y}HJ7kNiB82A? zZn4aAnqM-nn0=PcO6gS9{BX(b@yv{B^xby9{&Iayt1ef-j7{bi(6ItlJ(>r=eGYfu zt-b)RuTW4&LEr|$mI@`!h(SRNZ7Z=90x8TC((zjEfF~;=m)+@>x=>MJ4q+{Wn#ffp z=%{5{<6CPZ|2Gd2)fDdV{#C6myelk*WiFP*WXxjLqk3cRQ(=4$T9Dkob!_Gp*H+ow zfd*|isD#`Qy(M|2m={)v&~Z<1PJ;@|-4~VyiLROx)fryiaBeU(^2sQuMQ%d}>mS}A z$fS@>ZoJbKLDfjL2?d*&#=@5h)8P&fl*bAWjJ#}61)9qk{tB+U>#j2GB7&Yu+){;=GI&%#ENa`pO8ZFjbj@=nGg+Lfay^ zrP}JKE*3UZox%KzU>gNX6pqS0z;}xm6;%q%%Uq}~f`UYLrs~Tu7fkVWHW&V9%dWsF znKW*Y%)#C#V=4Makv{>z%Y=EEEx?ZzmJ8oC<4d_~hEGGV&d7QS8Of;arrT-06Dg9( z5$1w@kv~G(I_X$}Z@ut8;S)3Z8UCjQ>*H&{Tthkp?l|TsaB<;AS|PIwy#|>L(v7s1 zHi`<@QsF7@88b7K8{{RUkdbGoZ)ipnEUmQFCj1X=*_b*;{v;P*-f!d_gGxAOQ*9p! zYp8yJ;6o;gj!z;9c=@c_$e_kde&JRfJ5-y+L0^k#uuZ>?rjeHbbYid(gXj#oNj`pn)Jwq#l{KRNaXyo%%wwBRay|2WuQ9fuV1 zDSRBcn~u7KpEa_zTy~JR!Vgi6&~}je6uj=L1(ANF+D6A};m5+(OdpzaM6#f7BiEKm zZNVg1{#4y*Zb`TAY}Mx4+QGGFIz+ai-v!sl(x2*m0oPGAszN)<3?g>}mQD&?gq(2|RS2)P6{T0?k1%U52ot3qFc{?!o;ePN`jR4eFsKtVgIz6kk(5gug+=EKZf z^b-i$s4a%J#I$q~c0+%G`tH1F_!jF}E7#U1FcW=y^gTd+7e=FH230-f)&XzO+uz97 z3Ty4rL0d=Wu#G-Zc-IPrRD04&tU-j}HQ3zy>?z#Hl$yY2gwx6aagB43dAl7a#XuXqD>)KguCd7F)1E3C&n4sI?} z%e1!44+_zB^s~_$W*Ep`xu({CSNJLB7^nvEK4abpS5W$1_;|tpY`LDQhDaaiEfQWM z*rKox-{;z1dg+q}EpU>WL=FPp!<6x4t-@UJNZS`W1~XqWHJ$F1-VFxbAnhW)8Cc5d zonWo#3Nh)+Kub}Na!78LyL^SJH*cO?Ic>ENECzn7Etas0&*E#~Z|okH!;_@^e;%G%Ebox4mb`kn%pMRZUNtB_Ujk|GL*SwP;N_?=4~>q z0Z3c~(Ge6waF^UfhBs6#Z=)EhKj|HYs+ot1Dc1tk*E)tPOrmcy=Aj_D-S01LbD0q! zMO6Q``AFd?W;8Pk_!;3h4Dat{T49N0(0YSr8q_|L4?$N~YeZykbHB&(0~60iv9;Yn zaD>@xw*g2aJVjS#q>&RaZ$K~%=@;G6$3D3Q+ENq#KVcbs zaSZv&DsaAnnQgXYK*JwKF3nFED5p_3@p! z5Bf@`turIBRfiyrZ_s3FLNuaR+LL`WEGIDq!lq} z8eATH(|I$PnM@@LHlRP?uscAK=-7$i)5tfXWfpK6UTW3ZykZW!&5Q)r>Vj%M1qtlY zU17NJA7(a!JWeu)cQEq%BYdtfmucJa{S;};EzbLopzWvM3orrG<$Wo>nRn?h(SYkQE3LVQ-moqDvmCUCI61r(3W(U$j%nV;iV!0$t z2^Wg#lEp34A9EVd)0fDV=##>==B>iKIy6Bczt(4)Q6AqKg)c!$=^dod1K(POsP_2S zHA=|!WZG%lXhuKJvr#pvLv$zdwdxMiE_sELyz6k^sFo65QCNq51n_tSt0;Jf+yVC3 z3AY|(12ac&X}PlIj;8btZwltZs&fc0!uyBjfmo7-d_f)iZp5;Q8E*Jy-cOdvt?fJo ziI7$$SPDPWvO~DT@Jc$WMQ-FSpVE?!v>HBv+Fn1Z z;b&;6DK`k@Gp3esC#qz6cky;JpR4ZS?PX$P`9f}&yOg6~u&|7=}acA!sl}D z5_y;xBP0kG`_Ml?8WUe#f_^sW46lJzw*WUa=sV2g9AW~Nl^}I&lu>TC`!$2Bj4z#$ z$Ap*h4bgjr(wzoX*6|M0#4j$?7UutVzK~UEob-eFY;aiZ0j`)v4nh+OU zw9F)h=H^aA--Ag{%P-pYBK_Q2-x>6)+z?)D9pzNt;|-@JgSLB-3-U(Dl?NGb!Ax?; zfjd~?H&ho)yW?Q*^M=9wu22T#tb>ijQqm2M!2M6PIov3PKZK+8W=8*~u%2obVFkPW zC6~tv*LYjx;t&}N>2&v{u1A8ohWashLP$)<3Z_c!xB$UR;QH~m34 z)C&83YxflnpuaDd#_6&n*lMF3ybPp0fV)op7z7W6IaNQ#@}t~cy&quN$vgtd1(FfL zQPt_Lkx6)4+gNSKc)8&+D;%UHx=*ht@Q0}C`Z|*k)Z1Npqw1-Ul%W0!eH8Lwd2H@3 z)rQ`(qUu(-DZIQO?>ode!=C^@0M4iIG_n^}e&JOe&*c8_THA#G2*2}gFNi!u?z{9o zSBQf-ZparL^=;JARshvx%lr$H#g;F4FPT@&Yvv785V$(IZ-uiRr!JOHc-bfzPxu7p zglT`OmZEv0+)BNBNGpVDAaAJNFI+8(>Q~G*=07vGDrBXqxI=v5YWY>8qzp||=8SL> z`iCHsc~h8Zs#AHmFj=Ic|Pi?k)9a`g(p?B zkyaU1QEjmheBlB9vDRmBvE|}08x^J-UPVVP!e>Nk!F*UQF5D4bX;<6mLc2pR805*$ z>Zs>I-$NA-xR|-|fiIAD-ZI&#I*R2hxVzfwYdhnmbExk3GVu`%({{=-34{rmf^LL<$?UeB@J9&tQ1FD@sHV-d)-S3h5R_5Pfgmx`W27Bt-X)_kz9b5N zg<7v^m<^oQ z+>!S95V#T2$LN33(LhH&kb%NvdXqC}OiRIQ0aA^$d2lJ^b|Ywvs=7i{g-SX;GUJ3? zD!A0l$8x=NG=YmN+-J)gaA`o28lIL{Q!W}@E?aK2$NMgxPPLY5dR|kI`Ai03GhP#d zG73w(>8F;yXl^$IO;zW4w`RP5T|5(TW@e6CUBL3QeXHx8D^~_p7Lf5+mPTsPyBIDv zk%@Wr2 zg=&YZjqx*B+g&Qay@xa}mf8w~fb&}`pIi&oViZ&azNoOwv`WI zLxpxgZ=M{cM{~I$LWFb=;X)C*x;hh97OVugfSu@%*ry~m>Gc1@0 zq@3^*UR_j`y~i22r^0@b5N4;5gkBXX)X-B$)JwF6|~*Z z(Mi}JX?<>Nl%9U0JnV7C+?Rp_fn-w3@Ca+Tl~!6ndko{2B4tWbp+ zU|LmPHReNn2Z-#7V1+OC0}Ecz+nK2jSA+SLzUidZ6h^mTRWg=RT1)Ptj%C8y!oNw& zt>X&j`s7yA(FN{=Gu44>piq~Wn7(&;^_bmzi&Fry({ z2OGUdUv<;kkTF#?n~^1)q!HXl)^E(K0oRk#cdUO2WEIlY%*Sv|;9B!)0yh=*hKsPw zL-%VY*PK~SK|+NEWV|PL2jr4)v9>jsYoR)4t?jC73o=DyBe4(Wl&S2ec;(t5o2y~iZg%)A6T4)G?S{}9VZ z%qBB7VlJsShqXRdXdPKqxI*8TOdGlGG!HVet?)DJe@Wzd_d6(Tr%;K$EyDJ~Qs_JI zl9{obv}FW!l-q33XGnijxPYp@Jvym&W(t|nh4+QG+@hm0`VNlsuUs5q1V{tD3n{p6 z!L7ihDd+?;(G6azb_MRnYy)Yitr4?G^?&qrSM9-6c7vY0GN|^rX)obI()J2368<|} zdCPo4RVpJtv~*+41r2Y)YhXrY=4UtEPC;*cnGiGu`5a3hxt~<403Sv0vym_1GMVw1 zX{I9)s_#K|=-A1WC3hF^tZVeecNy*zUS-l+;425$Pp&_+NNxacAoD3Ri1~u5-T3w} zBdOYM{F?cO`Ih;Pxonva$>?G8A##I}?lY~t&EE&vFZ`K|p&-wBzhfRI z9L|hj5@R_4+)~>}xr4${yuxyagol}fKI+AC6%4wJbTr)e%nwXGYaL?72!CY8GF{}x z@y0Vp@I}Z~L{-sACMXngjY@LOeFqceCNVcaCi9m2UOM`5$>U(3hHC}={DPmN+DW0Q zV^0-cvEU$^|BvY@Ov1#l$25>;z+VX~n|t1MzZNcGri07~O>o+bnZl#g&*B~9U2%xn z!YevHqpvyA&a})?c+aYrt-z*)u~pcUhC?0nl@`v zr)u+Nbs9Ek-K0wRZ&wrlKR}hL^=h`-7}myR8~7wFTuYritROLtN$)OtY2 zo*jDiE!4hC+rAw-_AAsbqH~E(eLMCk*n7~`IOTiv>d?P?$BOyFeLo4mwU=(zy1g&6(g)(=4#V(1B3dgtCZLW%KBu!J)UO|&HNZk>?x7%iND zU%KC0v!Sjlp%m~>Y|L0*=7uqa4poS{waoFsbfK^xcAGa?U@6jYER+qE(863$8)zX9 z;JwCJCR42$yCA=Y15;FkDzEx=S*6)0!TVnhg^>ND*+=uVdUAla0sAaUK39VbTEc}H zOrhw?_2p5uP%%V*09zvy%c%~&z#wM5)u?5IxV%HnvlG4Kd&HVd@{Uez`T+r8{iCZvRxU)R5mpCActD((Z& zcu`~8i9Fi&J?iv0JU5EzB?YTKDdfm*u0}@V6)IL&$PJX;aGh<;&uXM1@SyBPF9HVSHrcRkrvdXq& zmt#(>9CzYMW|k7=q?0W7I6dWFr&r0WQeU~>=`RmB1LZ+yP|564syyTjm4}_-@`y8{ zYxA0jiTGnp#J$l^Oy>mngh+xg)ZPl6v7Bj86Ae@culYnc-b9ox&8;l$kP?8*<_*@fwxyRzio&dvS6UCP~>%Y~_E zWMz8h&YZiv=*)%brsSi0i?h>r+*^ywE4js))s@Aitecz0tEumUTsM6fIiin}5*UbiyF|s@x}bVYNKC#b#vpV zqwGGu*)U;4fq>b6*r$cFX#O=2q181vqOcTwLs3&vOHsS7J&8TlcnOxZJw2O=ha+wQ zmbgLHU6VFol2IcLm+r{n6JC*HxVapSjAKv%8(&Yymo59=L zZ>@9es{0eKBC7H#H3=_>-YrI4*?trzT(?*$2CjRBei#7J%$Odt(bQk<+-w(5U)f*T z-K}HLCUoUi15_8JhA?r2R_(0XSvs!{&XcdF3necv!9Pm-K|b(qH)u>YW6E*7tB(Ko$Av$#+b<2>WIB~76Kh<~5 ziY1I)vu+A=%a$v3;A~SD)^`CSSFf9OZPVD&HZjc00I1?%hUAEvKpgw%aqyXC}sKtsWqyd(suPa*VyoBwyvuc zHoRxlE=e!gk(G3zT3Ig&uTt>RYk40Itya?B$3S7TFuuH+n{%^El6Vahiu-78Ib%eg)a6mH4e$gG4d8D5VGzw4 z1MvFbIqT~fJZPD<*SdPJT}PWQ+hS86^uiO$KU>zaCPyHEZM+cSiMj03>ioiy9d)`Q z;owF!aJ@=(XXCz0{|K!2d1{(jyVTvv_C*D?fQ#_3PgB*U;SCZvsEm=7=h0U_+jn7N z?NNYm7##JaynvZSw8#*8iL48ui5+0?x3kpZbJxSLs zl=8msx{;5RXOu57(@%hCz&sO1?R?iw9OjEw4DIh^mYSG`>u}Mewrd~&8wj+Qgvs87 zHp&reQXAKVJ%JrDm~v;Ccvju?#^12G@goowEgMhSI{@OIsqV783TfE0UX(sAFhXO? znX64*!1%{#(WdMKLg9o_yU=}82eEiBCTYHWgXB7iau5}U{Z0QByi#f3hYDghI8Xg! zp2!09(2u&`3JO1`(gXZZ@Q@e)-H_M*`J0C(@SM1ztV&|P_u_I#R%vtT2iW5`# ztVlF7Su)CGQU3ZZcgC>O_!S93)|dimi9*w4J4B&BLhjQ?8ekNqurZ@{zU#K114ulD z-%;%WkSKXEKw8G{3NHaj3otkW62EdIAPuso!Vo`yjtA0TFyjc2x>?>CNKA?*8a?Mr zkgh#$iw_I)gR!Ik{5zUmf`Q;dkKKN2aEq7 zK!)7E$`-A~cW2W(Ba&!jo24dJuMr}T6yHdFs`$25@!c^IHlAQ{R4%DXN!3gTi4Z^G z@F$5V5ng1kL(uvX@@DR9sk*!D<~a~T@BWiI4-i60Hgh^mdOL;SA%A0&21Jq`kesDP zwxk+S6|5>=S+|Bg8*BUxR}InSQWY?)UBbi~5}_JU2}VRyH@Y=D{5Rx_o5H8}Qi%27Sp_K{+wKSp?aZu; zVm4e7lnY24_ydw-F8zb{hB)=aoeTWltV2G?jkVvK_hx2i-pB8~eOjwk7@qpUPv8AL z&DbBLoPB&KpMmU$V2UZ;V_Uq*Imx0Yw!Egt*$Pvh^7onYwYTRreHE;-IDE z*JiNZ=_jjcE7j0z_n)=Qs!nNIn>IF`d+0`b>=Q7}nq0A_P}2u&gDauD{c_WDGH%(A zn!XNHs7m{6k2gcekt#d6q$+A^pEV;@RW*#|1Lm`41$JG@XD0@%n89dRSkY(;cWJ>$ z_9kR+KuB52GqxwXBIAnxLhg%;f{%L{&kQgf$>=$;x~T%zY)86;zXO$eDYA_$VZBveFSzAxkGWp5H&?_(ygb9>RnHgvJ|8z#hwYsTTKWJ*wqfCfgx z6H}%Mf^!}gVKq}wVqvOou5i-SXx9~DGsIp2dmm&;V|*I!R=Ce2j5B<^aEasYvU6UO zLFD;;kgbEkLuMB;cF4)=LL(nY>WWolun~LCx_mm(scaAW8y%(lZJk#sKk!EOTU+{= zJKGC$Pi?-6D?XyTTt&w30o_ZzuD>bF zqm0TlAPr-P_e%l^K_X~JgdHIuDI{PC*p-#IO|UCtUs-vZ+=R62{F^u(r=ZmR#zTih z2gI(1_j7}kayn%jUe^nmt#*J~`h|SF3#jJ>vW&f(q=vg4pAO-fK+b`6^@aaqfKCtgS!mCQFF`vDk3a;VP``4gFvID<4s z{3@vEL8$8Mm!$4|(}>Ydrs%UmJp-SWij-ReHR_REm2!L3>J=-ly}Oo|M`(xmBBeWp zU*wV@U=@{Jn|xo|y4REP3;wE_f|h@yGdmm6`A2O6I?TNFcW g(u*dIn7$Ei-!T0_{tG!@lOpFMTP{hrYPqnI)H^EVUzWcIM2PIhQ%#nWL|l zmTC-*|M{ENzppd)Eltig7n8gAWj{eDn6P5jEWTFL61H$+yYDm|i+#m}E4&v>c+!3D zG(BPMvPR`KcCnq;7W#&j*MFm3)UMQ|qEy|EY5)9kC$yo>w9%N<+{7>Y5S?IS=CiSd-qQA|qurM@ z_5|ByudJO$C9n7yS({&pgQV+sqF76nFT`oL3rFOOU8%P*2CeG*Nzj+RpI2yAs)n7r znT$JX0fJsJwS>=qwl;KsurY`RYr|v^g!@vg9rmP**ABW*^%sL*bZBkEeKC_kTo|RM0W2g1@7ib8c9lvW0Ym(?(6hA9vT1PAM zGHLm81Ic$|_O$e_WxS~_GSV~A_VZGbecqR5{c=&pmjqpVr;9^OyWFMA2wy);lTIXL z63Sa(pI+gI^9If{z9pZ6#@yu!2AZ8(0?B2}UOLAx9NIWLSrsdvK4xowdeZppUvv!| z0I`+Koov`{Sn6Gn&b$3afj7Swb$fn$q@|xG@#vS}%*aq?FIz{S%qx1~jyZivSGp0S z@9#0t>^VEOv~`MX1)c3In9pUv3u&iWZCxE z74AM$+rk5lb|8sZ?BM3uq|o6P07Z>Y+V3P6vJ)ke>z{iJa#DiYY zmiiW#NjHwN9-mS&{y11Wy0_MRQZh#gl2Q`rC{2R+7N47PfMnu$OZ7dJ=~ZhMEH+9jSO2B)m`AsNB3V?U$gira+kG0|{}?ge@# zM3-m9GRQPf;nz#7U+4F52&or!hv_hbeg{JedgJ|x9_4X?l3d9_9E4KfYRDXTCzd=z z(w02P!YG<~cD+_^EbK6^1P=y-m|Orm$bc+V(LiVXuos0rE>fPPnh)Xbt;r3~ZfdExb>`sL2+H)sY~C+a)c)$sB~imE`VV5Hs$C0{_~3Fwkn z$F5eq zientB<4}sw6{Lh3Q~K@NcyMsaC6qZzTys z2uvh9P!M%zV|5ZPV{T$g#bEKO>Ee#(VM+1t4_42${Ya1yw`Dsy6wpueE{aVrcrKs33 zc)Mfz+k5J}L?-O*08rn<7qt<}M!a#cOw>oT%F#6{#cTI5aa5wj*FiUT2TDH6T~aEq zA{Z`&+XoZ49Y(t6PhJK;mYUK#z4sX%$?6p#%(buKuZp6uYPrreyY8&mHLK>h_#QPb z#NI`xHc$m$RrF6rUi1BaDuyxDxOLw@7zXjA;$7K&@S8__n_utwdk-FMVX}Q+UBwnf zppu3hu0jt$Gs^e*P#w=Kg9Z&U42WI#_Q!+us&x0SU0REF9xT_h>5-Y)FDL-%T` K?5b6TBmWC9eR5L( literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..19451d900e9aacb06aec3ad8cc1cfe39f99182af GIT binary patch literal 2873 zcmb7GO>Y}T7@pnr$Hs9?>4#_qMFR&^i^i$Mp->@cX$umf0VRQhFUw?SY;U^Wb!Wy& z6Q!pH@eeq+$Nr_ga_V2;0?#|^jpM{1vDS>|^LgKSp7)*IpV!t}3=jYPw_h6_#{Q(v z*{6oieH3#Gm1NROS)WN?2B|mp`@YA%W3ndeCrs8=@G|Jvq_@qwjkj3MHs5-vyI#?L zBH~e!sckE)ifQWX6QFY+#XLf#Sl^SZ?@O;AkeL$(NN1p5mkrrOzac}pg8!y$$yNM^ zYDKo?+6jB<^;@z7^Y0XwALcU2hR)#3xcCESX>mLcxFJXQxb%wKobM~03=X;AyN8%C z>e*CfvEqYVV{9U{P2y=PG{>j|?(uJP?Z6a3%3XG(xKucx#V)O4mFz2XnIbT)`@A#uf`5)}mWtUnHs6P1S9lXR6$V-GbX>ta^M0<`y@^Basc2fkkr$ zZdVu>&NCY36Rq}>d}?MpMMf^ou;FOswL{m63zX01Sb)x8f6=Nt5-rRJn6^qQV~J9M zrBj=)SCrgqIiT&G2U|NO#66rL0j6<2l&IKW1MkGs z;>qU-u)7dA=iPGvIH#GY7$#%lhw#WPqb$V;W~DO8FoRew?3^^hUW5X}v^vXq4h)TB z8j~PQPJ@#lj1mN83x1R}$Un2g6tCX_EQlu)cf zT5|xyaPvGI9jX$1M(g9Ptsl24W=p}(5c^-8LZfu9{drS-F-;xC^YombX4z3LVr7W2 zb7w0_n?pXTa@&!lp2z7FK}O78gsXP(fzHRIf{a-hdAOl*{rQ{PUA!wrBN`(S(xMZ^ zQ>`NkfCws9eG0!QRavoG&b#m~nrS{9;_@t3hRXhcw$eoyMVT0@C@LB>i;+6=T-mN) z)Qn08g>S}hn7#ye|N4Hzjwc(FWU@ZZCL(^SaL;}*`Fucg8_~YXWUe>J z2Sm(9d9OMTX7_S$a!7WQEU{5^m)K~dVqRnRYkNoUU%cjf)sC1rs2*w)v5r)Nv22fs z1C`tCjknniG;v|>aL;s8pSxxyrb(&TyWGZh)S=~Q&C6g z9J4)0dIRF#U@v_1JnQcTPkntyq8HWNe1Lf$g++B*;l^q=*j0?a$6f@kU&lPHLvS3k z8r!SM#$6oMA<(P1xmm2nsW2w8^e%CcQFJQh%fX^ut{C8o%yqHqRG6)&V|E+5jz33> z<4IqoZiA{O&DR`Ng%=ks7h?{tXt|(sU?qVR9*)JLm8s`8a#P=6&=4LAI$j&vUh+Gh z|98#5FhKn--w@Wrmvvc^_-*n8rtW5xq>iv@sIaGM8qH?e!{v+ z;ZK&huw=^xUrytVzObBD(AuSEQKMu+fH_u|`E=bGaGx3_OVKPTw$C{B>AyL)WZ(bs zE==(qF%`&i4r|Le(;s8vms3~#rHNRfY<5@mD%KXQh_0h)O4mp`ik?kHI=fVwQ6%#? ziu7eNNGYaoQuQHKAE7G3iOwfV+e2sijD)8#r76c~t)ZdNt6dAjFbF#+f$zE5Ze6bs kSY2h)u_-gYk?-!|lg-U9gDt`@OQ*m3fUwC(=(mG^01xN>&;S4c literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1334650c6c4ae53c1c902a2c2280ebce92db4c93 GIT binary patch literal 362 zcmYj~u};G<5QZJwp-E}Q#=ykdp^XF!NT_0BLI?>M@KQ>AZQVAGvE4!*0P!qrJdanV zz5)~HNJyOZf4={I>-^B~cL~<<$NSS4C*(Vt|3%SUqTDq?5}B-tAV8Lhq$^@ak_jrg zV89`rQLzW9=s>p2MXrxR=7&GtnulRGjxraC3_JK=P`j9IR7FD^BJ~tkp zq^RVV=Nvc>4X*%MKwwQD~0_N)da?%l+7Q*jGUw#-YQ3ite1h-5hPVvE>~5@Y@X?SD-*0ZcOTopp;a^B*9e^Y;6(sgf$vzcScqc6OWgvVJoRArfL%=R> zz|koQNQ`lJ>Ko2S<1)o0E(c|naRZ6WRxLh;Nvm&#cYc!}s)Xk-i4{mbpp}ZnmyzvByJCeE%wKUS6(>gFx z?ZbbL^He3qaDGmH5BfGQ`(;+HRz;blU!++5b|9r%Jsf|w8|AZo-0SnNvJey9Pk~|~ zZ9gr6+0qfcR!%ho_m5#31cWZqd7sgvJ1uV3F5~};BqVBpcd@Mmh2*`RI&@d{5~y?+ z7l+((3&gsMfk0NgNOJiEGzJ+U-qF3b&-S7J^BZkXv`mVBJ7y{=##J(w{g%^fiC!M) zF)SL!$9X-^c|H-9Lfqy2uu4?3J?b(g^MbsQYk3=6#kHhDaBUUMQNomY7havP;^q zfIcNfzomcBZ{cg7^b5Vutfbh993w$jn9&Y*xR*0CXL+)@X)4gjFFy}|(iG))G_JP_ z7<(XM42miPKv?K0R^s)4OZy8^aO4X_PqSHZ4P6Kqr3 z8rXN}2G|?Y*6F6J)bGx?*^Fb7o{?B`(2O@b(Hgz2PihH%2ynhMq)i1-K; zQwA!WzeLqRnU)3>S{_tsWuVb2>{lyHJDKL0n*|x0xh8?;jUz!A?3{2m`}zU4RFwrv+R%Wbc^kL-g-e(Q;6{i^T{m{_Vm zzT3$r)17HF-Odw4l+o>rF=O%e^U>4no9WkQIJV=TvxKI6XNmm|9#%A_mmIfgfCyBE zS}9l5iYlM3VT^~_L)V9(-j4A=r`o`v`k=-ttlClrCNr7VQkV|?JJf&})QY>^AQ|Nl z{rxD;7@s|T*Em2n$oI&Zd{K}KCh-rZ)A*8PDGB6E!{Ny)PMu|#hQmd8cp0|Ou~_C( z;lbzkQGE=`sc-Nq{Bx)@xC>bqE;NV@Me^mlgc%7}KJ;(gG0vFQ$Mj&e)%d^^^?Hm-we(%KT z__kMQPS5j?tQ+C@5T+#{uV*Me{eK`F1>rbK*a8ISy+M#@kjY|_H!0v9v8cLUv+osE ztKaYS3(fZ2w}F7ESziMIpRR#`>Ai=pUxK==OqoG7s=riTsDs+FEVo?tJZDMBy3sQh zN8>c5vmbAVCVu6KS3p3JVS*59nw+I^oL)elNh$?iJ&)2{kTe0xN7j7{G9Ntss|mivICb;J+&3KSpy}B^ScP%obnQc{ z`=rp8|Hg681rC9+J7F9MF=22eQvNwCdu@-B_a#ew0s~)x2&9V@aRW<~N-D>(5ahLn zNbZ4%PeI+57Yq6Zq>bW1dlk+00?*6YZ?~tz)s1-tAbCaFaP_fRKxS|`%W&vIdc>@C znK4{Runeh*@!^ob6@8UU7{n}vF9pn-W^$Q9<&H?qg#6SV19GzVf%Q9u*@Zv91$2H`Xzr7vRwUt5o#+wfpx#K>r8d)pA+@ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5386d748076a6af72e278300203c9ff4194a5f2d GIT binary patch literal 2596 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bead3fc2a8159a5027ac8552f655fa0c35a8c8d7 GIT binary patch literal 27146 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3c99524639b6e29c28243b9cd7f4911c5d3ea4bd GIT binary patch literal 1105 zcma)5OK;RL5VrH$blEQZxe zSYx?$t^?14WRCauPY`e9&#) zpaS9^0nA<|6;UKtiAfco%En6pD9tW&vF7?e5Dp z*pnR;R_X7`#wn}_}@unBhK^dv6+9XQP5VqC>zft)Ua z-l%kOpc^7*-N%~(F+Rfc+pvEwSvYKz6rgn%V*t*3Gw+{z6QX8DSyL}VH8eht71 z9zhgrYdiu);e!onCva%nb*SCP4qD9*t{|wnk_eJnulq*fQ_Ab7WV_0&S$Z2yRQFW? eUKBJLHl20d$mN=m@MT@#s|T16HbRHm&-nux%LZov literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f38534188021ab1838646fe8e3382831b877a1e8 GIT binary patch literal 19070 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..838e1ac2d5fdfc51ad5c62091955d8a29004bba0 GIT binary patch literal 1113 zcma)5&2AGh5VrR(+bAuis7N3Vz==q-5rqRt2tgCn3n@qum%W(H+D#X{o2~5yrRpt3 zeT{PLEBVTaSK!2qw^36eB)szM*kjMn_l-ZUuC@t``)A)j*@%#zxL6(mEMCLZ0}z~W zDoH^TN>TTuSNMtVbYBKVn1oIbWK^`07A1RxhdeqZJQ8&7Coyl0NH_jP!Bv;q+rwI# ze0OF<|1eb}VLqtoSSYY;^rt*8CnJ*@F-)_=ycDo|cW-y+>64v7u8qpawaKUDn=+L% zoole(Xsm2BWW)D^x9>6ta&7pREBy=HL$|?6w5FsAB}2`Y{MY3_T%p@7()AC^5bX=CEd=iRJ|UtrKz{qlFXj zO!vDhHq><`lmZrrjTy_!+%Trlp$c(tC3C1ST_|M5Zt^80Sc*^_3uQwkv@jRc23p7i z_^&XQ$y95`F39ge&lFX!%B!uqtkUd@;9K7gg^*iElh5Ww_51*BJ@!?Ue5!gG5W|J( zO~#0P<@njIW-5mG4`FIl2wkIX8q?#=WpuU|75oJgLemuy+Viza6 zF;a&qGG^P16;obI)H{qF)v0VO4nG?Mo-Mf=c_NgYq$a!4&{bI4zQG>Qag_E3$3P)hJmaT;uuy;kr*BX|B$V6p5QB z6o$m9j4o`ZMar+<6XgwGK!t-+zLZN<(^WqMojM+^p#_H^_{620xQtU*;|yljT!ZVb z$ql!Qo36#X+z7W^n@8MkZo3ZecB9;JV?63!;4!!7G09SXf%hC(ZZGfUeFwztk`FG4xMhxjm*gM5UKLV3|2;$wXLfIOn^Fvu_Q2_=t!e2GsgdGs;Si8}_XyeyqN z{)X^(!_}Sq3Pzv&hVVPW9|(UU{Dts0!aoTABK(J70OY)sd znd)|BrjoBr)k>9gX3OVOyPLjWoZ871s@E%XS!|o}9{8|lVg}9SesyM3krV!4y0Rzw zV0BM$*Lna5jZw4h-5+e{a=N((=eC}~&;^`i9Du{ddm&QJKxPVI`@uc5iwL6#6D_!e(g?tJ@C6nCLHl%*?)P=rrnV~6j1}yMa?3DWU0oSgN0T6i zQbb^7oQWYQ#4yU57=uDa8?=TlES->*P&;Fr>;;Cr?K1a^Kq|&_@D!#9&}q=p{fQ1M z&vnkAh0OYJPF~n1ySlnX@ah@K`v4EzGD`?8Ngh->$y@YrZraWu01D2G^rO@ghTUK}5q17WD6tws4upIpb zX;YSe4+88pWRU{fVxkYr6x1AQb$Ub}(mGuvpMU$1)gco@dkJ{~NfS??j{%x_M8#Si zCMb%W-ZqwV?tNLEKRNM;ScMHQn{ zMivw6iG}s$9G@II| zjGCuRi&1FN_j@~7!WlZ!46Xt{#m<)?z#gc`7$(RDXl%<6<4|hAlhV7%78TP_qa$+# zAvVZRyC98l`j?MFfW$97TasB1A(|z2YpHgWszs9(kU_1@jHoIYl+Xi8 zGQLVovJdB8SzS!rZB5&vLLEmzZ9`fr4S{r)4+oP!rk+xI+dl=%15B_)cc=|1%AuwP z44mq$q3ISR*!|9^X`i8k7xXp!6fYP)oPsB^q%=c5Lt9>u)umNTmvXgq&L4&Gfy#sI zOonOpIQPd^UVj7r2<$+Htg?azk@zxl^<2Z+6aj=ASeWn4FyCK;fhsh_+bChC60-;| zFjZjZ3A9q(4Z&lbQ^w96K`Pwh<9JuVjfT5|?cvc-E28Xp-VR&{!WQu={%Q&VLqtp? zypAw~fU6R3A;bZs(@1|Raf|C%{~^K+g!d8f6j#Tjcm*XD$tr&5K$RApOmLH_?un1F z^%epyNk$v@iHu(?dS08`;5jbT*^88Z4PWpMfW>rr?lp8n$9m@2mTl?q#;hBR+N1Dk xjH>%nGH%Fd!-v9SQXqxW@JqGrAmjo6)MkRZ1E2}g`XJoIn`o6fSsm(R{s%ynqB8&h literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f4eb30e089e6ff934323d5f4a2bacf80da0082a7 GIT binary patch literal 22098 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 Qgy2)L|LZ5uo&4PY0BOD&!vFvP literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fb463093af3128e5fe1a8d3d32498e295e5e55b0 GIT binary patch literal 21773 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f085c83b2ece8e0980052166ac5d01daa20a5d20 GIT binary patch literal 20517 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c572a4b39a20eb55160162474dac52c269a35173 GIT binary patch literal 21718 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¥(-#M;fuW4oM_@L5^e&C1wkVs!r+l*rd~x2D6Wt~s%K z+Kd@j)l|)yQ#GTTg~xO?MOTmUGUt&w-(93fcQGSgyT|`>Eb#>oKAJtgbxHGhpQMWA zOPlK(ZY)T}ip7OOQ^ie-ZfKp{Jn4GI#_vzy`27hSPf+4;-PU;inP zoxkk-^)IRf#0#skFoEjQ5FsaB#Wka&cIH(oKDkFIw jvUX4)tBjyU)=DanRYp>ctQ{1{DkEr-wUP>STN(cgmQ~#E literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c2d42586219b5be1ec1477c7e27238dd019359a GIT binary patch literal 20693 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..513b03382538e7c96e05d116e572ffdfa6b99568 GIT binary patch literal 20533 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 OT{%OYI;Jb~!9M{4Y@XEs literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..880525dfff0161f5e428ee8aa8bf8855e72a913b GIT binary patch literal 3366 zcmeHJPj4GV6rY*>lr&v*K22X zOjYAtNKlXP5!z!fd&P(qeKkbT1l5k%00^k_^e@+@IJCw72$Vpq7aCrIoIFD?l`4nS5G zr8pEpJR{0+B*M5N{eOLyPA`+EtA}W$@Iq|Hh zHc0Kz4kR0?QB$d}HC03Eo2q|TDiB1-b<<8mH?`bx!D^cxhVhR<{9+EZ{RIu$Jc7!9`Z4$fE6Q1z5$rg=$;7cN~d`Xl=2>L+GhzNem z4~a|S5Mp03(eoE%t~#CfJF_ggchHWAez$WpE~4 zuKC8xh6AZo1lvr&c{lB9&dn@OnwjP;$TQvoHZv98R&s;4`omO9WjrM_sh?2eW-@8R zZ<*(YoIfE?FE8reU~$kLEDX~@vvp63h5Kt#CJP&#b$xztu8q1y{;fgs)A2Vd=q9Xp;hX`9KAk`!2XWwOvnLbSouP+> zjphs2PFuay?Pm9F2i+MY&9pOYcI05{zG6`JELzqZ^auvl6n^%lcYuLhBxCxRZqhNm zOuqhnlR?(9d9vwfHYV$ib|F;GF#-~I>aXv%=1lLyuIiCSn*w7UtUF2CQ^Yh0$Cq?@hrL~4*_W;af}4uG!q>o(;X`lUw0CIwcU@t0Rt`Hd^a=NYzNn<-FM$k#me8kz)mA7}|`WoXNU7>?bl zayeJ z<<56=KVSQ8w0#jvz>fTn1!niI=)K!1)$%Z|PUCqfs z^K@S~6M(Cqw!1>6Ex8}4Y6nt(qW&I^*@Y~kE<@OSb`)T90XEkO=;%ZNvf}RA4E8@P zBc8(+{sK~6NZJ4Z literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..56fd295e951f3eb4f456b460d47c65b10dbfb71e GIT binary patch literal 2229 zcma)7UvC>l5Z~SVle2Sn)1-e=0mXm{G9nExNUc;5kc2i8bx`c^a1vTB-nDbi`Oeu} z1F_r}lB!R9hnTm%^9lGE`^r#C1&NrTkt43X zARTJ=Ek&;7J>ee)ktcmIBZ5P6K%*JpOQLM~K+KBpkVGX>5mopvzaTD&X2H`rbL;6a z)ydcUT3+yVR4dn@U9PmMMw?mprUZHCq!*t6qluOyp`A%?YWO``gGBQV;CC-XH9%5*YsodJzC2be{U~ zjo!UHe)msL(#AYFZOEU6@DT{7Av|IeLLqEDN8LqwCcElB$nI1Y5ax3sWeqh0HtN1Y zkERjylmw^MEDm7)s}RUbssI5*RguggxsGHW$P)Ad=MY+j-|A0`!dr~tSOZ%wE)wmZk+jI!jo|GEbhzC(3nje;%nDxbICQmw6CiZVuzFe0Xm6t8Vvn?gfBg3gd;?STKl+y;>c3h4Tpi=Z_Xp8oLv45Nu9Iz$4)-5~R1ub6jz% zr@}p1&+Pgeu=h={{MxR(H6h3y-JYQB#a&muKJ^Xc8vuK+F?#P_QG?$UNVT0r*8uLh zs>Qmt4K)dLHjNdg(W_%<^*hE>a2e7#smyFHn{p<9(Y(N#s<3JrZ*6mPW7GI)-t9tR z@PynRcGYcAsYN6RGvhZlTKwsn@uw?|zus!19DK8})mY{0E#oy?Uv0L`LRUg587c*7 zYD)@kjIgjEGHypo0hP*@^wR2DYi*^q-gs=Tb#u*SmJho-T*NvyRcj~DI*E{3TblXi zla0;R%2tcFo@}mx@a<~dvtTp<9v=Ksh9;2yCw0y45MXk1bio4T3?=GA@aS{s#RDLO z&cRov0d=9)vtyS97QIu7<5fD(7AZUSohl1qW_Zk4z(#Lf0VzD>8&EB;FKq7FEVYx*?Q(XLCU`VG(ieAeE6nJS&N=@8 D-O?92 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4dcd2b0b30807a4bc6a164671ca7e4a1e0466e77 GIT binary patch literal 1094 zcmZ8fOK%e~5VrS`$L^+~;UP|lYmnNA0#Yj>gc=~Ch^Qj1koIDdwUZ|GCR^`@3X}s< zihANdz_EYH;>L-8fH*PZENNP=W;8Rlcl>?d99AkGfp!1<>xZ93LVjVgx*SNJgQZ`< zal)x2F%2oj*pgOkhqj4r>BMg6n%I$rxEK~q?8;JH4$CGkNH6w7-^4{3#FemO;*wm8 zt6|l|WqBiB57#Ma5${88Zwk+-Q(bEwbyY`XEj5`Y`)bk?3aZ}W z!K>}dth4vJv&{ULht0kHWg4`0w;ny*TIRU@=G|r5+~0Y;vrN6+;o!+K!?OqP7ik3V zxw4QjTY(==fokQ18`hjeY@N2tbk}ombtxf7?;3ou=EAE zjAV31=GMrXQBJ>s44FMAnFHp66~KyMC9pD>Hz$MAj4*#jz6U=D5)56fHc;iu?s&lZ zLzw|{744?eL@4D$4_#txI38w308?JALqtZr#1 z6|%1a*u0>+%vdD5Y0B6I`P*t_aneYJ$;Nb?bfaUzH%^a)kQ*n1QMQw8_i?YmK8i7) zs73@bbCEUTUX%_{>qV!{t;W;yiA_ov`}zI%<{&HvEqv<>V7(s4Hy zjA@Utc*3U=Paf9SnLnwfP~`!yGzRc?HGMew4uM<`q;* odp#K6ynw2iOWA2&K?%)sS8y4Gh)b8AE{J)C^PD2yfL{CTf3V67L;wH) literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ae05d8cf04f1dffd6d8ecbed205f6dca35f4a10f GIT binary patch literal 16717 zcmeHN>rWd;5Vy^pu?^-K9(fS*AOt6IY0{=5QdKoj=LreIpi1|}b-e393WQ?Qw0y6s z{tx{J`rqX9eXUgK{)0Ass5`T_w|i@!@q-YzIZoc2-I?Fa?Ck7#ecVPmorrq`by!5;5}71)=y%K8WL=MfV<&u4=b_U=#_*ye^b3yfUNbw;r%DL4@6Kj* zhMcy}($j2KXXsgS24{7SoVBLZS=Ho`s#(zb3`Ae>{gx-K^W>a0O{ZAyou|`e3N2qC z=dFvxB;(8$1M`6S;T`&X#BISZ&_2yBg(swhr<^B7J)Oe) zS#rs`N|~>8mR=>7(fc_vV`W@C$f+^zAy-I0nI%`5Rj_UzF*_et*QNA*YsSV~?V}wr zS4D5L_E{~4t5qaqCS0xJgnT<#7Ja;gj&|;3wpA2ccf4A~sq*BC+G~dH$fmEtG-C~9 z%CD_!WX`%yGbBT=(d*6gV`AeC&T9d69aEmGp1g@3P+VGW}LcMKA2{W}C(_XjaSHlMD0@lNzho0L-^58wcYu2>!L)I0=9a zc}>d-S~n>X4tuhto(3?^;o-my3Dz9kx{!65lu~rPdaE46WZV!4T?d{p+UC;gosaME zV&r}W*-(~4RDO-K@ex5B`Po>5iL5p+P zZN7+OCBlN!l}|If^BHUC)v-PORtsm~CWj4e$L}xR`sn7Z_p@RKhNewMSR$J*ky@-U z;(^~_QaDiLBpA|-kZNb8J6RA|wFc9pN)$Ydb&h(K#Zs47U+W+^U z*WMT8VPa$bUiRiEi@91!PYC~IBqWz};c1lRjQkb~sdo|$e|GZ!YS#Ob)D9&l)|C%5 zyOWaDt2-Zp;Coo|wXD{uVJPhqHp042AB>GRYMg$MOM}RyXdH-;gAU24O#l~dfWFL- zayXSjlEQS=@>AxbOc8G}9B}>6gz~)bB$KsGx_huw*@xH1?Zo24`?m{A%X!<(t*t#> zv(5ba-L-W){%}2CSjpMF$j`6aqg?R8-L=AU?nz<&?&5OJPIK-`Vdd!;xn(|%3cCy~5CWig!K_MaFi9Gvpf#6=G7<7~m`GIN96|mICQvTLrj$3tUuquZA z;6WkbgD)#^MhiF$*MWnCfWtTZ0(TlIaGDSKfoaZlVZTK7A3%mf^X9Yp>dxN$-qv3B zV0W)r`kIpLt4&I`v)?>_QN6RbPzK(7;aj>(UhdDsyUc`E=Xai!DwUlN_P)0hpYFUQ z2ix?sb4*)hmF0cEVaym2xMJ8cD$4s_tM~sl;zleMb+5nT31dvf$52yDM}hW}82jDm z)4ZDjkGNMjC*6yNeHN9d7a1O*KaGTLL7jh{dH!RV^$-wq*RzH`)X}K>q~qTh$@&&C z0?ca7TId?;T2LaP%fB%OG>fyIEgm-=q4#U^%3V1gr+QHU3tkLyrDTs$Y!2!LE6Fbx zrS#F)Ka7+%2QPO3*VqHp;A#Z@Xv4GM+V%LZ=U(59Y#k3!FOML2uW78=XL?kd>T~ac rXDFiFI0B9ETtg>#9@F}Hd$j*N-i_^pOnv>x;cKAB^EYEk&6$4zfEA=8 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c34a3b5d533855b87a0c32013cdfa49c1ba14d41 GIT binary patch literal 3102 zcmb_e%WoUU8K2n~mru*GVn>!;5QSZYKx{ef!AX!*aU@z&B2$J)2kipEgxVP`ms~zH zyR;y6d9n(lw;tP`q~3JNAJIQ!ZbeSMBsm5F0{8o7DN9PKTV^ree)FF1`I~3ua)Cgp zzWnP~KinYX8*H2}d1!nBHU1M2PB@K7pL&!MZg4X)`le@U-ioZg?b&_DbNV?iM~R@^ z<_^zsm*;tb7kMejy)Zm?mGCmJ91>m;<_puy^D9kKn|TGhlNwcpLAx(_G9E?Z70tTJ z%bm7tisY#rZVOp6)m7|h`-zat?L-7axvxq%7!HDF0zGQBDR#$V;ERp0C!(-39CCHN z3B!^2bUzW({hkcDh*Zgk&0>)-JXpC=dk~DvbddG+((B3o zDD>MA8x7+y37-ol+etW7vppe3tR4Gd$Rd%zJ!9pzqfw{5EfOCEJzuP8Bi;r^5RY== z8Jv11H$01*p3N=K;n!Z09g504%zHV_gHjJ&&lP!8?IC$Vy#nxBwZIqo6+UxFyb{04 zXW?IdNi5=3K-F{V#xGQnsrJ<;aDx!$kzhxcZbpNnHoT?)C6jC0@Tqor>U!HUeiKKj*7UBlO{Q#jao_B@pvSpoPn*C z%UC!F6ULM?)qI{w@f_4DxGHJGv5|HTRb){+PBNRRGKEOWNZv-01EOXF461RT`B{*LB9`+wdK1Y4l3PGdsQeA`zeREf z$z3G4*(0cN2?%Haq@O|gjf2~lNv;j|3$gK<%eWC9o02Y(6{KC-#Fl}76id#+aLtsE z0*S<&C*MNy4ibH79dQ3nXBctVtadx|kO~~8ZtjE;n1(nc=-tg%vmyxypwf` zoW;D3>g%|X4ssnr=tnBQQg79lTkDNg0G>}-y|MXhb&YM+H&|kG+--Oez&d$O304LK8u&dY(iu$W1XVb@U(6bxhZ zFCDrYz;Fy!aC&a^EV%}*3284ey5_vj@LjTiL1T681%g2hyn~s)o6FkV?Afr&!ZC1O zyAk|l?(5b69vm*|+#kRJP`+OZuygL~@0MzAmfN)hXbf;q?U?yv8Rlm$gXzC!WG0~U zXS$T{!RX(h#^_H3)QF0+UK`W_1)L~FGW(?j&j>e zleCv1881t+UXJ9vJjr_nQqX*iKk|yCsO>mk^VZ3_wiEoZS0W{hn#fJMsSn6aF+4NL zhHE>hoc_hA(J??G7Zu4>GK zVa`4Oi82@>*hR#+Mc3HHuJIvG%v)q3VyUj0GV9b2oTXlNq0OHM$TO=x2g9%$%sE0Ga(8pRT-yrFdPJw3P@k% z0pdX9eHKt}Pazz3l3J?Q;f`|wJltri~jbv;dL`DQtk;|5} ze8#V3y04$a{0zCqN4-I}!|B86;+ug#S)KiaWrET!@Ay8YpU}U}O5lwve#z3%-I?2T*Jz*XoQHgrd#(p3-CWkJQi>iRu+rD1~G<9DK{60WGvf2jcB z431(88_4+2vgZFr6e}+lRm{pS0=@yif1+!@mR5AL{khuZ2vmO9@ff8tNukga4z^9{ zYjx9*(V58f{E}V9x$4u`DyI-YxZ)cCXyvy0d_zGTYyY&oDGP8*Rqmw=3RoiTu)g7) zb?aq;cZR*I3Ga2ppfl8+zwe~X0NWFc-Gt1d+cFDG7%rqhJ|qXTV&eOYSXv}nE?PZW zM_NK4E18D%LBBHyV}Nj^juA}6&A{)6(^^Vd)w1wf^Ypc7p#)2{(N%)l$oNaOR~7fW WuaxJ*G8@}CXXLPLKDEHM&Hn**KdavW literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b8ba79602fd490c2f34eb1dafbc05857869082f9 GIT binary patch literal 2450 zcmZ`5%WfMtkmNqJl2@{0*RP@|9H2P}ZQ>q!NP(beV!N?}SPm@Z&;<%+Ez+{&-IdH; zwXvX_v#)Y6@U?=k8Vo)@&8JIz%4q@T6B$>Su9F4J}jxD~|hbdyZJ&gQnuxXtT_{P1XZ z?|GGJA8E{<*8cQyL#PQ{-D=i!mA(K#l7I>luy^E?3M$x@7gz?igblDQ9pMP~ii~LB z0&K(vxFCw6bVUMBEC?Uw;yYrKpag0t>k=}T%iKhj%o@T-8+-Z#3>nGjkc`-vO$a5K zmDwX$b0>301m;5KnYlP5;}V__q)tB2T6IA?X}>3xD#9b$f*8l79D|q3y4u_;;<=RADDSW+Zs|A>huGA7ji#XiDVFia( z9M*6^?03*p)ENP;21_@ld|;IF88c|q9lYbg0OU!B&ImI@N&Bb*&?isASmtyM$s4-s zaP@n9gTX-9V1172{N?{AjtmPRTxB)wJqvqb0v60AGlJeGsJ$pmTK%vk(Fk-b&;}x^AhxP`<%v;3T6GjpDMUKnYKrufJ91Ck5PHhl?oE-Y>o;hVsz}Xutyh4RL z<$xIuR)PPubM~I9eM4b=0umxT-k2a4o98yJXHvq>D%h@28{EB@Zow}Pl&!ONwgpkz zRa;@UbprVmaMx%Fgkl8GwAzAhz@HhGHaR-u1tXYcs< z=vcc^x7CtLJ3^lHTMGS8ZQ_9D)o$&m!4LPeo8Q##L8Fdq@0X*OwOxMD&`!Pa__(20 zTHw{qzEU!Q8N3__>k@}dkuP)qw@;-M3hEP(H>~L5?p|YWr*Tkwsux?`jLW3kZ=G=w zW}&W_H@nGcTgap-^>Tgx=(w@-vcVhs$9u4NzFT$FGQQ@aN`ObDX&a(!n(Ews)wgi*A@p<~211wM!_;F#_GX`KhDj(-MI|#==o-cSWwrscYhVLe6;`1>_3;iH zEY1ZiN_#6%(L&fw*nABDn463#xG;tTGZ4#6*o@dLci4HB+J@t~>Z~|?UA1z-K~_@` zIn1ZppXPS6`menBz^~9#EDHo=D$&8_9JjZ%4V49|3Faxz!H_)eihhK!&-q0^jBXU4?GnLQFb}!L#Sefbai=JHkvYupgi4}!sK0(arubp+l-bh?A~3I zvuo9gUW`wsc`%O*g|4rcbCVmNit~RHrUXJo!=f`+@$w?*c6!Yud!1K37oJR^JeqRp l$fO^q#`{g2DV8yCg6X$p{R5{MM(_Xt literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b1653f4806627c93f5c8998d2659cadb8c7e1095 GIT binary patch literal 5794 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 PXp0RE;Ro9%|5E=0J7pLj literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..09c0a90284c2588e7946321c513bd979eb70e197 GIT binary patch literal 1955 zcma)7OHU(55bmCr$7T!!R(VKK6m6u994(+6qJR{I?Al&H0()hf%SchjOt+2gnZfjo zlVF(>MBMh29{|U_>`%!L=u@JcI3?$tQq^OF*(6d%>T*@Ts_N^i&xgfgfx!3i)lc93 z0^09r%zqXb-@r(AL2$xpNFwS}inH3z|EpCHu3x_*A zcS$a&p99_Hd9Ay=z!xqFq~P%){1&c=Mf?RwXHgX}ge-|}=I+<+0CSvusAC{FlFvY- zB&8E_VO$$Ggp$-utqZW3%?U_nLauW-&k0;lYb96N$!I8~%)wFRGS-WGDPz(GQ#v@8 z4>U9^iByrrqliUEEC6s5WlNEW^fgshBEk;*<{1mZc9Jmmn*8;ABaMa|!`^Uh6c5|M zK=8F6j)e%DLha)nU#=@xGqK}d-(U*opdZ=L;%LNog6iX=HL9v1Y zw>*WBAXZs~N^EsHWz`Xm`d>-a4eM{j6U>n$IS){+f zjW3Bo*aDmg`u@_ulCNg>;SK=YtleVJQuD>Keq~jN#g8dVkRc>y zpzLa+QEy1>E#=heEp|{{m*bTtxrw(OD|M zw^THMT9`Jaj`giVu{uKVEjW{W1cFePdeAs7w9ZT}(q+Sgc5;pJ(p>T2xd%mq2x0R2 zDc3>a^c-5I4-`Eh^2r2sZLg9oa!$E9q3;8+OrWB5Q(3j{o1NdrkKX*TeTxk;rLaG@ zOGbuBv0kgP^6s++d)cTzhgqGfGm69BKxD0O*8uV{+^`QL(f=&ef^?QKg%9RZc!+1o zLrTMbVN4Ymi%$3`MBQWTbkq*B6ak#6RTxz9)Do(pKBRq*{D_a1^Cc5OZ8eGYq sT9;0g{cCA3)0WL{dP@qrDSOZcNE3gs_P2swIadvpExBs4Z2fR)7V8&7!#iQ_dAm9&koY7z86++Fa@poM8c{1s0n#*dthk z^FKPyIA%qdNZt?Do&9ha4l5K+`hL}oVL9ImkrNX{>ZmatHQMf>YWwInuVYl_>pSqf GKKcQ>^L&v2 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/big5freq.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/big5freq.py new file mode 100644 index 00000000..38f32517 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/big5freq.py @@ -0,0 +1,386 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# Big5 frequency table +# by Taiwan's Mandarin Promotion Council +# +# +# 128 --> 0.42261 +# 256 --> 0.57851 +# 512 --> 0.74851 +# 1024 --> 0.89384 +# 2048 --> 0.97583 +# +# Ideal Distribution Ratio = 0.74851/(1-0.74851) =2.98 +# Random Distribution Ration = 512/(5401-512)=0.105 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher than RDR + +BIG5_TYPICAL_DISTRIBUTION_RATIO = 0.75 + +#Char to FreqOrder table +BIG5_TABLE_SIZE = 5376 + +BIG5_CHAR_TO_FREQ_ORDER = ( + 1,1801,1506, 255,1431, 198, 9, 82, 6,5008, 177, 202,3681,1256,2821, 110, # 16 +3814, 33,3274, 261, 76, 44,2114, 16,2946,2187,1176, 659,3971, 26,3451,2653, # 32 +1198,3972,3350,4202, 410,2215, 302, 590, 361,1964, 8, 204, 58,4510,5009,1932, # 48 + 63,5010,5011, 317,1614, 75, 222, 159,4203,2417,1480,5012,3555,3091, 224,2822, # 64 +3682, 3, 10,3973,1471, 29,2787,1135,2866,1940, 873, 130,3275,1123, 312,5013, # 80 +4511,2052, 507, 252, 682,5014, 142,1915, 124, 206,2947, 34,3556,3204, 64, 604, # 96 +5015,2501,1977,1978, 155,1991, 645, 641,1606,5016,3452, 337, 72, 406,5017, 80, # 112 + 630, 238,3205,1509, 263, 939,1092,2654, 756,1440,1094,3453, 449, 69,2987, 591, # 128 + 179,2096, 471, 115,2035,1844, 60, 50,2988, 134, 806,1869, 734,2036,3454, 180, # 144 + 995,1607, 156, 537,2907, 688,5018, 319,1305, 779,2145, 514,2379, 298,4512, 359, # 160 +2502, 90,2716,1338, 663, 11, 906,1099,2553, 20,2441, 182, 532,1716,5019, 732, # 176 +1376,4204,1311,1420,3206, 25,2317,1056, 113, 399, 382,1950, 242,3455,2474, 529, # 192 +3276, 475,1447,3683,5020, 117, 21, 656, 810,1297,2300,2334,3557,5021, 126,4205, # 208 + 706, 456, 150, 613,4513, 71,1118,2037,4206, 145,3092, 85, 835, 486,2115,1246, # 224 +1426, 428, 727,1285,1015, 800, 106, 623, 303,1281,5022,2128,2359, 347,3815, 221, # 240 +3558,3135,5023,1956,1153,4207, 83, 296,1199,3093, 192, 624, 93,5024, 822,1898, # 256 +2823,3136, 795,2065, 991,1554,1542,1592, 27, 43,2867, 859, 139,1456, 860,4514, # 272 + 437, 712,3974, 164,2397,3137, 695, 211,3037,2097, 195,3975,1608,3559,3560,3684, # 288 +3976, 234, 811,2989,2098,3977,2233,1441,3561,1615,2380, 668,2077,1638, 305, 228, # 304 +1664,4515, 467, 415,5025, 262,2099,1593, 239, 108, 300, 200,1033, 512,1247,2078, # 320 +5026,5027,2176,3207,3685,2682, 593, 845,1062,3277, 88,1723,2038,3978,1951, 212, # 336 + 266, 152, 149, 468,1899,4208,4516, 77, 187,5028,3038, 37, 5,2990,5029,3979, # 352 +5030,5031, 39,2524,4517,2908,3208,2079, 55, 148, 74,4518, 545, 483,1474,1029, # 368 +1665, 217,1870,1531,3138,1104,2655,4209, 24, 172,3562, 900,3980,3563,3564,4519, # 384 + 32,1408,2824,1312, 329, 487,2360,2251,2717, 784,2683, 4,3039,3351,1427,1789, # 400 + 188, 109, 499,5032,3686,1717,1790, 888,1217,3040,4520,5033,3565,5034,3352,1520, # 416 +3687,3981, 196,1034, 775,5035,5036, 929,1816, 249, 439, 38,5037,1063,5038, 794, # 432 +3982,1435,2301, 46, 178,3278,2066,5039,2381,5040, 214,1709,4521, 804, 35, 707, # 448 + 324,3688,1601,2554, 140, 459,4210,5041,5042,1365, 839, 272, 978,2262,2580,3456, # 464 +2129,1363,3689,1423, 697, 100,3094, 48, 70,1231, 495,3139,2196,5043,1294,5044, # 480 +2080, 462, 586,1042,3279, 853, 256, 988, 185,2382,3457,1698, 434,1084,5045,3458, # 496 + 314,2625,2788,4522,2335,2336, 569,2285, 637,1817,2525, 757,1162,1879,1616,3459, # 512 + 287,1577,2116, 768,4523,1671,2868,3566,2526,1321,3816, 909,2418,5046,4211, 933, # 528 +3817,4212,2053,2361,1222,4524, 765,2419,1322, 786,4525,5047,1920,1462,1677,2909, # 544 +1699,5048,4526,1424,2442,3140,3690,2600,3353,1775,1941,3460,3983,4213, 309,1369, # 560 +1130,2825, 364,2234,1653,1299,3984,3567,3985,3986,2656, 525,1085,3041, 902,2001, # 576 +1475, 964,4527, 421,1845,1415,1057,2286, 940,1364,3141, 376,4528,4529,1381, 7, # 592 +2527, 983,2383, 336,1710,2684,1846, 321,3461, 559,1131,3042,2752,1809,1132,1313, # 608 + 265,1481,1858,5049, 352,1203,2826,3280, 167,1089, 420,2827, 776, 792,1724,3568, # 624 +4214,2443,3281,5050,4215,5051, 446, 229, 333,2753, 901,3818,1200,1557,4530,2657, # 640 +1921, 395,2754,2685,3819,4216,1836, 125, 916,3209,2626,4531,5052,5053,3820,5054, # 656 +5055,5056,4532,3142,3691,1133,2555,1757,3462,1510,2318,1409,3569,5057,2146, 438, # 672 +2601,2910,2384,3354,1068, 958,3043, 461, 311,2869,2686,4217,1916,3210,4218,1979, # 688 + 383, 750,2755,2627,4219, 274, 539, 385,1278,1442,5058,1154,1965, 384, 561, 210, # 704 + 98,1295,2556,3570,5059,1711,2420,1482,3463,3987,2911,1257, 129,5060,3821, 642, # 720 + 523,2789,2790,2658,5061, 141,2235,1333, 68, 176, 441, 876, 907,4220, 603,2602, # 736 + 710, 171,3464, 404, 549, 18,3143,2398,1410,3692,1666,5062,3571,4533,2912,4534, # 752 +5063,2991, 368,5064, 146, 366, 99, 871,3693,1543, 748, 807,1586,1185, 22,2263, # 768 + 379,3822,3211,5065,3212, 505,1942,2628,1992,1382,2319,5066, 380,2362, 218, 702, # 784 +1818,1248,3465,3044,3572,3355,3282,5067,2992,3694, 930,3283,3823,5068, 59,5069, # 800 + 585, 601,4221, 497,3466,1112,1314,4535,1802,5070,1223,1472,2177,5071, 749,1837, # 816 + 690,1900,3824,1773,3988,1476, 429,1043,1791,2236,2117, 917,4222, 447,1086,1629, # 832 +5072, 556,5073,5074,2021,1654, 844,1090, 105, 550, 966,1758,2828,1008,1783, 686, # 848 +1095,5075,2287, 793,1602,5076,3573,2603,4536,4223,2948,2302,4537,3825, 980,2503, # 864 + 544, 353, 527,4538, 908,2687,2913,5077, 381,2629,1943,1348,5078,1341,1252, 560, # 880 +3095,5079,3467,2870,5080,2054, 973, 886,2081, 143,4539,5081,5082, 157,3989, 496, # 896 +4224, 57, 840, 540,2039,4540,4541,3468,2118,1445, 970,2264,1748,1966,2082,4225, # 912 +3144,1234,1776,3284,2829,3695, 773,1206,2130,1066,2040,1326,3990,1738,1725,4226, # 928 + 279,3145, 51,1544,2604, 423,1578,2131,2067, 173,4542,1880,5083,5084,1583, 264, # 944 + 610,3696,4543,2444, 280, 154,5085,5086,5087,1739, 338,1282,3096, 693,2871,1411, # 960 +1074,3826,2445,5088,4544,5089,5090,1240, 952,2399,5091,2914,1538,2688, 685,1483, # 976 +4227,2475,1436, 953,4228,2055,4545, 671,2400, 79,4229,2446,3285, 608, 567,2689, # 992 +3469,4230,4231,1691, 393,1261,1792,2401,5092,4546,5093,5094,5095,5096,1383,1672, # 1008 +3827,3213,1464, 522,1119, 661,1150, 216, 675,4547,3991,1432,3574, 609,4548,2690, # 1024 +2402,5097,5098,5099,4232,3045, 0,5100,2476, 315, 231,2447, 301,3356,4549,2385, # 1040 +5101, 233,4233,3697,1819,4550,4551,5102, 96,1777,1315,2083,5103, 257,5104,1810, # 1056 +3698,2718,1139,1820,4234,2022,1124,2164,2791,1778,2659,5105,3097, 363,1655,3214, # 1072 +5106,2993,5107,5108,5109,3992,1567,3993, 718, 103,3215, 849,1443, 341,3357,2949, # 1088 +1484,5110,1712, 127, 67, 339,4235,2403, 679,1412, 821,5111,5112, 834, 738, 351, # 1104 +2994,2147, 846, 235,1497,1881, 418,1993,3828,2719, 186,1100,2148,2756,3575,1545, # 1120 +1355,2950,2872,1377, 583,3994,4236,2581,2995,5113,1298,3699,1078,2557,3700,2363, # 1136 + 78,3829,3830, 267,1289,2100,2002,1594,4237, 348, 369,1274,2197,2178,1838,4552, # 1152 +1821,2830,3701,2757,2288,2003,4553,2951,2758, 144,3358, 882,4554,3995,2759,3470, # 1168 +4555,2915,5114,4238,1726, 320,5115,3996,3046, 788,2996,5116,2831,1774,1327,2873, # 1184 +3997,2832,5117,1306,4556,2004,1700,3831,3576,2364,2660, 787,2023, 506, 824,3702, # 1200 + 534, 323,4557,1044,3359,2024,1901, 946,3471,5118,1779,1500,1678,5119,1882,4558, # 1216 + 165, 243,4559,3703,2528, 123, 683,4239, 764,4560, 36,3998,1793, 589,2916, 816, # 1232 + 626,1667,3047,2237,1639,1555,1622,3832,3999,5120,4000,2874,1370,1228,1933, 891, # 1248 +2084,2917, 304,4240,5121, 292,2997,2720,3577, 691,2101,4241,1115,4561, 118, 662, # 1264 +5122, 611,1156, 854,2386,1316,2875, 2, 386, 515,2918,5123,5124,3286, 868,2238, # 1280 +1486, 855,2661, 785,2216,3048,5125,1040,3216,3578,5126,3146, 448,5127,1525,5128, # 1296 +2165,4562,5129,3833,5130,4242,2833,3579,3147, 503, 818,4001,3148,1568, 814, 676, # 1312 +1444, 306,1749,5131,3834,1416,1030, 197,1428, 805,2834,1501,4563,5132,5133,5134, # 1328 +1994,5135,4564,5136,5137,2198, 13,2792,3704,2998,3149,1229,1917,5138,3835,2132, # 1344 +5139,4243,4565,2404,3580,5140,2217,1511,1727,1120,5141,5142, 646,3836,2448, 307, # 1360 +5143,5144,1595,3217,5145,5146,5147,3705,1113,1356,4002,1465,2529,2530,5148, 519, # 1376 +5149, 128,2133, 92,2289,1980,5150,4003,1512, 342,3150,2199,5151,2793,2218,1981, # 1392 +3360,4244, 290,1656,1317, 789, 827,2365,5152,3837,4566, 562, 581,4004,5153, 401, # 1408 +4567,2252, 94,4568,5154,1399,2794,5155,1463,2025,4569,3218,1944,5156, 828,1105, # 1424 +4245,1262,1394,5157,4246, 605,4570,5158,1784,2876,5159,2835, 819,2102, 578,2200, # 1440 +2952,5160,1502, 436,3287,4247,3288,2836,4005,2919,3472,3473,5161,2721,2320,5162, # 1456 +5163,2337,2068, 23,4571, 193, 826,3838,2103, 699,1630,4248,3098, 390,1794,1064, # 1472 +3581,5164,1579,3099,3100,1400,5165,4249,1839,1640,2877,5166,4572,4573, 137,4250, # 1488 + 598,3101,1967, 780, 104, 974,2953,5167, 278, 899, 253, 402, 572, 504, 493,1339, # 1504 +5168,4006,1275,4574,2582,2558,5169,3706,3049,3102,2253, 565,1334,2722, 863, 41, # 1520 +5170,5171,4575,5172,1657,2338, 19, 463,2760,4251, 606,5173,2999,3289,1087,2085, # 1536 +1323,2662,3000,5174,1631,1623,1750,4252,2691,5175,2878, 791,2723,2663,2339, 232, # 1552 +2421,5176,3001,1498,5177,2664,2630, 755,1366,3707,3290,3151,2026,1609, 119,1918, # 1568 +3474, 862,1026,4253,5178,4007,3839,4576,4008,4577,2265,1952,2477,5179,1125, 817, # 1584 +4254,4255,4009,1513,1766,2041,1487,4256,3050,3291,2837,3840,3152,5180,5181,1507, # 1600 +5182,2692, 733, 40,1632,1106,2879, 345,4257, 841,2531, 230,4578,3002,1847,3292, # 1616 +3475,5183,1263, 986,3476,5184, 735, 879, 254,1137, 857, 622,1300,1180,1388,1562, # 1632 +4010,4011,2954, 967,2761,2665,1349, 592,2134,1692,3361,3003,1995,4258,1679,4012, # 1648 +1902,2188,5185, 739,3708,2724,1296,1290,5186,4259,2201,2202,1922,1563,2605,2559, # 1664 +1871,2762,3004,5187, 435,5188, 343,1108, 596, 17,1751,4579,2239,3477,3709,5189, # 1680 +4580, 294,3582,2955,1693, 477, 979, 281,2042,3583, 643,2043,3710,2631,2795,2266, # 1696 +1031,2340,2135,2303,3584,4581, 367,1249,2560,5190,3585,5191,4582,1283,3362,2005, # 1712 + 240,1762,3363,4583,4584, 836,1069,3153, 474,5192,2149,2532, 268,3586,5193,3219, # 1728 +1521,1284,5194,1658,1546,4260,5195,3587,3588,5196,4261,3364,2693,1685,4262, 961, # 1744 +1673,2632, 190,2006,2203,3841,4585,4586,5197, 570,2504,3711,1490,5198,4587,2633, # 1760 +3293,1957,4588, 584,1514, 396,1045,1945,5199,4589,1968,2449,5200,5201,4590,4013, # 1776 + 619,5202,3154,3294, 215,2007,2796,2561,3220,4591,3221,4592, 763,4263,3842,4593, # 1792 +5203,5204,1958,1767,2956,3365,3712,1174, 452,1477,4594,3366,3155,5205,2838,1253, # 1808 +2387,2189,1091,2290,4264, 492,5206, 638,1169,1825,2136,1752,4014, 648, 926,1021, # 1824 +1324,4595, 520,4596, 997, 847,1007, 892,4597,3843,2267,1872,3713,2405,1785,4598, # 1840 +1953,2957,3103,3222,1728,4265,2044,3714,4599,2008,1701,3156,1551, 30,2268,4266, # 1856 +5207,2027,4600,3589,5208, 501,5209,4267, 594,3478,2166,1822,3590,3479,3591,3223, # 1872 + 829,2839,4268,5210,1680,3157,1225,4269,5211,3295,4601,4270,3158,2341,5212,4602, # 1888 +4271,5213,4015,4016,5214,1848,2388,2606,3367,5215,4603, 374,4017, 652,4272,4273, # 1904 + 375,1140, 798,5216,5217,5218,2366,4604,2269, 546,1659, 138,3051,2450,4605,5219, # 1920 +2254, 612,1849, 910, 796,3844,1740,1371, 825,3845,3846,5220,2920,2562,5221, 692, # 1936 + 444,3052,2634, 801,4606,4274,5222,1491, 244,1053,3053,4275,4276, 340,5223,4018, # 1952 +1041,3005, 293,1168, 87,1357,5224,1539, 959,5225,2240, 721, 694,4277,3847, 219, # 1968 +1478, 644,1417,3368,2666,1413,1401,1335,1389,4019,5226,5227,3006,2367,3159,1826, # 1984 + 730,1515, 184,2840, 66,4607,5228,1660,2958, 246,3369, 378,1457, 226,3480, 975, # 2000 +4020,2959,1264,3592, 674, 696,5229, 163,5230,1141,2422,2167, 713,3593,3370,4608, # 2016 +4021,5231,5232,1186, 15,5233,1079,1070,5234,1522,3224,3594, 276,1050,2725, 758, # 2032 +1126, 653,2960,3296,5235,2342, 889,3595,4022,3104,3007, 903,1250,4609,4023,3481, # 2048 +3596,1342,1681,1718, 766,3297, 286, 89,2961,3715,5236,1713,5237,2607,3371,3008, # 2064 +5238,2962,2219,3225,2880,5239,4610,2505,2533, 181, 387,1075,4024, 731,2190,3372, # 2080 +5240,3298, 310, 313,3482,2304, 770,4278, 54,3054, 189,4611,3105,3848,4025,5241, # 2096 +1230,1617,1850, 355,3597,4279,4612,3373, 111,4280,3716,1350,3160,3483,3055,4281, # 2112 +2150,3299,3598,5242,2797,4026,4027,3009, 722,2009,5243,1071, 247,1207,2343,2478, # 2128 +1378,4613,2010, 864,1437,1214,4614, 373,3849,1142,2220, 667,4615, 442,2763,2563, # 2144 +3850,4028,1969,4282,3300,1840, 837, 170,1107, 934,1336,1883,5244,5245,2119,4283, # 2160 +2841, 743,1569,5246,4616,4284, 582,2389,1418,3484,5247,1803,5248, 357,1395,1729, # 2176 +3717,3301,2423,1564,2241,5249,3106,3851,1633,4617,1114,2086,4285,1532,5250, 482, # 2192 +2451,4618,5251,5252,1492, 833,1466,5253,2726,3599,1641,2842,5254,1526,1272,3718, # 2208 +4286,1686,1795, 416,2564,1903,1954,1804,5255,3852,2798,3853,1159,2321,5256,2881, # 2224 +4619,1610,1584,3056,2424,2764, 443,3302,1163,3161,5257,5258,4029,5259,4287,2506, # 2240 +3057,4620,4030,3162,2104,1647,3600,2011,1873,4288,5260,4289, 431,3485,5261, 250, # 2256 + 97, 81,4290,5262,1648,1851,1558, 160, 848,5263, 866, 740,1694,5264,2204,2843, # 2272 +3226,4291,4621,3719,1687, 950,2479, 426, 469,3227,3720,3721,4031,5265,5266,1188, # 2288 + 424,1996, 861,3601,4292,3854,2205,2694, 168,1235,3602,4293,5267,2087,1674,4622, # 2304 +3374,3303, 220,2565,1009,5268,3855, 670,3010, 332,1208, 717,5269,5270,3603,2452, # 2320 +4032,3375,5271, 513,5272,1209,2882,3376,3163,4623,1080,5273,5274,5275,5276,2534, # 2336 +3722,3604, 815,1587,4033,4034,5277,3605,3486,3856,1254,4624,1328,3058,1390,4035, # 2352 +1741,4036,3857,4037,5278, 236,3858,2453,3304,5279,5280,3723,3859,1273,3860,4625, # 2368 +5281, 308,5282,4626, 245,4627,1852,2480,1307,2583, 430, 715,2137,2454,5283, 270, # 2384 + 199,2883,4038,5284,3606,2727,1753, 761,1754, 725,1661,1841,4628,3487,3724,5285, # 2400 +5286, 587, 14,3305, 227,2608, 326, 480,2270, 943,2765,3607, 291, 650,1884,5287, # 2416 +1702,1226, 102,1547, 62,3488, 904,4629,3489,1164,4294,5288,5289,1224,1548,2766, # 2432 + 391, 498,1493,5290,1386,1419,5291,2056,1177,4630, 813, 880,1081,2368, 566,1145, # 2448 +4631,2291,1001,1035,2566,2609,2242, 394,1286,5292,5293,2069,5294, 86,1494,1730, # 2464 +4039, 491,1588, 745, 897,2963, 843,3377,4040,2767,2884,3306,1768, 998,2221,2070, # 2480 + 397,1827,1195,1970,3725,3011,3378, 284,5295,3861,2507,2138,2120,1904,5296,4041, # 2496 +2151,4042,4295,1036,3490,1905, 114,2567,4296, 209,1527,5297,5298,2964,2844,2635, # 2512 +2390,2728,3164, 812,2568,5299,3307,5300,1559, 737,1885,3726,1210, 885, 28,2695, # 2528 +3608,3862,5301,4297,1004,1780,4632,5302, 346,1982,2222,2696,4633,3863,1742, 797, # 2544 +1642,4043,1934,1072,1384,2152, 896,4044,3308,3727,3228,2885,3609,5303,2569,1959, # 2560 +4634,2455,1786,5304,5305,5306,4045,4298,1005,1308,3728,4299,2729,4635,4636,1528, # 2576 +2610, 161,1178,4300,1983, 987,4637,1101,4301, 631,4046,1157,3229,2425,1343,1241, # 2592 +1016,2243,2570, 372, 877,2344,2508,1160, 555,1935, 911,4047,5307, 466,1170, 169, # 2608 +1051,2921,2697,3729,2481,3012,1182,2012,2571,1251,2636,5308, 992,2345,3491,1540, # 2624 +2730,1201,2071,2406,1997,2482,5309,4638, 528,1923,2191,1503,1874,1570,2369,3379, # 2640 +3309,5310, 557,1073,5311,1828,3492,2088,2271,3165,3059,3107, 767,3108,2799,4639, # 2656 +1006,4302,4640,2346,1267,2179,3730,3230, 778,4048,3231,2731,1597,2667,5312,4641, # 2672 +5313,3493,5314,5315,5316,3310,2698,1433,3311, 131, 95,1504,4049, 723,4303,3166, # 2688 +1842,3610,2768,2192,4050,2028,2105,3731,5317,3013,4051,1218,5318,3380,3232,4052, # 2704 +4304,2584, 248,1634,3864, 912,5319,2845,3732,3060,3865, 654, 53,5320,3014,5321, # 2720 +1688,4642, 777,3494,1032,4053,1425,5322, 191, 820,2121,2846, 971,4643, 931,3233, # 2736 + 135, 664, 783,3866,1998, 772,2922,1936,4054,3867,4644,2923,3234, 282,2732, 640, # 2752 +1372,3495,1127, 922, 325,3381,5323,5324, 711,2045,5325,5326,4055,2223,2800,1937, # 2768 +4056,3382,2224,2255,3868,2305,5327,4645,3869,1258,3312,4057,3235,2139,2965,4058, # 2784 +4059,5328,2225, 258,3236,4646, 101,1227,5329,3313,1755,5330,1391,3314,5331,2924, # 2800 +2057, 893,5332,5333,5334,1402,4305,2347,5335,5336,3237,3611,5337,5338, 878,1325, # 2816 +1781,2801,4647, 259,1385,2585, 744,1183,2272,4648,5339,4060,2509,5340, 684,1024, # 2832 +4306,5341, 472,3612,3496,1165,3315,4061,4062, 322,2153, 881, 455,1695,1152,1340, # 2848 + 660, 554,2154,4649,1058,4650,4307, 830,1065,3383,4063,4651,1924,5342,1703,1919, # 2864 +5343, 932,2273, 122,5344,4652, 947, 677,5345,3870,2637, 297,1906,1925,2274,4653, # 2880 +2322,3316,5346,5347,4308,5348,4309, 84,4310, 112, 989,5349, 547,1059,4064, 701, # 2896 +3613,1019,5350,4311,5351,3497, 942, 639, 457,2306,2456, 993,2966, 407, 851, 494, # 2912 +4654,3384, 927,5352,1237,5353,2426,3385, 573,4312, 680, 921,2925,1279,1875, 285, # 2928 + 790,1448,1984, 719,2168,5354,5355,4655,4065,4066,1649,5356,1541, 563,5357,1077, # 2944 +5358,3386,3061,3498, 511,3015,4067,4068,3733,4069,1268,2572,3387,3238,4656,4657, # 2960 +5359, 535,1048,1276,1189,2926,2029,3167,1438,1373,2847,2967,1134,2013,5360,4313, # 2976 +1238,2586,3109,1259,5361, 700,5362,2968,3168,3734,4314,5363,4315,1146,1876,1907, # 2992 +4658,2611,4070, 781,2427, 132,1589, 203, 147, 273,2802,2407, 898,1787,2155,4071, # 3008 +4072,5364,3871,2803,5365,5366,4659,4660,5367,3239,5368,1635,3872, 965,5369,1805, # 3024 +2699,1516,3614,1121,1082,1329,3317,4073,1449,3873, 65,1128,2848,2927,2769,1590, # 3040 +3874,5370,5371, 12,2668, 45, 976,2587,3169,4661, 517,2535,1013,1037,3240,5372, # 3056 +3875,2849,5373,3876,5374,3499,5375,2612, 614,1999,2323,3877,3110,2733,2638,5376, # 3072 +2588,4316, 599,1269,5377,1811,3735,5378,2700,3111, 759,1060, 489,1806,3388,3318, # 3088 +1358,5379,5380,2391,1387,1215,2639,2256, 490,5381,5382,4317,1759,2392,2348,5383, # 3104 +4662,3878,1908,4074,2640,1807,3241,4663,3500,3319,2770,2349, 874,5384,5385,3501, # 3120 +3736,1859, 91,2928,3737,3062,3879,4664,5386,3170,4075,2669,5387,3502,1202,1403, # 3136 +3880,2969,2536,1517,2510,4665,3503,2511,5388,4666,5389,2701,1886,1495,1731,4076, # 3152 +2370,4667,5390,2030,5391,5392,4077,2702,1216, 237,2589,4318,2324,4078,3881,4668, # 3168 +4669,2703,3615,3504, 445,4670,5393,5394,5395,5396,2771, 61,4079,3738,1823,4080, # 3184 +5397, 687,2046, 935, 925, 405,2670, 703,1096,1860,2734,4671,4081,1877,1367,2704, # 3200 +3389, 918,2106,1782,2483, 334,3320,1611,1093,4672, 564,3171,3505,3739,3390, 945, # 3216 +2641,2058,4673,5398,1926, 872,4319,5399,3506,2705,3112, 349,4320,3740,4082,4674, # 3232 +3882,4321,3741,2156,4083,4675,4676,4322,4677,2408,2047, 782,4084, 400, 251,4323, # 3248 +1624,5400,5401, 277,3742, 299,1265, 476,1191,3883,2122,4324,4325,1109, 205,5402, # 3264 +2590,1000,2157,3616,1861,5403,5404,5405,4678,5406,4679,2573, 107,2484,2158,4085, # 3280 +3507,3172,5407,1533, 541,1301, 158, 753,4326,2886,3617,5408,1696, 370,1088,4327, # 3296 +4680,3618, 579, 327, 440, 162,2244, 269,1938,1374,3508, 968,3063, 56,1396,3113, # 3312 +2107,3321,3391,5409,1927,2159,4681,3016,5410,3619,5411,5412,3743,4682,2485,5413, # 3328 +2804,5414,1650,4683,5415,2613,5416,5417,4086,2671,3392,1149,3393,4087,3884,4088, # 3344 +5418,1076, 49,5419, 951,3242,3322,3323, 450,2850, 920,5420,1812,2805,2371,4328, # 3360 +1909,1138,2372,3885,3509,5421,3243,4684,1910,1147,1518,2428,4685,3886,5422,4686, # 3376 +2393,2614, 260,1796,3244,5423,5424,3887,3324, 708,5425,3620,1704,5426,3621,1351, # 3392 +1618,3394,3017,1887, 944,4329,3395,4330,3064,3396,4331,5427,3744, 422, 413,1714, # 3408 +3325, 500,2059,2350,4332,2486,5428,1344,1911, 954,5429,1668,5430,5431,4089,2409, # 3424 +4333,3622,3888,4334,5432,2307,1318,2512,3114, 133,3115,2887,4687, 629, 31,2851, # 3440 +2706,3889,4688, 850, 949,4689,4090,2970,1732,2089,4335,1496,1853,5433,4091, 620, # 3456 +3245, 981,1242,3745,3397,1619,3746,1643,3326,2140,2457,1971,1719,3510,2169,5434, # 3472 +3246,5435,5436,3398,1829,5437,1277,4690,1565,2048,5438,1636,3623,3116,5439, 869, # 3488 +2852, 655,3890,3891,3117,4092,3018,3892,1310,3624,4691,5440,5441,5442,1733, 558, # 3504 +4692,3747, 335,1549,3065,1756,4336,3748,1946,3511,1830,1291,1192, 470,2735,2108, # 3520 +2806, 913,1054,4093,5443,1027,5444,3066,4094,4693, 982,2672,3399,3173,3512,3247, # 3536 +3248,1947,2807,5445, 571,4694,5446,1831,5447,3625,2591,1523,2429,5448,2090, 984, # 3552 +4695,3749,1960,5449,3750, 852, 923,2808,3513,3751, 969,1519, 999,2049,2325,1705, # 3568 +5450,3118, 615,1662, 151, 597,4095,2410,2326,1049, 275,4696,3752,4337, 568,3753, # 3584 +3626,2487,4338,3754,5451,2430,2275, 409,3249,5452,1566,2888,3514,1002, 769,2853, # 3600 + 194,2091,3174,3755,2226,3327,4339, 628,1505,5453,5454,1763,2180,3019,4096, 521, # 3616 +1161,2592,1788,2206,2411,4697,4097,1625,4340,4341, 412, 42,3119, 464,5455,2642, # 3632 +4698,3400,1760,1571,2889,3515,2537,1219,2207,3893,2643,2141,2373,4699,4700,3328, # 3648 +1651,3401,3627,5456,5457,3628,2488,3516,5458,3756,5459,5460,2276,2092, 460,5461, # 3664 +4701,5462,3020, 962, 588,3629, 289,3250,2644,1116, 52,5463,3067,1797,5464,5465, # 3680 +5466,1467,5467,1598,1143,3757,4342,1985,1734,1067,4702,1280,3402, 465,4703,1572, # 3696 + 510,5468,1928,2245,1813,1644,3630,5469,4704,3758,5470,5471,2673,1573,1534,5472, # 3712 +5473, 536,1808,1761,3517,3894,3175,2645,5474,5475,5476,4705,3518,2929,1912,2809, # 3728 +5477,3329,1122, 377,3251,5478, 360,5479,5480,4343,1529, 551,5481,2060,3759,1769, # 3744 +2431,5482,2930,4344,3330,3120,2327,2109,2031,4706,1404, 136,1468,1479, 672,1171, # 3760 +3252,2308, 271,3176,5483,2772,5484,2050, 678,2736, 865,1948,4707,5485,2014,4098, # 3776 +2971,5486,2737,2227,1397,3068,3760,4708,4709,1735,2931,3403,3631,5487,3895, 509, # 3792 +2854,2458,2890,3896,5488,5489,3177,3178,4710,4345,2538,4711,2309,1166,1010, 552, # 3808 + 681,1888,5490,5491,2972,2973,4099,1287,1596,1862,3179, 358, 453, 736, 175, 478, # 3824 +1117, 905,1167,1097,5492,1854,1530,5493,1706,5494,2181,3519,2292,3761,3520,3632, # 3840 +4346,2093,4347,5495,3404,1193,2489,4348,1458,2193,2208,1863,1889,1421,3331,2932, # 3856 +3069,2182,3521, 595,2123,5496,4100,5497,5498,4349,1707,2646, 223,3762,1359, 751, # 3872 +3121, 183,3522,5499,2810,3021, 419,2374, 633, 704,3897,2394, 241,5500,5501,5502, # 3888 + 838,3022,3763,2277,2773,2459,3898,1939,2051,4101,1309,3122,2246,1181,5503,1136, # 3904 +2209,3899,2375,1446,4350,2310,4712,5504,5505,4351,1055,2615, 484,3764,5506,4102, # 3920 + 625,4352,2278,3405,1499,4353,4103,5507,4104,4354,3253,2279,2280,3523,5508,5509, # 3936 +2774, 808,2616,3765,3406,4105,4355,3123,2539, 526,3407,3900,4356, 955,5510,1620, # 3952 +4357,2647,2432,5511,1429,3766,1669,1832, 994, 928,5512,3633,1260,5513,5514,5515, # 3968 +1949,2293, 741,2933,1626,4358,2738,2460, 867,1184, 362,3408,1392,5516,5517,4106, # 3984 +4359,1770,1736,3254,2934,4713,4714,1929,2707,1459,1158,5518,3070,3409,2891,1292, # 4000 +1930,2513,2855,3767,1986,1187,2072,2015,2617,4360,5519,2574,2514,2170,3768,2490, # 4016 +3332,5520,3769,4715,5521,5522, 666,1003,3023,1022,3634,4361,5523,4716,1814,2257, # 4032 + 574,3901,1603, 295,1535, 705,3902,4362, 283, 858, 417,5524,5525,3255,4717,4718, # 4048 +3071,1220,1890,1046,2281,2461,4107,1393,1599, 689,2575, 388,4363,5526,2491, 802, # 4064 +5527,2811,3903,2061,1405,2258,5528,4719,3904,2110,1052,1345,3256,1585,5529, 809, # 4080 +5530,5531,5532, 575,2739,3524, 956,1552,1469,1144,2328,5533,2329,1560,2462,3635, # 4096 +3257,4108, 616,2210,4364,3180,2183,2294,5534,1833,5535,3525,4720,5536,1319,3770, # 4112 +3771,1211,3636,1023,3258,1293,2812,5537,5538,5539,3905, 607,2311,3906, 762,2892, # 4128 +1439,4365,1360,4721,1485,3072,5540,4722,1038,4366,1450,2062,2648,4367,1379,4723, # 4144 +2593,5541,5542,4368,1352,1414,2330,2935,1172,5543,5544,3907,3908,4724,1798,1451, # 4160 +5545,5546,5547,5548,2936,4109,4110,2492,2351, 411,4111,4112,3637,3333,3124,4725, # 4176 +1561,2674,1452,4113,1375,5549,5550, 47,2974, 316,5551,1406,1591,2937,3181,5552, # 4192 +1025,2142,3125,3182, 354,2740, 884,2228,4369,2412, 508,3772, 726,3638, 996,2433, # 4208 +3639, 729,5553, 392,2194,1453,4114,4726,3773,5554,5555,2463,3640,2618,1675,2813, # 4224 + 919,2352,2975,2353,1270,4727,4115, 73,5556,5557, 647,5558,3259,2856,2259,1550, # 4240 +1346,3024,5559,1332, 883,3526,5560,5561,5562,5563,3334,2775,5564,1212, 831,1347, # 4256 +4370,4728,2331,3909,1864,3073, 720,3910,4729,4730,3911,5565,4371,5566,5567,4731, # 4272 +5568,5569,1799,4732,3774,2619,4733,3641,1645,2376,4734,5570,2938, 669,2211,2675, # 4288 +2434,5571,2893,5572,5573,1028,3260,5574,4372,2413,5575,2260,1353,5576,5577,4735, # 4304 +3183, 518,5578,4116,5579,4373,1961,5580,2143,4374,5581,5582,3025,2354,2355,3912, # 4320 + 516,1834,1454,4117,2708,4375,4736,2229,2620,1972,1129,3642,5583,2776,5584,2976, # 4336 +1422, 577,1470,3026,1524,3410,5585,5586, 432,4376,3074,3527,5587,2594,1455,2515, # 4352 +2230,1973,1175,5588,1020,2741,4118,3528,4737,5589,2742,5590,1743,1361,3075,3529, # 4368 +2649,4119,4377,4738,2295, 895, 924,4378,2171, 331,2247,3076, 166,1627,3077,1098, # 4384 +5591,1232,2894,2231,3411,4739, 657, 403,1196,2377, 542,3775,3412,1600,4379,3530, # 4400 +5592,4740,2777,3261, 576, 530,1362,4741,4742,2540,2676,3776,4120,5593, 842,3913, # 4416 +5594,2814,2032,1014,4121, 213,2709,3413, 665, 621,4380,5595,3777,2939,2435,5596, # 4432 +2436,3335,3643,3414,4743,4381,2541,4382,4744,3644,1682,4383,3531,1380,5597, 724, # 4448 +2282, 600,1670,5598,1337,1233,4745,3126,2248,5599,1621,4746,5600, 651,4384,5601, # 4464 +1612,4385,2621,5602,2857,5603,2743,2312,3078,5604, 716,2464,3079, 174,1255,2710, # 4480 +4122,3645, 548,1320,1398, 728,4123,1574,5605,1891,1197,3080,4124,5606,3081,3082, # 4496 +3778,3646,3779, 747,5607, 635,4386,4747,5608,5609,5610,4387,5611,5612,4748,5613, # 4512 +3415,4749,2437, 451,5614,3780,2542,2073,4388,2744,4389,4125,5615,1764,4750,5616, # 4528 +4390, 350,4751,2283,2395,2493,5617,4391,4126,2249,1434,4127, 488,4752, 458,4392, # 4544 +4128,3781, 771,1330,2396,3914,2576,3184,2160,2414,1553,2677,3185,4393,5618,2494, # 4560 +2895,2622,1720,2711,4394,3416,4753,5619,2543,4395,5620,3262,4396,2778,5621,2016, # 4576 +2745,5622,1155,1017,3782,3915,5623,3336,2313, 201,1865,4397,1430,5624,4129,5625, # 4592 +5626,5627,5628,5629,4398,1604,5630, 414,1866, 371,2595,4754,4755,3532,2017,3127, # 4608 +4756,1708, 960,4399, 887, 389,2172,1536,1663,1721,5631,2232,4130,2356,2940,1580, # 4624 +5632,5633,1744,4757,2544,4758,4759,5634,4760,5635,2074,5636,4761,3647,3417,2896, # 4640 +4400,5637,4401,2650,3418,2815, 673,2712,2465, 709,3533,4131,3648,4402,5638,1148, # 4656 + 502, 634,5639,5640,1204,4762,3649,1575,4763,2623,3783,5641,3784,3128, 948,3263, # 4672 + 121,1745,3916,1110,5642,4403,3083,2516,3027,4132,3785,1151,1771,3917,1488,4133, # 4688 +1987,5643,2438,3534,5644,5645,2094,5646,4404,3918,1213,1407,2816, 531,2746,2545, # 4704 +3264,1011,1537,4764,2779,4405,3129,1061,5647,3786,3787,1867,2897,5648,2018, 120, # 4720 +4406,4407,2063,3650,3265,2314,3919,2678,3419,1955,4765,4134,5649,3535,1047,2713, # 4736 +1266,5650,1368,4766,2858, 649,3420,3920,2546,2747,1102,2859,2679,5651,5652,2000, # 4752 +5653,1111,3651,2977,5654,2495,3921,3652,2817,1855,3421,3788,5655,5656,3422,2415, # 4768 +2898,3337,3266,3653,5657,2577,5658,3654,2818,4135,1460, 856,5659,3655,5660,2899, # 4784 +2978,5661,2900,3922,5662,4408, 632,2517, 875,3923,1697,3924,2296,5663,5664,4767, # 4800 +3028,1239, 580,4768,4409,5665, 914, 936,2075,1190,4136,1039,2124,5666,5667,5668, # 4816 +5669,3423,1473,5670,1354,4410,3925,4769,2173,3084,4137, 915,3338,4411,4412,3339, # 4832 +1605,1835,5671,2748, 398,3656,4413,3926,4138, 328,1913,2860,4139,3927,1331,4414, # 4848 +3029, 937,4415,5672,3657,4140,4141,3424,2161,4770,3425, 524, 742, 538,3085,1012, # 4864 +5673,5674,3928,2466,5675, 658,1103, 225,3929,5676,5677,4771,5678,4772,5679,3267, # 4880 +1243,5680,4142, 963,2250,4773,5681,2714,3658,3186,5682,5683,2596,2332,5684,4774, # 4896 +5685,5686,5687,3536, 957,3426,2547,2033,1931,2941,2467, 870,2019,3659,1746,2780, # 4912 +2781,2439,2468,5688,3930,5689,3789,3130,3790,3537,3427,3791,5690,1179,3086,5691, # 4928 +3187,2378,4416,3792,2548,3188,3131,2749,4143,5692,3428,1556,2549,2297, 977,2901, # 4944 +2034,4144,1205,3429,5693,1765,3430,3189,2125,1271, 714,1689,4775,3538,5694,2333, # 4960 +3931, 533,4417,3660,2184, 617,5695,2469,3340,3539,2315,5696,5697,3190,5698,5699, # 4976 +3932,1988, 618, 427,2651,3540,3431,5700,5701,1244,1690,5702,2819,4418,4776,5703, # 4992 +3541,4777,5704,2284,1576, 473,3661,4419,3432, 972,5705,3662,5706,3087,5707,5708, # 5008 +4778,4779,5709,3793,4145,4146,5710, 153,4780, 356,5711,1892,2902,4420,2144, 408, # 5024 + 803,2357,5712,3933,5713,4421,1646,2578,2518,4781,4782,3934,5714,3935,4422,5715, # 5040 +2416,3433, 752,5716,5717,1962,3341,2979,5718, 746,3030,2470,4783,4423,3794, 698, # 5056 +4784,1893,4424,3663,2550,4785,3664,3936,5719,3191,3434,5720,1824,1302,4147,2715, # 5072 +3937,1974,4425,5721,4426,3192, 823,1303,1288,1236,2861,3542,4148,3435, 774,3938, # 5088 +5722,1581,4786,1304,2862,3939,4787,5723,2440,2162,1083,3268,4427,4149,4428, 344, # 5104 +1173, 288,2316, 454,1683,5724,5725,1461,4788,4150,2597,5726,5727,4789, 985, 894, # 5120 +5728,3436,3193,5729,1914,2942,3795,1989,5730,2111,1975,5731,4151,5732,2579,1194, # 5136 + 425,5733,4790,3194,1245,3796,4429,5734,5735,2863,5736, 636,4791,1856,3940, 760, # 5152 +1800,5737,4430,2212,1508,4792,4152,1894,1684,2298,5738,5739,4793,4431,4432,2213, # 5168 + 479,5740,5741, 832,5742,4153,2496,5743,2980,2497,3797, 990,3132, 627,1815,2652, # 5184 +4433,1582,4434,2126,2112,3543,4794,5744, 799,4435,3195,5745,4795,2113,1737,3031, # 5200 +1018, 543, 754,4436,3342,1676,4796,4797,4154,4798,1489,5746,3544,5747,2624,2903, # 5216 +4155,5748,5749,2981,5750,5751,5752,5753,3196,4799,4800,2185,1722,5754,3269,3270, # 5232 +1843,3665,1715, 481, 365,1976,1857,5755,5756,1963,2498,4801,5757,2127,3666,3271, # 5248 + 433,1895,2064,2076,5758, 602,2750,5759,5760,5761,5762,5763,3032,1628,3437,5764, # 5264 +3197,4802,4156,2904,4803,2519,5765,2551,2782,5766,5767,5768,3343,4804,2905,5769, # 5280 +4805,5770,2864,4806,4807,1221,2982,4157,2520,5771,5772,5773,1868,1990,5774,5775, # 5296 +5776,1896,5777,5778,4808,1897,4158, 318,5779,2095,4159,4437,5780,5781, 485,5782, # 5312 + 938,3941, 553,2680, 116,5783,3942,3667,5784,3545,2681,2783,3438,3344,2820,5785, # 5328 +3668,2943,4160,1747,2944,2983,5786,5787, 207,5788,4809,5789,4810,2521,5790,3033, # 5344 + 890,3669,3943,5791,1878,3798,3439,5792,2186,2358,3440,1652,5793,5794,5795, 941, # 5360 +2299, 208,3546,4161,2020, 330,4438,3944,2906,2499,3799,4439,4811,5796,5797,5798, # 5376 +) + diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/big5prober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/big5prober.py new file mode 100644 index 00000000..98f99701 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/big5prober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import Big5DistributionAnalysis +from .mbcssm import BIG5_SM_MODEL + + +class Big5Prober(MultiByteCharSetProber): + def __init__(self): + super(Big5Prober, self).__init__() + self.coding_sm = CodingStateMachine(BIG5_SM_MODEL) + self.distribution_analyzer = Big5DistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "Big5" + + @property + def language(self): + return "Chinese" diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/chardistribution.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/chardistribution.py new file mode 100644 index 00000000..c0395f4a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/chardistribution.py @@ -0,0 +1,233 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .euctwfreq import (EUCTW_CHAR_TO_FREQ_ORDER, EUCTW_TABLE_SIZE, + EUCTW_TYPICAL_DISTRIBUTION_RATIO) +from .euckrfreq import (EUCKR_CHAR_TO_FREQ_ORDER, EUCKR_TABLE_SIZE, + EUCKR_TYPICAL_DISTRIBUTION_RATIO) +from .gb2312freq import (GB2312_CHAR_TO_FREQ_ORDER, GB2312_TABLE_SIZE, + GB2312_TYPICAL_DISTRIBUTION_RATIO) +from .big5freq import (BIG5_CHAR_TO_FREQ_ORDER, BIG5_TABLE_SIZE, + BIG5_TYPICAL_DISTRIBUTION_RATIO) +from .jisfreq import (JIS_CHAR_TO_FREQ_ORDER, JIS_TABLE_SIZE, + JIS_TYPICAL_DISTRIBUTION_RATIO) + + +class CharDistributionAnalysis(object): + ENOUGH_DATA_THRESHOLD = 1024 + SURE_YES = 0.99 + SURE_NO = 0.01 + MINIMUM_DATA_THRESHOLD = 3 + + def __init__(self): + # Mapping table to get frequency order from char order (get from + # GetOrder()) + self._char_to_freq_order = None + self._table_size = None # Size of above table + # This is a constant value which varies from language to language, + # used in calculating confidence. See + # http://www.mozilla.org/projects/intl/UniversalCharsetDetection.html + # for further detail. + self.typical_distribution_ratio = None + self._done = None + self._total_chars = None + self._freq_chars = None + self.reset() + + def reset(self): + """reset analyser, clear any state""" + # If this flag is set to True, detection is done and conclusion has + # been made + self._done = False + self._total_chars = 0 # Total characters encountered + # The number of characters whose frequency order is less than 512 + self._freq_chars = 0 + + def feed(self, char, char_len): + """feed a character with known length""" + if char_len == 2: + # we only care about 2-bytes character in our distribution analysis + order = self.get_order(char) + else: + order = -1 + if order >= 0: + self._total_chars += 1 + # order is valid + if order < self._table_size: + if 512 > self._char_to_freq_order[order]: + self._freq_chars += 1 + + def get_confidence(self): + """return confidence based on existing data""" + # if we didn't receive any character in our consideration range, + # return negative answer + if self._total_chars <= 0 or self._freq_chars <= self.MINIMUM_DATA_THRESHOLD: + return self.SURE_NO + + if self._total_chars != self._freq_chars: + r = (self._freq_chars / ((self._total_chars - self._freq_chars) + * self.typical_distribution_ratio)) + if r < self.SURE_YES: + return r + + # normalize confidence (we don't want to be 100% sure) + return self.SURE_YES + + def got_enough_data(self): + # It is not necessary to receive all data to draw conclusion. + # For charset detection, certain amount of data is enough + return self._total_chars > self.ENOUGH_DATA_THRESHOLD + + def get_order(self, byte_str): + # We do not handle characters based on the original encoding string, + # but convert this encoding string to a number, here called order. + # This allows multiple encodings of a language to share one frequency + # table. + return -1 + + +class EUCTWDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(EUCTWDistributionAnalysis, self).__init__() + self._char_to_freq_order = EUCTW_CHAR_TO_FREQ_ORDER + self._table_size = EUCTW_TABLE_SIZE + self.typical_distribution_ratio = EUCTW_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for euc-TW encoding, we are interested + # first byte range: 0xc4 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char = byte_str[0] + if first_char >= 0xC4: + return 94 * (first_char - 0xC4) + byte_str[1] - 0xA1 + else: + return -1 + + +class EUCKRDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(EUCKRDistributionAnalysis, self).__init__() + self._char_to_freq_order = EUCKR_CHAR_TO_FREQ_ORDER + self._table_size = EUCKR_TABLE_SIZE + self.typical_distribution_ratio = EUCKR_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for euc-KR encoding, we are interested + # first byte range: 0xb0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char = byte_str[0] + if first_char >= 0xB0: + return 94 * (first_char - 0xB0) + byte_str[1] - 0xA1 + else: + return -1 + + +class GB2312DistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(GB2312DistributionAnalysis, self).__init__() + self._char_to_freq_order = GB2312_CHAR_TO_FREQ_ORDER + self._table_size = GB2312_TABLE_SIZE + self.typical_distribution_ratio = GB2312_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for GB2312 encoding, we are interested + # first byte range: 0xb0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if (first_char >= 0xB0) and (second_char >= 0xA1): + return 94 * (first_char - 0xB0) + second_char - 0xA1 + else: + return -1 + + +class Big5DistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(Big5DistributionAnalysis, self).__init__() + self._char_to_freq_order = BIG5_CHAR_TO_FREQ_ORDER + self._table_size = BIG5_TABLE_SIZE + self.typical_distribution_ratio = BIG5_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for big5 encoding, we are interested + # first byte range: 0xa4 -- 0xfe + # second byte range: 0x40 -- 0x7e , 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if first_char >= 0xA4: + if second_char >= 0xA1: + return 157 * (first_char - 0xA4) + second_char - 0xA1 + 63 + else: + return 157 * (first_char - 0xA4) + second_char - 0x40 + else: + return -1 + + +class SJISDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(SJISDistributionAnalysis, self).__init__() + self._char_to_freq_order = JIS_CHAR_TO_FREQ_ORDER + self._table_size = JIS_TABLE_SIZE + self.typical_distribution_ratio = JIS_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for sjis encoding, we are interested + # first byte range: 0x81 -- 0x9f , 0xe0 -- 0xfe + # second byte range: 0x40 -- 0x7e, 0x81 -- oxfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if (first_char >= 0x81) and (first_char <= 0x9F): + order = 188 * (first_char - 0x81) + elif (first_char >= 0xE0) and (first_char <= 0xEF): + order = 188 * (first_char - 0xE0 + 31) + else: + return -1 + order = order + second_char - 0x40 + if second_char > 0x7F: + order = -1 + return order + + +class EUCJPDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(EUCJPDistributionAnalysis, self).__init__() + self._char_to_freq_order = JIS_CHAR_TO_FREQ_ORDER + self._table_size = JIS_TABLE_SIZE + self.typical_distribution_ratio = JIS_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for euc-JP encoding, we are interested + # first byte range: 0xa0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + char = byte_str[0] + if char >= 0xA0: + return 94 * (char - 0xA1) + byte_str[1] - 0xa1 + else: + return -1 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/charsetgroupprober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/charsetgroupprober.py new file mode 100644 index 00000000..5812cef0 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/charsetgroupprober.py @@ -0,0 +1,107 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .enums import ProbingState +from .charsetprober import CharSetProber + + +class CharSetGroupProber(CharSetProber): + def __init__(self, lang_filter=None): + super(CharSetGroupProber, self).__init__(lang_filter=lang_filter) + self._active_num = 0 + self.probers = [] + self._best_guess_prober = None + + def reset(self): + super(CharSetGroupProber, self).reset() + self._active_num = 0 + for prober in self.probers: + if prober: + prober.reset() + prober.active = True + self._active_num += 1 + self._best_guess_prober = None + + @property + def charset_name(self): + if not self._best_guess_prober: + self.get_confidence() + if not self._best_guess_prober: + return None + return self._best_guess_prober.charset_name + + @property + def language(self): + if not self._best_guess_prober: + self.get_confidence() + if not self._best_guess_prober: + return None + return self._best_guess_prober.language + + def feed(self, byte_str): + for prober in self.probers: + if not prober: + continue + if not prober.active: + continue + state = prober.feed(byte_str) + if not state: + continue + if state == ProbingState.FOUND_IT: + self._best_guess_prober = prober + self._state = ProbingState.FOUND_IT + return self.state + elif state == ProbingState.NOT_ME: + prober.active = False + self._active_num -= 1 + if self._active_num <= 0: + self._state = ProbingState.NOT_ME + return self.state + return self.state + + def get_confidence(self): + state = self.state + if state == ProbingState.FOUND_IT: + return 0.99 + elif state == ProbingState.NOT_ME: + return 0.01 + best_conf = 0.0 + self._best_guess_prober = None + for prober in self.probers: + if not prober: + continue + if not prober.active: + self.logger.debug('%s not active', prober.charset_name) + continue + conf = prober.get_confidence() + self.logger.debug('%s %s confidence = %s', prober.charset_name, prober.language, conf) + if best_conf < conf: + best_conf = conf + self._best_guess_prober = prober + if not self._best_guess_prober: + return 0.0 + return best_conf diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/charsetprober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/charsetprober.py new file mode 100644 index 00000000..eac4e598 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/charsetprober.py @@ -0,0 +1,145 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import logging +import re + +from .enums import ProbingState + + +class CharSetProber(object): + + SHORTCUT_THRESHOLD = 0.95 + + def __init__(self, lang_filter=None): + self._state = None + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + + def reset(self): + self._state = ProbingState.DETECTING + + @property + def charset_name(self): + return None + + def feed(self, buf): + pass + + @property + def state(self): + return self._state + + def get_confidence(self): + return 0.0 + + @staticmethod + def filter_high_byte_only(buf): + buf = re.sub(b'([\x00-\x7F])+', b' ', buf) + return buf + + @staticmethod + def filter_international_words(buf): + """ + We define three types of bytes: + alphabet: english alphabets [a-zA-Z] + international: international characters [\x80-\xFF] + marker: everything else [^a-zA-Z\x80-\xFF] + + The input buffer can be thought to contain a series of words delimited + by markers. This function works to filter all words that contain at + least one international character. All contiguous sequences of markers + are replaced by a single space ascii character. + + This filter applies to all scripts which do not use English characters. + """ + filtered = bytearray() + + # This regex expression filters out only words that have at-least one + # international character. The word may include one marker character at + # the end. + words = re.findall(b'[a-zA-Z]*[\x80-\xFF]+[a-zA-Z]*[^a-zA-Z\x80-\xFF]?', + buf) + + for word in words: + filtered.extend(word[:-1]) + + # If the last character in the word is a marker, replace it with a + # space as markers shouldn't affect our analysis (they are used + # similarly across all languages and may thus have similar + # frequencies). + last_char = word[-1:] + if not last_char.isalpha() and last_char < b'\x80': + last_char = b' ' + filtered.extend(last_char) + + return filtered + + @staticmethod + def filter_with_english_letters(buf): + """ + Returns a copy of ``buf`` that retains only the sequences of English + alphabet and high byte characters that are not between <> characters. + Also retains English alphabet and high byte characters immediately + before occurrences of >. + + This filter can be applied to all scripts which contain both English + characters and extended ASCII characters, but is currently only used by + ``Latin1Prober``. + """ + filtered = bytearray() + in_tag = False + prev = 0 + + for curr in range(len(buf)): + # Slice here to get bytes instead of an int with Python 3 + buf_char = buf[curr:curr + 1] + # Check if we're coming out of or entering an HTML tag + if buf_char == b'>': + in_tag = False + elif buf_char == b'<': + in_tag = True + + # If current character is not extended-ASCII and not alphabetic... + if buf_char < b'\x80' and not buf_char.isalpha(): + # ...and we're not in a tag + if curr > prev and not in_tag: + # Keep everything after last non-extended-ASCII, + # non-alphabetic character + filtered.extend(buf[prev:curr]) + # Output a space to delimit stretch we kept + filtered.extend(b' ') + prev = curr + 1 + + # If we're not in a tag... + if not in_tag: + # Keep everything after last non-extended-ASCII, non-alphabetic + # character + filtered.extend(buf[prev:]) + + return filtered diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__init__.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__init__.py new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__init__.py @@ -0,0 +1 @@ + diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..51ea627c6ff92f19102e8170faf3672a78900078 GIT binary patch literal 159 zcmWIL<>g`k0)_V01V$kJ7{oyaAVCKpE@lA|DGb33nv8xc8Hzx{2;!HEeo1bDenDn| zZfRaYVsdtBif(yEYHE&dVR}}HWr0N+NKQY#EHy7BzeqnhBe5tYwM0KTCsRK@J~J<~ aBtBlRpz;=nO>TZlX-=vg$n?)Z%m4sNF(y6$ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..004d80e44489f1dba00a55a4581e1778409532e0 GIT binary patch literal 2655 zcma)8TW=f372Z3k6-6tT7I2yx^H4WtAX2dr11(V$E#d?X5C}%%1PF6ktvEw*rM-D( zC{;A|q!xXt|AUA;;xTN#*a1`2iG>Y&J@>bCvwe4D% zZx!(mJ3#=da77jawbJxNlhk9Pempf7g~(9;ISyj70=3J z6~`a`H7)8~42N;d@Z4qNX(}5-rm8|%pCnZ9A!%mq)=NWno|U{hSN;1B9zMWCPuaLC zCmF{#1bc7r@W%Yc!H}hDoMo>V-ygge#~)8vS*?RWOtq}e;EeCFOs_)D5K~sxGtDNl zDwxs;We~^zMroX$Z*HYWs>)|tBw0ZTFx^^arA{WZa;&qeG`q7hL;NDiGc9DAtAn0v zwv*&cNQLzz!PI~J8!vv6FoyxRec~%NFWKZDAicDARSfD~sY`7dW zd-O%UvKz9GDd+TMxIVhjLT$P&(?Sf{0Y+M0od$r)a{w2$A+7!1hTmonPHA-}%8pAk zgK4jiF~9xna>$-tzJj-BmnQxRtMeT)1NNj)vs@qawq*;YG+T7YRLb#fpoG2>+$%yt+!yg{oE%l zaO^By^o@72jm~)&9phhjmX18rJG=uQUB2_&a~-{-Z!NHPvU}xSp_`t5&AY^r^B*h% z{sQhp+JTy)AR45!vQ!?=Py{dssZbgPs1gGL-l+s9z6@`epAFe3s}8u?ya(oD8Cs$i z<7|=%zT(#PxBB$02J_S_HxEed0HE1phlhZ}fV_WofB4PeA_89%E z*auHO{iOeh>GKSCR@$(b#Rc(A%8v51JZ*4J6sE`JFFDgms|Ok{UT zJ5$D;SSo6Ux5!aYq*?h8lKL$MXDe{M7m**ip4WCf_x1lqAt>cVt|L5-~jv{YS{Vi&l%vSKy$x0KY1!?NxwWsE literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/chardetect.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/chardetect.py new file mode 100644 index 00000000..6d6f93aa --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/chardetect.py @@ -0,0 +1,84 @@ +""" +Script which takes one or more file paths and reports on their detected +encodings + +Example:: + + % chardetect somefile someotherfile + somefile: windows-1252 with confidence 0.5 + someotherfile: ascii with confidence 1.0 + +If no paths are provided, it takes its input from stdin. + +""" + +from __future__ import absolute_import, print_function, unicode_literals + +import argparse +import sys + +from pip._vendor.chardet import __version__ +from pip._vendor.chardet.compat import PY2 +from pip._vendor.chardet.universaldetector import UniversalDetector + + +def description_of(lines, name='stdin'): + """ + Return a string describing the probable encoding of a file or + list of strings. + + :param lines: The lines to get the encoding of. + :type lines: Iterable of bytes + :param name: Name of file or collection of lines + :type name: str + """ + u = UniversalDetector() + for line in lines: + line = bytearray(line) + u.feed(line) + # shortcut out of the loop to save reading further - particularly useful if we read a BOM. + if u.done: + break + u.close() + result = u.result + if PY2: + name = name.decode(sys.getfilesystemencoding(), 'ignore') + if result['encoding']: + return '{}: {} with confidence {}'.format(name, result['encoding'], + result['confidence']) + else: + return '{}: no result'.format(name) + + +def main(argv=None): + """ + Handles command line arguments and gets things started. + + :param argv: List of arguments, as if specified on the command-line. + If None, ``sys.argv[1:]`` is used instead. + :type argv: list of str + """ + # Get command line arguments + parser = argparse.ArgumentParser( + description="Takes one or more file paths and reports their detected \ + encodings") + parser.add_argument('input', + help='File whose encoding we would like to determine. \ + (default: stdin)', + type=argparse.FileType('rb'), nargs='*', + default=[sys.stdin if PY2 else sys.stdin.buffer]) + parser.add_argument('--version', action='version', + version='%(prog)s {}'.format(__version__)) + args = parser.parse_args(argv) + + for f in args.input: + if f.isatty(): + print("You are running chardetect interactively. Press " + + "CTRL-D twice at the start of a blank line to signal the " + + "end of your input. If you want help, run chardetect " + + "--help\n", file=sys.stderr) + print(description_of(f, f.name)) + + +if __name__ == '__main__': + main() diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/codingstatemachine.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/codingstatemachine.py new file mode 100644 index 00000000..68fba44f --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/codingstatemachine.py @@ -0,0 +1,88 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import logging + +from .enums import MachineState + + +class CodingStateMachine(object): + """ + A state machine to verify a byte sequence for a particular encoding. For + each byte the detector receives, it will feed that byte to every active + state machine available, one byte at a time. The state machine changes its + state based on its previous state and the byte it receives. There are 3 + states in a state machine that are of interest to an auto-detector: + + START state: This is the state to start with, or a legal byte sequence + (i.e. a valid code point) for character has been identified. + + ME state: This indicates that the state machine identified a byte sequence + that is specific to the charset it is designed for and that + there is no other possible encoding which can contain this byte + sequence. This will to lead to an immediate positive answer for + the detector. + + ERROR state: This indicates the state machine identified an illegal byte + sequence for that encoding. This will lead to an immediate + negative answer for this encoding. Detector will exclude this + encoding from consideration from here on. + """ + def __init__(self, sm): + self._model = sm + self._curr_byte_pos = 0 + self._curr_char_len = 0 + self._curr_state = None + self.logger = logging.getLogger(__name__) + self.reset() + + def reset(self): + self._curr_state = MachineState.START + + def next_state(self, c): + # for each byte we get its class + # if it is first byte, we also get byte length + byte_class = self._model['class_table'][c] + if self._curr_state == MachineState.START: + self._curr_byte_pos = 0 + self._curr_char_len = self._model['char_len_table'][byte_class] + # from byte's class and state_table, we get its next state + curr_state = (self._curr_state * self._model['class_factor'] + + byte_class) + self._curr_state = self._model['state_table'][curr_state] + self._curr_byte_pos += 1 + return self._curr_state + + def get_current_charlen(self): + return self._curr_char_len + + def get_coding_state_machine(self): + return self._model['name'] + + @property + def language(self): + return self._model['language'] diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/compat.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/compat.py new file mode 100644 index 00000000..8941572b --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/compat.py @@ -0,0 +1,36 @@ +######################## BEGIN LICENSE BLOCK ######################## +# Contributor(s): +# Dan Blanchard +# Ian Cordasco +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import sys + + +if sys.version_info < (3, 0): + PY2 = True + PY3 = False + string_types = (str, unicode) + text_type = unicode + iteritems = dict.iteritems +else: + PY2 = False + PY3 = True + string_types = (bytes, str) + text_type = str + iteritems = dict.items diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cp949prober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cp949prober.py new file mode 100644 index 00000000..efd793ab --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/cp949prober.py @@ -0,0 +1,49 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .chardistribution import EUCKRDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import CP949_SM_MODEL + + +class CP949Prober(MultiByteCharSetProber): + def __init__(self): + super(CP949Prober, self).__init__() + self.coding_sm = CodingStateMachine(CP949_SM_MODEL) + # NOTE: CP949 is a superset of EUC-KR, so the distribution should be + # not different. + self.distribution_analyzer = EUCKRDistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "CP949" + + @property + def language(self): + return "Korean" diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/enums.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/enums.py new file mode 100644 index 00000000..04512072 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/enums.py @@ -0,0 +1,76 @@ +""" +All of the Enums that are used throughout the chardet package. + +:author: Dan Blanchard (dan.blanchard@gmail.com) +""" + + +class InputState(object): + """ + This enum represents the different states a universal detector can be in. + """ + PURE_ASCII = 0 + ESC_ASCII = 1 + HIGH_BYTE = 2 + + +class LanguageFilter(object): + """ + This enum represents the different language filters we can apply to a + ``UniversalDetector``. + """ + CHINESE_SIMPLIFIED = 0x01 + CHINESE_TRADITIONAL = 0x02 + JAPANESE = 0x04 + KOREAN = 0x08 + NON_CJK = 0x10 + ALL = 0x1F + CHINESE = CHINESE_SIMPLIFIED | CHINESE_TRADITIONAL + CJK = CHINESE | JAPANESE | KOREAN + + +class ProbingState(object): + """ + This enum represents the different states a prober can be in. + """ + DETECTING = 0 + FOUND_IT = 1 + NOT_ME = 2 + + +class MachineState(object): + """ + This enum represents the different states a state machine can be in. + """ + START = 0 + ERROR = 1 + ITS_ME = 2 + + +class SequenceLikelihood(object): + """ + This enum represents the likelihood of a character following the previous one. + """ + NEGATIVE = 0 + UNLIKELY = 1 + LIKELY = 2 + POSITIVE = 3 + + @classmethod + def get_num_categories(cls): + """:returns: The number of likelihood categories in the enum.""" + return 4 + + +class CharacterCategory(object): + """ + This enum represents the different categories language models for + ``SingleByteCharsetProber`` put characters into. + + Anything less than CONTROL is considered a letter. + """ + UNDEFINED = 255 + LINE_BREAK = 254 + SYMBOL = 253 + DIGIT = 252 + CONTROL = 251 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/escprober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/escprober.py new file mode 100644 index 00000000..c70493f2 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/escprober.py @@ -0,0 +1,101 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .codingstatemachine import CodingStateMachine +from .enums import LanguageFilter, ProbingState, MachineState +from .escsm import (HZ_SM_MODEL, ISO2022CN_SM_MODEL, ISO2022JP_SM_MODEL, + ISO2022KR_SM_MODEL) + + +class EscCharSetProber(CharSetProber): + """ + This CharSetProber uses a "code scheme" approach for detecting encodings, + whereby easily recognizable escape or shift sequences are relied on to + identify these encodings. + """ + + def __init__(self, lang_filter=None): + super(EscCharSetProber, self).__init__(lang_filter=lang_filter) + self.coding_sm = [] + if self.lang_filter & LanguageFilter.CHINESE_SIMPLIFIED: + self.coding_sm.append(CodingStateMachine(HZ_SM_MODEL)) + self.coding_sm.append(CodingStateMachine(ISO2022CN_SM_MODEL)) + if self.lang_filter & LanguageFilter.JAPANESE: + self.coding_sm.append(CodingStateMachine(ISO2022JP_SM_MODEL)) + if self.lang_filter & LanguageFilter.KOREAN: + self.coding_sm.append(CodingStateMachine(ISO2022KR_SM_MODEL)) + self.active_sm_count = None + self._detected_charset = None + self._detected_language = None + self._state = None + self.reset() + + def reset(self): + super(EscCharSetProber, self).reset() + for coding_sm in self.coding_sm: + if not coding_sm: + continue + coding_sm.active = True + coding_sm.reset() + self.active_sm_count = len(self.coding_sm) + self._detected_charset = None + self._detected_language = None + + @property + def charset_name(self): + return self._detected_charset + + @property + def language(self): + return self._detected_language + + def get_confidence(self): + if self._detected_charset: + return 0.99 + else: + return 0.00 + + def feed(self, byte_str): + for c in byte_str: + for coding_sm in self.coding_sm: + if not coding_sm or not coding_sm.active: + continue + coding_state = coding_sm.next_state(c) + if coding_state == MachineState.ERROR: + coding_sm.active = False + self.active_sm_count -= 1 + if self.active_sm_count <= 0: + self._state = ProbingState.NOT_ME + return self.state + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + self._detected_charset = coding_sm.get_coding_state_machine() + self._detected_language = coding_sm.language + return self.state + + return self.state diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/escsm.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/escsm.py new file mode 100644 index 00000000..0069523a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/escsm.py @@ -0,0 +1,246 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .enums import MachineState + +HZ_CLS = ( +1,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,0,0, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,0,0,0,0, # 20 - 27 +0,0,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +0,0,0,0,0,0,0,0, # 40 - 47 +0,0,0,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,4,0,5,2,0, # 78 - 7f +1,1,1,1,1,1,1,1, # 80 - 87 +1,1,1,1,1,1,1,1, # 88 - 8f +1,1,1,1,1,1,1,1, # 90 - 97 +1,1,1,1,1,1,1,1, # 98 - 9f +1,1,1,1,1,1,1,1, # a0 - a7 +1,1,1,1,1,1,1,1, # a8 - af +1,1,1,1,1,1,1,1, # b0 - b7 +1,1,1,1,1,1,1,1, # b8 - bf +1,1,1,1,1,1,1,1, # c0 - c7 +1,1,1,1,1,1,1,1, # c8 - cf +1,1,1,1,1,1,1,1, # d0 - d7 +1,1,1,1,1,1,1,1, # d8 - df +1,1,1,1,1,1,1,1, # e0 - e7 +1,1,1,1,1,1,1,1, # e8 - ef +1,1,1,1,1,1,1,1, # f0 - f7 +1,1,1,1,1,1,1,1, # f8 - ff +) + +HZ_ST = ( +MachineState.START,MachineState.ERROR, 3,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,# 00-07 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,# 08-0f +MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START, 4,MachineState.ERROR,# 10-17 + 5,MachineState.ERROR, 6,MachineState.ERROR, 5, 5, 4,MachineState.ERROR,# 18-1f + 4,MachineState.ERROR, 4, 4, 4,MachineState.ERROR, 4,MachineState.ERROR,# 20-27 + 4,MachineState.ITS_ME,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,# 28-2f +) + +HZ_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) + +HZ_SM_MODEL = {'class_table': HZ_CLS, + 'class_factor': 6, + 'state_table': HZ_ST, + 'char_len_table': HZ_CHAR_LEN_TABLE, + 'name': "HZ-GB-2312", + 'language': 'Chinese'} + +ISO2022CN_CLS = ( +2,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,0,0, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,0,0,0,0, # 20 - 27 +0,3,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +0,0,0,4,0,0,0,0, # 40 - 47 +0,0,0,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,0,0,0,0,0, # 78 - 7f +2,2,2,2,2,2,2,2, # 80 - 87 +2,2,2,2,2,2,2,2, # 88 - 8f +2,2,2,2,2,2,2,2, # 90 - 97 +2,2,2,2,2,2,2,2, # 98 - 9f +2,2,2,2,2,2,2,2, # a0 - a7 +2,2,2,2,2,2,2,2, # a8 - af +2,2,2,2,2,2,2,2, # b0 - b7 +2,2,2,2,2,2,2,2, # b8 - bf +2,2,2,2,2,2,2,2, # c0 - c7 +2,2,2,2,2,2,2,2, # c8 - cf +2,2,2,2,2,2,2,2, # d0 - d7 +2,2,2,2,2,2,2,2, # d8 - df +2,2,2,2,2,2,2,2, # e0 - e7 +2,2,2,2,2,2,2,2, # e8 - ef +2,2,2,2,2,2,2,2, # f0 - f7 +2,2,2,2,2,2,2,2, # f8 - ff +) + +ISO2022CN_ST = ( +MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,# 00-07 +MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 08-0f +MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,# 10-17 +MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 4,MachineState.ERROR,# 18-1f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 20-27 + 5, 6,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 28-2f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 30-37 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,MachineState.START,# 38-3f +) + +ISO2022CN_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022CN_SM_MODEL = {'class_table': ISO2022CN_CLS, + 'class_factor': 9, + 'state_table': ISO2022CN_ST, + 'char_len_table': ISO2022CN_CHAR_LEN_TABLE, + 'name': "ISO-2022-CN", + 'language': 'Chinese'} + +ISO2022JP_CLS = ( +2,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,2,2, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,7,0,0,0, # 20 - 27 +3,0,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +6,0,4,0,8,0,0,0, # 40 - 47 +0,9,5,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,0,0,0,0,0, # 78 - 7f +2,2,2,2,2,2,2,2, # 80 - 87 +2,2,2,2,2,2,2,2, # 88 - 8f +2,2,2,2,2,2,2,2, # 90 - 97 +2,2,2,2,2,2,2,2, # 98 - 9f +2,2,2,2,2,2,2,2, # a0 - a7 +2,2,2,2,2,2,2,2, # a8 - af +2,2,2,2,2,2,2,2, # b0 - b7 +2,2,2,2,2,2,2,2, # b8 - bf +2,2,2,2,2,2,2,2, # c0 - c7 +2,2,2,2,2,2,2,2, # c8 - cf +2,2,2,2,2,2,2,2, # d0 - d7 +2,2,2,2,2,2,2,2, # d8 - df +2,2,2,2,2,2,2,2, # e0 - e7 +2,2,2,2,2,2,2,2, # e8 - ef +2,2,2,2,2,2,2,2, # f0 - f7 +2,2,2,2,2,2,2,2, # f8 - ff +) + +ISO2022JP_ST = ( +MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,# 00-07 +MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 08-0f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,# 10-17 +MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,# 18-1f +MachineState.ERROR, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 4,MachineState.ERROR,MachineState.ERROR,# 20-27 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 6,MachineState.ITS_ME,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,# 28-2f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,# 30-37 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 38-3f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,MachineState.START,MachineState.START,# 40-47 +) + +ISO2022JP_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022JP_SM_MODEL = {'class_table': ISO2022JP_CLS, + 'class_factor': 10, + 'state_table': ISO2022JP_ST, + 'char_len_table': ISO2022JP_CHAR_LEN_TABLE, + 'name': "ISO-2022-JP", + 'language': 'Japanese'} + +ISO2022KR_CLS = ( +2,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,0,0, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,3,0,0,0, # 20 - 27 +0,4,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +0,0,0,5,0,0,0,0, # 40 - 47 +0,0,0,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,0,0,0,0,0, # 78 - 7f +2,2,2,2,2,2,2,2, # 80 - 87 +2,2,2,2,2,2,2,2, # 88 - 8f +2,2,2,2,2,2,2,2, # 90 - 97 +2,2,2,2,2,2,2,2, # 98 - 9f +2,2,2,2,2,2,2,2, # a0 - a7 +2,2,2,2,2,2,2,2, # a8 - af +2,2,2,2,2,2,2,2, # b0 - b7 +2,2,2,2,2,2,2,2, # b8 - bf +2,2,2,2,2,2,2,2, # c0 - c7 +2,2,2,2,2,2,2,2, # c8 - cf +2,2,2,2,2,2,2,2, # d0 - d7 +2,2,2,2,2,2,2,2, # d8 - df +2,2,2,2,2,2,2,2, # e0 - e7 +2,2,2,2,2,2,2,2, # e8 - ef +2,2,2,2,2,2,2,2, # f0 - f7 +2,2,2,2,2,2,2,2, # f8 - ff +) + +ISO2022KR_ST = ( +MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,# 00-07 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,# 08-0f +MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 4,MachineState.ERROR,MachineState.ERROR,# 10-17 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 18-1f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.START,MachineState.START,MachineState.START,MachineState.START,# 20-27 +) + +ISO2022KR_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) + +ISO2022KR_SM_MODEL = {'class_table': ISO2022KR_CLS, + 'class_factor': 6, + 'state_table': ISO2022KR_ST, + 'char_len_table': ISO2022KR_CHAR_LEN_TABLE, + 'name': "ISO-2022-KR", + 'language': 'Korean'} + + diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/eucjpprober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/eucjpprober.py new file mode 100644 index 00000000..20ce8f7d --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/eucjpprober.py @@ -0,0 +1,92 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .enums import ProbingState, MachineState +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCJPDistributionAnalysis +from .jpcntx import EUCJPContextAnalysis +from .mbcssm import EUCJP_SM_MODEL + + +class EUCJPProber(MultiByteCharSetProber): + def __init__(self): + super(EUCJPProber, self).__init__() + self.coding_sm = CodingStateMachine(EUCJP_SM_MODEL) + self.distribution_analyzer = EUCJPDistributionAnalysis() + self.context_analyzer = EUCJPContextAnalysis() + self.reset() + + def reset(self): + super(EUCJPProber, self).reset() + self.context_analyzer.reset() + + @property + def charset_name(self): + return "EUC-JP" + + @property + def language(self): + return "Japanese" + + def feed(self, byte_str): + for i in range(len(byte_str)): + # PY3K: byte_str is a byte array, so byte_str[i] is an int, not a byte + coding_state = self.coding_sm.next_state(byte_str[i]) + if coding_state == MachineState.ERROR: + self.logger.debug('%s %s prober hit error at byte %s', + self.charset_name, self.language, i) + self._state = ProbingState.NOT_ME + break + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte_str[0] + self.context_analyzer.feed(self._last_char, char_len) + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.context_analyzer.feed(byte_str[i - 1:i + 1], + char_len) + self.distribution_analyzer.feed(byte_str[i - 1:i + 1], + char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if (self.context_analyzer.got_enough_data() and + (self.get_confidence() > self.SHORTCUT_THRESHOLD)): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self): + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euckrfreq.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euckrfreq.py new file mode 100644 index 00000000..b68078cb --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euckrfreq.py @@ -0,0 +1,195 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# Sampling from about 20M text materials include literature and computer technology + +# 128 --> 0.79 +# 256 --> 0.92 +# 512 --> 0.986 +# 1024 --> 0.99944 +# 2048 --> 0.99999 +# +# Idea Distribution Ratio = 0.98653 / (1-0.98653) = 73.24 +# Random Distribution Ration = 512 / (2350-512) = 0.279. +# +# Typical Distribution Ratio + +EUCKR_TYPICAL_DISTRIBUTION_RATIO = 6.0 + +EUCKR_TABLE_SIZE = 2352 + +# Char to FreqOrder table , +EUCKR_CHAR_TO_FREQ_ORDER = ( + 13, 130, 120,1396, 481,1719,1720, 328, 609, 212,1721, 707, 400, 299,1722, 87, +1397,1723, 104, 536,1117,1203,1724,1267, 685,1268, 508,1725,1726,1727,1728,1398, +1399,1729,1730,1731, 141, 621, 326,1057, 368,1732, 267, 488, 20,1733,1269,1734, + 945,1400,1735, 47, 904,1270,1736,1737, 773, 248,1738, 409, 313, 786, 429,1739, + 116, 987, 813,1401, 683, 75,1204, 145,1740,1741,1742,1743, 16, 847, 667, 622, + 708,1744,1745,1746, 966, 787, 304, 129,1747, 60, 820, 123, 676,1748,1749,1750, +1751, 617,1752, 626,1753,1754,1755,1756, 653,1757,1758,1759,1760,1761,1762, 856, + 344,1763,1764,1765,1766, 89, 401, 418, 806, 905, 848,1767,1768,1769, 946,1205, + 709,1770,1118,1771, 241,1772,1773,1774,1271,1775, 569,1776, 999,1777,1778,1779, +1780, 337, 751,1058, 28, 628, 254,1781, 177, 906, 270, 349, 891,1079,1782, 19, +1783, 379,1784, 315,1785, 629, 754,1402, 559,1786, 636, 203,1206,1787, 710, 567, +1788, 935, 814,1789,1790,1207, 766, 528,1791,1792,1208,1793,1794,1795,1796,1797, +1403,1798,1799, 533,1059,1404,1405,1156,1406, 936, 884,1080,1800, 351,1801,1802, +1803,1804,1805, 801,1806,1807,1808,1119,1809,1157, 714, 474,1407,1810, 298, 899, + 885,1811,1120, 802,1158,1812, 892,1813,1814,1408, 659,1815,1816,1121,1817,1818, +1819,1820,1821,1822, 319,1823, 594, 545,1824, 815, 937,1209,1825,1826, 573,1409, +1022,1827,1210,1828,1829,1830,1831,1832,1833, 556, 722, 807,1122,1060,1834, 697, +1835, 900, 557, 715,1836,1410, 540,1411, 752,1159, 294, 597,1211, 976, 803, 770, +1412,1837,1838, 39, 794,1413, 358,1839, 371, 925,1840, 453, 661, 788, 531, 723, + 544,1023,1081, 869, 91,1841, 392, 430, 790, 602,1414, 677,1082, 457,1415,1416, +1842,1843, 475, 327,1024,1417, 795, 121,1844, 733, 403,1418,1845,1846,1847, 300, + 119, 711,1212, 627,1848,1272, 207,1849,1850, 796,1213, 382,1851, 519,1852,1083, + 893,1853,1854,1855, 367, 809, 487, 671,1856, 663,1857,1858, 956, 471, 306, 857, +1859,1860,1160,1084,1861,1862,1863,1864,1865,1061,1866,1867,1868,1869,1870,1871, + 282, 96, 574,1872, 502,1085,1873,1214,1874, 907,1875,1876, 827, 977,1419,1420, +1421, 268,1877,1422,1878,1879,1880, 308,1881, 2, 537,1882,1883,1215,1884,1885, + 127, 791,1886,1273,1423,1887, 34, 336, 404, 643,1888, 571, 654, 894, 840,1889, + 0, 886,1274, 122, 575, 260, 908, 938,1890,1275, 410, 316,1891,1892, 100,1893, +1894,1123, 48,1161,1124,1025,1895, 633, 901,1276,1896,1897, 115, 816,1898, 317, +1899, 694,1900, 909, 734,1424, 572, 866,1425, 691, 85, 524,1010, 543, 394, 841, +1901,1902,1903,1026,1904,1905,1906,1907,1908,1909, 30, 451, 651, 988, 310,1910, +1911,1426, 810,1216, 93,1912,1913,1277,1217,1914, 858, 759, 45, 58, 181, 610, + 269,1915,1916, 131,1062, 551, 443,1000, 821,1427, 957, 895,1086,1917,1918, 375, +1919, 359,1920, 687,1921, 822,1922, 293,1923,1924, 40, 662, 118, 692, 29, 939, + 887, 640, 482, 174,1925, 69,1162, 728,1428, 910,1926,1278,1218,1279, 386, 870, + 217, 854,1163, 823,1927,1928,1929,1930, 834,1931, 78,1932, 859,1933,1063,1934, +1935,1936,1937, 438,1164, 208, 595,1938,1939,1940,1941,1219,1125,1942, 280, 888, +1429,1430,1220,1431,1943,1944,1945,1946,1947,1280, 150, 510,1432,1948,1949,1950, +1951,1952,1953,1954,1011,1087,1955,1433,1043,1956, 881,1957, 614, 958,1064,1065, +1221,1958, 638,1001, 860, 967, 896,1434, 989, 492, 553,1281,1165,1959,1282,1002, +1283,1222,1960,1961,1962,1963, 36, 383, 228, 753, 247, 454,1964, 876, 678,1965, +1966,1284, 126, 464, 490, 835, 136, 672, 529, 940,1088,1435, 473,1967,1968, 467, + 50, 390, 227, 587, 279, 378, 598, 792, 968, 240, 151, 160, 849, 882,1126,1285, + 639,1044, 133, 140, 288, 360, 811, 563,1027, 561, 142, 523,1969,1970,1971, 7, + 103, 296, 439, 407, 506, 634, 990,1972,1973,1974,1975, 645,1976,1977,1978,1979, +1980,1981, 236,1982,1436,1983,1984,1089, 192, 828, 618, 518,1166, 333,1127,1985, + 818,1223,1986,1987,1988,1989,1990,1991,1992,1993, 342,1128,1286, 746, 842,1994, +1995, 560, 223,1287, 98, 8, 189, 650, 978,1288,1996,1437,1997, 17, 345, 250, + 423, 277, 234, 512, 226, 97, 289, 42, 167,1998, 201,1999,2000, 843, 836, 824, + 532, 338, 783,1090, 182, 576, 436,1438,1439, 527, 500,2001, 947, 889,2002,2003, +2004,2005, 262, 600, 314, 447,2006, 547,2007, 693, 738,1129,2008, 71,1440, 745, + 619, 688,2009, 829,2010,2011, 147,2012, 33, 948,2013,2014, 74, 224,2015, 61, + 191, 918, 399, 637,2016,1028,1130, 257, 902,2017,2018,2019,2020,2021,2022,2023, +2024,2025,2026, 837,2027,2028,2029,2030, 179, 874, 591, 52, 724, 246,2031,2032, +2033,2034,1167, 969,2035,1289, 630, 605, 911,1091,1168,2036,2037,2038,1441, 912, +2039, 623,2040,2041, 253,1169,1290,2042,1442, 146, 620, 611, 577, 433,2043,1224, + 719,1170, 959, 440, 437, 534, 84, 388, 480,1131, 159, 220, 198, 679,2044,1012, + 819,1066,1443, 113,1225, 194, 318,1003,1029,2045,2046,2047,2048,1067,2049,2050, +2051,2052,2053, 59, 913, 112,2054, 632,2055, 455, 144, 739,1291,2056, 273, 681, + 499,2057, 448,2058,2059, 760,2060,2061, 970, 384, 169, 245,1132,2062,2063, 414, +1444,2064,2065, 41, 235,2066, 157, 252, 877, 568, 919, 789, 580,2067, 725,2068, +2069,1292,2070,2071,1445,2072,1446,2073,2074, 55, 588, 66,1447, 271,1092,2075, +1226,2076, 960,1013, 372,2077,2078,2079,2080,2081,1293,2082,2083,2084,2085, 850, +2086,2087,2088,2089,2090, 186,2091,1068, 180,2092,2093,2094, 109,1227, 522, 606, +2095, 867,1448,1093, 991,1171, 926, 353,1133,2096, 581,2097,2098,2099,1294,1449, +1450,2100, 596,1172,1014,1228,2101,1451,1295,1173,1229,2102,2103,1296,1134,1452, + 949,1135,2104,2105,1094,1453,1454,1455,2106,1095,2107,2108,2109,2110,2111,2112, +2113,2114,2115,2116,2117, 804,2118,2119,1230,1231, 805,1456, 405,1136,2120,2121, +2122,2123,2124, 720, 701,1297, 992,1457, 927,1004,2125,2126,2127,2128,2129,2130, + 22, 417,2131, 303,2132, 385,2133, 971, 520, 513,2134,1174, 73,1096, 231, 274, + 962,1458, 673,2135,1459,2136, 152,1137,2137,2138,2139,2140,1005,1138,1460,1139, +2141,2142,2143,2144, 11, 374, 844,2145, 154,1232, 46,1461,2146, 838, 830, 721, +1233, 106,2147, 90, 428, 462, 578, 566,1175, 352,2148,2149, 538,1234, 124,1298, +2150,1462, 761, 565,2151, 686,2152, 649,2153, 72, 173,2154, 460, 415,2155,1463, +2156,1235, 305,2157,2158,2159,2160,2161,2162, 579,2163,2164,2165,2166,2167, 747, +2168,2169,2170,2171,1464, 669,2172,2173,2174,2175,2176,1465,2177, 23, 530, 285, +2178, 335, 729,2179, 397,2180,2181,2182,1030,2183,2184, 698,2185,2186, 325,2187, +2188, 369,2189, 799,1097,1015, 348,2190,1069, 680,2191, 851,1466,2192,2193, 10, +2194, 613, 424,2195, 979, 108, 449, 589, 27, 172, 81,1031, 80, 774, 281, 350, +1032, 525, 301, 582,1176,2196, 674,1045,2197,2198,1467, 730, 762,2199,2200,2201, +2202,1468,2203, 993,2204,2205, 266,1070, 963,1140,2206,2207,2208, 664,1098, 972, +2209,2210,2211,1177,1469,1470, 871,2212,2213,2214,2215,2216,1471,2217,2218,2219, +2220,2221,2222,2223,2224,2225,2226,2227,1472,1236,2228,2229,2230,2231,2232,2233, +2234,2235,1299,2236,2237, 200,2238, 477, 373,2239,2240, 731, 825, 777,2241,2242, +2243, 521, 486, 548,2244,2245,2246,1473,1300, 53, 549, 137, 875, 76, 158,2247, +1301,1474, 469, 396,1016, 278, 712,2248, 321, 442, 503, 767, 744, 941,1237,1178, +1475,2249, 82, 178,1141,1179, 973,2250,1302,2251, 297,2252,2253, 570,2254,2255, +2256, 18, 450, 206,2257, 290, 292,1142,2258, 511, 162, 99, 346, 164, 735,2259, +1476,1477, 4, 554, 343, 798,1099,2260,1100,2261, 43, 171,1303, 139, 215,2262, +2263, 717, 775,2264,1033, 322, 216,2265, 831,2266, 149,2267,1304,2268,2269, 702, +1238, 135, 845, 347, 309,2270, 484,2271, 878, 655, 238,1006,1478,2272, 67,2273, + 295,2274,2275, 461,2276, 478, 942, 412,2277,1034,2278,2279,2280, 265,2281, 541, +2282,2283,2284,2285,2286, 70, 852,1071,2287,2288,2289,2290, 21, 56, 509, 117, + 432,2291,2292, 331, 980, 552,1101, 148, 284, 105, 393,1180,1239, 755,2293, 187, +2294,1046,1479,2295, 340,2296, 63,1047, 230,2297,2298,1305, 763,1306, 101, 800, + 808, 494,2299,2300,2301, 903,2302, 37,1072, 14, 5,2303, 79, 675,2304, 312, +2305,2306,2307,2308,2309,1480, 6,1307,2310,2311,2312, 1, 470, 35, 24, 229, +2313, 695, 210, 86, 778, 15, 784, 592, 779, 32, 77, 855, 964,2314, 259,2315, + 501, 380,2316,2317, 83, 981, 153, 689,1308,1481,1482,1483,2318,2319, 716,1484, +2320,2321,2322,2323,2324,2325,1485,2326,2327, 128, 57, 68, 261,1048, 211, 170, +1240, 31,2328, 51, 435, 742,2329,2330,2331, 635,2332, 264, 456,2333,2334,2335, + 425,2336,1486, 143, 507, 263, 943,2337, 363, 920,1487, 256,1488,1102, 243, 601, +1489,2338,2339,2340,2341,2342,2343,2344, 861,2345,2346,2347,2348,2349,2350, 395, +2351,1490,1491, 62, 535, 166, 225,2352,2353, 668, 419,1241, 138, 604, 928,2354, +1181,2355,1492,1493,2356,2357,2358,1143,2359, 696,2360, 387, 307,1309, 682, 476, +2361,2362, 332, 12, 222, 156,2363, 232,2364, 641, 276, 656, 517,1494,1495,1035, + 416, 736,1496,2365,1017, 586,2366,2367,2368,1497,2369, 242,2370,2371,2372,1498, +2373, 965, 713,2374,2375,2376,2377, 740, 982,1499, 944,1500,1007,2378,2379,1310, +1501,2380,2381,2382, 785, 329,2383,2384,1502,2385,2386,2387, 932,2388,1503,2389, +2390,2391,2392,1242,2393,2394,2395,2396,2397, 994, 950,2398,2399,2400,2401,1504, +1311,2402,2403,2404,2405,1049, 749,2406,2407, 853, 718,1144,1312,2408,1182,1505, +2409,2410, 255, 516, 479, 564, 550, 214,1506,1507,1313, 413, 239, 444, 339,1145, +1036,1508,1509,1314,1037,1510,1315,2411,1511,2412,2413,2414, 176, 703, 497, 624, + 593, 921, 302,2415, 341, 165,1103,1512,2416,1513,2417,2418,2419, 376,2420, 700, +2421,2422,2423, 258, 768,1316,2424,1183,2425, 995, 608,2426,2427,2428,2429, 221, +2430,2431,2432,2433,2434,2435,2436,2437, 195, 323, 726, 188, 897, 983,1317, 377, + 644,1050, 879,2438, 452,2439,2440,2441,2442,2443,2444, 914,2445,2446,2447,2448, + 915, 489,2449,1514,1184,2450,2451, 515, 64, 427, 495,2452, 583,2453, 483, 485, +1038, 562, 213,1515, 748, 666,2454,2455,2456,2457, 334,2458, 780, 996,1008, 705, +1243,2459,2460,2461,2462,2463, 114,2464, 493,1146, 366, 163,1516, 961,1104,2465, + 291,2466,1318,1105,2467,1517, 365,2468, 355, 951,1244,2469,1319,2470, 631,2471, +2472, 218,1320, 364, 320, 756,1518,1519,1321,1520,1322,2473,2474,2475,2476, 997, +2477,2478,2479,2480, 665,1185,2481, 916,1521,2482,2483,2484, 584, 684,2485,2486, + 797,2487,1051,1186,2488,2489,2490,1522,2491,2492, 370,2493,1039,1187, 65,2494, + 434, 205, 463,1188,2495, 125, 812, 391, 402, 826, 699, 286, 398, 155, 781, 771, + 585,2496, 590, 505,1073,2497, 599, 244, 219, 917,1018, 952, 646,1523,2498,1323, +2499,2500, 49, 984, 354, 741,2501, 625,2502,1324,2503,1019, 190, 357, 757, 491, + 95, 782, 868,2504,2505,2506,2507,2508,2509, 134,1524,1074, 422,1525, 898,2510, + 161,2511,2512,2513,2514, 769,2515,1526,2516,2517, 411,1325,2518, 472,1527,2519, +2520,2521,2522,2523,2524, 985,2525,2526,2527,2528,2529,2530, 764,2531,1245,2532, +2533, 25, 204, 311,2534, 496,2535,1052,2536,2537,2538,2539,2540,2541,2542, 199, + 704, 504, 468, 758, 657,1528, 196, 44, 839,1246, 272, 750,2543, 765, 862,2544, +2545,1326,2546, 132, 615, 933,2547, 732,2548,2549,2550,1189,1529,2551, 283,1247, +1053, 607, 929,2552,2553,2554, 930, 183, 872, 616,1040,1147,2555,1148,1020, 441, + 249,1075,2556,2557,2558, 466, 743,2559,2560,2561, 92, 514, 426, 420, 526,2562, +2563,2564,2565,2566,2567,2568, 185,2569,2570,2571,2572, 776,1530, 658,2573, 362, +2574, 361, 922,1076, 793,2575,2576,2577,2578,2579,2580,1531, 251,2581,2582,2583, +2584,1532, 54, 612, 237,1327,2585,2586, 275, 408, 647, 111,2587,1533,1106, 465, + 3, 458, 9, 38,2588, 107, 110, 890, 209, 26, 737, 498,2589,1534,2590, 431, + 202, 88,1535, 356, 287,1107, 660,1149,2591, 381,1536, 986,1150, 445,1248,1151, + 974,2592,2593, 846,2594, 446, 953, 184,1249,1250, 727,2595, 923, 193, 883,2596, +2597,2598, 102, 324, 539, 817,2599, 421,1041,2600, 832,2601, 94, 175, 197, 406, +2602, 459,2603,2604,2605,2606,2607, 330, 555,2608,2609,2610, 706,1108, 389,2611, +2612,2613,2614, 233,2615, 833, 558, 931, 954,1251,2616,2617,1537, 546,2618,2619, +1009,2620,2621,2622,1538, 690,1328,2623, 955,2624,1539,2625,2626, 772,2627,2628, +2629,2630,2631, 924, 648, 863, 603,2632,2633, 934,1540, 864, 865,2634, 642,1042, + 670,1190,2635,2636,2637,2638, 168,2639, 652, 873, 542,1054,1541,2640,2641,2642, # 512, 256 +) + diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euckrprober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euckrprober.py new file mode 100644 index 00000000..345a060d --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euckrprober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCKRDistributionAnalysis +from .mbcssm import EUCKR_SM_MODEL + + +class EUCKRProber(MultiByteCharSetProber): + def __init__(self): + super(EUCKRProber, self).__init__() + self.coding_sm = CodingStateMachine(EUCKR_SM_MODEL) + self.distribution_analyzer = EUCKRDistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "EUC-KR" + + @property + def language(self): + return "Korean" diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euctwfreq.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euctwfreq.py new file mode 100644 index 00000000..ed7a995a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euctwfreq.py @@ -0,0 +1,387 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# EUCTW frequency table +# Converted from big5 work +# by Taiwan's Mandarin Promotion Council +# + +# 128 --> 0.42261 +# 256 --> 0.57851 +# 512 --> 0.74851 +# 1024 --> 0.89384 +# 2048 --> 0.97583 +# +# Idea Distribution Ratio = 0.74851/(1-0.74851) =2.98 +# Random Distribution Ration = 512/(5401-512)=0.105 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher than RDR + +EUCTW_TYPICAL_DISTRIBUTION_RATIO = 0.75 + +# Char to FreqOrder table , +EUCTW_TABLE_SIZE = 5376 + +EUCTW_CHAR_TO_FREQ_ORDER = ( + 1,1800,1506, 255,1431, 198, 9, 82, 6,7310, 177, 202,3615,1256,2808, 110, # 2742 +3735, 33,3241, 261, 76, 44,2113, 16,2931,2184,1176, 659,3868, 26,3404,2643, # 2758 +1198,3869,3313,4060, 410,2211, 302, 590, 361,1963, 8, 204, 58,4296,7311,1931, # 2774 + 63,7312,7313, 317,1614, 75, 222, 159,4061,2412,1480,7314,3500,3068, 224,2809, # 2790 +3616, 3, 10,3870,1471, 29,2774,1135,2852,1939, 873, 130,3242,1123, 312,7315, # 2806 +4297,2051, 507, 252, 682,7316, 142,1914, 124, 206,2932, 34,3501,3173, 64, 604, # 2822 +7317,2494,1976,1977, 155,1990, 645, 641,1606,7318,3405, 337, 72, 406,7319, 80, # 2838 + 630, 238,3174,1509, 263, 939,1092,2644, 756,1440,1094,3406, 449, 69,2969, 591, # 2854 + 179,2095, 471, 115,2034,1843, 60, 50,2970, 134, 806,1868, 734,2035,3407, 180, # 2870 + 995,1607, 156, 537,2893, 688,7320, 319,1305, 779,2144, 514,2374, 298,4298, 359, # 2886 +2495, 90,2707,1338, 663, 11, 906,1099,2545, 20,2436, 182, 532,1716,7321, 732, # 2902 +1376,4062,1311,1420,3175, 25,2312,1056, 113, 399, 382,1949, 242,3408,2467, 529, # 2918 +3243, 475,1447,3617,7322, 117, 21, 656, 810,1297,2295,2329,3502,7323, 126,4063, # 2934 + 706, 456, 150, 613,4299, 71,1118,2036,4064, 145,3069, 85, 835, 486,2114,1246, # 2950 +1426, 428, 727,1285,1015, 800, 106, 623, 303,1281,7324,2127,2354, 347,3736, 221, # 2966 +3503,3110,7325,1955,1153,4065, 83, 296,1199,3070, 192, 624, 93,7326, 822,1897, # 2982 +2810,3111, 795,2064, 991,1554,1542,1592, 27, 43,2853, 859, 139,1456, 860,4300, # 2998 + 437, 712,3871, 164,2392,3112, 695, 211,3017,2096, 195,3872,1608,3504,3505,3618, # 3014 +3873, 234, 811,2971,2097,3874,2229,1441,3506,1615,2375, 668,2076,1638, 305, 228, # 3030 +1664,4301, 467, 415,7327, 262,2098,1593, 239, 108, 300, 200,1033, 512,1247,2077, # 3046 +7328,7329,2173,3176,3619,2673, 593, 845,1062,3244, 88,1723,2037,3875,1950, 212, # 3062 + 266, 152, 149, 468,1898,4066,4302, 77, 187,7330,3018, 37, 5,2972,7331,3876, # 3078 +7332,7333, 39,2517,4303,2894,3177,2078, 55, 148, 74,4304, 545, 483,1474,1029, # 3094 +1665, 217,1869,1531,3113,1104,2645,4067, 24, 172,3507, 900,3877,3508,3509,4305, # 3110 + 32,1408,2811,1312, 329, 487,2355,2247,2708, 784,2674, 4,3019,3314,1427,1788, # 3126 + 188, 109, 499,7334,3620,1717,1789, 888,1217,3020,4306,7335,3510,7336,3315,1520, # 3142 +3621,3878, 196,1034, 775,7337,7338, 929,1815, 249, 439, 38,7339,1063,7340, 794, # 3158 +3879,1435,2296, 46, 178,3245,2065,7341,2376,7342, 214,1709,4307, 804, 35, 707, # 3174 + 324,3622,1601,2546, 140, 459,4068,7343,7344,1365, 839, 272, 978,2257,2572,3409, # 3190 +2128,1363,3623,1423, 697, 100,3071, 48, 70,1231, 495,3114,2193,7345,1294,7346, # 3206 +2079, 462, 586,1042,3246, 853, 256, 988, 185,2377,3410,1698, 434,1084,7347,3411, # 3222 + 314,2615,2775,4308,2330,2331, 569,2280, 637,1816,2518, 757,1162,1878,1616,3412, # 3238 + 287,1577,2115, 768,4309,1671,2854,3511,2519,1321,3737, 909,2413,7348,4069, 933, # 3254 +3738,7349,2052,2356,1222,4310, 765,2414,1322, 786,4311,7350,1919,1462,1677,2895, # 3270 +1699,7351,4312,1424,2437,3115,3624,2590,3316,1774,1940,3413,3880,4070, 309,1369, # 3286 +1130,2812, 364,2230,1653,1299,3881,3512,3882,3883,2646, 525,1085,3021, 902,2000, # 3302 +1475, 964,4313, 421,1844,1415,1057,2281, 940,1364,3116, 376,4314,4315,1381, 7, # 3318 +2520, 983,2378, 336,1710,2675,1845, 321,3414, 559,1131,3022,2742,1808,1132,1313, # 3334 + 265,1481,1857,7352, 352,1203,2813,3247, 167,1089, 420,2814, 776, 792,1724,3513, # 3350 +4071,2438,3248,7353,4072,7354, 446, 229, 333,2743, 901,3739,1200,1557,4316,2647, # 3366 +1920, 395,2744,2676,3740,4073,1835, 125, 916,3178,2616,4317,7355,7356,3741,7357, # 3382 +7358,7359,4318,3117,3625,1133,2547,1757,3415,1510,2313,1409,3514,7360,2145, 438, # 3398 +2591,2896,2379,3317,1068, 958,3023, 461, 311,2855,2677,4074,1915,3179,4075,1978, # 3414 + 383, 750,2745,2617,4076, 274, 539, 385,1278,1442,7361,1154,1964, 384, 561, 210, # 3430 + 98,1295,2548,3515,7362,1711,2415,1482,3416,3884,2897,1257, 129,7363,3742, 642, # 3446 + 523,2776,2777,2648,7364, 141,2231,1333, 68, 176, 441, 876, 907,4077, 603,2592, # 3462 + 710, 171,3417, 404, 549, 18,3118,2393,1410,3626,1666,7365,3516,4319,2898,4320, # 3478 +7366,2973, 368,7367, 146, 366, 99, 871,3627,1543, 748, 807,1586,1185, 22,2258, # 3494 + 379,3743,3180,7368,3181, 505,1941,2618,1991,1382,2314,7369, 380,2357, 218, 702, # 3510 +1817,1248,3418,3024,3517,3318,3249,7370,2974,3628, 930,3250,3744,7371, 59,7372, # 3526 + 585, 601,4078, 497,3419,1112,1314,4321,1801,7373,1223,1472,2174,7374, 749,1836, # 3542 + 690,1899,3745,1772,3885,1476, 429,1043,1790,2232,2116, 917,4079, 447,1086,1629, # 3558 +7375, 556,7376,7377,2020,1654, 844,1090, 105, 550, 966,1758,2815,1008,1782, 686, # 3574 +1095,7378,2282, 793,1602,7379,3518,2593,4322,4080,2933,2297,4323,3746, 980,2496, # 3590 + 544, 353, 527,4324, 908,2678,2899,7380, 381,2619,1942,1348,7381,1341,1252, 560, # 3606 +3072,7382,3420,2856,7383,2053, 973, 886,2080, 143,4325,7384,7385, 157,3886, 496, # 3622 +4081, 57, 840, 540,2038,4326,4327,3421,2117,1445, 970,2259,1748,1965,2081,4082, # 3638 +3119,1234,1775,3251,2816,3629, 773,1206,2129,1066,2039,1326,3887,1738,1725,4083, # 3654 + 279,3120, 51,1544,2594, 423,1578,2130,2066, 173,4328,1879,7386,7387,1583, 264, # 3670 + 610,3630,4329,2439, 280, 154,7388,7389,7390,1739, 338,1282,3073, 693,2857,1411, # 3686 +1074,3747,2440,7391,4330,7392,7393,1240, 952,2394,7394,2900,1538,2679, 685,1483, # 3702 +4084,2468,1436, 953,4085,2054,4331, 671,2395, 79,4086,2441,3252, 608, 567,2680, # 3718 +3422,4087,4088,1691, 393,1261,1791,2396,7395,4332,7396,7397,7398,7399,1383,1672, # 3734 +3748,3182,1464, 522,1119, 661,1150, 216, 675,4333,3888,1432,3519, 609,4334,2681, # 3750 +2397,7400,7401,7402,4089,3025, 0,7403,2469, 315, 231,2442, 301,3319,4335,2380, # 3766 +7404, 233,4090,3631,1818,4336,4337,7405, 96,1776,1315,2082,7406, 257,7407,1809, # 3782 +3632,2709,1139,1819,4091,2021,1124,2163,2778,1777,2649,7408,3074, 363,1655,3183, # 3798 +7409,2975,7410,7411,7412,3889,1567,3890, 718, 103,3184, 849,1443, 341,3320,2934, # 3814 +1484,7413,1712, 127, 67, 339,4092,2398, 679,1412, 821,7414,7415, 834, 738, 351, # 3830 +2976,2146, 846, 235,1497,1880, 418,1992,3749,2710, 186,1100,2147,2746,3520,1545, # 3846 +1355,2935,2858,1377, 583,3891,4093,2573,2977,7416,1298,3633,1078,2549,3634,2358, # 3862 + 78,3750,3751, 267,1289,2099,2001,1594,4094, 348, 369,1274,2194,2175,1837,4338, # 3878 +1820,2817,3635,2747,2283,2002,4339,2936,2748, 144,3321, 882,4340,3892,2749,3423, # 3894 +4341,2901,7417,4095,1726, 320,7418,3893,3026, 788,2978,7419,2818,1773,1327,2859, # 3910 +3894,2819,7420,1306,4342,2003,1700,3752,3521,2359,2650, 787,2022, 506, 824,3636, # 3926 + 534, 323,4343,1044,3322,2023,1900, 946,3424,7421,1778,1500,1678,7422,1881,4344, # 3942 + 165, 243,4345,3637,2521, 123, 683,4096, 764,4346, 36,3895,1792, 589,2902, 816, # 3958 + 626,1667,3027,2233,1639,1555,1622,3753,3896,7423,3897,2860,1370,1228,1932, 891, # 3974 +2083,2903, 304,4097,7424, 292,2979,2711,3522, 691,2100,4098,1115,4347, 118, 662, # 3990 +7425, 611,1156, 854,2381,1316,2861, 2, 386, 515,2904,7426,7427,3253, 868,2234, # 4006 +1486, 855,2651, 785,2212,3028,7428,1040,3185,3523,7429,3121, 448,7430,1525,7431, # 4022 +2164,4348,7432,3754,7433,4099,2820,3524,3122, 503, 818,3898,3123,1568, 814, 676, # 4038 +1444, 306,1749,7434,3755,1416,1030, 197,1428, 805,2821,1501,4349,7435,7436,7437, # 4054 +1993,7438,4350,7439,7440,2195, 13,2779,3638,2980,3124,1229,1916,7441,3756,2131, # 4070 +7442,4100,4351,2399,3525,7443,2213,1511,1727,1120,7444,7445, 646,3757,2443, 307, # 4086 +7446,7447,1595,3186,7448,7449,7450,3639,1113,1356,3899,1465,2522,2523,7451, 519, # 4102 +7452, 128,2132, 92,2284,1979,7453,3900,1512, 342,3125,2196,7454,2780,2214,1980, # 4118 +3323,7455, 290,1656,1317, 789, 827,2360,7456,3758,4352, 562, 581,3901,7457, 401, # 4134 +4353,2248, 94,4354,1399,2781,7458,1463,2024,4355,3187,1943,7459, 828,1105,4101, # 4150 +1262,1394,7460,4102, 605,4356,7461,1783,2862,7462,2822, 819,2101, 578,2197,2937, # 4166 +7463,1502, 436,3254,4103,3255,2823,3902,2905,3425,3426,7464,2712,2315,7465,7466, # 4182 +2332,2067, 23,4357, 193, 826,3759,2102, 699,1630,4104,3075, 390,1793,1064,3526, # 4198 +7467,1579,3076,3077,1400,7468,4105,1838,1640,2863,7469,4358,4359, 137,4106, 598, # 4214 +3078,1966, 780, 104, 974,2938,7470, 278, 899, 253, 402, 572, 504, 493,1339,7471, # 4230 +3903,1275,4360,2574,2550,7472,3640,3029,3079,2249, 565,1334,2713, 863, 41,7473, # 4246 +7474,4361,7475,1657,2333, 19, 463,2750,4107, 606,7476,2981,3256,1087,2084,1323, # 4262 +2652,2982,7477,1631,1623,1750,4108,2682,7478,2864, 791,2714,2653,2334, 232,2416, # 4278 +7479,2983,1498,7480,2654,2620, 755,1366,3641,3257,3126,2025,1609, 119,1917,3427, # 4294 + 862,1026,4109,7481,3904,3760,4362,3905,4363,2260,1951,2470,7482,1125, 817,4110, # 4310 +4111,3906,1513,1766,2040,1487,4112,3030,3258,2824,3761,3127,7483,7484,1507,7485, # 4326 +2683, 733, 40,1632,1106,2865, 345,4113, 841,2524, 230,4364,2984,1846,3259,3428, # 4342 +7486,1263, 986,3429,7487, 735, 879, 254,1137, 857, 622,1300,1180,1388,1562,3907, # 4358 +3908,2939, 967,2751,2655,1349, 592,2133,1692,3324,2985,1994,4114,1679,3909,1901, # 4374 +2185,7488, 739,3642,2715,1296,1290,7489,4115,2198,2199,1921,1563,2595,2551,1870, # 4390 +2752,2986,7490, 435,7491, 343,1108, 596, 17,1751,4365,2235,3430,3643,7492,4366, # 4406 + 294,3527,2940,1693, 477, 979, 281,2041,3528, 643,2042,3644,2621,2782,2261,1031, # 4422 +2335,2134,2298,3529,4367, 367,1249,2552,7493,3530,7494,4368,1283,3325,2004, 240, # 4438 +1762,3326,4369,4370, 836,1069,3128, 474,7495,2148,2525, 268,3531,7496,3188,1521, # 4454 +1284,7497,1658,1546,4116,7498,3532,3533,7499,4117,3327,2684,1685,4118, 961,1673, # 4470 +2622, 190,2005,2200,3762,4371,4372,7500, 570,2497,3645,1490,7501,4373,2623,3260, # 4486 +1956,4374, 584,1514, 396,1045,1944,7502,4375,1967,2444,7503,7504,4376,3910, 619, # 4502 +7505,3129,3261, 215,2006,2783,2553,3189,4377,3190,4378, 763,4119,3763,4379,7506, # 4518 +7507,1957,1767,2941,3328,3646,1174, 452,1477,4380,3329,3130,7508,2825,1253,2382, # 4534 +2186,1091,2285,4120, 492,7509, 638,1169,1824,2135,1752,3911, 648, 926,1021,1324, # 4550 +4381, 520,4382, 997, 847,1007, 892,4383,3764,2262,1871,3647,7510,2400,1784,4384, # 4566 +1952,2942,3080,3191,1728,4121,2043,3648,4385,2007,1701,3131,1551, 30,2263,4122, # 4582 +7511,2026,4386,3534,7512, 501,7513,4123, 594,3431,2165,1821,3535,3432,3536,3192, # 4598 + 829,2826,4124,7514,1680,3132,1225,4125,7515,3262,4387,4126,3133,2336,7516,4388, # 4614 +4127,7517,3912,3913,7518,1847,2383,2596,3330,7519,4389, 374,3914, 652,4128,4129, # 4630 + 375,1140, 798,7520,7521,7522,2361,4390,2264, 546,1659, 138,3031,2445,4391,7523, # 4646 +2250, 612,1848, 910, 796,3765,1740,1371, 825,3766,3767,7524,2906,2554,7525, 692, # 4662 + 444,3032,2624, 801,4392,4130,7526,1491, 244,1053,3033,4131,4132, 340,7527,3915, # 4678 +1041,2987, 293,1168, 87,1357,7528,1539, 959,7529,2236, 721, 694,4133,3768, 219, # 4694 +1478, 644,1417,3331,2656,1413,1401,1335,1389,3916,7530,7531,2988,2362,3134,1825, # 4710 + 730,1515, 184,2827, 66,4393,7532,1660,2943, 246,3332, 378,1457, 226,3433, 975, # 4726 +3917,2944,1264,3537, 674, 696,7533, 163,7534,1141,2417,2166, 713,3538,3333,4394, # 4742 +3918,7535,7536,1186, 15,7537,1079,1070,7538,1522,3193,3539, 276,1050,2716, 758, # 4758 +1126, 653,2945,3263,7539,2337, 889,3540,3919,3081,2989, 903,1250,4395,3920,3434, # 4774 +3541,1342,1681,1718, 766,3264, 286, 89,2946,3649,7540,1713,7541,2597,3334,2990, # 4790 +7542,2947,2215,3194,2866,7543,4396,2498,2526, 181, 387,1075,3921, 731,2187,3335, # 4806 +7544,3265, 310, 313,3435,2299, 770,4134, 54,3034, 189,4397,3082,3769,3922,7545, # 4822 +1230,1617,1849, 355,3542,4135,4398,3336, 111,4136,3650,1350,3135,3436,3035,4137, # 4838 +2149,3266,3543,7546,2784,3923,3924,2991, 722,2008,7547,1071, 247,1207,2338,2471, # 4854 +1378,4399,2009, 864,1437,1214,4400, 373,3770,1142,2216, 667,4401, 442,2753,2555, # 4870 +3771,3925,1968,4138,3267,1839, 837, 170,1107, 934,1336,1882,7548,7549,2118,4139, # 4886 +2828, 743,1569,7550,4402,4140, 582,2384,1418,3437,7551,1802,7552, 357,1395,1729, # 4902 +3651,3268,2418,1564,2237,7553,3083,3772,1633,4403,1114,2085,4141,1532,7554, 482, # 4918 +2446,4404,7555,7556,1492, 833,1466,7557,2717,3544,1641,2829,7558,1526,1272,3652, # 4934 +4142,1686,1794, 416,2556,1902,1953,1803,7559,3773,2785,3774,1159,2316,7560,2867, # 4950 +4405,1610,1584,3036,2419,2754, 443,3269,1163,3136,7561,7562,3926,7563,4143,2499, # 4966 +3037,4406,3927,3137,2103,1647,3545,2010,1872,4144,7564,4145, 431,3438,7565, 250, # 4982 + 97, 81,4146,7566,1648,1850,1558, 160, 848,7567, 866, 740,1694,7568,2201,2830, # 4998 +3195,4147,4407,3653,1687, 950,2472, 426, 469,3196,3654,3655,3928,7569,7570,1188, # 5014 + 424,1995, 861,3546,4148,3775,2202,2685, 168,1235,3547,4149,7571,2086,1674,4408, # 5030 +3337,3270, 220,2557,1009,7572,3776, 670,2992, 332,1208, 717,7573,7574,3548,2447, # 5046 +3929,3338,7575, 513,7576,1209,2868,3339,3138,4409,1080,7577,7578,7579,7580,2527, # 5062 +3656,3549, 815,1587,3930,3931,7581,3550,3439,3777,1254,4410,1328,3038,1390,3932, # 5078 +1741,3933,3778,3934,7582, 236,3779,2448,3271,7583,7584,3657,3780,1273,3781,4411, # 5094 +7585, 308,7586,4412, 245,4413,1851,2473,1307,2575, 430, 715,2136,2449,7587, 270, # 5110 + 199,2869,3935,7588,3551,2718,1753, 761,1754, 725,1661,1840,4414,3440,3658,7589, # 5126 +7590, 587, 14,3272, 227,2598, 326, 480,2265, 943,2755,3552, 291, 650,1883,7591, # 5142 +1702,1226, 102,1547, 62,3441, 904,4415,3442,1164,4150,7592,7593,1224,1548,2756, # 5158 + 391, 498,1493,7594,1386,1419,7595,2055,1177,4416, 813, 880,1081,2363, 566,1145, # 5174 +4417,2286,1001,1035,2558,2599,2238, 394,1286,7596,7597,2068,7598, 86,1494,1730, # 5190 +3936, 491,1588, 745, 897,2948, 843,3340,3937,2757,2870,3273,1768, 998,2217,2069, # 5206 + 397,1826,1195,1969,3659,2993,3341, 284,7599,3782,2500,2137,2119,1903,7600,3938, # 5222 +2150,3939,4151,1036,3443,1904, 114,2559,4152, 209,1527,7601,7602,2949,2831,2625, # 5238 +2385,2719,3139, 812,2560,7603,3274,7604,1559, 737,1884,3660,1210, 885, 28,2686, # 5254 +3553,3783,7605,4153,1004,1779,4418,7606, 346,1981,2218,2687,4419,3784,1742, 797, # 5270 +1642,3940,1933,1072,1384,2151, 896,3941,3275,3661,3197,2871,3554,7607,2561,1958, # 5286 +4420,2450,1785,7608,7609,7610,3942,4154,1005,1308,3662,4155,2720,4421,4422,1528, # 5302 +2600, 161,1178,4156,1982, 987,4423,1101,4157, 631,3943,1157,3198,2420,1343,1241, # 5318 +1016,2239,2562, 372, 877,2339,2501,1160, 555,1934, 911,3944,7611, 466,1170, 169, # 5334 +1051,2907,2688,3663,2474,2994,1182,2011,2563,1251,2626,7612, 992,2340,3444,1540, # 5350 +2721,1201,2070,2401,1996,2475,7613,4424, 528,1922,2188,1503,1873,1570,2364,3342, # 5366 +3276,7614, 557,1073,7615,1827,3445,2087,2266,3140,3039,3084, 767,3085,2786,4425, # 5382 +1006,4158,4426,2341,1267,2176,3664,3199, 778,3945,3200,2722,1597,2657,7616,4427, # 5398 +7617,3446,7618,7619,7620,3277,2689,1433,3278, 131, 95,1504,3946, 723,4159,3141, # 5414 +1841,3555,2758,2189,3947,2027,2104,3665,7621,2995,3948,1218,7622,3343,3201,3949, # 5430 +4160,2576, 248,1634,3785, 912,7623,2832,3666,3040,3786, 654, 53,7624,2996,7625, # 5446 +1688,4428, 777,3447,1032,3950,1425,7626, 191, 820,2120,2833, 971,4429, 931,3202, # 5462 + 135, 664, 783,3787,1997, 772,2908,1935,3951,3788,4430,2909,3203, 282,2723, 640, # 5478 +1372,3448,1127, 922, 325,3344,7627,7628, 711,2044,7629,7630,3952,2219,2787,1936, # 5494 +3953,3345,2220,2251,3789,2300,7631,4431,3790,1258,3279,3954,3204,2138,2950,3955, # 5510 +3956,7632,2221, 258,3205,4432, 101,1227,7633,3280,1755,7634,1391,3281,7635,2910, # 5526 +2056, 893,7636,7637,7638,1402,4161,2342,7639,7640,3206,3556,7641,7642, 878,1325, # 5542 +1780,2788,4433, 259,1385,2577, 744,1183,2267,4434,7643,3957,2502,7644, 684,1024, # 5558 +4162,7645, 472,3557,3449,1165,3282,3958,3959, 322,2152, 881, 455,1695,1152,1340, # 5574 + 660, 554,2153,4435,1058,4436,4163, 830,1065,3346,3960,4437,1923,7646,1703,1918, # 5590 +7647, 932,2268, 122,7648,4438, 947, 677,7649,3791,2627, 297,1905,1924,2269,4439, # 5606 +2317,3283,7650,7651,4164,7652,4165, 84,4166, 112, 989,7653, 547,1059,3961, 701, # 5622 +3558,1019,7654,4167,7655,3450, 942, 639, 457,2301,2451, 993,2951, 407, 851, 494, # 5638 +4440,3347, 927,7656,1237,7657,2421,3348, 573,4168, 680, 921,2911,1279,1874, 285, # 5654 + 790,1448,1983, 719,2167,7658,7659,4441,3962,3963,1649,7660,1541, 563,7661,1077, # 5670 +7662,3349,3041,3451, 511,2997,3964,3965,3667,3966,1268,2564,3350,3207,4442,4443, # 5686 +7663, 535,1048,1276,1189,2912,2028,3142,1438,1373,2834,2952,1134,2012,7664,4169, # 5702 +1238,2578,3086,1259,7665, 700,7666,2953,3143,3668,4170,7667,4171,1146,1875,1906, # 5718 +4444,2601,3967, 781,2422, 132,1589, 203, 147, 273,2789,2402, 898,1786,2154,3968, # 5734 +3969,7668,3792,2790,7669,7670,4445,4446,7671,3208,7672,1635,3793, 965,7673,1804, # 5750 +2690,1516,3559,1121,1082,1329,3284,3970,1449,3794, 65,1128,2835,2913,2759,1590, # 5766 +3795,7674,7675, 12,2658, 45, 976,2579,3144,4447, 517,2528,1013,1037,3209,7676, # 5782 +3796,2836,7677,3797,7678,3452,7679,2602, 614,1998,2318,3798,3087,2724,2628,7680, # 5798 +2580,4172, 599,1269,7681,1810,3669,7682,2691,3088, 759,1060, 489,1805,3351,3285, # 5814 +1358,7683,7684,2386,1387,1215,2629,2252, 490,7685,7686,4173,1759,2387,2343,7687, # 5830 +4448,3799,1907,3971,2630,1806,3210,4449,3453,3286,2760,2344, 874,7688,7689,3454, # 5846 +3670,1858, 91,2914,3671,3042,3800,4450,7690,3145,3972,2659,7691,3455,1202,1403, # 5862 +3801,2954,2529,1517,2503,4451,3456,2504,7692,4452,7693,2692,1885,1495,1731,3973, # 5878 +2365,4453,7694,2029,7695,7696,3974,2693,1216, 237,2581,4174,2319,3975,3802,4454, # 5894 +4455,2694,3560,3457, 445,4456,7697,7698,7699,7700,2761, 61,3976,3672,1822,3977, # 5910 +7701, 687,2045, 935, 925, 405,2660, 703,1096,1859,2725,4457,3978,1876,1367,2695, # 5926 +3352, 918,2105,1781,2476, 334,3287,1611,1093,4458, 564,3146,3458,3673,3353, 945, # 5942 +2631,2057,4459,7702,1925, 872,4175,7703,3459,2696,3089, 349,4176,3674,3979,4460, # 5958 +3803,4177,3675,2155,3980,4461,4462,4178,4463,2403,2046, 782,3981, 400, 251,4179, # 5974 +1624,7704,7705, 277,3676, 299,1265, 476,1191,3804,2121,4180,4181,1109, 205,7706, # 5990 +2582,1000,2156,3561,1860,7707,7708,7709,4464,7710,4465,2565, 107,2477,2157,3982, # 6006 +3460,3147,7711,1533, 541,1301, 158, 753,4182,2872,3562,7712,1696, 370,1088,4183, # 6022 +4466,3563, 579, 327, 440, 162,2240, 269,1937,1374,3461, 968,3043, 56,1396,3090, # 6038 +2106,3288,3354,7713,1926,2158,4467,2998,7714,3564,7715,7716,3677,4468,2478,7717, # 6054 +2791,7718,1650,4469,7719,2603,7720,7721,3983,2661,3355,1149,3356,3984,3805,3985, # 6070 +7722,1076, 49,7723, 951,3211,3289,3290, 450,2837, 920,7724,1811,2792,2366,4184, # 6086 +1908,1138,2367,3806,3462,7725,3212,4470,1909,1147,1518,2423,4471,3807,7726,4472, # 6102 +2388,2604, 260,1795,3213,7727,7728,3808,3291, 708,7729,3565,1704,7730,3566,1351, # 6118 +1618,3357,2999,1886, 944,4185,3358,4186,3044,3359,4187,7731,3678, 422, 413,1714, # 6134 +3292, 500,2058,2345,4188,2479,7732,1344,1910, 954,7733,1668,7734,7735,3986,2404, # 6150 +4189,3567,3809,4190,7736,2302,1318,2505,3091, 133,3092,2873,4473, 629, 31,2838, # 6166 +2697,3810,4474, 850, 949,4475,3987,2955,1732,2088,4191,1496,1852,7737,3988, 620, # 6182 +3214, 981,1242,3679,3360,1619,3680,1643,3293,2139,2452,1970,1719,3463,2168,7738, # 6198 +3215,7739,7740,3361,1828,7741,1277,4476,1565,2047,7742,1636,3568,3093,7743, 869, # 6214 +2839, 655,3811,3812,3094,3989,3000,3813,1310,3569,4477,7744,7745,7746,1733, 558, # 6230 +4478,3681, 335,1549,3045,1756,4192,3682,1945,3464,1829,1291,1192, 470,2726,2107, # 6246 +2793, 913,1054,3990,7747,1027,7748,3046,3991,4479, 982,2662,3362,3148,3465,3216, # 6262 +3217,1946,2794,7749, 571,4480,7750,1830,7751,3570,2583,1523,2424,7752,2089, 984, # 6278 +4481,3683,1959,7753,3684, 852, 923,2795,3466,3685, 969,1519, 999,2048,2320,1705, # 6294 +7754,3095, 615,1662, 151, 597,3992,2405,2321,1049, 275,4482,3686,4193, 568,3687, # 6310 +3571,2480,4194,3688,7755,2425,2270, 409,3218,7756,1566,2874,3467,1002, 769,2840, # 6326 + 194,2090,3149,3689,2222,3294,4195, 628,1505,7757,7758,1763,2177,3001,3993, 521, # 6342 +1161,2584,1787,2203,2406,4483,3994,1625,4196,4197, 412, 42,3096, 464,7759,2632, # 6358 +4484,3363,1760,1571,2875,3468,2530,1219,2204,3814,2633,2140,2368,4485,4486,3295, # 6374 +1651,3364,3572,7760,7761,3573,2481,3469,7762,3690,7763,7764,2271,2091, 460,7765, # 6390 +4487,7766,3002, 962, 588,3574, 289,3219,2634,1116, 52,7767,3047,1796,7768,7769, # 6406 +7770,1467,7771,1598,1143,3691,4198,1984,1734,1067,4488,1280,3365, 465,4489,1572, # 6422 + 510,7772,1927,2241,1812,1644,3575,7773,4490,3692,7774,7775,2663,1573,1534,7776, # 6438 +7777,4199, 536,1807,1761,3470,3815,3150,2635,7778,7779,7780,4491,3471,2915,1911, # 6454 +2796,7781,3296,1122, 377,3220,7782, 360,7783,7784,4200,1529, 551,7785,2059,3693, # 6470 +1769,2426,7786,2916,4201,3297,3097,2322,2108,2030,4492,1404, 136,1468,1479, 672, # 6486 +1171,3221,2303, 271,3151,7787,2762,7788,2049, 678,2727, 865,1947,4493,7789,2013, # 6502 +3995,2956,7790,2728,2223,1397,3048,3694,4494,4495,1735,2917,3366,3576,7791,3816, # 6518 + 509,2841,2453,2876,3817,7792,7793,3152,3153,4496,4202,2531,4497,2304,1166,1010, # 6534 + 552, 681,1887,7794,7795,2957,2958,3996,1287,1596,1861,3154, 358, 453, 736, 175, # 6550 + 478,1117, 905,1167,1097,7796,1853,1530,7797,1706,7798,2178,3472,2287,3695,3473, # 6566 +3577,4203,2092,4204,7799,3367,1193,2482,4205,1458,2190,2205,1862,1888,1421,3298, # 6582 +2918,3049,2179,3474, 595,2122,7800,3997,7801,7802,4206,1707,2636, 223,3696,1359, # 6598 + 751,3098, 183,3475,7803,2797,3003, 419,2369, 633, 704,3818,2389, 241,7804,7805, # 6614 +7806, 838,3004,3697,2272,2763,2454,3819,1938,2050,3998,1309,3099,2242,1181,7807, # 6630 +1136,2206,3820,2370,1446,4207,2305,4498,7808,7809,4208,1055,2605, 484,3698,7810, # 6646 +3999, 625,4209,2273,3368,1499,4210,4000,7811,4001,4211,3222,2274,2275,3476,7812, # 6662 +7813,2764, 808,2606,3699,3369,4002,4212,3100,2532, 526,3370,3821,4213, 955,7814, # 6678 +1620,4214,2637,2427,7815,1429,3700,1669,1831, 994, 928,7816,3578,1260,7817,7818, # 6694 +7819,1948,2288, 741,2919,1626,4215,2729,2455, 867,1184, 362,3371,1392,7820,7821, # 6710 +4003,4216,1770,1736,3223,2920,4499,4500,1928,2698,1459,1158,7822,3050,3372,2877, # 6726 +1292,1929,2506,2842,3701,1985,1187,2071,2014,2607,4217,7823,2566,2507,2169,3702, # 6742 +2483,3299,7824,3703,4501,7825,7826, 666,1003,3005,1022,3579,4218,7827,4502,1813, # 6758 +2253, 574,3822,1603, 295,1535, 705,3823,4219, 283, 858, 417,7828,7829,3224,4503, # 6774 +4504,3051,1220,1889,1046,2276,2456,4004,1393,1599, 689,2567, 388,4220,7830,2484, # 6790 + 802,7831,2798,3824,2060,1405,2254,7832,4505,3825,2109,1052,1345,3225,1585,7833, # 6806 + 809,7834,7835,7836, 575,2730,3477, 956,1552,1469,1144,2323,7837,2324,1560,2457, # 6822 +3580,3226,4005, 616,2207,3155,2180,2289,7838,1832,7839,3478,4506,7840,1319,3704, # 6838 +3705,1211,3581,1023,3227,1293,2799,7841,7842,7843,3826, 607,2306,3827, 762,2878, # 6854 +1439,4221,1360,7844,1485,3052,7845,4507,1038,4222,1450,2061,2638,4223,1379,4508, # 6870 +2585,7846,7847,4224,1352,1414,2325,2921,1172,7848,7849,3828,3829,7850,1797,1451, # 6886 +7851,7852,7853,7854,2922,4006,4007,2485,2346, 411,4008,4009,3582,3300,3101,4509, # 6902 +1561,2664,1452,4010,1375,7855,7856, 47,2959, 316,7857,1406,1591,2923,3156,7858, # 6918 +1025,2141,3102,3157, 354,2731, 884,2224,4225,2407, 508,3706, 726,3583, 996,2428, # 6934 +3584, 729,7859, 392,2191,1453,4011,4510,3707,7860,7861,2458,3585,2608,1675,2800, # 6950 + 919,2347,2960,2348,1270,4511,4012, 73,7862,7863, 647,7864,3228,2843,2255,1550, # 6966 +1346,3006,7865,1332, 883,3479,7866,7867,7868,7869,3301,2765,7870,1212, 831,1347, # 6982 +4226,4512,2326,3830,1863,3053, 720,3831,4513,4514,3832,7871,4227,7872,7873,4515, # 6998 +7874,7875,1798,4516,3708,2609,4517,3586,1645,2371,7876,7877,2924, 669,2208,2665, # 7014 +2429,7878,2879,7879,7880,1028,3229,7881,4228,2408,7882,2256,1353,7883,7884,4518, # 7030 +3158, 518,7885,4013,7886,4229,1960,7887,2142,4230,7888,7889,3007,2349,2350,3833, # 7046 + 516,1833,1454,4014,2699,4231,4519,2225,2610,1971,1129,3587,7890,2766,7891,2961, # 7062 +1422, 577,1470,3008,1524,3373,7892,7893, 432,4232,3054,3480,7894,2586,1455,2508, # 7078 +2226,1972,1175,7895,1020,2732,4015,3481,4520,7896,2733,7897,1743,1361,3055,3482, # 7094 +2639,4016,4233,4521,2290, 895, 924,4234,2170, 331,2243,3056, 166,1627,3057,1098, # 7110 +7898,1232,2880,2227,3374,4522, 657, 403,1196,2372, 542,3709,3375,1600,4235,3483, # 7126 +7899,4523,2767,3230, 576, 530,1362,7900,4524,2533,2666,3710,4017,7901, 842,3834, # 7142 +7902,2801,2031,1014,4018, 213,2700,3376, 665, 621,4236,7903,3711,2925,2430,7904, # 7158 +2431,3302,3588,3377,7905,4237,2534,4238,4525,3589,1682,4239,3484,1380,7906, 724, # 7174 +2277, 600,1670,7907,1337,1233,4526,3103,2244,7908,1621,4527,7909, 651,4240,7910, # 7190 +1612,4241,2611,7911,2844,7912,2734,2307,3058,7913, 716,2459,3059, 174,1255,2701, # 7206 +4019,3590, 548,1320,1398, 728,4020,1574,7914,1890,1197,3060,4021,7915,3061,3062, # 7222 +3712,3591,3713, 747,7916, 635,4242,4528,7917,7918,7919,4243,7920,7921,4529,7922, # 7238 +3378,4530,2432, 451,7923,3714,2535,2072,4244,2735,4245,4022,7924,1764,4531,7925, # 7254 +4246, 350,7926,2278,2390,2486,7927,4247,4023,2245,1434,4024, 488,4532, 458,4248, # 7270 +4025,3715, 771,1330,2391,3835,2568,3159,2159,2409,1553,2667,3160,4249,7928,2487, # 7286 +2881,2612,1720,2702,4250,3379,4533,7929,2536,4251,7930,3231,4252,2768,7931,2015, # 7302 +2736,7932,1155,1017,3716,3836,7933,3303,2308, 201,1864,4253,1430,7934,4026,7935, # 7318 +7936,7937,7938,7939,4254,1604,7940, 414,1865, 371,2587,4534,4535,3485,2016,3104, # 7334 +4536,1708, 960,4255, 887, 389,2171,1536,1663,1721,7941,2228,4027,2351,2926,1580, # 7350 +7942,7943,7944,1744,7945,2537,4537,4538,7946,4539,7947,2073,7948,7949,3592,3380, # 7366 +2882,4256,7950,4257,2640,3381,2802, 673,2703,2460, 709,3486,4028,3593,4258,7951, # 7382 +1148, 502, 634,7952,7953,1204,4540,3594,1575,4541,2613,3717,7954,3718,3105, 948, # 7398 +3232, 121,1745,3837,1110,7955,4259,3063,2509,3009,4029,3719,1151,1771,3838,1488, # 7414 +4030,1986,7956,2433,3487,7957,7958,2093,7959,4260,3839,1213,1407,2803, 531,2737, # 7430 +2538,3233,1011,1537,7960,2769,4261,3106,1061,7961,3720,3721,1866,2883,7962,2017, # 7446 + 120,4262,4263,2062,3595,3234,2309,3840,2668,3382,1954,4542,7963,7964,3488,1047, # 7462 +2704,1266,7965,1368,4543,2845, 649,3383,3841,2539,2738,1102,2846,2669,7966,7967, # 7478 +1999,7968,1111,3596,2962,7969,2488,3842,3597,2804,1854,3384,3722,7970,7971,3385, # 7494 +2410,2884,3304,3235,3598,7972,2569,7973,3599,2805,4031,1460, 856,7974,3600,7975, # 7510 +2885,2963,7976,2886,3843,7977,4264, 632,2510, 875,3844,1697,3845,2291,7978,7979, # 7526 +4544,3010,1239, 580,4545,4265,7980, 914, 936,2074,1190,4032,1039,2123,7981,7982, # 7542 +7983,3386,1473,7984,1354,4266,3846,7985,2172,3064,4033, 915,3305,4267,4268,3306, # 7558 +1605,1834,7986,2739, 398,3601,4269,3847,4034, 328,1912,2847,4035,3848,1331,4270, # 7574 +3011, 937,4271,7987,3602,4036,4037,3387,2160,4546,3388, 524, 742, 538,3065,1012, # 7590 +7988,7989,3849,2461,7990, 658,1103, 225,3850,7991,7992,4547,7993,4548,7994,3236, # 7606 +1243,7995,4038, 963,2246,4549,7996,2705,3603,3161,7997,7998,2588,2327,7999,4550, # 7622 +8000,8001,8002,3489,3307, 957,3389,2540,2032,1930,2927,2462, 870,2018,3604,1746, # 7638 +2770,2771,2434,2463,8003,3851,8004,3723,3107,3724,3490,3390,3725,8005,1179,3066, # 7654 +8006,3162,2373,4272,3726,2541,3163,3108,2740,4039,8007,3391,1556,2542,2292, 977, # 7670 +2887,2033,4040,1205,3392,8008,1765,3393,3164,2124,1271,1689, 714,4551,3491,8009, # 7686 +2328,3852, 533,4273,3605,2181, 617,8010,2464,3308,3492,2310,8011,8012,3165,8013, # 7702 +8014,3853,1987, 618, 427,2641,3493,3394,8015,8016,1244,1690,8017,2806,4274,4552, # 7718 +8018,3494,8019,8020,2279,1576, 473,3606,4275,3395, 972,8021,3607,8022,3067,8023, # 7734 +8024,4553,4554,8025,3727,4041,4042,8026, 153,4555, 356,8027,1891,2888,4276,2143, # 7750 + 408, 803,2352,8028,3854,8029,4277,1646,2570,2511,4556,4557,3855,8030,3856,4278, # 7766 +8031,2411,3396, 752,8032,8033,1961,2964,8034, 746,3012,2465,8035,4279,3728, 698, # 7782 +4558,1892,4280,3608,2543,4559,3609,3857,8036,3166,3397,8037,1823,1302,4043,2706, # 7798 +3858,1973,4281,8038,4282,3167, 823,1303,1288,1236,2848,3495,4044,3398, 774,3859, # 7814 +8039,1581,4560,1304,2849,3860,4561,8040,2435,2161,1083,3237,4283,4045,4284, 344, # 7830 +1173, 288,2311, 454,1683,8041,8042,1461,4562,4046,2589,8043,8044,4563, 985, 894, # 7846 +8045,3399,3168,8046,1913,2928,3729,1988,8047,2110,1974,8048,4047,8049,2571,1194, # 7862 + 425,8050,4564,3169,1245,3730,4285,8051,8052,2850,8053, 636,4565,1855,3861, 760, # 7878 +1799,8054,4286,2209,1508,4566,4048,1893,1684,2293,8055,8056,8057,4287,4288,2210, # 7894 + 479,8058,8059, 832,8060,4049,2489,8061,2965,2490,3731, 990,3109, 627,1814,2642, # 7910 +4289,1582,4290,2125,2111,3496,4567,8062, 799,4291,3170,8063,4568,2112,1737,3013, # 7926 +1018, 543, 754,4292,3309,1676,4569,4570,4050,8064,1489,8065,3497,8066,2614,2889, # 7942 +4051,8067,8068,2966,8069,8070,8071,8072,3171,4571,4572,2182,1722,8073,3238,3239, # 7958 +1842,3610,1715, 481, 365,1975,1856,8074,8075,1962,2491,4573,8076,2126,3611,3240, # 7974 + 433,1894,2063,2075,8077, 602,2741,8078,8079,8080,8081,8082,3014,1628,3400,8083, # 7990 +3172,4574,4052,2890,4575,2512,8084,2544,2772,8085,8086,8087,3310,4576,2891,8088, # 8006 +4577,8089,2851,4578,4579,1221,2967,4053,2513,8090,8091,8092,1867,1989,8093,8094, # 8022 +8095,1895,8096,8097,4580,1896,4054, 318,8098,2094,4055,4293,8099,8100, 485,8101, # 8038 + 938,3862, 553,2670, 116,8102,3863,3612,8103,3498,2671,2773,3401,3311,2807,8104, # 8054 +3613,2929,4056,1747,2930,2968,8105,8106, 207,8107,8108,2672,4581,2514,8109,3015, # 8070 + 890,3614,3864,8110,1877,3732,3402,8111,2183,2353,3403,1652,8112,8113,8114, 941, # 8086 +2294, 208,3499,4057,2019, 330,4294,3865,2892,2492,3733,4295,8115,8116,8117,8118, # 8102 +) + diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euctwprober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euctwprober.py new file mode 100644 index 00000000..35669cc4 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/euctwprober.py @@ -0,0 +1,46 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCTWDistributionAnalysis +from .mbcssm import EUCTW_SM_MODEL + +class EUCTWProber(MultiByteCharSetProber): + def __init__(self): + super(EUCTWProber, self).__init__() + self.coding_sm = CodingStateMachine(EUCTW_SM_MODEL) + self.distribution_analyzer = EUCTWDistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "EUC-TW" + + @property + def language(self): + return "Taiwan" diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312freq.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312freq.py new file mode 100644 index 00000000..697837bd --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312freq.py @@ -0,0 +1,283 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# GB2312 most frequently used character table +# +# Char to FreqOrder table , from hz6763 + +# 512 --> 0.79 -- 0.79 +# 1024 --> 0.92 -- 0.13 +# 2048 --> 0.98 -- 0.06 +# 6768 --> 1.00 -- 0.02 +# +# Ideal Distribution Ratio = 0.79135/(1-0.79135) = 3.79 +# Random Distribution Ration = 512 / (3755 - 512) = 0.157 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher that RDR + +GB2312_TYPICAL_DISTRIBUTION_RATIO = 0.9 + +GB2312_TABLE_SIZE = 3760 + +GB2312_CHAR_TO_FREQ_ORDER = ( +1671, 749,1443,2364,3924,3807,2330,3921,1704,3463,2691,1511,1515, 572,3191,2205, +2361, 224,2558, 479,1711, 963,3162, 440,4060,1905,2966,2947,3580,2647,3961,3842, +2204, 869,4207, 970,2678,5626,2944,2956,1479,4048, 514,3595, 588,1346,2820,3409, + 249,4088,1746,1873,2047,1774, 581,1813, 358,1174,3590,1014,1561,4844,2245, 670, +1636,3112, 889,1286, 953, 556,2327,3060,1290,3141, 613, 185,3477,1367, 850,3820, +1715,2428,2642,2303,2732,3041,2562,2648,3566,3946,1349, 388,3098,2091,1360,3585, + 152,1687,1539, 738,1559, 59,1232,2925,2267,1388,1249,1741,1679,2960, 151,1566, +1125,1352,4271, 924,4296, 385,3166,4459, 310,1245,2850, 70,3285,2729,3534,3575, +2398,3298,3466,1960,2265, 217,3647, 864,1909,2084,4401,2773,1010,3269,5152, 853, +3051,3121,1244,4251,1895, 364,1499,1540,2313,1180,3655,2268, 562, 715,2417,3061, + 544, 336,3768,2380,1752,4075, 950, 280,2425,4382, 183,2759,3272, 333,4297,2155, +1688,2356,1444,1039,4540, 736,1177,3349,2443,2368,2144,2225, 565, 196,1482,3406, + 927,1335,4147, 692, 878,1311,1653,3911,3622,1378,4200,1840,2969,3149,2126,1816, +2534,1546,2393,2760, 737,2494, 13, 447, 245,2747, 38,2765,2129,2589,1079, 606, + 360, 471,3755,2890, 404, 848, 699,1785,1236, 370,2221,1023,3746,2074,2026,2023, +2388,1581,2119, 812,1141,3091,2536,1519, 804,2053, 406,1596,1090, 784, 548,4414, +1806,2264,2936,1100, 343,4114,5096, 622,3358, 743,3668,1510,1626,5020,3567,2513, +3195,4115,5627,2489,2991, 24,2065,2697,1087,2719, 48,1634, 315, 68, 985,2052, + 198,2239,1347,1107,1439, 597,2366,2172, 871,3307, 919,2487,2790,1867, 236,2570, +1413,3794, 906,3365,3381,1701,1982,1818,1524,2924,1205, 616,2586,2072,2004, 575, + 253,3099, 32,1365,1182, 197,1714,2454,1201, 554,3388,3224,2748, 756,2587, 250, +2567,1507,1517,3529,1922,2761,2337,3416,1961,1677,2452,2238,3153, 615, 911,1506, +1474,2495,1265,1906,2749,3756,3280,2161, 898,2714,1759,3450,2243,2444, 563, 26, +3286,2266,3769,3344,2707,3677, 611,1402, 531,1028,2871,4548,1375, 261,2948, 835, +1190,4134, 353, 840,2684,1900,3082,1435,2109,1207,1674, 329,1872,2781,4055,2686, +2104, 608,3318,2423,2957,2768,1108,3739,3512,3271,3985,2203,1771,3520,1418,2054, +1681,1153, 225,1627,2929, 162,2050,2511,3687,1954, 124,1859,2431,1684,3032,2894, + 585,4805,3969,2869,2704,2088,2032,2095,3656,2635,4362,2209, 256, 518,2042,2105, +3777,3657, 643,2298,1148,1779, 190, 989,3544, 414, 11,2135,2063,2979,1471, 403, +3678, 126, 770,1563, 671,2499,3216,2877, 600,1179, 307,2805,4937,1268,1297,2694, + 252,4032,1448,1494,1331,1394, 127,2256, 222,1647,1035,1481,3056,1915,1048, 873, +3651, 210, 33,1608,2516, 200,1520, 415, 102, 0,3389,1287, 817, 91,3299,2940, + 836,1814, 549,2197,1396,1669,2987,3582,2297,2848,4528,1070, 687, 20,1819, 121, +1552,1364,1461,1968,2617,3540,2824,2083, 177, 948,4938,2291, 110,4549,2066, 648, +3359,1755,2110,2114,4642,4845,1693,3937,3308,1257,1869,2123, 208,1804,3159,2992, +2531,2549,3361,2418,1350,2347,2800,2568,1291,2036,2680, 72, 842,1990, 212,1233, +1154,1586, 75,2027,3410,4900,1823,1337,2710,2676, 728,2810,1522,3026,4995, 157, + 755,1050,4022, 710, 785,1936,2194,2085,1406,2777,2400, 150,1250,4049,1206, 807, +1910, 534, 529,3309,1721,1660, 274, 39,2827, 661,2670,1578, 925,3248,3815,1094, +4278,4901,4252, 41,1150,3747,2572,2227,4501,3658,4902,3813,3357,3617,2884,2258, + 887, 538,4187,3199,1294,2439,3042,2329,2343,2497,1255, 107, 543,1527, 521,3478, +3568, 194,5062, 15, 961,3870,1241,1192,2664, 66,5215,3260,2111,1295,1127,2152, +3805,4135, 901,1164,1976, 398,1278, 530,1460, 748, 904,1054,1966,1426, 53,2909, + 509, 523,2279,1534, 536,1019, 239,1685, 460,2353, 673,1065,2401,3600,4298,2272, +1272,2363, 284,1753,3679,4064,1695, 81, 815,2677,2757,2731,1386, 859, 500,4221, +2190,2566, 757,1006,2519,2068,1166,1455, 337,2654,3203,1863,1682,1914,3025,1252, +1409,1366, 847, 714,2834,2038,3209, 964,2970,1901, 885,2553,1078,1756,3049, 301, +1572,3326, 688,2130,1996,2429,1805,1648,2930,3421,2750,3652,3088, 262,1158,1254, + 389,1641,1812, 526,1719, 923,2073,1073,1902, 468, 489,4625,1140, 857,2375,3070, +3319,2863, 380, 116,1328,2693,1161,2244, 273,1212,1884,2769,3011,1775,1142, 461, +3066,1200,2147,2212, 790, 702,2695,4222,1601,1058, 434,2338,5153,3640, 67,2360, +4099,2502, 618,3472,1329, 416,1132, 830,2782,1807,2653,3211,3510,1662, 192,2124, + 296,3979,1739,1611,3684, 23, 118, 324, 446,1239,1225, 293,2520,3814,3795,2535, +3116, 17,1074, 467,2692,2201, 387,2922, 45,1326,3055,1645,3659,2817, 958, 243, +1903,2320,1339,2825,1784,3289, 356, 576, 865,2315,2381,3377,3916,1088,3122,1713, +1655, 935, 628,4689,1034,1327, 441, 800, 720, 894,1979,2183,1528,5289,2702,1071, +4046,3572,2399,1571,3281, 79, 761,1103, 327, 134, 758,1899,1371,1615, 879, 442, + 215,2605,2579, 173,2048,2485,1057,2975,3317,1097,2253,3801,4263,1403,1650,2946, + 814,4968,3487,1548,2644,1567,1285, 2, 295,2636, 97, 946,3576, 832, 141,4257, +3273, 760,3821,3521,3156,2607, 949,1024,1733,1516,1803,1920,2125,2283,2665,3180, +1501,2064,3560,2171,1592, 803,3518,1416, 732,3897,4258,1363,1362,2458, 119,1427, + 602,1525,2608,1605,1639,3175, 694,3064, 10, 465, 76,2000,4846,4208, 444,3781, +1619,3353,2206,1273,3796, 740,2483, 320,1723,2377,3660,2619,1359,1137,1762,1724, +2345,2842,1850,1862, 912, 821,1866, 612,2625,1735,2573,3369,1093, 844, 89, 937, + 930,1424,3564,2413,2972,1004,3046,3019,2011, 711,3171,1452,4178, 428, 801,1943, + 432, 445,2811, 206,4136,1472, 730, 349, 73, 397,2802,2547, 998,1637,1167, 789, + 396,3217, 154,1218, 716,1120,1780,2819,4826,1931,3334,3762,2139,1215,2627, 552, +3664,3628,3232,1405,2383,3111,1356,2652,3577,3320,3101,1703, 640,1045,1370,1246, +4996, 371,1575,2436,1621,2210, 984,4033,1734,2638, 16,4529, 663,2755,3255,1451, +3917,2257,1253,1955,2234,1263,2951, 214,1229, 617, 485, 359,1831,1969, 473,2310, + 750,2058, 165, 80,2864,2419, 361,4344,2416,2479,1134, 796,3726,1266,2943, 860, +2715, 938, 390,2734,1313,1384, 248, 202, 877,1064,2854, 522,3907, 279,1602, 297, +2357, 395,3740, 137,2075, 944,4089,2584,1267,3802, 62,1533,2285, 178, 176, 780, +2440, 201,3707, 590, 478,1560,4354,2117,1075, 30, 74,4643,4004,1635,1441,2745, + 776,2596, 238,1077,1692,1912,2844, 605, 499,1742,3947, 241,3053, 980,1749, 936, +2640,4511,2582, 515,1543,2162,5322,2892,2993, 890,2148,1924, 665,1827,3581,1032, + 968,3163, 339,1044,1896, 270, 583,1791,1720,4367,1194,3488,3669, 43,2523,1657, + 163,2167, 290,1209,1622,3378, 550, 634,2508,2510, 695,2634,2384,2512,1476,1414, + 220,1469,2341,2138,2852,3183,2900,4939,2865,3502,1211,3680, 854,3227,1299,2976, +3172, 186,2998,1459, 443,1067,3251,1495, 321,1932,3054, 909, 753,1410,1828, 436, +2441,1119,1587,3164,2186,1258, 227, 231,1425,1890,3200,3942, 247, 959, 725,5254, +2741, 577,2158,2079, 929, 120, 174, 838,2813, 591,1115, 417,2024, 40,3240,1536, +1037, 291,4151,2354, 632,1298,2406,2500,3535,1825,1846,3451, 205,1171, 345,4238, + 18,1163, 811, 685,2208,1217, 425,1312,1508,1175,4308,2552,1033, 587,1381,3059, +2984,3482, 340,1316,4023,3972, 792,3176, 519, 777,4690, 918, 933,4130,2981,3741, + 90,3360,2911,2200,5184,4550, 609,3079,2030, 272,3379,2736, 363,3881,1130,1447, + 286, 779, 357,1169,3350,3137,1630,1220,2687,2391, 747,1277,3688,2618,2682,2601, +1156,3196,5290,4034,3102,1689,3596,3128, 874, 219,2783, 798, 508,1843,2461, 269, +1658,1776,1392,1913,2983,3287,2866,2159,2372, 829,4076, 46,4253,2873,1889,1894, + 915,1834,1631,2181,2318, 298, 664,2818,3555,2735, 954,3228,3117, 527,3511,2173, + 681,2712,3033,2247,2346,3467,1652, 155,2164,3382, 113,1994, 450, 899, 494, 994, +1237,2958,1875,2336,1926,3727, 545,1577,1550, 633,3473, 204,1305,3072,2410,1956, +2471, 707,2134, 841,2195,2196,2663,3843,1026,4940, 990,3252,4997, 368,1092, 437, +3212,3258,1933,1829, 675,2977,2893, 412, 943,3723,4644,3294,3283,2230,2373,5154, +2389,2241,2661,2323,1404,2524, 593, 787, 677,3008,1275,2059, 438,2709,2609,2240, +2269,2246,1446, 36,1568,1373,3892,1574,2301,1456,3962, 693,2276,5216,2035,1143, +2720,1919,1797,1811,2763,4137,2597,1830,1699,1488,1198,2090, 424,1694, 312,3634, +3390,4179,3335,2252,1214, 561,1059,3243,2295,2561, 975,5155,2321,2751,3772, 472, +1537,3282,3398,1047,2077,2348,2878,1323,3340,3076, 690,2906, 51, 369, 170,3541, +1060,2187,2688,3670,2541,1083,1683, 928,3918, 459, 109,4427, 599,3744,4286, 143, +2101,2730,2490, 82,1588,3036,2121, 281,1860, 477,4035,1238,2812,3020,2716,3312, +1530,2188,2055,1317, 843, 636,1808,1173,3495, 649, 181,1002, 147,3641,1159,2414, +3750,2289,2795, 813,3123,2610,1136,4368, 5,3391,4541,2174, 420, 429,1728, 754, +1228,2115,2219, 347,2223,2733, 735,1518,3003,2355,3134,1764,3948,3329,1888,2424, +1001,1234,1972,3321,3363,1672,1021,1450,1584, 226, 765, 655,2526,3404,3244,2302, +3665, 731, 594,2184, 319,1576, 621, 658,2656,4299,2099,3864,1279,2071,2598,2739, + 795,3086,3699,3908,1707,2352,2402,1382,3136,2475,1465,4847,3496,3865,1085,3004, +2591,1084, 213,2287,1963,3565,2250, 822, 793,4574,3187,1772,1789,3050, 595,1484, +1959,2770,1080,2650, 456, 422,2996, 940,3322,4328,4345,3092,2742, 965,2784, 739, +4124, 952,1358,2498,2949,2565, 332,2698,2378, 660,2260,2473,4194,3856,2919, 535, +1260,2651,1208,1428,1300,1949,1303,2942, 433,2455,2450,1251,1946, 614,1269, 641, +1306,1810,2737,3078,2912, 564,2365,1419,1415,1497,4460,2367,2185,1379,3005,1307, +3218,2175,1897,3063, 682,1157,4040,4005,1712,1160,1941,1399, 394, 402,2952,1573, +1151,2986,2404, 862, 299,2033,1489,3006, 346, 171,2886,3401,1726,2932, 168,2533, + 47,2507,1030,3735,1145,3370,1395,1318,1579,3609,4560,2857,4116,1457,2529,1965, + 504,1036,2690,2988,2405, 745,5871, 849,2397,2056,3081, 863,2359,3857,2096, 99, +1397,1769,2300,4428,1643,3455,1978,1757,3718,1440, 35,4879,3742,1296,4228,2280, + 160,5063,1599,2013, 166, 520,3479,1646,3345,3012, 490,1937,1545,1264,2182,2505, +1096,1188,1369,1436,2421,1667,2792,2460,1270,2122, 727,3167,2143, 806,1706,1012, +1800,3037, 960,2218,1882, 805, 139,2456,1139,1521, 851,1052,3093,3089, 342,2039, + 744,5097,1468,1502,1585,2087, 223, 939, 326,2140,2577, 892,2481,1623,4077, 982, +3708, 135,2131, 87,2503,3114,2326,1106, 876,1616, 547,2997,2831,2093,3441,4530, +4314, 9,3256,4229,4148, 659,1462,1986,1710,2046,2913,2231,4090,4880,5255,3392, +3274,1368,3689,4645,1477, 705,3384,3635,1068,1529,2941,1458,3782,1509, 100,1656, +2548, 718,2339, 408,1590,2780,3548,1838,4117,3719,1345,3530, 717,3442,2778,3220, +2898,1892,4590,3614,3371,2043,1998,1224,3483, 891, 635, 584,2559,3355, 733,1766, +1729,1172,3789,1891,2307, 781,2982,2271,1957,1580,5773,2633,2005,4195,3097,1535, +3213,1189,1934,5693,3262, 586,3118,1324,1598, 517,1564,2217,1868,1893,4445,3728, +2703,3139,1526,1787,1992,3882,2875,1549,1199,1056,2224,1904,2711,5098,4287, 338, +1993,3129,3489,2689,1809,2815,1997, 957,1855,3898,2550,3275,3057,1105,1319, 627, +1505,1911,1883,3526, 698,3629,3456,1833,1431, 746, 77,1261,2017,2296,1977,1885, + 125,1334,1600, 525,1798,1109,2222,1470,1945, 559,2236,1186,3443,2476,1929,1411, +2411,3135,1777,3372,2621,1841,1613,3229, 668,1430,1839,2643,2916, 195,1989,2671, +2358,1387, 629,3205,2293,5256,4439, 123,1310, 888,1879,4300,3021,3605,1003,1162, +3192,2910,2010, 140,2395,2859, 55,1082,2012,2901, 662, 419,2081,1438, 680,2774, +4654,3912,1620,1731,1625,5035,4065,2328, 512,1344, 802,5443,2163,2311,2537, 524, +3399, 98,1155,2103,1918,2606,3925,2816,1393,2465,1504,3773,2177,3963,1478,4346, + 180,1113,4655,3461,2028,1698, 833,2696,1235,1322,1594,4408,3623,3013,3225,2040, +3022, 541,2881, 607,3632,2029,1665,1219, 639,1385,1686,1099,2803,3231,1938,3188, +2858, 427, 676,2772,1168,2025, 454,3253,2486,3556, 230,1950, 580, 791,1991,1280, +1086,1974,2034, 630, 257,3338,2788,4903,1017, 86,4790, 966,2789,1995,1696,1131, + 259,3095,4188,1308, 179,1463,5257, 289,4107,1248, 42,3413,1725,2288, 896,1947, + 774,4474,4254, 604,3430,4264, 392,2514,2588, 452, 237,1408,3018, 988,4531,1970, +3034,3310, 540,2370,1562,1288,2990, 502,4765,1147, 4,1853,2708, 207, 294,2814, +4078,2902,2509, 684, 34,3105,3532,2551, 644, 709,2801,2344, 573,1727,3573,3557, +2021,1081,3100,4315,2100,3681, 199,2263,1837,2385, 146,3484,1195,2776,3949, 997, +1939,3973,1008,1091,1202,1962,1847,1149,4209,5444,1076, 493, 117,5400,2521, 972, +1490,2934,1796,4542,2374,1512,2933,2657, 413,2888,1135,2762,2314,2156,1355,2369, + 766,2007,2527,2170,3124,2491,2593,2632,4757,2437, 234,3125,3591,1898,1750,1376, +1942,3468,3138, 570,2127,2145,3276,4131, 962, 132,1445,4196, 19, 941,3624,3480, +3366,1973,1374,4461,3431,2629, 283,2415,2275, 808,2887,3620,2112,2563,1353,3610, + 955,1089,3103,1053, 96, 88,4097, 823,3808,1583, 399, 292,4091,3313, 421,1128, + 642,4006, 903,2539,1877,2082, 596, 29,4066,1790, 722,2157, 130, 995,1569, 769, +1485, 464, 513,2213, 288,1923,1101,2453,4316, 133, 486,2445, 50, 625, 487,2207, + 57, 423, 481,2962, 159,3729,1558, 491, 303, 482, 501, 240,2837, 112,3648,2392, +1783, 362, 8,3433,3422, 610,2793,3277,1390,1284,1654, 21,3823, 734, 367, 623, + 193, 287, 374,1009,1483, 816, 476, 313,2255,2340,1262,2150,2899,1146,2581, 782, +2116,1659,2018,1880, 255,3586,3314,1110,2867,2137,2564, 986,2767,5185,2006, 650, + 158, 926, 762, 881,3157,2717,2362,3587, 306,3690,3245,1542,3077,2427,1691,2478, +2118,2985,3490,2438, 539,2305, 983, 129,1754, 355,4201,2386, 827,2923, 104,1773, +2838,2771, 411,2905,3919, 376, 767, 122,1114, 828,2422,1817,3506, 266,3460,1007, +1609,4998, 945,2612,4429,2274, 726,1247,1964,2914,2199,2070,4002,4108, 657,3323, +1422, 579, 455,2764,4737,1222,2895,1670, 824,1223,1487,2525, 558, 861,3080, 598, +2659,2515,1967, 752,2583,2376,2214,4180, 977, 704,2464,4999,2622,4109,1210,2961, + 819,1541, 142,2284, 44, 418, 457,1126,3730,4347,4626,1644,1876,3671,1864, 302, +1063,5694, 624, 723,1984,3745,1314,1676,2488,1610,1449,3558,3569,2166,2098, 409, +1011,2325,3704,2306, 818,1732,1383,1824,1844,3757, 999,2705,3497,1216,1423,2683, +2426,2954,2501,2726,2229,1475,2554,5064,1971,1794,1666,2014,1343, 783, 724, 191, +2434,1354,2220,5065,1763,2752,2472,4152, 131, 175,2885,3434, 92,1466,4920,2616, +3871,3872,3866, 128,1551,1632, 669,1854,3682,4691,4125,1230, 188,2973,3290,1302, +1213, 560,3266, 917, 763,3909,3249,1760, 868,1958, 764,1782,2097, 145,2277,3774, +4462, 64,1491,3062, 971,2132,3606,2442, 221,1226,1617, 218, 323,1185,3207,3147, + 571, 619,1473,1005,1744,2281, 449,1887,2396,3685, 275, 375,3816,1743,3844,3731, + 845,1983,2350,4210,1377, 773, 967,3499,3052,3743,2725,4007,1697,1022,3943,1464, +3264,2855,2722,1952,1029,2839,2467, 84,4383,2215, 820,1391,2015,2448,3672, 377, +1948,2168, 797,2545,3536,2578,2645, 94,2874,1678, 405,1259,3071, 771, 546,1315, + 470,1243,3083, 895,2468, 981, 969,2037, 846,4181, 653,1276,2928, 14,2594, 557, +3007,2474, 156, 902,1338,1740,2574, 537,2518, 973,2282,2216,2433,1928, 138,2903, +1293,2631,1612, 646,3457, 839,2935, 111, 496,2191,2847, 589,3186, 149,3994,2060, +4031,2641,4067,3145,1870, 37,3597,2136,1025,2051,3009,3383,3549,1121,1016,3261, +1301, 251,2446,2599,2153, 872,3246, 637, 334,3705, 831, 884, 921,3065,3140,4092, +2198,1944, 246,2964, 108,2045,1152,1921,2308,1031, 203,3173,4170,1907,3890, 810, +1401,2003,1690, 506, 647,1242,2828,1761,1649,3208,2249,1589,3709,2931,5156,1708, + 498, 666,2613, 834,3817,1231, 184,2851,1124, 883,3197,2261,3710,1765,1553,2658, +1178,2639,2351, 93,1193, 942,2538,2141,4402, 235,1821, 870,1591,2192,1709,1871, +3341,1618,4126,2595,2334, 603, 651, 69, 701, 268,2662,3411,2555,1380,1606, 503, + 448, 254,2371,2646, 574,1187,2309,1770, 322,2235,1292,1801, 305, 566,1133, 229, +2067,2057, 706, 167, 483,2002,2672,3295,1820,3561,3067, 316, 378,2746,3452,1112, + 136,1981, 507,1651,2917,1117, 285,4591, 182,2580,3522,1304, 335,3303,1835,2504, +1795,1792,2248, 674,1018,2106,2449,1857,2292,2845, 976,3047,1781,2600,2727,1389, +1281, 52,3152, 153, 265,3950, 672,3485,3951,4463, 430,1183, 365, 278,2169, 27, +1407,1336,2304, 209,1340,1730,2202,1852,2403,2883, 979,1737,1062, 631,2829,2542, +3876,2592, 825,2086,2226,3048,3625, 352,1417,3724, 542, 991, 431,1351,3938,1861, +2294, 826,1361,2927,3142,3503,1738, 463,2462,2723, 582,1916,1595,2808, 400,3845, +3891,2868,3621,2254, 58,2492,1123, 910,2160,2614,1372,1603,1196,1072,3385,1700, +3267,1980, 696, 480,2430, 920, 799,1570,2920,1951,2041,4047,2540,1321,4223,2469, +3562,2228,1271,2602, 401,2833,3351,2575,5157, 907,2312,1256, 410, 263,3507,1582, + 996, 678,1849,2316,1480, 908,3545,2237, 703,2322, 667,1826,2849,1531,2604,2999, +2407,3146,2151,2630,1786,3711, 469,3542, 497,3899,2409, 858, 837,4446,3393,1274, + 786, 620,1845,2001,3311, 484, 308,3367,1204,1815,3691,2332,1532,2557,1842,2020, +2724,1927,2333,4440, 567, 22,1673,2728,4475,1987,1858,1144,1597, 101,1832,3601, + 12, 974,3783,4391, 951,1412, 1,3720, 453,4608,4041, 528,1041,1027,3230,2628, +1129, 875,1051,3291,1203,2262,1069,2860,2799,2149,2615,3278, 144,1758,3040, 31, + 475,1680, 366,2685,3184, 311,1642,4008,2466,5036,1593,1493,2809, 216,1420,1668, + 233, 304,2128,3284, 232,1429,1768,1040,2008,3407,2740,2967,2543, 242,2133, 778, +1565,2022,2620, 505,2189,2756,1098,2273, 372,1614, 708, 553,2846,2094,2278, 169, +3626,2835,4161, 228,2674,3165, 809,1454,1309, 466,1705,1095, 900,3423, 880,2667, +3751,5258,2317,3109,2571,4317,2766,1503,1342, 866,4447,1118, 63,2076, 314,1881, +1348,1061, 172, 978,3515,1747, 532, 511,3970, 6, 601, 905,2699,3300,1751, 276, +1467,3725,2668, 65,4239,2544,2779,2556,1604, 578,2451,1802, 992,2331,2624,1320, +3446, 713,1513,1013, 103,2786,2447,1661, 886,1702, 916, 654,3574,2031,1556, 751, +2178,2821,2179,1498,1538,2176, 271, 914,2251,2080,1325, 638,1953,2937,3877,2432, +2754, 95,3265,1716, 260,1227,4083, 775, 106,1357,3254, 426,1607, 555,2480, 772, +1985, 244,2546, 474, 495,1046,2611,1851,2061, 71,2089,1675,2590, 742,3758,2843, +3222,1433, 267,2180,2576,2826,2233,2092,3913,2435, 956,1745,3075, 856,2113,1116, + 451, 3,1988,2896,1398, 993,2463,1878,2049,1341,2718,2721,2870,2108, 712,2904, +4363,2753,2324, 277,2872,2349,2649, 384, 987, 435, 691,3000, 922, 164,3939, 652, +1500,1184,4153,2482,3373,2165,4848,2335,3775,3508,3154,2806,2830,1554,2102,1664, +2530,1434,2408, 893,1547,2623,3447,2832,2242,2532,3169,2856,3223,2078, 49,3770, +3469, 462, 318, 656,2259,3250,3069, 679,1629,2758, 344,1138,1104,3120,1836,1283, +3115,2154,1437,4448, 934, 759,1999, 794,2862,1038, 533,2560,1722,2342, 855,2626, +1197,1663,4476,3127, 85,4240,2528, 25,1111,1181,3673, 407,3470,4561,2679,2713, + 768,1925,2841,3986,1544,1165, 932, 373,1240,2146,1930,2673, 721,4766, 354,4333, + 391,2963, 187, 61,3364,1442,1102, 330,1940,1767, 341,3809,4118, 393,2496,2062, +2211, 105, 331, 300, 439, 913,1332, 626, 379,3304,1557, 328, 689,3952, 309,1555, + 931, 317,2517,3027, 325, 569, 686,2107,3084, 60,1042,1333,2794, 264,3177,4014, +1628, 258,3712, 7,4464,1176,1043,1778, 683, 114,1975, 78,1492, 383,1886, 510, + 386, 645,5291,2891,2069,3305,4138,3867,2939,2603,2493,1935,1066,1848,3588,1015, +1282,1289,4609, 697,1453,3044,2666,3611,1856,2412, 54, 719,1330, 568,3778,2459, +1748, 788, 492, 551,1191,1000, 488,3394,3763, 282,1799, 348,2016,1523,3155,2390, +1049, 382,2019,1788,1170, 729,2968,3523, 897,3926,2785,2938,3292, 350,2319,3238, +1718,1717,2655,3453,3143,4465, 161,2889,2980,2009,1421, 56,1908,1640,2387,2232, +1917,1874,2477,4921, 148, 83,3438, 592,4245,2882,1822,1055, 741, 115,1496,1624, + 381,1638,4592,1020, 516,3214, 458, 947,4575,1432, 211,1514,2926,1865,2142, 189, + 852,1221,1400,1486, 882,2299,4036, 351, 28,1122, 700,6479,6480,6481,6482,6483, #last 512 +) + diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312prober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312prober.py new file mode 100644 index 00000000..8446d2dd --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312prober.py @@ -0,0 +1,46 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import GB2312DistributionAnalysis +from .mbcssm import GB2312_SM_MODEL + +class GB2312Prober(MultiByteCharSetProber): + def __init__(self): + super(GB2312Prober, self).__init__() + self.coding_sm = CodingStateMachine(GB2312_SM_MODEL) + self.distribution_analyzer = GB2312DistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "GB2312" + + @property + def language(self): + return "Chinese" diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/hebrewprober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/hebrewprober.py new file mode 100644 index 00000000..b0e1bf49 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/hebrewprober.py @@ -0,0 +1,292 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Shy Shalom +# Portions created by the Initial Developer are Copyright (C) 2005 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .enums import ProbingState + +# This prober doesn't actually recognize a language or a charset. +# It is a helper prober for the use of the Hebrew model probers + +### General ideas of the Hebrew charset recognition ### +# +# Four main charsets exist in Hebrew: +# "ISO-8859-8" - Visual Hebrew +# "windows-1255" - Logical Hebrew +# "ISO-8859-8-I" - Logical Hebrew +# "x-mac-hebrew" - ?? Logical Hebrew ?? +# +# Both "ISO" charsets use a completely identical set of code points, whereas +# "windows-1255" and "x-mac-hebrew" are two different proper supersets of +# these code points. windows-1255 defines additional characters in the range +# 0x80-0x9F as some misc punctuation marks as well as some Hebrew-specific +# diacritics and additional 'Yiddish' ligature letters in the range 0xc0-0xd6. +# x-mac-hebrew defines similar additional code points but with a different +# mapping. +# +# As far as an average Hebrew text with no diacritics is concerned, all four +# charsets are identical with respect to code points. Meaning that for the +# main Hebrew alphabet, all four map the same values to all 27 Hebrew letters +# (including final letters). +# +# The dominant difference between these charsets is their directionality. +# "Visual" directionality means that the text is ordered as if the renderer is +# not aware of a BIDI rendering algorithm. The renderer sees the text and +# draws it from left to right. The text itself when ordered naturally is read +# backwards. A buffer of Visual Hebrew generally looks like so: +# "[last word of first line spelled backwards] [whole line ordered backwards +# and spelled backwards] [first word of first line spelled backwards] +# [end of line] [last word of second line] ... etc' " +# adding punctuation marks, numbers and English text to visual text is +# naturally also "visual" and from left to right. +# +# "Logical" directionality means the text is ordered "naturally" according to +# the order it is read. It is the responsibility of the renderer to display +# the text from right to left. A BIDI algorithm is used to place general +# punctuation marks, numbers and English text in the text. +# +# Texts in x-mac-hebrew are almost impossible to find on the Internet. From +# what little evidence I could find, it seems that its general directionality +# is Logical. +# +# To sum up all of the above, the Hebrew probing mechanism knows about two +# charsets: +# Visual Hebrew - "ISO-8859-8" - backwards text - Words and sentences are +# backwards while line order is natural. For charset recognition purposes +# the line order is unimportant (In fact, for this implementation, even +# word order is unimportant). +# Logical Hebrew - "windows-1255" - normal, naturally ordered text. +# +# "ISO-8859-8-I" is a subset of windows-1255 and doesn't need to be +# specifically identified. +# "x-mac-hebrew" is also identified as windows-1255. A text in x-mac-hebrew +# that contain special punctuation marks or diacritics is displayed with +# some unconverted characters showing as question marks. This problem might +# be corrected using another model prober for x-mac-hebrew. Due to the fact +# that x-mac-hebrew texts are so rare, writing another model prober isn't +# worth the effort and performance hit. +# +#### The Prober #### +# +# The prober is divided between two SBCharSetProbers and a HebrewProber, +# all of which are managed, created, fed data, inquired and deleted by the +# SBCSGroupProber. The two SBCharSetProbers identify that the text is in +# fact some kind of Hebrew, Logical or Visual. The final decision about which +# one is it is made by the HebrewProber by combining final-letter scores +# with the scores of the two SBCharSetProbers to produce a final answer. +# +# The SBCSGroupProber is responsible for stripping the original text of HTML +# tags, English characters, numbers, low-ASCII punctuation characters, spaces +# and new lines. It reduces any sequence of such characters to a single space. +# The buffer fed to each prober in the SBCS group prober is pure text in +# high-ASCII. +# The two SBCharSetProbers (model probers) share the same language model: +# Win1255Model. +# The first SBCharSetProber uses the model normally as any other +# SBCharSetProber does, to recognize windows-1255, upon which this model was +# built. The second SBCharSetProber is told to make the pair-of-letter +# lookup in the language model backwards. This in practice exactly simulates +# a visual Hebrew model using the windows-1255 logical Hebrew model. +# +# The HebrewProber is not using any language model. All it does is look for +# final-letter evidence suggesting the text is either logical Hebrew or visual +# Hebrew. Disjointed from the model probers, the results of the HebrewProber +# alone are meaningless. HebrewProber always returns 0.00 as confidence +# since it never identifies a charset by itself. Instead, the pointer to the +# HebrewProber is passed to the model probers as a helper "Name Prober". +# When the Group prober receives a positive identification from any prober, +# it asks for the name of the charset identified. If the prober queried is a +# Hebrew model prober, the model prober forwards the call to the +# HebrewProber to make the final decision. In the HebrewProber, the +# decision is made according to the final-letters scores maintained and Both +# model probers scores. The answer is returned in the form of the name of the +# charset identified, either "windows-1255" or "ISO-8859-8". + +class HebrewProber(CharSetProber): + # windows-1255 / ISO-8859-8 code points of interest + FINAL_KAF = 0xea + NORMAL_KAF = 0xeb + FINAL_MEM = 0xed + NORMAL_MEM = 0xee + FINAL_NUN = 0xef + NORMAL_NUN = 0xf0 + FINAL_PE = 0xf3 + NORMAL_PE = 0xf4 + FINAL_TSADI = 0xf5 + NORMAL_TSADI = 0xf6 + + # Minimum Visual vs Logical final letter score difference. + # If the difference is below this, don't rely solely on the final letter score + # distance. + MIN_FINAL_CHAR_DISTANCE = 5 + + # Minimum Visual vs Logical model score difference. + # If the difference is below this, don't rely at all on the model score + # distance. + MIN_MODEL_DISTANCE = 0.01 + + VISUAL_HEBREW_NAME = "ISO-8859-8" + LOGICAL_HEBREW_NAME = "windows-1255" + + def __init__(self): + super(HebrewProber, self).__init__() + self._final_char_logical_score = None + self._final_char_visual_score = None + self._prev = None + self._before_prev = None + self._logical_prober = None + self._visual_prober = None + self.reset() + + def reset(self): + self._final_char_logical_score = 0 + self._final_char_visual_score = 0 + # The two last characters seen in the previous buffer, + # mPrev and mBeforePrev are initialized to space in order to simulate + # a word delimiter at the beginning of the data + self._prev = ' ' + self._before_prev = ' ' + # These probers are owned by the group prober. + + def set_model_probers(self, logicalProber, visualProber): + self._logical_prober = logicalProber + self._visual_prober = visualProber + + def is_final(self, c): + return c in [self.FINAL_KAF, self.FINAL_MEM, self.FINAL_NUN, + self.FINAL_PE, self.FINAL_TSADI] + + def is_non_final(self, c): + # The normal Tsadi is not a good Non-Final letter due to words like + # 'lechotet' (to chat) containing an apostrophe after the tsadi. This + # apostrophe is converted to a space in FilterWithoutEnglishLetters + # causing the Non-Final tsadi to appear at an end of a word even + # though this is not the case in the original text. + # The letters Pe and Kaf rarely display a related behavior of not being + # a good Non-Final letter. Words like 'Pop', 'Winamp' and 'Mubarak' + # for example legally end with a Non-Final Pe or Kaf. However, the + # benefit of these letters as Non-Final letters outweighs the damage + # since these words are quite rare. + return c in [self.NORMAL_KAF, self.NORMAL_MEM, + self.NORMAL_NUN, self.NORMAL_PE] + + def feed(self, byte_str): + # Final letter analysis for logical-visual decision. + # Look for evidence that the received buffer is either logical Hebrew + # or visual Hebrew. + # The following cases are checked: + # 1) A word longer than 1 letter, ending with a final letter. This is + # an indication that the text is laid out "naturally" since the + # final letter really appears at the end. +1 for logical score. + # 2) A word longer than 1 letter, ending with a Non-Final letter. In + # normal Hebrew, words ending with Kaf, Mem, Nun, Pe or Tsadi, + # should not end with the Non-Final form of that letter. Exceptions + # to this rule are mentioned above in isNonFinal(). This is an + # indication that the text is laid out backwards. +1 for visual + # score + # 3) A word longer than 1 letter, starting with a final letter. Final + # letters should not appear at the beginning of a word. This is an + # indication that the text is laid out backwards. +1 for visual + # score. + # + # The visual score and logical score are accumulated throughout the + # text and are finally checked against each other in GetCharSetName(). + # No checking for final letters in the middle of words is done since + # that case is not an indication for either Logical or Visual text. + # + # We automatically filter out all 7-bit characters (replace them with + # spaces) so the word boundary detection works properly. [MAP] + + if self.state == ProbingState.NOT_ME: + # Both model probers say it's not them. No reason to continue. + return ProbingState.NOT_ME + + byte_str = self.filter_high_byte_only(byte_str) + + for cur in byte_str: + if cur == ' ': + # We stand on a space - a word just ended + if self._before_prev != ' ': + # next-to-last char was not a space so self._prev is not a + # 1 letter word + if self.is_final(self._prev): + # case (1) [-2:not space][-1:final letter][cur:space] + self._final_char_logical_score += 1 + elif self.is_non_final(self._prev): + # case (2) [-2:not space][-1:Non-Final letter][ + # cur:space] + self._final_char_visual_score += 1 + else: + # Not standing on a space + if ((self._before_prev == ' ') and + (self.is_final(self._prev)) and (cur != ' ')): + # case (3) [-2:space][-1:final letter][cur:not space] + self._final_char_visual_score += 1 + self._before_prev = self._prev + self._prev = cur + + # Forever detecting, till the end or until both model probers return + # ProbingState.NOT_ME (handled above) + return ProbingState.DETECTING + + @property + def charset_name(self): + # Make the decision: is it Logical or Visual? + # If the final letter score distance is dominant enough, rely on it. + finalsub = self._final_char_logical_score - self._final_char_visual_score + if finalsub >= self.MIN_FINAL_CHAR_DISTANCE: + return self.LOGICAL_HEBREW_NAME + if finalsub <= -self.MIN_FINAL_CHAR_DISTANCE: + return self.VISUAL_HEBREW_NAME + + # It's not dominant enough, try to rely on the model scores instead. + modelsub = (self._logical_prober.get_confidence() + - self._visual_prober.get_confidence()) + if modelsub > self.MIN_MODEL_DISTANCE: + return self.LOGICAL_HEBREW_NAME + if modelsub < -self.MIN_MODEL_DISTANCE: + return self.VISUAL_HEBREW_NAME + + # Still no good, back to final letter distance, maybe it'll save the + # day. + if finalsub < 0.0: + return self.VISUAL_HEBREW_NAME + + # (finalsub > 0 - Logical) or (don't know what to do) default to + # Logical. + return self.LOGICAL_HEBREW_NAME + + @property + def language(self): + return 'Hebrew' + + @property + def state(self): + # Remain active as long as any of the model probers are active. + if (self._logical_prober.state == ProbingState.NOT_ME) and \ + (self._visual_prober.state == ProbingState.NOT_ME): + return ProbingState.NOT_ME + return ProbingState.DETECTING diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/jisfreq.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/jisfreq.py new file mode 100644 index 00000000..83fc082b --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/jisfreq.py @@ -0,0 +1,325 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# Sampling from about 20M text materials include literature and computer technology +# +# Japanese frequency table, applied to both S-JIS and EUC-JP +# They are sorted in order. + +# 128 --> 0.77094 +# 256 --> 0.85710 +# 512 --> 0.92635 +# 1024 --> 0.97130 +# 2048 --> 0.99431 +# +# Ideal Distribution Ratio = 0.92635 / (1-0.92635) = 12.58 +# Random Distribution Ration = 512 / (2965+62+83+86-512) = 0.191 +# +# Typical Distribution Ratio, 25% of IDR + +JIS_TYPICAL_DISTRIBUTION_RATIO = 3.0 + +# Char to FreqOrder table , +JIS_TABLE_SIZE = 4368 + +JIS_CHAR_TO_FREQ_ORDER = ( + 40, 1, 6, 182, 152, 180, 295,2127, 285, 381,3295,4304,3068,4606,3165,3510, # 16 +3511,1822,2785,4607,1193,2226,5070,4608, 171,2996,1247, 18, 179,5071, 856,1661, # 32 +1262,5072, 619, 127,3431,3512,3230,1899,1700, 232, 228,1294,1298, 284, 283,2041, # 48 +2042,1061,1062, 48, 49, 44, 45, 433, 434,1040,1041, 996, 787,2997,1255,4305, # 64 +2108,4609,1684,1648,5073,5074,5075,5076,5077,5078,3687,5079,4610,5080,3927,3928, # 80 +5081,3296,3432, 290,2285,1471,2187,5082,2580,2825,1303,2140,1739,1445,2691,3375, # 96 +1691,3297,4306,4307,4611, 452,3376,1182,2713,3688,3069,4308,5083,5084,5085,5086, # 112 +5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102, # 128 +5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,4097,5113,5114,5115,5116,5117, # 144 +5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133, # 160 +5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149, # 176 +5150,5151,5152,4612,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164, # 192 +5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,1472, 598, 618, 820,1205, # 208 +1309,1412,1858,1307,1692,5176,5177,5178,5179,5180,5181,5182,1142,1452,1234,1172, # 224 +1875,2043,2149,1793,1382,2973, 925,2404,1067,1241, 960,1377,2935,1491, 919,1217, # 240 +1865,2030,1406,1499,2749,4098,5183,5184,5185,5186,5187,5188,2561,4099,3117,1804, # 256 +2049,3689,4309,3513,1663,5189,3166,3118,3298,1587,1561,3433,5190,3119,1625,2998, # 272 +3299,4613,1766,3690,2786,4614,5191,5192,5193,5194,2161, 26,3377, 2,3929, 20, # 288 +3691, 47,4100, 50, 17, 16, 35, 268, 27, 243, 42, 155, 24, 154, 29, 184, # 304 + 4, 91, 14, 92, 53, 396, 33, 289, 9, 37, 64, 620, 21, 39, 321, 5, # 320 + 12, 11, 52, 13, 3, 208, 138, 0, 7, 60, 526, 141, 151,1069, 181, 275, # 336 +1591, 83, 132,1475, 126, 331, 829, 15, 69, 160, 59, 22, 157, 55,1079, 312, # 352 + 109, 38, 23, 25, 10, 19, 79,5195, 61, 382,1124, 8, 30,5196,5197,5198, # 368 +5199,5200,5201,5202,5203,5204,5205,5206, 89, 62, 74, 34,2416, 112, 139, 196, # 384 + 271, 149, 84, 607, 131, 765, 46, 88, 153, 683, 76, 874, 101, 258, 57, 80, # 400 + 32, 364, 121,1508, 169,1547, 68, 235, 145,2999, 41, 360,3027, 70, 63, 31, # 416 + 43, 259, 262,1383, 99, 533, 194, 66, 93, 846, 217, 192, 56, 106, 58, 565, # 432 + 280, 272, 311, 256, 146, 82, 308, 71, 100, 128, 214, 655, 110, 261, 104,1140, # 448 + 54, 51, 36, 87, 67,3070, 185,2618,2936,2020, 28,1066,2390,2059,5207,5208, # 464 +5209,5210,5211,5212,5213,5214,5215,5216,4615,5217,5218,5219,5220,5221,5222,5223, # 480 +5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,3514,5237,5238, # 496 +5239,5240,5241,5242,5243,5244,2297,2031,4616,4310,3692,5245,3071,5246,3598,5247, # 512 +4617,3231,3515,5248,4101,4311,4618,3808,4312,4102,5249,4103,4104,3599,5250,5251, # 528 +5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267, # 544 +5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283, # 560 +5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299, # 576 +5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315, # 592 +5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331, # 608 +5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347, # 624 +5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363, # 640 +5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379, # 656 +5380,5381, 363, 642,2787,2878,2788,2789,2316,3232,2317,3434,2011, 165,1942,3930, # 672 +3931,3932,3933,5382,4619,5383,4620,5384,5385,5386,5387,5388,5389,5390,5391,5392, # 688 +5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408, # 704 +5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424, # 720 +5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440, # 736 +5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456, # 752 +5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472, # 768 +5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488, # 784 +5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504, # 800 +5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520, # 816 +5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536, # 832 +5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552, # 848 +5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568, # 864 +5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584, # 880 +5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600, # 896 +5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616, # 912 +5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632, # 928 +5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648, # 944 +5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664, # 960 +5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680, # 976 +5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696, # 992 +5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712, # 1008 +5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728, # 1024 +5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744, # 1040 +5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760, # 1056 +5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776, # 1072 +5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792, # 1088 +5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808, # 1104 +5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824, # 1120 +5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840, # 1136 +5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856, # 1152 +5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872, # 1168 +5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888, # 1184 +5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904, # 1200 +5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920, # 1216 +5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936, # 1232 +5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952, # 1248 +5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968, # 1264 +5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984, # 1280 +5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000, # 1296 +6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016, # 1312 +6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032, # 1328 +6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048, # 1344 +6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064, # 1360 +6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080, # 1376 +6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096, # 1392 +6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112, # 1408 +6113,6114,2044,2060,4621, 997,1235, 473,1186,4622, 920,3378,6115,6116, 379,1108, # 1424 +4313,2657,2735,3934,6117,3809, 636,3233, 573,1026,3693,3435,2974,3300,2298,4105, # 1440 + 854,2937,2463, 393,2581,2417, 539, 752,1280,2750,2480, 140,1161, 440, 708,1569, # 1456 + 665,2497,1746,1291,1523,3000, 164,1603, 847,1331, 537,1997, 486, 508,1693,2418, # 1472 +1970,2227, 878,1220, 299,1030, 969, 652,2751, 624,1137,3301,2619, 65,3302,2045, # 1488 +1761,1859,3120,1930,3694,3516, 663,1767, 852, 835,3695, 269, 767,2826,2339,1305, # 1504 + 896,1150, 770,1616,6118, 506,1502,2075,1012,2519, 775,2520,2975,2340,2938,4314, # 1520 +3028,2086,1224,1943,2286,6119,3072,4315,2240,1273,1987,3935,1557, 175, 597, 985, # 1536 +3517,2419,2521,1416,3029, 585, 938,1931,1007,1052,1932,1685,6120,3379,4316,4623, # 1552 + 804, 599,3121,1333,2128,2539,1159,1554,2032,3810, 687,2033,2904, 952, 675,1467, # 1568 +3436,6121,2241,1096,1786,2440,1543,1924, 980,1813,2228, 781,2692,1879, 728,1918, # 1584 +3696,4624, 548,1950,4625,1809,1088,1356,3303,2522,1944, 502, 972, 373, 513,2827, # 1600 + 586,2377,2391,1003,1976,1631,6122,2464,1084, 648,1776,4626,2141, 324, 962,2012, # 1616 +2177,2076,1384, 742,2178,1448,1173,1810, 222, 102, 301, 445, 125,2420, 662,2498, # 1632 + 277, 200,1476,1165,1068, 224,2562,1378,1446, 450,1880, 659, 791, 582,4627,2939, # 1648 +3936,1516,1274, 555,2099,3697,1020,1389,1526,3380,1762,1723,1787,2229, 412,2114, # 1664 +1900,2392,3518, 512,2597, 427,1925,2341,3122,1653,1686,2465,2499, 697, 330, 273, # 1680 + 380,2162, 951, 832, 780, 991,1301,3073, 965,2270,3519, 668,2523,2636,1286, 535, # 1696 +1407, 518, 671, 957,2658,2378, 267, 611,2197,3030,6123, 248,2299, 967,1799,2356, # 1712 + 850,1418,3437,1876,1256,1480,2828,1718,6124,6125,1755,1664,2405,6126,4628,2879, # 1728 +2829, 499,2179, 676,4629, 557,2329,2214,2090, 325,3234, 464, 811,3001, 992,2342, # 1744 +2481,1232,1469, 303,2242, 466,1070,2163, 603,1777,2091,4630,2752,4631,2714, 322, # 1760 +2659,1964,1768, 481,2188,1463,2330,2857,3600,2092,3031,2421,4632,2318,2070,1849, # 1776 +2598,4633,1302,2254,1668,1701,2422,3811,2905,3032,3123,2046,4106,1763,1694,4634, # 1792 +1604, 943,1724,1454, 917, 868,2215,1169,2940, 552,1145,1800,1228,1823,1955, 316, # 1808 +1080,2510, 361,1807,2830,4107,2660,3381,1346,1423,1134,4108,6127, 541,1263,1229, # 1824 +1148,2540, 545, 465,1833,2880,3438,1901,3074,2482, 816,3937, 713,1788,2500, 122, # 1840 +1575, 195,1451,2501,1111,6128, 859, 374,1225,2243,2483,4317, 390,1033,3439,3075, # 1856 +2524,1687, 266, 793,1440,2599, 946, 779, 802, 507, 897,1081, 528,2189,1292, 711, # 1872 +1866,1725,1167,1640, 753, 398,2661,1053, 246, 348,4318, 137,1024,3440,1600,2077, # 1888 +2129, 825,4319, 698, 238, 521, 187,2300,1157,2423,1641,1605,1464,1610,1097,2541, # 1904 +1260,1436, 759,2255,1814,2150, 705,3235, 409,2563,3304, 561,3033,2005,2564, 726, # 1920 +1956,2343,3698,4109, 949,3812,3813,3520,1669, 653,1379,2525, 881,2198, 632,2256, # 1936 +1027, 778,1074, 733,1957, 514,1481,2466, 554,2180, 702,3938,1606,1017,1398,6129, # 1952 +1380,3521, 921, 993,1313, 594, 449,1489,1617,1166, 768,1426,1360, 495,1794,3601, # 1968 +1177,3602,1170,4320,2344, 476, 425,3167,4635,3168,1424, 401,2662,1171,3382,1998, # 1984 +1089,4110, 477,3169, 474,6130,1909, 596,2831,1842, 494, 693,1051,1028,1207,3076, # 2000 + 606,2115, 727,2790,1473,1115, 743,3522, 630, 805,1532,4321,2021, 366,1057, 838, # 2016 + 684,1114,2142,4322,2050,1492,1892,1808,2271,3814,2424,1971,1447,1373,3305,1090, # 2032 +1536,3939,3523,3306,1455,2199, 336, 369,2331,1035, 584,2393, 902, 718,2600,6131, # 2048 +2753, 463,2151,1149,1611,2467, 715,1308,3124,1268, 343,1413,3236,1517,1347,2663, # 2064 +2093,3940,2022,1131,1553,2100,2941,1427,3441,2942,1323,2484,6132,1980, 872,2368, # 2080 +2441,2943, 320,2369,2116,1082, 679,1933,3941,2791,3815, 625,1143,2023, 422,2200, # 2096 +3816,6133, 730,1695, 356,2257,1626,2301,2858,2637,1627,1778, 937, 883,2906,2693, # 2112 +3002,1769,1086, 400,1063,1325,3307,2792,4111,3077, 456,2345,1046, 747,6134,1524, # 2128 + 884,1094,3383,1474,2164,1059, 974,1688,2181,2258,1047, 345,1665,1187, 358, 875, # 2144 +3170, 305, 660,3524,2190,1334,1135,3171,1540,1649,2542,1527, 927, 968,2793, 885, # 2160 +1972,1850, 482, 500,2638,1218,1109,1085,2543,1654,2034, 876, 78,2287,1482,1277, # 2176 + 861,1675,1083,1779, 724,2754, 454, 397,1132,1612,2332, 893, 672,1237, 257,2259, # 2192 +2370, 135,3384, 337,2244, 547, 352, 340, 709,2485,1400, 788,1138,2511, 540, 772, # 2208 +1682,2260,2272,2544,2013,1843,1902,4636,1999,1562,2288,4637,2201,1403,1533, 407, # 2224 + 576,3308,1254,2071, 978,3385, 170, 136,1201,3125,2664,3172,2394, 213, 912, 873, # 2240 +3603,1713,2202, 699,3604,3699, 813,3442, 493, 531,1054, 468,2907,1483, 304, 281, # 2256 +4112,1726,1252,2094, 339,2319,2130,2639, 756,1563,2944, 748, 571,2976,1588,2425, # 2272 +2715,1851,1460,2426,1528,1392,1973,3237, 288,3309, 685,3386, 296, 892,2716,2216, # 2288 +1570,2245, 722,1747,2217, 905,3238,1103,6135,1893,1441,1965, 251,1805,2371,3700, # 2304 +2601,1919,1078, 75,2182,1509,1592,1270,2640,4638,2152,6136,3310,3817, 524, 706, # 2320 +1075, 292,3818,1756,2602, 317, 98,3173,3605,3525,1844,2218,3819,2502, 814, 567, # 2336 + 385,2908,1534,6137, 534,1642,3239, 797,6138,1670,1529, 953,4323, 188,1071, 538, # 2352 + 178, 729,3240,2109,1226,1374,2000,2357,2977, 731,2468,1116,2014,2051,6139,1261, # 2368 +1593, 803,2859,2736,3443, 556, 682, 823,1541,6140,1369,2289,1706,2794, 845, 462, # 2384 +2603,2665,1361, 387, 162,2358,1740, 739,1770,1720,1304,1401,3241,1049, 627,1571, # 2400 +2427,3526,1877,3942,1852,1500, 431,1910,1503, 677, 297,2795, 286,1433,1038,1198, # 2416 +2290,1133,1596,4113,4639,2469,1510,1484,3943,6141,2442, 108, 712,4640,2372, 866, # 2432 +3701,2755,3242,1348, 834,1945,1408,3527,2395,3243,1811, 824, 994,1179,2110,1548, # 2448 +1453, 790,3003, 690,4324,4325,2832,2909,3820,1860,3821, 225,1748, 310, 346,1780, # 2464 +2470, 821,1993,2717,2796, 828, 877,3528,2860,2471,1702,2165,2910,2486,1789, 453, # 2480 + 359,2291,1676, 73,1164,1461,1127,3311, 421, 604, 314,1037, 589, 116,2487, 737, # 2496 + 837,1180, 111, 244, 735,6142,2261,1861,1362, 986, 523, 418, 581,2666,3822, 103, # 2512 + 855, 503,1414,1867,2488,1091, 657,1597, 979, 605,1316,4641,1021,2443,2078,2001, # 2528 +1209, 96, 587,2166,1032, 260,1072,2153, 173, 94, 226,3244, 819,2006,4642,4114, # 2544 +2203, 231,1744, 782, 97,2667, 786,3387, 887, 391, 442,2219,4326,1425,6143,2694, # 2560 + 633,1544,1202, 483,2015, 592,2052,1958,2472,1655, 419, 129,4327,3444,3312,1714, # 2576 +1257,3078,4328,1518,1098, 865,1310,1019,1885,1512,1734, 469,2444, 148, 773, 436, # 2592 +1815,1868,1128,1055,4329,1245,2756,3445,2154,1934,1039,4643, 579,1238, 932,2320, # 2608 + 353, 205, 801, 115,2428, 944,2321,1881, 399,2565,1211, 678, 766,3944, 335,2101, # 2624 +1459,1781,1402,3945,2737,2131,1010, 844, 981,1326,1013, 550,1816,1545,2620,1335, # 2640 +1008, 371,2881, 936,1419,1613,3529,1456,1395,2273,1834,2604,1317,2738,2503, 416, # 2656 +1643,4330, 806,1126, 229, 591,3946,1314,1981,1576,1837,1666, 347,1790, 977,3313, # 2672 + 764,2861,1853, 688,2429,1920,1462, 77, 595, 415,2002,3034, 798,1192,4115,6144, # 2688 +2978,4331,3035,2695,2582,2072,2566, 430,2430,1727, 842,1396,3947,3702, 613, 377, # 2704 + 278, 236,1417,3388,3314,3174, 757,1869, 107,3530,6145,1194, 623,2262, 207,1253, # 2720 +2167,3446,3948, 492,1117,1935, 536,1838,2757,1246,4332, 696,2095,2406,1393,1572, # 2736 +3175,1782, 583, 190, 253,1390,2230, 830,3126,3389, 934,3245,1703,1749,2979,1870, # 2752 +2545,1656,2204, 869,2346,4116,3176,1817, 496,1764,4644, 942,1504, 404,1903,1122, # 2768 +1580,3606,2945,1022, 515, 372,1735, 955,2431,3036,6146,2797,1110,2302,2798, 617, # 2784 +6147, 441, 762,1771,3447,3607,3608,1904, 840,3037, 86, 939,1385, 572,1370,2445, # 2800 +1336, 114,3703, 898, 294, 203,3315, 703,1583,2274, 429, 961,4333,1854,1951,3390, # 2816 +2373,3704,4334,1318,1381, 966,1911,2322,1006,1155, 309, 989, 458,2718,1795,1372, # 2832 +1203, 252,1689,1363,3177, 517,1936, 168,1490, 562, 193,3823,1042,4117,1835, 551, # 2848 + 470,4645, 395, 489,3448,1871,1465,2583,2641, 417,1493, 279,1295, 511,1236,1119, # 2864 + 72,1231,1982,1812,3004, 871,1564, 984,3449,1667,2696,2096,4646,2347,2833,1673, # 2880 +3609, 695,3246,2668, 807,1183,4647, 890, 388,2333,1801,1457,2911,1765,1477,1031, # 2896 +3316,3317,1278,3391,2799,2292,2526, 163,3450,4335,2669,1404,1802,6148,2323,2407, # 2912 +1584,1728,1494,1824,1269, 298, 909,3318,1034,1632, 375, 776,1683,2061, 291, 210, # 2928 +1123, 809,1249,1002,2642,3038, 206,1011,2132, 144, 975, 882,1565, 342, 667, 754, # 2944 +1442,2143,1299,2303,2062, 447, 626,2205,1221,2739,2912,1144,1214,2206,2584, 760, # 2960 +1715, 614, 950,1281,2670,2621, 810, 577,1287,2546,4648, 242,2168, 250,2643, 691, # 2976 + 123,2644, 647, 313,1029, 689,1357,2946,1650, 216, 771,1339,1306, 808,2063, 549, # 2992 + 913,1371,2913,2914,6149,1466,1092,1174,1196,1311,2605,2396,1783,1796,3079, 406, # 3008 +2671,2117,3949,4649, 487,1825,2220,6150,2915, 448,2348,1073,6151,2397,1707, 130, # 3024 + 900,1598, 329, 176,1959,2527,1620,6152,2275,4336,3319,1983,2191,3705,3610,2155, # 3040 +3706,1912,1513,1614,6153,1988, 646, 392,2304,1589,3320,3039,1826,1239,1352,1340, # 3056 +2916, 505,2567,1709,1437,2408,2547, 906,6154,2672, 384,1458,1594,1100,1329, 710, # 3072 + 423,3531,2064,2231,2622,1989,2673,1087,1882, 333, 841,3005,1296,2882,2379, 580, # 3088 +1937,1827,1293,2585, 601, 574, 249,1772,4118,2079,1120, 645, 901,1176,1690, 795, # 3104 +2207, 478,1434, 516,1190,1530, 761,2080, 930,1264, 355, 435,1552, 644,1791, 987, # 3120 + 220,1364,1163,1121,1538, 306,2169,1327,1222, 546,2645, 218, 241, 610,1704,3321, # 3136 +1984,1839,1966,2528, 451,6155,2586,3707,2568, 907,3178, 254,2947, 186,1845,4650, # 3152 + 745, 432,1757, 428,1633, 888,2246,2221,2489,3611,2118,1258,1265, 956,3127,1784, # 3168 +4337,2490, 319, 510, 119, 457,3612, 274,2035,2007,4651,1409,3128, 970,2758, 590, # 3184 +2800, 661,2247,4652,2008,3950,1420,1549,3080,3322,3951,1651,1375,2111, 485,2491, # 3200 +1429,1156,6156,2548,2183,1495, 831,1840,2529,2446, 501,1657, 307,1894,3247,1341, # 3216 + 666, 899,2156,1539,2549,1559, 886, 349,2208,3081,2305,1736,3824,2170,2759,1014, # 3232 +1913,1386, 542,1397,2948, 490, 368, 716, 362, 159, 282,2569,1129,1658,1288,1750, # 3248 +2674, 276, 649,2016, 751,1496, 658,1818,1284,1862,2209,2087,2512,3451, 622,2834, # 3264 + 376, 117,1060,2053,1208,1721,1101,1443, 247,1250,3179,1792,3952,2760,2398,3953, # 3280 +6157,2144,3708, 446,2432,1151,2570,3452,2447,2761,2835,1210,2448,3082, 424,2222, # 3296 +1251,2449,2119,2836, 504,1581,4338, 602, 817, 857,3825,2349,2306, 357,3826,1470, # 3312 +1883,2883, 255, 958, 929,2917,3248, 302,4653,1050,1271,1751,2307,1952,1430,2697, # 3328 +2719,2359, 354,3180, 777, 158,2036,4339,1659,4340,4654,2308,2949,2248,1146,2232, # 3344 +3532,2720,1696,2623,3827,6158,3129,1550,2698,1485,1297,1428, 637, 931,2721,2145, # 3360 + 914,2550,2587, 81,2450, 612, 827,2646,1242,4655,1118,2884, 472,1855,3181,3533, # 3376 +3534, 569,1353,2699,1244,1758,2588,4119,2009,2762,2171,3709,1312,1531,6159,1152, # 3392 +1938, 134,1830, 471,3710,2276,1112,1535,3323,3453,3535, 982,1337,2950, 488, 826, # 3408 + 674,1058,1628,4120,2017, 522,2399, 211, 568,1367,3454, 350, 293,1872,1139,3249, # 3424 +1399,1946,3006,1300,2360,3324, 588, 736,6160,2606, 744, 669,3536,3828,6161,1358, # 3440 + 199, 723, 848, 933, 851,1939,1505,1514,1338,1618,1831,4656,1634,3613, 443,2740, # 3456 +3829, 717,1947, 491,1914,6162,2551,1542,4121,1025,6163,1099,1223, 198,3040,2722, # 3472 + 370, 410,1905,2589, 998,1248,3182,2380, 519,1449,4122,1710, 947, 928,1153,4341, # 3488 +2277, 344,2624,1511, 615, 105, 161,1212,1076,1960,3130,2054,1926,1175,1906,2473, # 3504 + 414,1873,2801,6164,2309, 315,1319,3325, 318,2018,2146,2157, 963, 631, 223,4342, # 3520 +4343,2675, 479,3711,1197,2625,3712,2676,2361,6165,4344,4123,6166,2451,3183,1886, # 3536 +2184,1674,1330,1711,1635,1506, 799, 219,3250,3083,3954,1677,3713,3326,2081,3614, # 3552 +1652,2073,4657,1147,3041,1752, 643,1961, 147,1974,3955,6167,1716,2037, 918,3007, # 3568 +1994, 120,1537, 118, 609,3184,4345, 740,3455,1219, 332,1615,3830,6168,1621,2980, # 3584 +1582, 783, 212, 553,2350,3714,1349,2433,2082,4124, 889,6169,2310,1275,1410, 973, # 3600 + 166,1320,3456,1797,1215,3185,2885,1846,2590,2763,4658, 629, 822,3008, 763, 940, # 3616 +1990,2862, 439,2409,1566,1240,1622, 926,1282,1907,2764, 654,2210,1607, 327,1130, # 3632 +3956,1678,1623,6170,2434,2192, 686, 608,3831,3715, 903,3957,3042,6171,2741,1522, # 3648 +1915,1105,1555,2552,1359, 323,3251,4346,3457, 738,1354,2553,2311,2334,1828,2003, # 3664 +3832,1753,2351,1227,6172,1887,4125,1478,6173,2410,1874,1712,1847, 520,1204,2607, # 3680 + 264,4659, 836,2677,2102, 600,4660,3833,2278,3084,6174,4347,3615,1342, 640, 532, # 3696 + 543,2608,1888,2400,2591,1009,4348,1497, 341,1737,3616,2723,1394, 529,3252,1321, # 3712 + 983,4661,1515,2120, 971,2592, 924, 287,1662,3186,4349,2700,4350,1519, 908,1948, # 3728 +2452, 156, 796,1629,1486,2223,2055, 694,4126,1259,1036,3392,1213,2249,2742,1889, # 3744 +1230,3958,1015, 910, 408, 559,3617,4662, 746, 725, 935,4663,3959,3009,1289, 563, # 3760 + 867,4664,3960,1567,2981,2038,2626, 988,2263,2381,4351, 143,2374, 704,1895,6175, # 3776 +1188,3716,2088, 673,3085,2362,4352, 484,1608,1921,2765,2918, 215, 904,3618,3537, # 3792 + 894, 509, 976,3043,2701,3961,4353,2837,2982, 498,6176,6177,1102,3538,1332,3393, # 3808 +1487,1636,1637, 233, 245,3962, 383, 650, 995,3044, 460,1520,1206,2352, 749,3327, # 3824 + 530, 700, 389,1438,1560,1773,3963,2264, 719,2951,2724,3834, 870,1832,1644,1000, # 3840 + 839,2474,3717, 197,1630,3394, 365,2886,3964,1285,2133, 734, 922, 818,1106, 732, # 3856 + 480,2083,1774,3458, 923,2279,1350, 221,3086, 85,2233,2234,3835,1585,3010,2147, # 3872 +1387,1705,2382,1619,2475, 133, 239,2802,1991,1016,2084,2383, 411,2838,1113, 651, # 3888 +1985,1160,3328, 990,1863,3087,1048,1276,2647, 265,2627,1599,3253,2056, 150, 638, # 3904 +2019, 656, 853, 326,1479, 680,1439,4354,1001,1759, 413,3459,3395,2492,1431, 459, # 3920 +4355,1125,3329,2265,1953,1450,2065,2863, 849, 351,2678,3131,3254,3255,1104,1577, # 3936 + 227,1351,1645,2453,2193,1421,2887, 812,2121, 634, 95,2435, 201,2312,4665,1646, # 3952 +1671,2743,1601,2554,2702,2648,2280,1315,1366,2089,3132,1573,3718,3965,1729,1189, # 3968 + 328,2679,1077,1940,1136, 558,1283, 964,1195, 621,2074,1199,1743,3460,3619,1896, # 3984 +1916,1890,3836,2952,1154,2112,1064, 862, 378,3011,2066,2113,2803,1568,2839,6178, # 4000 +3088,2919,1941,1660,2004,1992,2194, 142, 707,1590,1708,1624,1922,1023,1836,1233, # 4016 +1004,2313, 789, 741,3620,6179,1609,2411,1200,4127,3719,3720,4666,2057,3721, 593, # 4032 +2840, 367,2920,1878,6180,3461,1521, 628,1168, 692,2211,2649, 300, 720,2067,2571, # 4048 +2953,3396, 959,2504,3966,3539,3462,1977, 701,6181, 954,1043, 800, 681, 183,3722, # 4064 +1803,1730,3540,4128,2103, 815,2314, 174, 467, 230,2454,1093,2134, 755,3541,3397, # 4080 +1141,1162,6182,1738,2039, 270,3256,2513,1005,1647,2185,3837, 858,1679,1897,1719, # 4096 +2954,2324,1806, 402, 670, 167,4129,1498,2158,2104, 750,6183, 915, 189,1680,1551, # 4112 + 455,4356,1501,2455, 405,1095,2955, 338,1586,1266,1819, 570, 641,1324, 237,1556, # 4128 +2650,1388,3723,6184,1368,2384,1343,1978,3089,2436, 879,3724, 792,1191, 758,3012, # 4144 +1411,2135,1322,4357, 240,4667,1848,3725,1574,6185, 420,3045,1546,1391, 714,4358, # 4160 +1967, 941,1864, 863, 664, 426, 560,1731,2680,1785,2864,1949,2363, 403,3330,1415, # 4176 +1279,2136,1697,2335, 204, 721,2097,3838, 90,6186,2085,2505, 191,3967, 124,2148, # 4192 +1376,1798,1178,1107,1898,1405, 860,4359,1243,1272,2375,2983,1558,2456,1638, 113, # 4208 +3621, 578,1923,2609, 880, 386,4130, 784,2186,2266,1422,2956,2172,1722, 497, 263, # 4224 +2514,1267,2412,2610, 177,2703,3542, 774,1927,1344, 616,1432,1595,1018, 172,4360, # 4240 +2325, 911,4361, 438,1468,3622, 794,3968,2024,2173,1681,1829,2957, 945, 895,3090, # 4256 + 575,2212,2476, 475,2401,2681, 785,2744,1745,2293,2555,1975,3133,2865, 394,4668, # 4272 +3839, 635,4131, 639, 202,1507,2195,2766,1345,1435,2572,3726,1908,1184,1181,2457, # 4288 +3727,3134,4362, 843,2611, 437, 916,4669, 234, 769,1884,3046,3047,3623, 833,6187, # 4304 +1639,2250,2402,1355,1185,2010,2047, 999, 525,1732,1290,1488,2612, 948,1578,3728, # 4320 +2413,2477,1216,2725,2159, 334,3840,1328,3624,2921,1525,4132, 564,1056, 891,4363, # 4336 +1444,1698,2385,2251,3729,1365,2281,2235,1717,6188, 864,3841,2515, 444, 527,2767, # 4352 +2922,3625, 544, 461,6189, 566, 209,2437,3398,2098,1065,2068,3331,3626,3257,2137, # 4368 #last 512 +) + + diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/jpcntx.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/jpcntx.py new file mode 100644 index 00000000..20044e4b --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/jpcntx.py @@ -0,0 +1,233 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + + +# This is hiragana 2-char sequence table, the number in each cell represents its frequency category +jp2CharContext = ( +(0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1), +(2,4,0,4,0,3,0,4,0,3,4,4,4,2,4,3,3,4,3,2,3,3,4,2,3,3,3,2,4,1,4,3,3,1,5,4,3,4,3,4,3,5,3,0,3,5,4,2,0,3,1,0,3,3,0,3,3,0,1,1,0,4,3,0,3,3,0,4,0,2,0,3,5,5,5,5,4,0,4,1,0,3,4), +(0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2), +(0,4,0,5,0,5,0,4,0,4,5,4,4,3,5,3,5,1,5,3,4,3,4,4,3,4,3,3,4,3,5,4,4,3,5,5,3,5,5,5,3,5,5,3,4,5,5,3,1,3,2,0,3,4,0,4,2,0,4,2,1,5,3,2,3,5,0,4,0,2,0,5,4,4,5,4,5,0,4,0,0,4,4), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,3,0,4,0,3,0,3,0,4,5,4,3,3,3,3,4,3,5,4,4,3,5,4,4,3,4,3,4,4,4,4,5,3,4,4,3,4,5,5,4,5,5,1,4,5,4,3,0,3,3,1,3,3,0,4,4,0,3,3,1,5,3,3,3,5,0,4,0,3,0,4,4,3,4,3,3,0,4,1,1,3,4), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,4,0,3,0,3,0,4,0,3,4,4,3,2,2,1,2,1,3,1,3,3,3,3,3,4,3,1,3,3,5,3,3,0,4,3,0,5,4,3,3,5,4,4,3,4,4,5,0,1,2,0,1,2,0,2,2,0,1,0,0,5,2,2,1,4,0,3,0,1,0,4,4,3,5,4,3,0,2,1,0,4,3), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,3,0,5,0,4,0,2,1,4,4,2,4,1,4,2,4,2,4,3,3,3,4,3,3,3,3,1,4,2,3,3,3,1,4,4,1,1,1,4,3,3,2,0,2,4,3,2,0,3,3,0,3,1,1,0,0,0,3,3,0,4,2,2,3,4,0,4,0,3,0,4,4,5,3,4,4,0,3,0,0,1,4), +(1,4,0,4,0,4,0,4,0,3,5,4,4,3,4,3,5,4,3,3,4,3,5,4,4,4,4,3,4,2,4,3,3,1,5,4,3,2,4,5,4,5,5,4,4,5,4,4,0,3,2,2,3,3,0,4,3,1,3,2,1,4,3,3,4,5,0,3,0,2,0,4,5,5,4,5,4,0,4,0,0,5,4), +(0,5,0,5,0,4,0,3,0,4,4,3,4,3,3,3,4,0,4,4,4,3,4,3,4,3,3,1,4,2,4,3,4,0,5,4,1,4,5,4,4,5,3,2,4,3,4,3,2,4,1,3,3,3,2,3,2,0,4,3,3,4,3,3,3,4,0,4,0,3,0,4,5,4,4,4,3,0,4,1,0,1,3), +(0,3,1,4,0,3,0,2,0,3,4,4,3,1,4,2,3,3,4,3,4,3,4,3,4,4,3,2,3,1,5,4,4,1,4,4,3,5,4,4,3,5,5,4,3,4,4,3,1,2,3,1,2,2,0,3,2,0,3,1,0,5,3,3,3,4,3,3,3,3,4,4,4,4,5,4,2,0,3,3,2,4,3), +(0,2,0,3,0,1,0,1,0,0,3,2,0,0,2,0,1,0,2,1,3,3,3,1,2,3,1,0,1,0,4,2,1,1,3,3,0,4,3,3,1,4,3,3,0,3,3,2,0,0,0,0,1,0,0,2,0,0,0,0,0,4,1,0,2,3,2,2,2,1,3,3,3,4,4,3,2,0,3,1,0,3,3), +(0,4,0,4,0,3,0,3,0,4,4,4,3,3,3,3,3,3,4,3,4,2,4,3,4,3,3,2,4,3,4,5,4,1,4,5,3,5,4,5,3,5,4,0,3,5,5,3,1,3,3,2,2,3,0,3,4,1,3,3,2,4,3,3,3,4,0,4,0,3,0,4,5,4,4,5,3,0,4,1,0,3,4), +(0,2,0,3,0,3,0,0,0,2,2,2,1,0,1,0,0,0,3,0,3,0,3,0,1,3,1,0,3,1,3,3,3,1,3,3,3,0,1,3,1,3,4,0,0,3,1,1,0,3,2,0,0,0,0,1,3,0,1,0,0,3,3,2,0,3,0,0,0,0,0,3,4,3,4,3,3,0,3,0,0,2,3), +(2,3,0,3,0,2,0,1,0,3,3,4,3,1,3,1,1,1,3,1,4,3,4,3,3,3,0,0,3,1,5,4,3,1,4,3,2,5,5,4,4,4,4,3,3,4,4,4,0,2,1,1,3,2,0,1,2,0,0,1,0,4,1,3,3,3,0,3,0,1,0,4,4,4,5,5,3,0,2,0,0,4,4), +(0,2,0,1,0,3,1,3,0,2,3,3,3,0,3,1,0,0,3,0,3,2,3,1,3,2,1,1,0,0,4,2,1,0,2,3,1,4,3,2,0,4,4,3,1,3,1,3,0,1,0,0,1,0,0,0,1,0,0,0,0,4,1,1,1,2,0,3,0,0,0,3,4,2,4,3,2,0,1,0,0,3,3), +(0,1,0,4,0,5,0,4,0,2,4,4,2,3,3,2,3,3,5,3,3,3,4,3,4,2,3,0,4,3,3,3,4,1,4,3,2,1,5,5,3,4,5,1,3,5,4,2,0,3,3,0,1,3,0,4,2,0,1,3,1,4,3,3,3,3,0,3,0,1,0,3,4,4,4,5,5,0,3,0,1,4,5), +(0,2,0,3,0,3,0,0,0,2,3,1,3,0,4,0,1,1,3,0,3,4,3,2,3,1,0,3,3,2,3,1,3,0,2,3,0,2,1,4,1,2,2,0,0,3,3,0,0,2,0,0,0,1,0,0,0,0,2,2,0,3,2,1,3,3,0,2,0,2,0,0,3,3,1,2,4,0,3,0,2,2,3), +(2,4,0,5,0,4,0,4,0,2,4,4,4,3,4,3,3,3,1,2,4,3,4,3,4,4,5,0,3,3,3,3,2,0,4,3,1,4,3,4,1,4,4,3,3,4,4,3,1,2,3,0,4,2,0,4,1,0,3,3,0,4,3,3,3,4,0,4,0,2,0,3,5,3,4,5,2,0,3,0,0,4,5), +(0,3,0,4,0,1,0,1,0,1,3,2,2,1,3,0,3,0,2,0,2,0,3,0,2,0,0,0,1,0,1,1,0,0,3,1,0,0,0,4,0,3,1,0,2,1,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,2,2,3,1,0,3,0,0,0,1,4,4,4,3,0,0,4,0,0,1,4), +(1,4,1,5,0,3,0,3,0,4,5,4,4,3,5,3,3,4,4,3,4,1,3,3,3,3,2,1,4,1,5,4,3,1,4,4,3,5,4,4,3,5,4,3,3,4,4,4,0,3,3,1,2,3,0,3,1,0,3,3,0,5,4,4,4,4,4,4,3,3,5,4,4,3,3,5,4,0,3,2,0,4,4), +(0,2,0,3,0,1,0,0,0,1,3,3,3,2,4,1,3,0,3,1,3,0,2,2,1,1,0,0,2,0,4,3,1,0,4,3,0,4,4,4,1,4,3,1,1,3,3,1,0,2,0,0,1,3,0,0,0,0,2,0,0,4,3,2,4,3,5,4,3,3,3,4,3,3,4,3,3,0,2,1,0,3,3), +(0,2,0,4,0,3,0,2,0,2,5,5,3,4,4,4,4,1,4,3,3,0,4,3,4,3,1,3,3,2,4,3,0,3,4,3,0,3,4,4,2,4,4,0,4,5,3,3,2,2,1,1,1,2,0,1,5,0,3,3,2,4,3,3,3,4,0,3,0,2,0,4,4,3,5,5,0,0,3,0,2,3,3), +(0,3,0,4,0,3,0,1,0,3,4,3,3,1,3,3,3,0,3,1,3,0,4,3,3,1,1,0,3,0,3,3,0,0,4,4,0,1,5,4,3,3,5,0,3,3,4,3,0,2,0,1,1,1,0,1,3,0,1,2,1,3,3,2,3,3,0,3,0,1,0,1,3,3,4,4,1,0,1,2,2,1,3), +(0,1,0,4,0,4,0,3,0,1,3,3,3,2,3,1,1,0,3,0,3,3,4,3,2,4,2,0,1,0,4,3,2,0,4,3,0,5,3,3,2,4,4,4,3,3,3,4,0,1,3,0,0,1,0,0,1,0,0,0,0,4,2,3,3,3,0,3,0,0,0,4,4,4,5,3,2,0,3,3,0,3,5), +(0,2,0,3,0,0,0,3,0,1,3,0,2,0,0,0,1,0,3,1,1,3,3,0,0,3,0,0,3,0,2,3,1,0,3,1,0,3,3,2,0,4,2,2,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,1,0,1,0,0,0,1,3,1,2,0,0,0,1,0,0,1,4), +(0,3,0,3,0,5,0,1,0,2,4,3,1,3,3,2,1,1,5,2,1,0,5,1,2,0,0,0,3,3,2,2,3,2,4,3,0,0,3,3,1,3,3,0,2,5,3,4,0,3,3,0,1,2,0,2,2,0,3,2,0,2,2,3,3,3,0,2,0,1,0,3,4,4,2,5,4,0,3,0,0,3,5), +(0,3,0,3,0,3,0,1,0,3,3,3,3,0,3,0,2,0,2,1,1,0,2,0,1,0,0,0,2,1,0,0,1,0,3,2,0,0,3,3,1,2,3,1,0,3,3,0,0,1,0,0,0,0,0,2,0,0,0,0,0,2,3,1,2,3,0,3,0,1,0,3,2,1,0,4,3,0,1,1,0,3,3), +(0,4,0,5,0,3,0,3,0,4,5,5,4,3,5,3,4,3,5,3,3,2,5,3,4,4,4,3,4,3,4,5,5,3,4,4,3,4,4,5,4,4,4,3,4,5,5,4,2,3,4,2,3,4,0,3,3,1,4,3,2,4,3,3,5,5,0,3,0,3,0,5,5,5,5,4,4,0,4,0,1,4,4), +(0,4,0,4,0,3,0,3,0,3,5,4,4,2,3,2,5,1,3,2,5,1,4,2,3,2,3,3,4,3,3,3,3,2,5,4,1,3,3,5,3,4,4,0,4,4,3,1,1,3,1,0,2,3,0,2,3,0,3,0,0,4,3,1,3,4,0,3,0,2,0,4,4,4,3,4,5,0,4,0,0,3,4), +(0,3,0,3,0,3,1,2,0,3,4,4,3,3,3,0,2,2,4,3,3,1,3,3,3,1,1,0,3,1,4,3,2,3,4,4,2,4,4,4,3,4,4,3,2,4,4,3,1,3,3,1,3,3,0,4,1,0,2,2,1,4,3,2,3,3,5,4,3,3,5,4,4,3,3,0,4,0,3,2,2,4,4), +(0,2,0,1,0,0,0,0,0,1,2,1,3,0,0,0,0,0,2,0,1,2,1,0,0,1,0,0,0,0,3,0,0,1,0,1,1,3,1,0,0,0,1,1,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1,2,2,0,3,4,0,0,0,1,1,0,0,1,0,0,0,0,0,1,1), +(0,1,0,0,0,1,0,0,0,0,4,0,4,1,4,0,3,0,4,0,3,0,4,0,3,0,3,0,4,1,5,1,4,0,0,3,0,5,0,5,2,0,1,0,0,0,2,1,4,0,1,3,0,0,3,0,0,3,1,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0), +(1,4,0,5,0,3,0,2,0,3,5,4,4,3,4,3,5,3,4,3,3,0,4,3,3,3,3,3,3,2,4,4,3,1,3,4,4,5,4,4,3,4,4,1,3,5,4,3,3,3,1,2,2,3,3,1,3,1,3,3,3,5,3,3,4,5,0,3,0,3,0,3,4,3,4,4,3,0,3,0,2,4,3), +(0,1,0,4,0,0,0,0,0,1,4,0,4,1,4,2,4,0,3,0,1,0,1,0,0,0,0,0,2,0,3,1,1,1,0,3,0,0,0,1,2,1,0,0,1,1,1,1,0,1,0,0,0,1,0,0,3,0,0,0,0,3,2,0,2,2,0,1,0,0,0,2,3,2,3,3,0,0,0,0,2,1,0), +(0,5,1,5,0,3,0,3,0,5,4,4,5,1,5,3,3,0,4,3,4,3,5,3,4,3,3,2,4,3,4,3,3,0,3,3,1,4,4,3,4,4,4,3,4,5,5,3,2,3,1,1,3,3,1,3,1,1,3,3,2,4,5,3,3,5,0,4,0,3,0,4,4,3,5,3,3,0,3,4,0,4,3), +(0,5,0,5,0,3,0,2,0,4,4,3,5,2,4,3,3,3,4,4,4,3,5,3,5,3,3,1,4,0,4,3,3,0,3,3,0,4,4,4,4,5,4,3,3,5,5,3,2,3,1,2,3,2,0,1,0,0,3,2,2,4,4,3,1,5,0,4,0,3,0,4,3,1,3,2,1,0,3,3,0,3,3), +(0,4,0,5,0,5,0,4,0,4,5,5,5,3,4,3,3,2,5,4,4,3,5,3,5,3,4,0,4,3,4,4,3,2,4,4,3,4,5,4,4,5,5,0,3,5,5,4,1,3,3,2,3,3,1,3,1,0,4,3,1,4,4,3,4,5,0,4,0,2,0,4,3,4,4,3,3,0,4,0,0,5,5), +(0,4,0,4,0,5,0,1,1,3,3,4,4,3,4,1,3,0,5,1,3,0,3,1,3,1,1,0,3,0,3,3,4,0,4,3,0,4,4,4,3,4,4,0,3,5,4,1,0,3,0,0,2,3,0,3,1,0,3,1,0,3,2,1,3,5,0,3,0,1,0,3,2,3,3,4,4,0,2,2,0,4,4), +(2,4,0,5,0,4,0,3,0,4,5,5,4,3,5,3,5,3,5,3,5,2,5,3,4,3,3,4,3,4,5,3,2,1,5,4,3,2,3,4,5,3,4,1,2,5,4,3,0,3,3,0,3,2,0,2,3,0,4,1,0,3,4,3,3,5,0,3,0,1,0,4,5,5,5,4,3,0,4,2,0,3,5), +(0,5,0,4,0,4,0,2,0,5,4,3,4,3,4,3,3,3,4,3,4,2,5,3,5,3,4,1,4,3,4,4,4,0,3,5,0,4,4,4,4,5,3,1,3,4,5,3,3,3,3,3,3,3,0,2,2,0,3,3,2,4,3,3,3,5,3,4,1,3,3,5,3,2,0,0,0,0,4,3,1,3,3), +(0,1,0,3,0,3,0,1,0,1,3,3,3,2,3,3,3,0,3,0,0,0,3,1,3,0,0,0,2,2,2,3,0,0,3,2,0,1,2,4,1,3,3,0,0,3,3,3,0,1,0,0,2,1,0,0,3,0,3,1,0,3,0,0,1,3,0,2,0,1,0,3,3,1,3,3,0,0,1,1,0,3,3), +(0,2,0,3,0,2,1,4,0,2,2,3,1,1,3,1,1,0,2,0,3,1,2,3,1,3,0,0,1,0,4,3,2,3,3,3,1,4,2,3,3,3,3,1,0,3,1,4,0,1,1,0,1,2,0,1,1,0,1,1,0,3,1,3,2,2,0,1,0,0,0,2,3,3,3,1,0,0,0,0,0,2,3), +(0,5,0,4,0,5,0,2,0,4,5,5,3,3,4,3,3,1,5,4,4,2,4,4,4,3,4,2,4,3,5,5,4,3,3,4,3,3,5,5,4,5,5,1,3,4,5,3,1,4,3,1,3,3,0,3,3,1,4,3,1,4,5,3,3,5,0,4,0,3,0,5,3,3,1,4,3,0,4,0,1,5,3), +(0,5,0,5,0,4,0,2,0,4,4,3,4,3,3,3,3,3,5,4,4,4,4,4,4,5,3,3,5,2,4,4,4,3,4,4,3,3,4,4,5,5,3,3,4,3,4,3,3,4,3,3,3,3,1,2,2,1,4,3,3,5,4,4,3,4,0,4,0,3,0,4,4,4,4,4,1,0,4,2,0,2,4), +(0,4,0,4,0,3,0,1,0,3,5,2,3,0,3,0,2,1,4,2,3,3,4,1,4,3,3,2,4,1,3,3,3,0,3,3,0,0,3,3,3,5,3,3,3,3,3,2,0,2,0,0,2,0,0,2,0,0,1,0,0,3,1,2,2,3,0,3,0,2,0,4,4,3,3,4,1,0,3,0,0,2,4), +(0,0,0,4,0,0,0,0,0,0,1,0,1,0,2,0,0,0,0,0,1,0,2,0,1,0,0,0,0,0,3,1,3,0,3,2,0,0,0,1,0,3,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,2,0,0,0,0,0,0,2), +(0,2,1,3,0,2,0,2,0,3,3,3,3,1,3,1,3,3,3,3,3,3,4,2,2,1,2,1,4,0,4,3,1,3,3,3,2,4,3,5,4,3,3,3,3,3,3,3,0,1,3,0,2,0,0,1,0,0,1,0,0,4,2,0,2,3,0,3,3,0,3,3,4,2,3,1,4,0,1,2,0,2,3), +(0,3,0,3,0,1,0,3,0,2,3,3,3,0,3,1,2,0,3,3,2,3,3,2,3,2,3,1,3,0,4,3,2,0,3,3,1,4,3,3,2,3,4,3,1,3,3,1,1,0,1,1,0,1,0,1,0,1,0,0,0,4,1,1,0,3,0,3,1,0,2,3,3,3,3,3,1,0,0,2,0,3,3), +(0,0,0,0,0,0,0,0,0,0,3,0,2,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,2,3,0,0,0,0,0,0,0,0,3), +(0,2,0,3,1,3,0,3,0,2,3,3,3,1,3,1,3,1,3,1,3,3,3,1,3,0,2,3,1,1,4,3,3,2,3,3,1,2,2,4,1,3,3,0,1,4,2,3,0,1,3,0,3,0,0,1,3,0,2,0,0,3,3,2,1,3,0,3,0,2,0,3,4,4,4,3,1,0,3,0,0,3,3), +(0,2,0,1,0,2,0,0,0,1,3,2,2,1,3,0,1,1,3,0,3,2,3,1,2,0,2,0,1,1,3,3,3,0,3,3,1,1,2,3,2,3,3,1,2,3,2,0,0,1,0,0,0,0,0,0,3,0,1,0,0,2,1,2,1,3,0,3,0,0,0,3,4,4,4,3,2,0,2,0,0,2,4), +(0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,3,1,0,0,0,0,0,0,0,3), +(0,3,0,3,0,2,0,3,0,3,3,3,2,3,2,2,2,0,3,1,3,3,3,2,3,3,0,0,3,0,3,2,2,0,2,3,1,4,3,4,3,3,2,3,1,5,4,4,0,3,1,2,1,3,0,3,1,1,2,0,2,3,1,3,1,3,0,3,0,1,0,3,3,4,4,2,1,0,2,1,0,2,4), +(0,1,0,3,0,1,0,2,0,1,4,2,5,1,4,0,2,0,2,1,3,1,4,0,2,1,0,0,2,1,4,1,1,0,3,3,0,5,1,3,2,3,3,1,0,3,2,3,0,1,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,3,0,2,0,1,0,3,3,3,4,3,3,0,0,0,0,2,3), +(0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,3), +(0,1,0,3,0,4,0,3,0,2,4,3,1,0,3,2,2,1,3,1,2,2,3,1,1,1,2,1,3,0,1,2,0,1,3,2,1,3,0,5,5,1,0,0,1,3,2,1,0,3,0,0,1,0,0,0,0,0,3,4,0,1,1,1,3,2,0,2,0,1,0,2,3,3,1,2,3,0,1,0,1,0,4), +(0,0,0,1,0,3,0,3,0,2,2,1,0,0,4,0,3,0,3,1,3,0,3,0,3,0,1,0,3,0,3,1,3,0,3,3,0,0,1,2,1,1,1,0,1,2,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,2,2,1,2,0,0,2,0,0,0,0,2,3,3,3,3,0,0,0,0,1,4), +(0,0,0,3,0,3,0,0,0,0,3,1,1,0,3,0,1,0,2,0,1,0,0,0,0,0,0,0,1,0,3,0,2,0,2,3,0,0,2,2,3,1,2,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,0,0,0,0,2,3), +(2,4,0,5,0,5,0,4,0,3,4,3,3,3,4,3,3,3,4,3,4,4,5,4,5,5,5,2,3,0,5,5,4,1,5,4,3,1,5,4,3,4,4,3,3,4,3,3,0,3,2,0,2,3,0,3,0,0,3,3,0,5,3,2,3,3,0,3,0,3,0,3,4,5,4,5,3,0,4,3,0,3,4), +(0,3,0,3,0,3,0,3,0,3,3,4,3,2,3,2,3,0,4,3,3,3,3,3,3,3,3,0,3,2,4,3,3,1,3,4,3,4,4,4,3,4,4,3,2,4,4,1,0,2,0,0,1,1,0,2,0,0,3,1,0,5,3,2,1,3,0,3,0,1,2,4,3,2,4,3,3,0,3,2,0,4,4), +(0,3,0,3,0,1,0,0,0,1,4,3,3,2,3,1,3,1,4,2,3,2,4,2,3,4,3,0,2,2,3,3,3,0,3,3,3,0,3,4,1,3,3,0,3,4,3,3,0,1,1,0,1,0,0,0,4,0,3,0,0,3,1,2,1,3,0,4,0,1,0,4,3,3,4,3,3,0,2,0,0,3,3), +(0,3,0,4,0,1,0,3,0,3,4,3,3,0,3,3,3,1,3,1,3,3,4,3,3,3,0,0,3,1,5,3,3,1,3,3,2,5,4,3,3,4,5,3,2,5,3,4,0,1,0,0,0,0,0,2,0,0,1,1,0,4,2,2,1,3,0,3,0,2,0,4,4,3,5,3,2,0,1,1,0,3,4), +(0,5,0,4,0,5,0,2,0,4,4,3,3,2,3,3,3,1,4,3,4,1,5,3,4,3,4,0,4,2,4,3,4,1,5,4,0,4,4,4,4,5,4,1,3,5,4,2,1,4,1,1,3,2,0,3,1,0,3,2,1,4,3,3,3,4,0,4,0,3,0,4,4,4,3,3,3,0,4,2,0,3,4), +(1,4,0,4,0,3,0,1,0,3,3,3,1,1,3,3,2,2,3,3,1,0,3,2,2,1,2,0,3,1,2,1,2,0,3,2,0,2,2,3,3,4,3,0,3,3,1,2,0,1,1,3,1,2,0,0,3,0,1,1,0,3,2,2,3,3,0,3,0,0,0,2,3,3,4,3,3,0,1,0,0,1,4), +(0,4,0,4,0,4,0,0,0,3,4,4,3,1,4,2,3,2,3,3,3,1,4,3,4,0,3,0,4,2,3,3,2,2,5,4,2,1,3,4,3,4,3,1,3,3,4,2,0,2,1,0,3,3,0,0,2,0,3,1,0,4,4,3,4,3,0,4,0,1,0,2,4,4,4,4,4,0,3,2,0,3,3), +(0,0,0,1,0,4,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,2,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2), +(0,2,0,3,0,4,0,4,0,1,3,3,3,0,4,0,2,1,2,1,1,1,2,0,3,1,1,0,1,0,3,1,0,0,3,3,2,0,1,1,0,0,0,0,0,1,0,2,0,2,2,0,3,1,0,0,1,0,1,1,0,1,2,0,3,0,0,0,0,1,0,0,3,3,4,3,1,0,1,0,3,0,2), +(0,0,0,3,0,5,0,0,0,0,1,0,2,0,3,1,0,1,3,0,0,0,2,0,0,0,1,0,0,0,1,1,0,0,4,0,0,0,2,3,0,1,4,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,3,0,0,0,0,0,3), +(0,2,0,5,0,5,0,1,0,2,4,3,3,2,5,1,3,2,3,3,3,0,4,1,2,0,3,0,4,0,2,2,1,1,5,3,0,0,1,4,2,3,2,0,3,3,3,2,0,2,4,1,1,2,0,1,1,0,3,1,0,1,3,1,2,3,0,2,0,0,0,1,3,5,4,4,4,0,3,0,0,1,3), +(0,4,0,5,0,4,0,4,0,4,5,4,3,3,4,3,3,3,4,3,4,4,5,3,4,5,4,2,4,2,3,4,3,1,4,4,1,3,5,4,4,5,5,4,4,5,5,5,2,3,3,1,4,3,1,3,3,0,3,3,1,4,3,4,4,4,0,3,0,4,0,3,3,4,4,5,0,0,4,3,0,4,5), +(0,4,0,4,0,3,0,3,0,3,4,4,4,3,3,2,4,3,4,3,4,3,5,3,4,3,2,1,4,2,4,4,3,1,3,4,2,4,5,5,3,4,5,4,1,5,4,3,0,3,2,2,3,2,1,3,1,0,3,3,3,5,3,3,3,5,4,4,2,3,3,4,3,3,3,2,1,0,3,2,1,4,3), +(0,4,0,5,0,4,0,3,0,3,5,5,3,2,4,3,4,0,5,4,4,1,4,4,4,3,3,3,4,3,5,5,2,3,3,4,1,2,5,5,3,5,5,2,3,5,5,4,0,3,2,0,3,3,1,1,5,1,4,1,0,4,3,2,3,5,0,4,0,3,0,5,4,3,4,3,0,0,4,1,0,4,4), +(1,3,0,4,0,2,0,2,0,2,5,5,3,3,3,3,3,0,4,2,3,4,4,4,3,4,0,0,3,4,5,4,3,3,3,3,2,5,5,4,5,5,5,4,3,5,5,5,1,3,1,0,1,0,0,3,2,0,4,2,0,5,2,3,2,4,1,3,0,3,0,4,5,4,5,4,3,0,4,2,0,5,4), +(0,3,0,4,0,5,0,3,0,3,4,4,3,2,3,2,3,3,3,3,3,2,4,3,3,2,2,0,3,3,3,3,3,1,3,3,3,0,4,4,3,4,4,1,1,4,4,2,0,3,1,0,1,1,0,4,1,0,2,3,1,3,3,1,3,4,0,3,0,1,0,3,1,3,0,0,1,0,2,0,0,4,4), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,3,0,3,0,2,0,3,0,1,5,4,3,3,3,1,4,2,1,2,3,4,4,2,4,4,5,0,3,1,4,3,4,0,4,3,3,3,2,3,2,5,3,4,3,2,2,3,0,0,3,0,2,1,0,1,2,0,0,0,0,2,1,1,3,1,0,2,0,4,0,3,4,4,4,5,2,0,2,0,0,1,3), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,4,2,1,1,0,1,0,3,2,0,0,3,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,2,0,0,0,1,4,0,4,2,1,0,0,0,0,0,1), +(0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,3,1,0,0,0,2,0,2,1,0,0,1,2,1,0,1,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,0,2), +(0,4,0,4,0,4,0,3,0,4,4,3,4,2,4,3,2,0,4,4,4,3,5,3,5,3,3,2,4,2,4,3,4,3,1,4,0,2,3,4,4,4,3,3,3,4,4,4,3,4,1,3,4,3,2,1,2,1,3,3,3,4,4,3,3,5,0,4,0,3,0,4,3,3,3,2,1,0,3,0,0,3,3), +(0,4,0,3,0,3,0,3,0,3,5,5,3,3,3,3,4,3,4,3,3,3,4,4,4,3,3,3,3,4,3,5,3,3,1,3,2,4,5,5,5,5,4,3,4,5,5,3,2,2,3,3,3,3,2,3,3,1,2,3,2,4,3,3,3,4,0,4,0,2,0,4,3,2,2,1,2,0,3,0,0,4,1), +) + +class JapaneseContextAnalysis(object): + NUM_OF_CATEGORY = 6 + DONT_KNOW = -1 + ENOUGH_REL_THRESHOLD = 100 + MAX_REL_THRESHOLD = 1000 + MINIMUM_DATA_THRESHOLD = 4 + + def __init__(self): + self._total_rel = None + self._rel_sample = None + self._need_to_skip_char_num = None + self._last_char_order = None + self._done = None + self.reset() + + def reset(self): + self._total_rel = 0 # total sequence received + # category counters, each integer counts sequence in its category + self._rel_sample = [0] * self.NUM_OF_CATEGORY + # if last byte in current buffer is not the last byte of a character, + # we need to know how many bytes to skip in next buffer + self._need_to_skip_char_num = 0 + self._last_char_order = -1 # The order of previous char + # If this flag is set to True, detection is done and conclusion has + # been made + self._done = False + + def feed(self, byte_str, num_bytes): + if self._done: + return + + # The buffer we got is byte oriented, and a character may span in more than one + # buffers. In case the last one or two byte in last buffer is not + # complete, we record how many byte needed to complete that character + # and skip these bytes here. We can choose to record those bytes as + # well and analyse the character once it is complete, but since a + # character will not make much difference, by simply skipping + # this character will simply our logic and improve performance. + i = self._need_to_skip_char_num + while i < num_bytes: + order, char_len = self.get_order(byte_str[i:i + 2]) + i += char_len + if i > num_bytes: + self._need_to_skip_char_num = i - num_bytes + self._last_char_order = -1 + else: + if (order != -1) and (self._last_char_order != -1): + self._total_rel += 1 + if self._total_rel > self.MAX_REL_THRESHOLD: + self._done = True + break + self._rel_sample[jp2CharContext[self._last_char_order][order]] += 1 + self._last_char_order = order + + def got_enough_data(self): + return self._total_rel > self.ENOUGH_REL_THRESHOLD + + def get_confidence(self): + # This is just one way to calculate confidence. It works well for me. + if self._total_rel > self.MINIMUM_DATA_THRESHOLD: + return (self._total_rel - self._rel_sample[0]) / self._total_rel + else: + return self.DONT_KNOW + + def get_order(self, byte_str): + return -1, 1 + +class SJISContextAnalysis(JapaneseContextAnalysis): + def __init__(self): + super(SJISContextAnalysis, self).__init__() + self._charset_name = "SHIFT_JIS" + + @property + def charset_name(self): + return self._charset_name + + def get_order(self, byte_str): + if not byte_str: + return -1, 1 + # find out current char's byte length + first_char = byte_str[0] + if (0x81 <= first_char <= 0x9F) or (0xE0 <= first_char <= 0xFC): + char_len = 2 + if (first_char == 0x87) or (0xFA <= first_char <= 0xFC): + self._charset_name = "CP932" + else: + char_len = 1 + + # return its order if it is hiragana + if len(byte_str) > 1: + second_char = byte_str[1] + if (first_char == 202) and (0x9F <= second_char <= 0xF1): + return second_char - 0x9F, char_len + + return -1, char_len + +class EUCJPContextAnalysis(JapaneseContextAnalysis): + def get_order(self, byte_str): + if not byte_str: + return -1, 1 + # find out current char's byte length + first_char = byte_str[0] + if (first_char == 0x8E) or (0xA1 <= first_char <= 0xFE): + char_len = 2 + elif first_char == 0x8F: + char_len = 3 + else: + char_len = 1 + + # return its order if it is hiragana + if len(byte_str) > 1: + second_char = byte_str[1] + if (first_char == 0xA4) and (0xA1 <= second_char <= 0xF3): + return second_char - 0xA1, char_len + + return -1, char_len + + diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langbulgarianmodel.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langbulgarianmodel.py new file mode 100644 index 00000000..e963a509 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langbulgarianmodel.py @@ -0,0 +1,4650 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +BULGARIAN_LANG_MODEL = { + 63: { # 'e' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 1, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 1, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 45: { # '\xad' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 1, # 'М' + 36: 0, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 31: { # 'А' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 2, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 1, # 'К' + 46: 2, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 1, # 'О' + 30: 2, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 2, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 1, # 'е' + 23: 1, # 'ж' + 15: 2, # 'з' + 2: 0, # 'и' + 26: 2, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 0, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 1, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 32: { # 'Б' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 2, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 1, # 'Е' + 55: 1, # 'Ж' + 47: 2, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 1, # 'Щ' + 61: 2, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 1, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 35: { # 'В' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 2, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 2, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 43: { # 'Г' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 1, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 1, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 37: { # 'Д' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 2, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 44: { # 'Е' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 2, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 2, # 'Ф' + 49: 1, # 'Х' + 53: 2, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 0, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 0, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 1, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 55: { # 'Ж' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 47: { # 'З' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 2, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 1, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 40: { # 'И' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 2, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 2, # 'Л' + 38: 2, # 'М' + 36: 2, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 2, # 'Я' + 1: 1, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 1, # 'е' + 23: 0, # 'ж' + 15: 3, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 0, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 0, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 59: { # 'Й' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 1, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 33: { # 'К' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 46: { # 'Л' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 2, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 38: { # 'М' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 0, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 36: { # 'Н' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 2, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 1, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 1, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 2, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 41: { # 'О' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 1, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 1, # 'Й' + 33: 2, # 'К' + 46: 2, # 'Л' + 38: 2, # 'М' + 36: 2, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 0, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 1, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 0, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 0, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 2, # 'ч' + 27: 0, # 'ш' + 24: 2, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 30: { # 'П' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 2, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 39: { # 'Р' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 2, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 1, # 'с' + 5: 0, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 28: { # 'С' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 3, # 'А' + 32: 2, # 'Б' + 35: 2, # 'В' + 43: 1, # 'Г' + 37: 2, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 2, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 1, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 34: { # 'Т' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 2, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 2, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 1, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 1, # 'Ъ' + 60: 0, # 'Ю' + 56: 1, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 3, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 51: { # 'У' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 2, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 2, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 2, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 2, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 2, # 'с' + 5: 1, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 48: { # 'Ф' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 2, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 1, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 2, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 49: { # 'Х' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 1, # 'П' + 39: 1, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 53: { # 'Ц' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 2, # 'И' + 59: 0, # 'Й' + 33: 2, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 2, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 1, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 50: { # 'Ч' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 2, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 2, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 54: { # 'Ш' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 1, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 1, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 2, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 1, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 57: { # 'Щ' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 1, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 1, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 1, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 61: { # 'Ъ' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 1, # 'Ж' + 47: 1, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 2, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 1, # 'П' + 39: 2, # 'Р' + 28: 1, # 'С' + 34: 1, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 1, # 'Х' + 53: 1, # 'Ц' + 50: 1, # 'Ч' + 54: 1, # 'Ш' + 57: 1, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 1, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 60: { # 'Ю' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 1, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 0, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 0, # 'е' + 23: 2, # 'ж' + 15: 1, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 0, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 56: { # 'Я' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 1, # 'В' + 43: 1, # 'Г' + 37: 1, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 1, # 'Л' + 38: 1, # 'М' + 36: 1, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 2, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 1, # 'и' + 26: 1, # 'й' + 12: 1, # 'к' + 10: 1, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 0, # 'о' + 13: 2, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 1: { # 'а' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 1, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 18: { # 'б' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 3, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 0, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 2, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 3, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 9: { # 'в' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 1, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 0, # 'в' + 20: 2, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 20: { # 'г' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 11: { # 'д' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 2, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 1, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 3: { # 'е' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 2, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 23: { # 'ж' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 15: { # 'з' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 2: { # 'и' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 1, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 1, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 1, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 1, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 26: { # 'й' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 2, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 2, # 'з' + 2: 1, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 12: { # 'к' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 1, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 1, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 3, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 10: { # 'л' + 63: 1, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 1, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 1, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 3, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 14: { # 'м' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 1, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 1, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 6: { # 'н' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 1, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 2, # 'б' + 9: 2, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 2, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 3, # 'ф' + 25: 2, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 2, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 4: { # 'о' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 2, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 3, # 'и' + 26: 3, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 2, # 'у' + 29: 3, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 3, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 13: { # 'п' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 3, # 'л' + 14: 1, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 7: { # 'р' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 3, # 'е' + 23: 3, # 'ж' + 15: 2, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 1, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 3, # 'х' + 22: 3, # 'ц' + 21: 2, # 'ч' + 27: 3, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 1, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 8: { # 'с' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 2, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 2, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 2, # 'ш' + 24: 0, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 5: { # 'т' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 2, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 3, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 2, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 3, # 'ъ' + 52: 2, # 'ь' + 42: 2, # 'ю' + 16: 3, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 19: { # 'у' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 2, # 'и' + 26: 2, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 2, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 3, # 'ш' + 24: 2, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 29: { # 'ф' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 1, # 'в' + 20: 1, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 2, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 2, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 25: { # 'х' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 2, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 1, # 'п' + 7: 3, # 'р' + 8: 1, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 1, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 22: { # 'ц' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 2, # 'в' + 20: 1, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 1, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 2, # 'к' + 10: 1, # 'л' + 14: 1, # 'м' + 6: 1, # 'н' + 4: 2, # 'о' + 13: 1, # 'п' + 7: 1, # 'р' + 8: 1, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 1, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 0, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 21: { # 'ч' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 1, # 'б' + 9: 3, # 'в' + 20: 1, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 1, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 2, # 'р' + 8: 0, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 1, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 27: { # 'ш' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 2, # 'в' + 20: 0, # 'г' + 11: 1, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 3, # 'к' + 10: 2, # 'л' + 14: 1, # 'м' + 6: 3, # 'н' + 4: 2, # 'о' + 13: 2, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 1, # 'т' + 19: 2, # 'у' + 29: 1, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 1, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 2, # 'ъ' + 52: 1, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 24: { # 'щ' + 63: 1, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 3, # 'а' + 18: 0, # 'б' + 9: 1, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 3, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 3, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 2, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 1, # 'р' + 8: 0, # 'с' + 5: 2, # 'т' + 19: 3, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 1, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 2, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 17: { # 'ъ' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 3, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 3, # 'ж' + 15: 3, # 'з' + 2: 1, # 'и' + 26: 2, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 3, # 'о' + 13: 3, # 'п' + 7: 3, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 2, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 2, # 'ш' + 24: 3, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 2, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 52: { # 'ь' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 1, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 1, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 1, # 'н' + 4: 3, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 1, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 1, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 1, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 42: { # 'ю' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 1, # 'а' + 18: 2, # 'б' + 9: 1, # 'в' + 20: 2, # 'г' + 11: 2, # 'д' + 3: 1, # 'е' + 23: 2, # 'ж' + 15: 2, # 'з' + 2: 1, # 'и' + 26: 1, # 'й' + 12: 2, # 'к' + 10: 2, # 'л' + 14: 2, # 'м' + 6: 2, # 'н' + 4: 1, # 'о' + 13: 1, # 'п' + 7: 2, # 'р' + 8: 2, # 'с' + 5: 2, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 1, # 'х' + 22: 2, # 'ц' + 21: 3, # 'ч' + 27: 1, # 'ш' + 24: 1, # 'щ' + 17: 1, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 16: { # 'я' + 63: 0, # 'e' + 45: 1, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 3, # 'б' + 9: 3, # 'в' + 20: 2, # 'г' + 11: 3, # 'д' + 3: 2, # 'е' + 23: 1, # 'ж' + 15: 2, # 'з' + 2: 1, # 'и' + 26: 2, # 'й' + 12: 3, # 'к' + 10: 3, # 'л' + 14: 3, # 'м' + 6: 3, # 'н' + 4: 1, # 'о' + 13: 2, # 'п' + 7: 2, # 'р' + 8: 3, # 'с' + 5: 3, # 'т' + 19: 1, # 'у' + 29: 1, # 'ф' + 25: 3, # 'х' + 22: 2, # 'ц' + 21: 1, # 'ч' + 27: 1, # 'ш' + 24: 2, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 1, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 58: { # 'є' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, + 62: { # '№' + 63: 0, # 'e' + 45: 0, # '\xad' + 31: 0, # 'А' + 32: 0, # 'Б' + 35: 0, # 'В' + 43: 0, # 'Г' + 37: 0, # 'Д' + 44: 0, # 'Е' + 55: 0, # 'Ж' + 47: 0, # 'З' + 40: 0, # 'И' + 59: 0, # 'Й' + 33: 0, # 'К' + 46: 0, # 'Л' + 38: 0, # 'М' + 36: 0, # 'Н' + 41: 0, # 'О' + 30: 0, # 'П' + 39: 0, # 'Р' + 28: 0, # 'С' + 34: 0, # 'Т' + 51: 0, # 'У' + 48: 0, # 'Ф' + 49: 0, # 'Х' + 53: 0, # 'Ц' + 50: 0, # 'Ч' + 54: 0, # 'Ш' + 57: 0, # 'Щ' + 61: 0, # 'Ъ' + 60: 0, # 'Ю' + 56: 0, # 'Я' + 1: 0, # 'а' + 18: 0, # 'б' + 9: 0, # 'в' + 20: 0, # 'г' + 11: 0, # 'д' + 3: 0, # 'е' + 23: 0, # 'ж' + 15: 0, # 'з' + 2: 0, # 'и' + 26: 0, # 'й' + 12: 0, # 'к' + 10: 0, # 'л' + 14: 0, # 'м' + 6: 0, # 'н' + 4: 0, # 'о' + 13: 0, # 'п' + 7: 0, # 'р' + 8: 0, # 'с' + 5: 0, # 'т' + 19: 0, # 'у' + 29: 0, # 'ф' + 25: 0, # 'х' + 22: 0, # 'ц' + 21: 0, # 'ч' + 27: 0, # 'ш' + 24: 0, # 'щ' + 17: 0, # 'ъ' + 52: 0, # 'ь' + 42: 0, # 'ю' + 16: 0, # 'я' + 58: 0, # 'є' + 62: 0, # '№' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +ISO_8859_5_BULGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 77, # 'A' + 66: 90, # 'B' + 67: 99, # 'C' + 68: 100, # 'D' + 69: 72, # 'E' + 70: 109, # 'F' + 71: 107, # 'G' + 72: 101, # 'H' + 73: 79, # 'I' + 74: 185, # 'J' + 75: 81, # 'K' + 76: 102, # 'L' + 77: 76, # 'M' + 78: 94, # 'N' + 79: 82, # 'O' + 80: 110, # 'P' + 81: 186, # 'Q' + 82: 108, # 'R' + 83: 91, # 'S' + 84: 74, # 'T' + 85: 119, # 'U' + 86: 84, # 'V' + 87: 96, # 'W' + 88: 111, # 'X' + 89: 187, # 'Y' + 90: 115, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 65, # 'a' + 98: 69, # 'b' + 99: 70, # 'c' + 100: 66, # 'd' + 101: 63, # 'e' + 102: 68, # 'f' + 103: 112, # 'g' + 104: 103, # 'h' + 105: 92, # 'i' + 106: 194, # 'j' + 107: 104, # 'k' + 108: 95, # 'l' + 109: 86, # 'm' + 110: 87, # 'n' + 111: 71, # 'o' + 112: 116, # 'p' + 113: 195, # 'q' + 114: 85, # 'r' + 115: 93, # 's' + 116: 97, # 't' + 117: 113, # 'u' + 118: 196, # 'v' + 119: 197, # 'w' + 120: 198, # 'x' + 121: 199, # 'y' + 122: 200, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 194, # '\x80' + 129: 195, # '\x81' + 130: 196, # '\x82' + 131: 197, # '\x83' + 132: 198, # '\x84' + 133: 199, # '\x85' + 134: 200, # '\x86' + 135: 201, # '\x87' + 136: 202, # '\x88' + 137: 203, # '\x89' + 138: 204, # '\x8a' + 139: 205, # '\x8b' + 140: 206, # '\x8c' + 141: 207, # '\x8d' + 142: 208, # '\x8e' + 143: 209, # '\x8f' + 144: 210, # '\x90' + 145: 211, # '\x91' + 146: 212, # '\x92' + 147: 213, # '\x93' + 148: 214, # '\x94' + 149: 215, # '\x95' + 150: 216, # '\x96' + 151: 217, # '\x97' + 152: 218, # '\x98' + 153: 219, # '\x99' + 154: 220, # '\x9a' + 155: 221, # '\x9b' + 156: 222, # '\x9c' + 157: 223, # '\x9d' + 158: 224, # '\x9e' + 159: 225, # '\x9f' + 160: 81, # '\xa0' + 161: 226, # 'Ё' + 162: 227, # 'Ђ' + 163: 228, # 'Ѓ' + 164: 229, # 'Є' + 165: 230, # 'Ѕ' + 166: 105, # 'І' + 167: 231, # 'Ї' + 168: 232, # 'Ј' + 169: 233, # 'Љ' + 170: 234, # 'Њ' + 171: 235, # 'Ћ' + 172: 236, # 'Ќ' + 173: 45, # '\xad' + 174: 237, # 'Ў' + 175: 238, # 'Џ' + 176: 31, # 'А' + 177: 32, # 'Б' + 178: 35, # 'В' + 179: 43, # 'Г' + 180: 37, # 'Д' + 181: 44, # 'Е' + 182: 55, # 'Ж' + 183: 47, # 'З' + 184: 40, # 'И' + 185: 59, # 'Й' + 186: 33, # 'К' + 187: 46, # 'Л' + 188: 38, # 'М' + 189: 36, # 'Н' + 190: 41, # 'О' + 191: 30, # 'П' + 192: 39, # 'Р' + 193: 28, # 'С' + 194: 34, # 'Т' + 195: 51, # 'У' + 196: 48, # 'Ф' + 197: 49, # 'Х' + 198: 53, # 'Ц' + 199: 50, # 'Ч' + 200: 54, # 'Ш' + 201: 57, # 'Щ' + 202: 61, # 'Ъ' + 203: 239, # 'Ы' + 204: 67, # 'Ь' + 205: 240, # 'Э' + 206: 60, # 'Ю' + 207: 56, # 'Я' + 208: 1, # 'а' + 209: 18, # 'б' + 210: 9, # 'в' + 211: 20, # 'г' + 212: 11, # 'д' + 213: 3, # 'е' + 214: 23, # 'ж' + 215: 15, # 'з' + 216: 2, # 'и' + 217: 26, # 'й' + 218: 12, # 'к' + 219: 10, # 'л' + 220: 14, # 'м' + 221: 6, # 'н' + 222: 4, # 'о' + 223: 13, # 'п' + 224: 7, # 'р' + 225: 8, # 'с' + 226: 5, # 'т' + 227: 19, # 'у' + 228: 29, # 'ф' + 229: 25, # 'х' + 230: 22, # 'ц' + 231: 21, # 'ч' + 232: 27, # 'ш' + 233: 24, # 'щ' + 234: 17, # 'ъ' + 235: 75, # 'ы' + 236: 52, # 'ь' + 237: 241, # 'э' + 238: 42, # 'ю' + 239: 16, # 'я' + 240: 62, # '№' + 241: 242, # 'ё' + 242: 243, # 'ђ' + 243: 244, # 'ѓ' + 244: 58, # 'є' + 245: 245, # 'ѕ' + 246: 98, # 'і' + 247: 246, # 'ї' + 248: 247, # 'ј' + 249: 248, # 'љ' + 250: 249, # 'њ' + 251: 250, # 'ћ' + 252: 251, # 'ќ' + 253: 91, # '§' + 254: 252, # 'ў' + 255: 253, # 'џ' +} + +ISO_8859_5_BULGARIAN_MODEL = SingleByteCharSetModel(charset_name='ISO-8859-5', + language='Bulgarian', + char_to_order_map=ISO_8859_5_BULGARIAN_CHAR_TO_ORDER, + language_model=BULGARIAN_LANG_MODEL, + typical_positive_ratio=0.969392, + keep_ascii_letters=False, + alphabet='АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя') + +WINDOWS_1251_BULGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 77, # 'A' + 66: 90, # 'B' + 67: 99, # 'C' + 68: 100, # 'D' + 69: 72, # 'E' + 70: 109, # 'F' + 71: 107, # 'G' + 72: 101, # 'H' + 73: 79, # 'I' + 74: 185, # 'J' + 75: 81, # 'K' + 76: 102, # 'L' + 77: 76, # 'M' + 78: 94, # 'N' + 79: 82, # 'O' + 80: 110, # 'P' + 81: 186, # 'Q' + 82: 108, # 'R' + 83: 91, # 'S' + 84: 74, # 'T' + 85: 119, # 'U' + 86: 84, # 'V' + 87: 96, # 'W' + 88: 111, # 'X' + 89: 187, # 'Y' + 90: 115, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 65, # 'a' + 98: 69, # 'b' + 99: 70, # 'c' + 100: 66, # 'd' + 101: 63, # 'e' + 102: 68, # 'f' + 103: 112, # 'g' + 104: 103, # 'h' + 105: 92, # 'i' + 106: 194, # 'j' + 107: 104, # 'k' + 108: 95, # 'l' + 109: 86, # 'm' + 110: 87, # 'n' + 111: 71, # 'o' + 112: 116, # 'p' + 113: 195, # 'q' + 114: 85, # 'r' + 115: 93, # 's' + 116: 97, # 't' + 117: 113, # 'u' + 118: 196, # 'v' + 119: 197, # 'w' + 120: 198, # 'x' + 121: 199, # 'y' + 122: 200, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 206, # 'Ђ' + 129: 207, # 'Ѓ' + 130: 208, # '‚' + 131: 209, # 'ѓ' + 132: 210, # '„' + 133: 211, # '…' + 134: 212, # '†' + 135: 213, # '‡' + 136: 120, # '€' + 137: 214, # '‰' + 138: 215, # 'Љ' + 139: 216, # '‹' + 140: 217, # 'Њ' + 141: 218, # 'Ќ' + 142: 219, # 'Ћ' + 143: 220, # 'Џ' + 144: 221, # 'ђ' + 145: 78, # '‘' + 146: 64, # '’' + 147: 83, # '“' + 148: 121, # '”' + 149: 98, # '•' + 150: 117, # '–' + 151: 105, # '—' + 152: 222, # None + 153: 223, # '™' + 154: 224, # 'љ' + 155: 225, # '›' + 156: 226, # 'њ' + 157: 227, # 'ќ' + 158: 228, # 'ћ' + 159: 229, # 'џ' + 160: 88, # '\xa0' + 161: 230, # 'Ў' + 162: 231, # 'ў' + 163: 232, # 'Ј' + 164: 233, # '¤' + 165: 122, # 'Ґ' + 166: 89, # '¦' + 167: 106, # '§' + 168: 234, # 'Ё' + 169: 235, # '©' + 170: 236, # 'Є' + 171: 237, # '«' + 172: 238, # '¬' + 173: 45, # '\xad' + 174: 239, # '®' + 175: 240, # 'Ї' + 176: 73, # '°' + 177: 80, # '±' + 178: 118, # 'І' + 179: 114, # 'і' + 180: 241, # 'ґ' + 181: 242, # 'µ' + 182: 243, # '¶' + 183: 244, # '·' + 184: 245, # 'ё' + 185: 62, # '№' + 186: 58, # 'є' + 187: 246, # '»' + 188: 247, # 'ј' + 189: 248, # 'Ѕ' + 190: 249, # 'ѕ' + 191: 250, # 'ї' + 192: 31, # 'А' + 193: 32, # 'Б' + 194: 35, # 'В' + 195: 43, # 'Г' + 196: 37, # 'Д' + 197: 44, # 'Е' + 198: 55, # 'Ж' + 199: 47, # 'З' + 200: 40, # 'И' + 201: 59, # 'Й' + 202: 33, # 'К' + 203: 46, # 'Л' + 204: 38, # 'М' + 205: 36, # 'Н' + 206: 41, # 'О' + 207: 30, # 'П' + 208: 39, # 'Р' + 209: 28, # 'С' + 210: 34, # 'Т' + 211: 51, # 'У' + 212: 48, # 'Ф' + 213: 49, # 'Х' + 214: 53, # 'Ц' + 215: 50, # 'Ч' + 216: 54, # 'Ш' + 217: 57, # 'Щ' + 218: 61, # 'Ъ' + 219: 251, # 'Ы' + 220: 67, # 'Ь' + 221: 252, # 'Э' + 222: 60, # 'Ю' + 223: 56, # 'Я' + 224: 1, # 'а' + 225: 18, # 'б' + 226: 9, # 'в' + 227: 20, # 'г' + 228: 11, # 'д' + 229: 3, # 'е' + 230: 23, # 'ж' + 231: 15, # 'з' + 232: 2, # 'и' + 233: 26, # 'й' + 234: 12, # 'к' + 235: 10, # 'л' + 236: 14, # 'м' + 237: 6, # 'н' + 238: 4, # 'о' + 239: 13, # 'п' + 240: 7, # 'р' + 241: 8, # 'с' + 242: 5, # 'т' + 243: 19, # 'у' + 244: 29, # 'ф' + 245: 25, # 'х' + 246: 22, # 'ц' + 247: 21, # 'ч' + 248: 27, # 'ш' + 249: 24, # 'щ' + 250: 17, # 'ъ' + 251: 75, # 'ы' + 252: 52, # 'ь' + 253: 253, # 'э' + 254: 42, # 'ю' + 255: 16, # 'я' +} + +WINDOWS_1251_BULGARIAN_MODEL = SingleByteCharSetModel(charset_name='windows-1251', + language='Bulgarian', + char_to_order_map=WINDOWS_1251_BULGARIAN_CHAR_TO_ORDER, + language_model=BULGARIAN_LANG_MODEL, + typical_positive_ratio=0.969392, + keep_ascii_letters=False, + alphabet='АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЬЮЯабвгдежзийклмнопрстуфхцчшщъьюя') + diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langgreekmodel.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langgreekmodel.py new file mode 100644 index 00000000..d99528ed --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langgreekmodel.py @@ -0,0 +1,4398 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +GREEK_LANG_MODEL = { + 60: { # 'e' + 60: 2, # 'e' + 55: 1, # 'o' + 58: 2, # 't' + 36: 1, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 55: { # 'o' + 60: 0, # 'e' + 55: 2, # 'o' + 58: 2, # 't' + 36: 1, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 1, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 58: { # 't' + 60: 2, # 'e' + 55: 1, # 'o' + 58: 1, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 1, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 36: { # '·' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 61: { # 'Ά' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 1, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 1, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 46: { # 'Έ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 2, # 'β' + 20: 2, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 2, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 1, # 'σ' + 2: 2, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 54: { # 'Ό' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 2, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 31: { # 'Α' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 2, # 'Β' + 43: 2, # 'Γ' + 41: 1, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 2, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 1, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 2, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 2, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 1, # 'θ' + 5: 0, # 'ι' + 11: 2, # 'κ' + 16: 3, # 'λ' + 10: 2, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 2, # 'ς' + 7: 2, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 51: { # 'Β' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 1, # 'Ι' + 44: 0, # 'Κ' + 53: 1, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 2, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 43: { # 'Γ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 1, # 'Α' + 51: 0, # 'Β' + 43: 2, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 1, # 'Κ' + 53: 1, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 1, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 41: { # 'Δ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 1, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 34: { # 'Ε' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 2, # 'Γ' + 41: 2, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 1, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 2, # 'Χ' + 57: 2, # 'Ω' + 17: 3, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 3, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 1, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 1, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 2, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 2, # 'τ' + 12: 2, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 1, # 'ύ' + 27: 0, # 'ώ' + }, + 40: { # 'Η' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 1, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 2, # 'Θ' + 47: 0, # 'Ι' + 44: 2, # 'Κ' + 53: 0, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 52: { # 'Θ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 1, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 47: { # 'Ι' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 1, # 'Β' + 43: 1, # 'Γ' + 41: 2, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 2, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 1, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 1, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 44: { # 'Κ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 1, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 1, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 1, # 'Ω' + 17: 3, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 53: { # 'Λ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 2, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 2, # 'Σ' + 33: 0, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 1, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 38: { # 'Μ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 2, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 2, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 2, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 49: { # 'Ν' + 60: 2, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 1, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 1, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 59: { # 'Ξ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 1, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 39: { # 'Ο' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 1, # 'Β' + 43: 2, # 'Γ' + 41: 2, # 'Δ' + 34: 2, # 'Ε' + 40: 1, # 'Η' + 52: 2, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 2, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 2, # 'Φ' + 50: 2, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 2, # 'κ' + 16: 2, # 'λ' + 10: 2, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 2, # 'υ' + 28: 1, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 35: { # 'Π' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 2, # 'Λ' + 38: 1, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 2, # 'Ω' + 17: 2, # 'ά' + 18: 1, # 'έ' + 22: 1, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 3, # 'ώ' + }, + 48: { # 'Ρ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 1, # 'Γ' + 41: 1, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 1, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 1, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 37: { # 'Σ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 1, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 0, # 'Λ' + 38: 2, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 2, # 'Υ' + 56: 0, # 'Φ' + 50: 2, # 'Χ' + 57: 2, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 2, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 2, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 2, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 33: { # 'Τ' + 60: 0, # 'e' + 55: 1, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 2, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 2, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 1, # 'Τ' + 45: 1, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 2, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 2, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 3, # 'ώ' + }, + 45: { # 'Υ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 2, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 2, # 'Η' + 52: 2, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 1, # 'Λ' + 38: 2, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 2, # 'Π' + 48: 1, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 56: { # 'Φ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 1, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 1, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 2, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 1, # 'ύ' + 27: 1, # 'ώ' + }, + 50: { # 'Χ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 1, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 2, # 'Ε' + 40: 2, # 'Η' + 52: 0, # 'Θ' + 47: 2, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 1, # 'Ν' + 59: 0, # 'Ξ' + 39: 1, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 1, # 'Χ' + 57: 1, # 'Ω' + 17: 2, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 2, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 57: { # 'Ω' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 1, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 1, # 'Λ' + 38: 0, # 'Μ' + 49: 2, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 2, # 'Ρ' + 37: 2, # 'Σ' + 33: 2, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 2, # 'ρ' + 14: 2, # 'ς' + 7: 2, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 17: { # 'ά' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 3, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 3, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 18: { # 'έ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 3, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 22: { # 'ή' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 1, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 15: { # 'ί' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 3, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 1, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 1: { # 'α' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 0, # 'ή' + 15: 3, # 'ί' + 1: 0, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 2, # 'ε' + 32: 3, # 'ζ' + 13: 1, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 0, # 'ώ' + }, + 29: { # 'β' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 2, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 3, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 2, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 20: { # 'γ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 3, # 'ώ' + }, + 21: { # 'δ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 3: { # 'ε' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 3, # 'ί' + 1: 2, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 2, # 'ε' + 32: 2, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 2, # 'ό' + 26: 3, # 'ύ' + 27: 2, # 'ώ' + }, + 32: { # 'ζ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 2, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 1, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 2, # 'ώ' + }, + 13: { # 'η' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 25: { # 'θ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 1, # 'λ' + 10: 3, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 5: { # 'ι' + 60: 0, # 'e' + 55: 1, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 0, # 'ί' + 1: 3, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 0, # 'ύ' + 27: 3, # 'ώ' + }, + 11: { # 'κ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 2, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 16: { # 'λ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 1, # 'β' + 20: 2, # 'γ' + 21: 1, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 2, # 'κ' + 16: 3, # 'λ' + 10: 2, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 10: { # 'μ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 1, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 3, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 2, # 'υ' + 28: 3, # 'φ' + 23: 0, # 'χ' + 42: 2, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 6: { # 'ν' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 1, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 30: { # 'ξ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 2, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 2, # 'ό' + 26: 3, # 'ύ' + 27: 1, # 'ώ' + }, + 4: { # 'ο' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 2, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 2, # 'ω' + 19: 1, # 'ό' + 26: 3, # 'ύ' + 27: 2, # 'ώ' + }, + 9: { # 'π' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 3, # 'λ' + 10: 0, # 'μ' + 6: 2, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 2, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 3, # 'ώ' + }, + 8: { # 'ρ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 1, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 3, # 'ο' + 9: 2, # 'π' + 8: 2, # 'ρ' + 14: 0, # 'ς' + 7: 2, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 14: { # 'ς' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 2, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 0, # 'θ' + 5: 0, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 0, # 'τ' + 12: 0, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 7: { # 'σ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 3, # 'β' + 20: 0, # 'γ' + 21: 2, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 3, # 'θ' + 5: 3, # 'ι' + 11: 3, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 3, # 'φ' + 23: 3, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 2, # 'ώ' + }, + 2: { # 'τ' + 60: 0, # 'e' + 55: 2, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 2, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 3, # 'ι' + 11: 2, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 2, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 12: { # 'υ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 2, # 'ί' + 1: 3, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 2, # 'ε' + 32: 2, # 'ζ' + 13: 2, # 'η' + 25: 3, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 3, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 2, # 'ω' + 19: 2, # 'ό' + 26: 0, # 'ύ' + 27: 2, # 'ώ' + }, + 28: { # 'φ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 3, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 0, # 'μ' + 6: 1, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 1, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 2, # 'ύ' + 27: 2, # 'ώ' + }, + 23: { # 'χ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 3, # 'ά' + 18: 2, # 'έ' + 22: 3, # 'ή' + 15: 3, # 'ί' + 1: 3, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 2, # 'θ' + 5: 3, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 2, # 'μ' + 6: 3, # 'ν' + 30: 0, # 'ξ' + 4: 3, # 'ο' + 9: 0, # 'π' + 8: 3, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 3, # 'τ' + 12: 3, # 'υ' + 28: 0, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 3, # 'ω' + 19: 3, # 'ό' + 26: 3, # 'ύ' + 27: 3, # 'ώ' + }, + 42: { # 'ψ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 2, # 'ά' + 18: 2, # 'έ' + 22: 1, # 'ή' + 15: 2, # 'ί' + 1: 2, # 'α' + 29: 0, # 'β' + 20: 0, # 'γ' + 21: 0, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 3, # 'η' + 25: 0, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 0, # 'λ' + 10: 0, # 'μ' + 6: 0, # 'ν' + 30: 0, # 'ξ' + 4: 2, # 'ο' + 9: 0, # 'π' + 8: 0, # 'ρ' + 14: 0, # 'ς' + 7: 0, # 'σ' + 2: 2, # 'τ' + 12: 1, # 'υ' + 28: 0, # 'φ' + 23: 0, # 'χ' + 42: 0, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 24: { # 'ω' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 1, # 'ά' + 18: 0, # 'έ' + 22: 2, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 2, # 'β' + 20: 3, # 'γ' + 21: 2, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 0, # 'η' + 25: 3, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 0, # 'ξ' + 4: 0, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 2, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 19: { # 'ό' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 3, # 'β' + 20: 3, # 'γ' + 21: 3, # 'δ' + 3: 1, # 'ε' + 32: 2, # 'ζ' + 13: 2, # 'η' + 25: 2, # 'θ' + 5: 2, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 1, # 'ξ' + 4: 2, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 3, # 'χ' + 42: 2, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 26: { # 'ύ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 2, # 'α' + 29: 2, # 'β' + 20: 2, # 'γ' + 21: 1, # 'δ' + 3: 3, # 'ε' + 32: 0, # 'ζ' + 13: 2, # 'η' + 25: 3, # 'θ' + 5: 0, # 'ι' + 11: 3, # 'κ' + 16: 3, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 2, # 'ξ' + 4: 3, # 'ο' + 9: 3, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 2, # 'φ' + 23: 2, # 'χ' + 42: 2, # 'ψ' + 24: 2, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, + 27: { # 'ώ' + 60: 0, # 'e' + 55: 0, # 'o' + 58: 0, # 't' + 36: 0, # '·' + 61: 0, # 'Ά' + 46: 0, # 'Έ' + 54: 0, # 'Ό' + 31: 0, # 'Α' + 51: 0, # 'Β' + 43: 0, # 'Γ' + 41: 0, # 'Δ' + 34: 0, # 'Ε' + 40: 0, # 'Η' + 52: 0, # 'Θ' + 47: 0, # 'Ι' + 44: 0, # 'Κ' + 53: 0, # 'Λ' + 38: 0, # 'Μ' + 49: 0, # 'Ν' + 59: 0, # 'Ξ' + 39: 0, # 'Ο' + 35: 0, # 'Π' + 48: 0, # 'Ρ' + 37: 0, # 'Σ' + 33: 0, # 'Τ' + 45: 0, # 'Υ' + 56: 0, # 'Φ' + 50: 0, # 'Χ' + 57: 0, # 'Ω' + 17: 0, # 'ά' + 18: 0, # 'έ' + 22: 0, # 'ή' + 15: 0, # 'ί' + 1: 0, # 'α' + 29: 1, # 'β' + 20: 0, # 'γ' + 21: 3, # 'δ' + 3: 0, # 'ε' + 32: 0, # 'ζ' + 13: 1, # 'η' + 25: 2, # 'θ' + 5: 2, # 'ι' + 11: 0, # 'κ' + 16: 2, # 'λ' + 10: 3, # 'μ' + 6: 3, # 'ν' + 30: 1, # 'ξ' + 4: 0, # 'ο' + 9: 2, # 'π' + 8: 3, # 'ρ' + 14: 3, # 'ς' + 7: 3, # 'σ' + 2: 3, # 'τ' + 12: 0, # 'υ' + 28: 1, # 'φ' + 23: 1, # 'χ' + 42: 0, # 'ψ' + 24: 0, # 'ω' + 19: 0, # 'ό' + 26: 0, # 'ύ' + 27: 0, # 'ώ' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +WINDOWS_1253_GREEK_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 82, # 'A' + 66: 100, # 'B' + 67: 104, # 'C' + 68: 94, # 'D' + 69: 98, # 'E' + 70: 101, # 'F' + 71: 116, # 'G' + 72: 102, # 'H' + 73: 111, # 'I' + 74: 187, # 'J' + 75: 117, # 'K' + 76: 92, # 'L' + 77: 88, # 'M' + 78: 113, # 'N' + 79: 85, # 'O' + 80: 79, # 'P' + 81: 118, # 'Q' + 82: 105, # 'R' + 83: 83, # 'S' + 84: 67, # 'T' + 85: 114, # 'U' + 86: 119, # 'V' + 87: 95, # 'W' + 88: 99, # 'X' + 89: 109, # 'Y' + 90: 188, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 72, # 'a' + 98: 70, # 'b' + 99: 80, # 'c' + 100: 81, # 'd' + 101: 60, # 'e' + 102: 96, # 'f' + 103: 93, # 'g' + 104: 89, # 'h' + 105: 68, # 'i' + 106: 120, # 'j' + 107: 97, # 'k' + 108: 77, # 'l' + 109: 86, # 'm' + 110: 69, # 'n' + 111: 55, # 'o' + 112: 78, # 'p' + 113: 115, # 'q' + 114: 65, # 'r' + 115: 66, # 's' + 116: 58, # 't' + 117: 76, # 'u' + 118: 106, # 'v' + 119: 103, # 'w' + 120: 87, # 'x' + 121: 107, # 'y' + 122: 112, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 255, # '€' + 129: 255, # None + 130: 255, # '‚' + 131: 255, # 'ƒ' + 132: 255, # '„' + 133: 255, # '…' + 134: 255, # '†' + 135: 255, # '‡' + 136: 255, # None + 137: 255, # '‰' + 138: 255, # None + 139: 255, # '‹' + 140: 255, # None + 141: 255, # None + 142: 255, # None + 143: 255, # None + 144: 255, # None + 145: 255, # '‘' + 146: 255, # '’' + 147: 255, # '“' + 148: 255, # '”' + 149: 255, # '•' + 150: 255, # '–' + 151: 255, # '—' + 152: 255, # None + 153: 255, # '™' + 154: 255, # None + 155: 255, # '›' + 156: 255, # None + 157: 255, # None + 158: 255, # None + 159: 255, # None + 160: 253, # '\xa0' + 161: 233, # '΅' + 162: 61, # 'Ά' + 163: 253, # '£' + 164: 253, # '¤' + 165: 253, # '¥' + 166: 253, # '¦' + 167: 253, # '§' + 168: 253, # '¨' + 169: 253, # '©' + 170: 253, # None + 171: 253, # '«' + 172: 253, # '¬' + 173: 74, # '\xad' + 174: 253, # '®' + 175: 253, # '―' + 176: 253, # '°' + 177: 253, # '±' + 178: 253, # '²' + 179: 253, # '³' + 180: 247, # '΄' + 181: 253, # 'µ' + 182: 253, # '¶' + 183: 36, # '·' + 184: 46, # 'Έ' + 185: 71, # 'Ή' + 186: 73, # 'Ί' + 187: 253, # '»' + 188: 54, # 'Ό' + 189: 253, # '½' + 190: 108, # 'Ύ' + 191: 123, # 'Ώ' + 192: 110, # 'ΐ' + 193: 31, # 'Α' + 194: 51, # 'Β' + 195: 43, # 'Γ' + 196: 41, # 'Δ' + 197: 34, # 'Ε' + 198: 91, # 'Ζ' + 199: 40, # 'Η' + 200: 52, # 'Θ' + 201: 47, # 'Ι' + 202: 44, # 'Κ' + 203: 53, # 'Λ' + 204: 38, # 'Μ' + 205: 49, # 'Ν' + 206: 59, # 'Ξ' + 207: 39, # 'Ο' + 208: 35, # 'Π' + 209: 48, # 'Ρ' + 210: 250, # None + 211: 37, # 'Σ' + 212: 33, # 'Τ' + 213: 45, # 'Υ' + 214: 56, # 'Φ' + 215: 50, # 'Χ' + 216: 84, # 'Ψ' + 217: 57, # 'Ω' + 218: 120, # 'Ϊ' + 219: 121, # 'Ϋ' + 220: 17, # 'ά' + 221: 18, # 'έ' + 222: 22, # 'ή' + 223: 15, # 'ί' + 224: 124, # 'ΰ' + 225: 1, # 'α' + 226: 29, # 'β' + 227: 20, # 'γ' + 228: 21, # 'δ' + 229: 3, # 'ε' + 230: 32, # 'ζ' + 231: 13, # 'η' + 232: 25, # 'θ' + 233: 5, # 'ι' + 234: 11, # 'κ' + 235: 16, # 'λ' + 236: 10, # 'μ' + 237: 6, # 'ν' + 238: 30, # 'ξ' + 239: 4, # 'ο' + 240: 9, # 'π' + 241: 8, # 'ρ' + 242: 14, # 'ς' + 243: 7, # 'σ' + 244: 2, # 'τ' + 245: 12, # 'υ' + 246: 28, # 'φ' + 247: 23, # 'χ' + 248: 42, # 'ψ' + 249: 24, # 'ω' + 250: 64, # 'ϊ' + 251: 75, # 'ϋ' + 252: 19, # 'ό' + 253: 26, # 'ύ' + 254: 27, # 'ώ' + 255: 253, # None +} + +WINDOWS_1253_GREEK_MODEL = SingleByteCharSetModel(charset_name='windows-1253', + language='Greek', + char_to_order_map=WINDOWS_1253_GREEK_CHAR_TO_ORDER, + language_model=GREEK_LANG_MODEL, + typical_positive_ratio=0.982851, + keep_ascii_letters=False, + alphabet='ΆΈΉΊΌΎΏΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩάέήίαβγδεζηθικλμνξοπρςστυφχψωόύώ') + +ISO_8859_7_GREEK_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 82, # 'A' + 66: 100, # 'B' + 67: 104, # 'C' + 68: 94, # 'D' + 69: 98, # 'E' + 70: 101, # 'F' + 71: 116, # 'G' + 72: 102, # 'H' + 73: 111, # 'I' + 74: 187, # 'J' + 75: 117, # 'K' + 76: 92, # 'L' + 77: 88, # 'M' + 78: 113, # 'N' + 79: 85, # 'O' + 80: 79, # 'P' + 81: 118, # 'Q' + 82: 105, # 'R' + 83: 83, # 'S' + 84: 67, # 'T' + 85: 114, # 'U' + 86: 119, # 'V' + 87: 95, # 'W' + 88: 99, # 'X' + 89: 109, # 'Y' + 90: 188, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 72, # 'a' + 98: 70, # 'b' + 99: 80, # 'c' + 100: 81, # 'd' + 101: 60, # 'e' + 102: 96, # 'f' + 103: 93, # 'g' + 104: 89, # 'h' + 105: 68, # 'i' + 106: 120, # 'j' + 107: 97, # 'k' + 108: 77, # 'l' + 109: 86, # 'm' + 110: 69, # 'n' + 111: 55, # 'o' + 112: 78, # 'p' + 113: 115, # 'q' + 114: 65, # 'r' + 115: 66, # 's' + 116: 58, # 't' + 117: 76, # 'u' + 118: 106, # 'v' + 119: 103, # 'w' + 120: 87, # 'x' + 121: 107, # 'y' + 122: 112, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 255, # '\x80' + 129: 255, # '\x81' + 130: 255, # '\x82' + 131: 255, # '\x83' + 132: 255, # '\x84' + 133: 255, # '\x85' + 134: 255, # '\x86' + 135: 255, # '\x87' + 136: 255, # '\x88' + 137: 255, # '\x89' + 138: 255, # '\x8a' + 139: 255, # '\x8b' + 140: 255, # '\x8c' + 141: 255, # '\x8d' + 142: 255, # '\x8e' + 143: 255, # '\x8f' + 144: 255, # '\x90' + 145: 255, # '\x91' + 146: 255, # '\x92' + 147: 255, # '\x93' + 148: 255, # '\x94' + 149: 255, # '\x95' + 150: 255, # '\x96' + 151: 255, # '\x97' + 152: 255, # '\x98' + 153: 255, # '\x99' + 154: 255, # '\x9a' + 155: 255, # '\x9b' + 156: 255, # '\x9c' + 157: 255, # '\x9d' + 158: 255, # '\x9e' + 159: 255, # '\x9f' + 160: 253, # '\xa0' + 161: 233, # '‘' + 162: 90, # '’' + 163: 253, # '£' + 164: 253, # '€' + 165: 253, # '₯' + 166: 253, # '¦' + 167: 253, # '§' + 168: 253, # '¨' + 169: 253, # '©' + 170: 253, # 'ͺ' + 171: 253, # '«' + 172: 253, # '¬' + 173: 74, # '\xad' + 174: 253, # None + 175: 253, # '―' + 176: 253, # '°' + 177: 253, # '±' + 178: 253, # '²' + 179: 253, # '³' + 180: 247, # '΄' + 181: 248, # '΅' + 182: 61, # 'Ά' + 183: 36, # '·' + 184: 46, # 'Έ' + 185: 71, # 'Ή' + 186: 73, # 'Ί' + 187: 253, # '»' + 188: 54, # 'Ό' + 189: 253, # '½' + 190: 108, # 'Ύ' + 191: 123, # 'Ώ' + 192: 110, # 'ΐ' + 193: 31, # 'Α' + 194: 51, # 'Β' + 195: 43, # 'Γ' + 196: 41, # 'Δ' + 197: 34, # 'Ε' + 198: 91, # 'Ζ' + 199: 40, # 'Η' + 200: 52, # 'Θ' + 201: 47, # 'Ι' + 202: 44, # 'Κ' + 203: 53, # 'Λ' + 204: 38, # 'Μ' + 205: 49, # 'Ν' + 206: 59, # 'Ξ' + 207: 39, # 'Ο' + 208: 35, # 'Π' + 209: 48, # 'Ρ' + 210: 250, # None + 211: 37, # 'Σ' + 212: 33, # 'Τ' + 213: 45, # 'Υ' + 214: 56, # 'Φ' + 215: 50, # 'Χ' + 216: 84, # 'Ψ' + 217: 57, # 'Ω' + 218: 120, # 'Ϊ' + 219: 121, # 'Ϋ' + 220: 17, # 'ά' + 221: 18, # 'έ' + 222: 22, # 'ή' + 223: 15, # 'ί' + 224: 124, # 'ΰ' + 225: 1, # 'α' + 226: 29, # 'β' + 227: 20, # 'γ' + 228: 21, # 'δ' + 229: 3, # 'ε' + 230: 32, # 'ζ' + 231: 13, # 'η' + 232: 25, # 'θ' + 233: 5, # 'ι' + 234: 11, # 'κ' + 235: 16, # 'λ' + 236: 10, # 'μ' + 237: 6, # 'ν' + 238: 30, # 'ξ' + 239: 4, # 'ο' + 240: 9, # 'π' + 241: 8, # 'ρ' + 242: 14, # 'ς' + 243: 7, # 'σ' + 244: 2, # 'τ' + 245: 12, # 'υ' + 246: 28, # 'φ' + 247: 23, # 'χ' + 248: 42, # 'ψ' + 249: 24, # 'ω' + 250: 64, # 'ϊ' + 251: 75, # 'ϋ' + 252: 19, # 'ό' + 253: 26, # 'ύ' + 254: 27, # 'ώ' + 255: 253, # None +} + +ISO_8859_7_GREEK_MODEL = SingleByteCharSetModel(charset_name='ISO-8859-7', + language='Greek', + char_to_order_map=ISO_8859_7_GREEK_CHAR_TO_ORDER, + language_model=GREEK_LANG_MODEL, + typical_positive_ratio=0.982851, + keep_ascii_letters=False, + alphabet='ΆΈΉΊΌΎΏΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩάέήίαβγδεζηθικλμνξοπρςστυφχψωόύώ') + diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langhebrewmodel.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langhebrewmodel.py new file mode 100644 index 00000000..484c652a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langhebrewmodel.py @@ -0,0 +1,4383 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +HEBREW_LANG_MODEL = { + 50: { # 'a' + 50: 0, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 2, # 'l' + 54: 2, # 'n' + 49: 0, # 'o' + 51: 2, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 1, # 'ק' + 7: 0, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 60: { # 'c' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 0, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 0, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 61: { # 'd' + 50: 1, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 2, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 0, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 1, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 42: { # 'e' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 2, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 2, # 'l' + 54: 2, # 'n' + 49: 1, # 'o' + 51: 2, # 'r' + 43: 2, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 1, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 53: { # 'i' + 50: 1, # 'a' + 60: 2, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 0, # 'i' + 56: 1, # 'l' + 54: 2, # 'n' + 49: 2, # 'o' + 51: 1, # 'r' + 43: 2, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 56: { # 'l' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 2, # 'e' + 53: 2, # 'i' + 56: 2, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 54: { # 'n' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 49: { # 'o' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 2, # 'n' + 49: 1, # 'o' + 51: 2, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 51: { # 'r' + 50: 2, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 2, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 2, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 43: { # 's' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 0, # 'd' + 42: 2, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 2, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 44: { # 't' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 0, # 'd' + 42: 2, # 'e' + 53: 2, # 'i' + 56: 1, # 'l' + 54: 0, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 2, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 63: { # 'u' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 0, # 'o' + 51: 1, # 'r' + 43: 2, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 34: { # '\xa0' + 50: 1, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 0, # 'e' + 53: 1, # 'i' + 56: 0, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 2, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 55: { # '´' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 1, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 2, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 1, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 48: { # '¼' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 39: { # '½' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 57: { # '¾' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 30: { # 'ְ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 2, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 1, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 2, # 'ע' + 26: 0, # 'ף' + 18: 2, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 59: { # 'ֱ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 1, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 0, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 41: { # 'ֲ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 0, # 'ם' + 6: 2, # 'מ' + 23: 0, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 33: { # 'ִ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 1, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 0, # 'ַ' + 29: 1, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 2, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 37: { # 'ֵ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 1, # 'ַ' + 29: 1, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 1, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 36: { # 'ֶ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 1, # 'ַ' + 29: 1, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 1, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 2, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 31: { # 'ַ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 1, # 'ֶ' + 31: 0, # 'ַ' + 29: 2, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 2, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 29: { # 'ָ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 1, # 'ַ' + 29: 2, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 2, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 35: { # 'ֹ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 2, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 2, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 62: { # 'ֻ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 2, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 1, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 28: { # 'ּ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 3, # 'ְ' + 59: 0, # 'ֱ' + 41: 1, # 'ֲ' + 33: 3, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 3, # 'ַ' + 29: 3, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 2, # 'ׁ' + 45: 1, # 'ׂ' + 9: 2, # 'א' + 8: 2, # 'ב' + 20: 1, # 'ג' + 16: 2, # 'ד' + 3: 1, # 'ה' + 2: 2, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 2, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 2, # 'ל' + 11: 1, # 'ם' + 6: 2, # 'מ' + 23: 1, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 2, # 'ר' + 10: 2, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 38: { # 'ׁ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 2, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 45: { # 'ׂ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 2, # 'ֶ' + 31: 1, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 2, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 0, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 9: { # 'א' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 2, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 2, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 8: { # 'ב' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 3, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 1, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 20: { # 'ג' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 2, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 1, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 0, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 16: { # 'ד' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 1, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 3: { # 'ה' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 1, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 3, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 0, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 2: { # 'ו' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 3, # 'ֹ' + 62: 0, # 'ֻ' + 28: 3, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 3, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 24: { # 'ז' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 1, # 'ֲ' + 33: 1, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 2, # 'ב' + 20: 2, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 2, # 'ח' + 22: 1, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 2, # 'נ' + 19: 1, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 1, # 'ש' + 5: 2, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 14: { # 'ח' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 1, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 2, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 1, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 22: { # 'ט' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 1, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 1, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 3, # 'ר' + 10: 2, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 1: { # 'י' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 3, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 25: { # 'ך' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 2, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 1, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 15: { # 'כ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 3, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 2, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 2, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 4: { # 'ל' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 3, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 11: { # 'ם' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 1, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 6: { # 'מ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 0, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 23: { # 'ן' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 1, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 1, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 12: { # 'נ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 19: { # 'ס' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 1, # 'ָ' + 35: 1, # 'ֹ' + 62: 2, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 1, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 3, # 'ף' + 18: 3, # 'פ' + 27: 0, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 1, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 13: { # 'ע' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 1, # 'ֱ' + 41: 2, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 1, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 2, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 2, # 'ע' + 26: 1, # 'ף' + 18: 2, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 26: { # 'ף' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 1, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 18: { # 'פ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 1, # 'ֵ' + 36: 2, # 'ֶ' + 31: 1, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 2, # 'ב' + 20: 3, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 2, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 2, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 27: { # 'ץ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 1, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 0, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 21: { # 'צ' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 1, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 1, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 0, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 17: { # 'ק' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 1, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 1, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 2, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 1, # 'ך' + 15: 1, # 'כ' + 4: 3, # 'ל' + 11: 2, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 2, # 'ץ' + 21: 3, # 'צ' + 17: 2, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 7: { # 'ר' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 2, # '´' + 48: 1, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 1, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 2, # 'ֹ' + 62: 1, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 3, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 3, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 3, # 'ץ' + 21: 3, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 10: { # 'ש' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 1, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 1, # 'ִ' + 37: 1, # 'ֵ' + 36: 1, # 'ֶ' + 31: 1, # 'ַ' + 29: 1, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 3, # 'ׁ' + 45: 2, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 3, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 3, # 'ט' + 1: 3, # 'י' + 25: 3, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 2, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 1, # '…' + }, + 5: { # 'ת' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 1, # '\xa0' + 55: 0, # '´' + 48: 1, # '¼' + 39: 1, # '½' + 57: 0, # '¾' + 30: 2, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 2, # 'ִ' + 37: 2, # 'ֵ' + 36: 2, # 'ֶ' + 31: 2, # 'ַ' + 29: 2, # 'ָ' + 35: 1, # 'ֹ' + 62: 1, # 'ֻ' + 28: 2, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 3, # 'א' + 8: 3, # 'ב' + 20: 3, # 'ג' + 16: 2, # 'ד' + 3: 3, # 'ה' + 2: 3, # 'ו' + 24: 2, # 'ז' + 14: 3, # 'ח' + 22: 2, # 'ט' + 1: 3, # 'י' + 25: 2, # 'ך' + 15: 3, # 'כ' + 4: 3, # 'ל' + 11: 3, # 'ם' + 6: 3, # 'מ' + 23: 3, # 'ן' + 12: 3, # 'נ' + 19: 2, # 'ס' + 13: 3, # 'ע' + 26: 2, # 'ף' + 18: 3, # 'פ' + 27: 1, # 'ץ' + 21: 2, # 'צ' + 17: 3, # 'ק' + 7: 3, # 'ר' + 10: 3, # 'ש' + 5: 3, # 'ת' + 32: 1, # '–' + 52: 1, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, + 32: { # '–' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 1, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 1, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 52: { # '’' + 50: 1, # 'a' + 60: 0, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 1, # 'r' + 43: 2, # 's' + 44: 2, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 1, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 47: { # '“' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 1, # 'l' + 54: 1, # 'n' + 49: 1, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 1, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 2, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 1, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 1, # 'ח' + 22: 1, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 1, # 'ס' + 13: 1, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 1, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 46: { # '”' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 1, # 'ב' + 20: 1, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 1, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 0, # '†' + 40: 0, # '…' + }, + 58: { # '†' + 50: 0, # 'a' + 60: 0, # 'c' + 61: 0, # 'd' + 42: 0, # 'e' + 53: 0, # 'i' + 56: 0, # 'l' + 54: 0, # 'n' + 49: 0, # 'o' + 51: 0, # 'r' + 43: 0, # 's' + 44: 0, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 0, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 0, # 'ה' + 2: 0, # 'ו' + 24: 0, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 0, # 'י' + 25: 0, # 'ך' + 15: 0, # 'כ' + 4: 0, # 'ל' + 11: 0, # 'ם' + 6: 0, # 'מ' + 23: 0, # 'ן' + 12: 0, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 0, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 0, # 'ר' + 10: 0, # 'ש' + 5: 0, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 0, # '”' + 58: 2, # '†' + 40: 0, # '…' + }, + 40: { # '…' + 50: 1, # 'a' + 60: 1, # 'c' + 61: 1, # 'd' + 42: 1, # 'e' + 53: 1, # 'i' + 56: 0, # 'l' + 54: 1, # 'n' + 49: 0, # 'o' + 51: 1, # 'r' + 43: 1, # 's' + 44: 1, # 't' + 63: 0, # 'u' + 34: 0, # '\xa0' + 55: 0, # '´' + 48: 0, # '¼' + 39: 0, # '½' + 57: 0, # '¾' + 30: 0, # 'ְ' + 59: 0, # 'ֱ' + 41: 0, # 'ֲ' + 33: 0, # 'ִ' + 37: 0, # 'ֵ' + 36: 0, # 'ֶ' + 31: 0, # 'ַ' + 29: 0, # 'ָ' + 35: 0, # 'ֹ' + 62: 0, # 'ֻ' + 28: 0, # 'ּ' + 38: 0, # 'ׁ' + 45: 0, # 'ׂ' + 9: 1, # 'א' + 8: 0, # 'ב' + 20: 0, # 'ג' + 16: 0, # 'ד' + 3: 1, # 'ה' + 2: 1, # 'ו' + 24: 1, # 'ז' + 14: 0, # 'ח' + 22: 0, # 'ט' + 1: 1, # 'י' + 25: 0, # 'ך' + 15: 1, # 'כ' + 4: 1, # 'ל' + 11: 0, # 'ם' + 6: 1, # 'מ' + 23: 0, # 'ן' + 12: 1, # 'נ' + 19: 0, # 'ס' + 13: 0, # 'ע' + 26: 0, # 'ף' + 18: 1, # 'פ' + 27: 0, # 'ץ' + 21: 0, # 'צ' + 17: 0, # 'ק' + 7: 1, # 'ר' + 10: 1, # 'ש' + 5: 1, # 'ת' + 32: 0, # '–' + 52: 0, # '’' + 47: 0, # '“' + 46: 1, # '”' + 58: 0, # '†' + 40: 2, # '…' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +WINDOWS_1255_HEBREW_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 69, # 'A' + 66: 91, # 'B' + 67: 79, # 'C' + 68: 80, # 'D' + 69: 92, # 'E' + 70: 89, # 'F' + 71: 97, # 'G' + 72: 90, # 'H' + 73: 68, # 'I' + 74: 111, # 'J' + 75: 112, # 'K' + 76: 82, # 'L' + 77: 73, # 'M' + 78: 95, # 'N' + 79: 85, # 'O' + 80: 78, # 'P' + 81: 121, # 'Q' + 82: 86, # 'R' + 83: 71, # 'S' + 84: 67, # 'T' + 85: 102, # 'U' + 86: 107, # 'V' + 87: 84, # 'W' + 88: 114, # 'X' + 89: 103, # 'Y' + 90: 115, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 50, # 'a' + 98: 74, # 'b' + 99: 60, # 'c' + 100: 61, # 'd' + 101: 42, # 'e' + 102: 76, # 'f' + 103: 70, # 'g' + 104: 64, # 'h' + 105: 53, # 'i' + 106: 105, # 'j' + 107: 93, # 'k' + 108: 56, # 'l' + 109: 65, # 'm' + 110: 54, # 'n' + 111: 49, # 'o' + 112: 66, # 'p' + 113: 110, # 'q' + 114: 51, # 'r' + 115: 43, # 's' + 116: 44, # 't' + 117: 63, # 'u' + 118: 81, # 'v' + 119: 77, # 'w' + 120: 98, # 'x' + 121: 75, # 'y' + 122: 108, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 124, # '€' + 129: 202, # None + 130: 203, # '‚' + 131: 204, # 'ƒ' + 132: 205, # '„' + 133: 40, # '…' + 134: 58, # '†' + 135: 206, # '‡' + 136: 207, # 'ˆ' + 137: 208, # '‰' + 138: 209, # None + 139: 210, # '‹' + 140: 211, # None + 141: 212, # None + 142: 213, # None + 143: 214, # None + 144: 215, # None + 145: 83, # '‘' + 146: 52, # '’' + 147: 47, # '“' + 148: 46, # '”' + 149: 72, # '•' + 150: 32, # '–' + 151: 94, # '—' + 152: 216, # '˜' + 153: 113, # '™' + 154: 217, # None + 155: 109, # '›' + 156: 218, # None + 157: 219, # None + 158: 220, # None + 159: 221, # None + 160: 34, # '\xa0' + 161: 116, # '¡' + 162: 222, # '¢' + 163: 118, # '£' + 164: 100, # '₪' + 165: 223, # '¥' + 166: 224, # '¦' + 167: 117, # '§' + 168: 119, # '¨' + 169: 104, # '©' + 170: 125, # '×' + 171: 225, # '«' + 172: 226, # '¬' + 173: 87, # '\xad' + 174: 99, # '®' + 175: 227, # '¯' + 176: 106, # '°' + 177: 122, # '±' + 178: 123, # '²' + 179: 228, # '³' + 180: 55, # '´' + 181: 229, # 'µ' + 182: 230, # '¶' + 183: 101, # '·' + 184: 231, # '¸' + 185: 232, # '¹' + 186: 120, # '÷' + 187: 233, # '»' + 188: 48, # '¼' + 189: 39, # '½' + 190: 57, # '¾' + 191: 234, # '¿' + 192: 30, # 'ְ' + 193: 59, # 'ֱ' + 194: 41, # 'ֲ' + 195: 88, # 'ֳ' + 196: 33, # 'ִ' + 197: 37, # 'ֵ' + 198: 36, # 'ֶ' + 199: 31, # 'ַ' + 200: 29, # 'ָ' + 201: 35, # 'ֹ' + 202: 235, # None + 203: 62, # 'ֻ' + 204: 28, # 'ּ' + 205: 236, # 'ֽ' + 206: 126, # '־' + 207: 237, # 'ֿ' + 208: 238, # '׀' + 209: 38, # 'ׁ' + 210: 45, # 'ׂ' + 211: 239, # '׃' + 212: 240, # 'װ' + 213: 241, # 'ױ' + 214: 242, # 'ײ' + 215: 243, # '׳' + 216: 127, # '״' + 217: 244, # None + 218: 245, # None + 219: 246, # None + 220: 247, # None + 221: 248, # None + 222: 249, # None + 223: 250, # None + 224: 9, # 'א' + 225: 8, # 'ב' + 226: 20, # 'ג' + 227: 16, # 'ד' + 228: 3, # 'ה' + 229: 2, # 'ו' + 230: 24, # 'ז' + 231: 14, # 'ח' + 232: 22, # 'ט' + 233: 1, # 'י' + 234: 25, # 'ך' + 235: 15, # 'כ' + 236: 4, # 'ל' + 237: 11, # 'ם' + 238: 6, # 'מ' + 239: 23, # 'ן' + 240: 12, # 'נ' + 241: 19, # 'ס' + 242: 13, # 'ע' + 243: 26, # 'ף' + 244: 18, # 'פ' + 245: 27, # 'ץ' + 246: 21, # 'צ' + 247: 17, # 'ק' + 248: 7, # 'ר' + 249: 10, # 'ש' + 250: 5, # 'ת' + 251: 251, # None + 252: 252, # None + 253: 128, # '\u200e' + 254: 96, # '\u200f' + 255: 253, # None +} + +WINDOWS_1255_HEBREW_MODEL = SingleByteCharSetModel(charset_name='windows-1255', + language='Hebrew', + char_to_order_map=WINDOWS_1255_HEBREW_CHAR_TO_ORDER, + language_model=HEBREW_LANG_MODEL, + typical_positive_ratio=0.984004, + keep_ascii_letters=False, + alphabet='אבגדהוזחטיךכלםמןנסעףפץצקרשתװױײ') + diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langhungarianmodel.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langhungarianmodel.py new file mode 100644 index 00000000..bbc5cda6 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langhungarianmodel.py @@ -0,0 +1,4650 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +HUNGARIAN_LANG_MODEL = { + 28: { # 'A' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 2, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 2, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 2, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 1, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 1, # 'Á' + 44: 0, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 40: { # 'B' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 0, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 3, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 54: { # 'C' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 0, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 3, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 45: { # 'D' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 0, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 1, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 32: { # 'E' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 2, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 1, # 't' + 21: 2, # 'u' + 19: 1, # 'v' + 62: 1, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 50: { # 'F' + 28: 1, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 0, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 49: { # 'G' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 2, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 38: { # 'H' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 0, # 'D' + 32: 1, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 1, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 1, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 0, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 2, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 2, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 39: { # 'I' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 2, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 0, # 'e' + 27: 1, # 'f' + 12: 2, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 53: { # 'J' + 28: 2, # 'A' + 40: 0, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 1, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 0, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 36: { # 'K' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 2, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 41: { # 'L' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 1, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 34: { # 'M' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 3, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 1, # 'ű' + }, + 35: { # 'N' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 2, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 2, # 'Y' + 52: 1, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 47: { # 'O' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 2, # 'K' + 41: 2, # 'L' + 34: 2, # 'M' + 35: 2, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 2, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 1, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 1, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 46: { # 'P' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 0, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 3, # 'á' + 15: 2, # 'é' + 30: 0, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 0, # 'ű' + }, + 43: { # 'R' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 2, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 2, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 33: { # 'S' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 3, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 1, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 1, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 37: { # 'T' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 1, # 'S' + 37: 2, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 2, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 1, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 0, # 't' + 21: 2, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 2, # 'Á' + 44: 2, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 57: { # 'U' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 2, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 48: { # 'V' + 28: 2, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 0, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 2, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 2, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 2, # 'o' + 23: 0, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 2, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 0, # 'Ú' + 63: 1, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 55: { # 'Y' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 1, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 2, # 'Z' + 2: 1, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 0, # 'r' + 5: 0, # 's' + 3: 0, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 1, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 52: { # 'Z' + 28: 2, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 2, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 2, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 2, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 1, # 'U' + 48: 1, # 'V' + 55: 1, # 'Y' + 52: 1, # 'Z' + 2: 1, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 1, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 1, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 2, # 's' + 3: 0, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 2, # 'Á' + 44: 1, # 'É' + 61: 1, # 'Í' + 58: 1, # 'Ó' + 59: 1, # 'Ö' + 60: 1, # 'Ú' + 63: 1, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 2: { # 'a' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 2, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 2, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 18: { # 'b' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 2, # 's' + 3: 1, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 26: { # 'c' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 1, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 1, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 2, # 't' + 21: 2, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 2, # 'á' + 15: 2, # 'é' + 30: 2, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 17: { # 'd' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 2, # 'k' + 6: 1, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 1: { # 'e' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 3, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 2, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 2, # 'u' + 19: 3, # 'v' + 62: 2, # 'x' + 16: 2, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 27: { # 'f' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 3, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 2, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 3, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 12: { # 'g' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 2, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 2, # 'k' + 6: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 3, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 20: { # 'h' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 3, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 2, # 's' + 3: 1, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 1, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 9: { # 'i' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 3, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 2, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 3, # 'ó' + 24: 1, # 'ö' + 31: 2, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 1, # 'ű' + }, + 22: { # 'j' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 1, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 1, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 7: { # 'k' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 2, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 2, # 'ó' + 24: 3, # 'ö' + 31: 1, # 'ú' + 29: 3, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 6: { # 'l' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 1, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 3, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 3, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 3, # 'ő' + 56: 1, # 'ű' + }, + 13: { # 'm' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 1, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 3, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 3, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 2, # 'ű' + }, + 4: { # 'n' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 1, # 'x' + 16: 3, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 8: { # 'o' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 1, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 2, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 23: { # 'p' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 3, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 10: { # 'r' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 2, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 2, # 'ű' + }, + 5: { # 's' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 2, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 3: { # 't' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 1, # 'g' + 20: 3, # 'h' + 9: 3, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 3, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 3, # 'ú' + 29: 3, # 'ü' + 42: 3, # 'ő' + 56: 2, # 'ű' + }, + 21: { # 'u' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 2, # 'b' + 26: 2, # 'c' + 17: 3, # 'd' + 1: 2, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 1, # 'u' + 19: 3, # 'v' + 62: 1, # 'x' + 16: 1, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 2, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 0, # 'ö' + 31: 1, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 19: { # 'v' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 2, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 2, # 'ö' + 31: 1, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 1, # 'ű' + }, + 62: { # 'x' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 0, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 1, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 1, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 1, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 16: { # 'y' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 3, # 'e' + 27: 2, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 2, # 'j' + 7: 2, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 2, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 2, # 'í' + 25: 2, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 2, # 'ü' + 42: 1, # 'ő' + 56: 2, # 'ű' + }, + 11: { # 'z' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 3, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 3, # 'd' + 1: 3, # 'e' + 27: 1, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 3, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 3, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 3, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 3, # 'á' + 15: 3, # 'é' + 30: 3, # 'í' + 25: 3, # 'ó' + 24: 3, # 'ö' + 31: 2, # 'ú' + 29: 3, # 'ü' + 42: 2, # 'ő' + 56: 1, # 'ű' + }, + 51: { # 'Á' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 1, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 44: { # 'É' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 1, # 'E' + 50: 0, # 'F' + 49: 2, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 2, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 2, # 'R' + 33: 2, # 'S' + 37: 2, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 3, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 61: { # 'Í' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 0, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 2, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 1, # 'm' + 4: 0, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 0, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 58: { # 'Ó' + 28: 1, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 1, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 2, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 2, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 0, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 1, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 59: { # 'Ö' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 1, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 0, # 'b' + 26: 1, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 0, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 2, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 60: { # 'Ú' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 1, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 1, # 'F' + 49: 1, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 0, # 'b' + 26: 0, # 'c' + 17: 0, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 2, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 2, # 'j' + 7: 0, # 'k' + 6: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 0, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 0, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 63: { # 'Ü' + 28: 0, # 'A' + 40: 1, # 'B' + 54: 0, # 'C' + 45: 1, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 1, # 'G' + 38: 1, # 'H' + 39: 0, # 'I' + 53: 1, # 'J' + 36: 1, # 'K' + 41: 1, # 'L' + 34: 1, # 'M' + 35: 1, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 1, # 'R' + 33: 1, # 'S' + 37: 1, # 'T' + 57: 0, # 'U' + 48: 1, # 'V' + 55: 0, # 'Y' + 52: 1, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 0, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 0, # 'f' + 12: 1, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 0, # 'j' + 7: 0, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 1, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 14: { # 'á' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 3, # 'b' + 26: 3, # 'c' + 17: 3, # 'd' + 1: 1, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 2, # 'i' + 22: 3, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 2, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 1, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 2, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 15: { # 'é' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 3, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 3, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 3, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 0, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 30: { # 'í' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 0, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 0, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 0, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 2, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 2, # 's' + 3: 3, # 't' + 21: 0, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 25: { # 'ó' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 2, # 'a' + 18: 3, # 'b' + 26: 2, # 'c' + 17: 3, # 'd' + 1: 1, # 'e' + 27: 2, # 'f' + 12: 2, # 'g' + 20: 2, # 'h' + 9: 2, # 'i' + 22: 2, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 8: 1, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 1, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 1, # 'ö' + 31: 1, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 24: { # 'ö' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 0, # 'a' + 18: 3, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 0, # 'e' + 27: 1, # 'f' + 12: 2, # 'g' + 20: 1, # 'h' + 9: 0, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 8: 0, # 'o' + 23: 2, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 3, # 't' + 21: 0, # 'u' + 19: 3, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 3, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 31: { # 'ú' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 2, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 2, # 'f' + 12: 3, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 3, # 'j' + 7: 1, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 3, # 'r' + 5: 3, # 's' + 3: 2, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 1, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 29: { # 'ü' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 3, # 'g' + 20: 2, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 3, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 8: 0, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 0, # 'u' + 19: 2, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 1, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 42: { # 'ő' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 2, # 'b' + 26: 1, # 'c' + 17: 2, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 2, # 'k' + 6: 3, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 8: 1, # 'o' + 23: 1, # 'p' + 10: 2, # 'r' + 5: 2, # 's' + 3: 2, # 't' + 21: 1, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 1, # 'é' + 30: 1, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 1, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, + 56: { # 'ű' + 28: 0, # 'A' + 40: 0, # 'B' + 54: 0, # 'C' + 45: 0, # 'D' + 32: 0, # 'E' + 50: 0, # 'F' + 49: 0, # 'G' + 38: 0, # 'H' + 39: 0, # 'I' + 53: 0, # 'J' + 36: 0, # 'K' + 41: 0, # 'L' + 34: 0, # 'M' + 35: 0, # 'N' + 47: 0, # 'O' + 46: 0, # 'P' + 43: 0, # 'R' + 33: 0, # 'S' + 37: 0, # 'T' + 57: 0, # 'U' + 48: 0, # 'V' + 55: 0, # 'Y' + 52: 0, # 'Z' + 2: 1, # 'a' + 18: 1, # 'b' + 26: 0, # 'c' + 17: 1, # 'd' + 1: 1, # 'e' + 27: 1, # 'f' + 12: 1, # 'g' + 20: 1, # 'h' + 9: 1, # 'i' + 22: 1, # 'j' + 7: 1, # 'k' + 6: 1, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 8: 0, # 'o' + 23: 0, # 'p' + 10: 1, # 'r' + 5: 1, # 's' + 3: 1, # 't' + 21: 0, # 'u' + 19: 1, # 'v' + 62: 0, # 'x' + 16: 0, # 'y' + 11: 2, # 'z' + 51: 0, # 'Á' + 44: 0, # 'É' + 61: 0, # 'Í' + 58: 0, # 'Ó' + 59: 0, # 'Ö' + 60: 0, # 'Ú' + 63: 0, # 'Ü' + 14: 0, # 'á' + 15: 0, # 'é' + 30: 0, # 'í' + 25: 0, # 'ó' + 24: 0, # 'ö' + 31: 0, # 'ú' + 29: 0, # 'ü' + 42: 0, # 'ő' + 56: 0, # 'ű' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +WINDOWS_1250_HUNGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 28, # 'A' + 66: 40, # 'B' + 67: 54, # 'C' + 68: 45, # 'D' + 69: 32, # 'E' + 70: 50, # 'F' + 71: 49, # 'G' + 72: 38, # 'H' + 73: 39, # 'I' + 74: 53, # 'J' + 75: 36, # 'K' + 76: 41, # 'L' + 77: 34, # 'M' + 78: 35, # 'N' + 79: 47, # 'O' + 80: 46, # 'P' + 81: 72, # 'Q' + 82: 43, # 'R' + 83: 33, # 'S' + 84: 37, # 'T' + 85: 57, # 'U' + 86: 48, # 'V' + 87: 64, # 'W' + 88: 68, # 'X' + 89: 55, # 'Y' + 90: 52, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 2, # 'a' + 98: 18, # 'b' + 99: 26, # 'c' + 100: 17, # 'd' + 101: 1, # 'e' + 102: 27, # 'f' + 103: 12, # 'g' + 104: 20, # 'h' + 105: 9, # 'i' + 106: 22, # 'j' + 107: 7, # 'k' + 108: 6, # 'l' + 109: 13, # 'm' + 110: 4, # 'n' + 111: 8, # 'o' + 112: 23, # 'p' + 113: 67, # 'q' + 114: 10, # 'r' + 115: 5, # 's' + 116: 3, # 't' + 117: 21, # 'u' + 118: 19, # 'v' + 119: 65, # 'w' + 120: 62, # 'x' + 121: 16, # 'y' + 122: 11, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 161, # '€' + 129: 162, # None + 130: 163, # '‚' + 131: 164, # None + 132: 165, # '„' + 133: 166, # '…' + 134: 167, # '†' + 135: 168, # '‡' + 136: 169, # None + 137: 170, # '‰' + 138: 171, # 'Š' + 139: 172, # '‹' + 140: 173, # 'Ś' + 141: 174, # 'Ť' + 142: 175, # 'Ž' + 143: 176, # 'Ź' + 144: 177, # None + 145: 178, # '‘' + 146: 179, # '’' + 147: 180, # '“' + 148: 78, # '”' + 149: 181, # '•' + 150: 69, # '–' + 151: 182, # '—' + 152: 183, # None + 153: 184, # '™' + 154: 185, # 'š' + 155: 186, # '›' + 156: 187, # 'ś' + 157: 188, # 'ť' + 158: 189, # 'ž' + 159: 190, # 'ź' + 160: 191, # '\xa0' + 161: 192, # 'ˇ' + 162: 193, # '˘' + 163: 194, # 'Ł' + 164: 195, # '¤' + 165: 196, # 'Ą' + 166: 197, # '¦' + 167: 76, # '§' + 168: 198, # '¨' + 169: 199, # '©' + 170: 200, # 'Ş' + 171: 201, # '«' + 172: 202, # '¬' + 173: 203, # '\xad' + 174: 204, # '®' + 175: 205, # 'Ż' + 176: 81, # '°' + 177: 206, # '±' + 178: 207, # '˛' + 179: 208, # 'ł' + 180: 209, # '´' + 181: 210, # 'µ' + 182: 211, # '¶' + 183: 212, # '·' + 184: 213, # '¸' + 185: 214, # 'ą' + 186: 215, # 'ş' + 187: 216, # '»' + 188: 217, # 'Ľ' + 189: 218, # '˝' + 190: 219, # 'ľ' + 191: 220, # 'ż' + 192: 221, # 'Ŕ' + 193: 51, # 'Á' + 194: 83, # 'Â' + 195: 222, # 'Ă' + 196: 80, # 'Ä' + 197: 223, # 'Ĺ' + 198: 224, # 'Ć' + 199: 225, # 'Ç' + 200: 226, # 'Č' + 201: 44, # 'É' + 202: 227, # 'Ę' + 203: 228, # 'Ë' + 204: 229, # 'Ě' + 205: 61, # 'Í' + 206: 230, # 'Î' + 207: 231, # 'Ď' + 208: 232, # 'Đ' + 209: 233, # 'Ń' + 210: 234, # 'Ň' + 211: 58, # 'Ó' + 212: 235, # 'Ô' + 213: 66, # 'Ő' + 214: 59, # 'Ö' + 215: 236, # '×' + 216: 237, # 'Ř' + 217: 238, # 'Ů' + 218: 60, # 'Ú' + 219: 70, # 'Ű' + 220: 63, # 'Ü' + 221: 239, # 'Ý' + 222: 240, # 'Ţ' + 223: 241, # 'ß' + 224: 84, # 'ŕ' + 225: 14, # 'á' + 226: 75, # 'â' + 227: 242, # 'ă' + 228: 71, # 'ä' + 229: 82, # 'ĺ' + 230: 243, # 'ć' + 231: 73, # 'ç' + 232: 244, # 'č' + 233: 15, # 'é' + 234: 85, # 'ę' + 235: 79, # 'ë' + 236: 86, # 'ě' + 237: 30, # 'í' + 238: 77, # 'î' + 239: 87, # 'ď' + 240: 245, # 'đ' + 241: 246, # 'ń' + 242: 247, # 'ň' + 243: 25, # 'ó' + 244: 74, # 'ô' + 245: 42, # 'ő' + 246: 24, # 'ö' + 247: 248, # '÷' + 248: 249, # 'ř' + 249: 250, # 'ů' + 250: 31, # 'ú' + 251: 56, # 'ű' + 252: 29, # 'ü' + 253: 251, # 'ý' + 254: 252, # 'ţ' + 255: 253, # '˙' +} + +WINDOWS_1250_HUNGARIAN_MODEL = SingleByteCharSetModel(charset_name='windows-1250', + language='Hungarian', + char_to_order_map=WINDOWS_1250_HUNGARIAN_CHAR_TO_ORDER, + language_model=HUNGARIAN_LANG_MODEL, + typical_positive_ratio=0.947368, + keep_ascii_letters=True, + alphabet='ABCDEFGHIJKLMNOPRSTUVZabcdefghijklmnoprstuvzÁÉÍÓÖÚÜáéíóöúüŐőŰű') + +ISO_8859_2_HUNGARIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 28, # 'A' + 66: 40, # 'B' + 67: 54, # 'C' + 68: 45, # 'D' + 69: 32, # 'E' + 70: 50, # 'F' + 71: 49, # 'G' + 72: 38, # 'H' + 73: 39, # 'I' + 74: 53, # 'J' + 75: 36, # 'K' + 76: 41, # 'L' + 77: 34, # 'M' + 78: 35, # 'N' + 79: 47, # 'O' + 80: 46, # 'P' + 81: 71, # 'Q' + 82: 43, # 'R' + 83: 33, # 'S' + 84: 37, # 'T' + 85: 57, # 'U' + 86: 48, # 'V' + 87: 64, # 'W' + 88: 68, # 'X' + 89: 55, # 'Y' + 90: 52, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 2, # 'a' + 98: 18, # 'b' + 99: 26, # 'c' + 100: 17, # 'd' + 101: 1, # 'e' + 102: 27, # 'f' + 103: 12, # 'g' + 104: 20, # 'h' + 105: 9, # 'i' + 106: 22, # 'j' + 107: 7, # 'k' + 108: 6, # 'l' + 109: 13, # 'm' + 110: 4, # 'n' + 111: 8, # 'o' + 112: 23, # 'p' + 113: 67, # 'q' + 114: 10, # 'r' + 115: 5, # 's' + 116: 3, # 't' + 117: 21, # 'u' + 118: 19, # 'v' + 119: 65, # 'w' + 120: 62, # 'x' + 121: 16, # 'y' + 122: 11, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 159, # '\x80' + 129: 160, # '\x81' + 130: 161, # '\x82' + 131: 162, # '\x83' + 132: 163, # '\x84' + 133: 164, # '\x85' + 134: 165, # '\x86' + 135: 166, # '\x87' + 136: 167, # '\x88' + 137: 168, # '\x89' + 138: 169, # '\x8a' + 139: 170, # '\x8b' + 140: 171, # '\x8c' + 141: 172, # '\x8d' + 142: 173, # '\x8e' + 143: 174, # '\x8f' + 144: 175, # '\x90' + 145: 176, # '\x91' + 146: 177, # '\x92' + 147: 178, # '\x93' + 148: 179, # '\x94' + 149: 180, # '\x95' + 150: 181, # '\x96' + 151: 182, # '\x97' + 152: 183, # '\x98' + 153: 184, # '\x99' + 154: 185, # '\x9a' + 155: 186, # '\x9b' + 156: 187, # '\x9c' + 157: 188, # '\x9d' + 158: 189, # '\x9e' + 159: 190, # '\x9f' + 160: 191, # '\xa0' + 161: 192, # 'Ą' + 162: 193, # '˘' + 163: 194, # 'Ł' + 164: 195, # '¤' + 165: 196, # 'Ľ' + 166: 197, # 'Ś' + 167: 75, # '§' + 168: 198, # '¨' + 169: 199, # 'Š' + 170: 200, # 'Ş' + 171: 201, # 'Ť' + 172: 202, # 'Ź' + 173: 203, # '\xad' + 174: 204, # 'Ž' + 175: 205, # 'Ż' + 176: 79, # '°' + 177: 206, # 'ą' + 178: 207, # '˛' + 179: 208, # 'ł' + 180: 209, # '´' + 181: 210, # 'ľ' + 182: 211, # 'ś' + 183: 212, # 'ˇ' + 184: 213, # '¸' + 185: 214, # 'š' + 186: 215, # 'ş' + 187: 216, # 'ť' + 188: 217, # 'ź' + 189: 218, # '˝' + 190: 219, # 'ž' + 191: 220, # 'ż' + 192: 221, # 'Ŕ' + 193: 51, # 'Á' + 194: 81, # 'Â' + 195: 222, # 'Ă' + 196: 78, # 'Ä' + 197: 223, # 'Ĺ' + 198: 224, # 'Ć' + 199: 225, # 'Ç' + 200: 226, # 'Č' + 201: 44, # 'É' + 202: 227, # 'Ę' + 203: 228, # 'Ë' + 204: 229, # 'Ě' + 205: 61, # 'Í' + 206: 230, # 'Î' + 207: 231, # 'Ď' + 208: 232, # 'Đ' + 209: 233, # 'Ń' + 210: 234, # 'Ň' + 211: 58, # 'Ó' + 212: 235, # 'Ô' + 213: 66, # 'Ő' + 214: 59, # 'Ö' + 215: 236, # '×' + 216: 237, # 'Ř' + 217: 238, # 'Ů' + 218: 60, # 'Ú' + 219: 69, # 'Ű' + 220: 63, # 'Ü' + 221: 239, # 'Ý' + 222: 240, # 'Ţ' + 223: 241, # 'ß' + 224: 82, # 'ŕ' + 225: 14, # 'á' + 226: 74, # 'â' + 227: 242, # 'ă' + 228: 70, # 'ä' + 229: 80, # 'ĺ' + 230: 243, # 'ć' + 231: 72, # 'ç' + 232: 244, # 'č' + 233: 15, # 'é' + 234: 83, # 'ę' + 235: 77, # 'ë' + 236: 84, # 'ě' + 237: 30, # 'í' + 238: 76, # 'î' + 239: 85, # 'ď' + 240: 245, # 'đ' + 241: 246, # 'ń' + 242: 247, # 'ň' + 243: 25, # 'ó' + 244: 73, # 'ô' + 245: 42, # 'ő' + 246: 24, # 'ö' + 247: 248, # '÷' + 248: 249, # 'ř' + 249: 250, # 'ů' + 250: 31, # 'ú' + 251: 56, # 'ű' + 252: 29, # 'ü' + 253: 251, # 'ý' + 254: 252, # 'ţ' + 255: 253, # '˙' +} + +ISO_8859_2_HUNGARIAN_MODEL = SingleByteCharSetModel(charset_name='ISO-8859-2', + language='Hungarian', + char_to_order_map=ISO_8859_2_HUNGARIAN_CHAR_TO_ORDER, + language_model=HUNGARIAN_LANG_MODEL, + typical_positive_ratio=0.947368, + keep_ascii_letters=True, + alphabet='ABCDEFGHIJKLMNOPRSTUVZabcdefghijklmnoprstuvzÁÉÍÓÖÚÜáéíóöúüŐőŰű') + diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langrussianmodel.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langrussianmodel.py new file mode 100644 index 00000000..5594452b --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langrussianmodel.py @@ -0,0 +1,5718 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +RUSSIAN_LANG_MODEL = { + 37: { # 'А' + 37: 0, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 2, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 1, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 0, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 44: { # 'Б' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 2, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 33: { # 'В' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 2, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 1, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 0, # 'ю' + 16: 1, # 'я' + }, + 46: { # 'Г' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 41: { # 'Д' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 2, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 3, # 'ж' + 20: 1, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 48: { # 'Е' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 2, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 2, # 'Р' + 32: 2, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 2, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 1, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 1, # 'р' + 7: 3, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 56: { # 'Ж' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 1, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 2, # 'ю' + 16: 0, # 'я' + }, + 51: { # 'З' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 1, # 'я' + }, + 42: { # 'И' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 2, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 2, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 2, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 1, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 60: { # 'Й' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 1, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 36: { # 'К' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 2, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 1, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 49: { # 'Л' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 0, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 0, # 'м' + 5: 1, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 2, # 'ю' + 16: 1, # 'я' + }, + 38: { # 'М' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 0, # 'Ь' + 47: 1, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 31: { # 'Н' + 37: 2, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 2, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 34: { # 'О' + 37: 0, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 2, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 1, # 'З' + 42: 1, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 2, # 'Л' + 38: 1, # 'М' + 31: 2, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 2, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 1, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 1, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 35: { # 'П' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 2, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 1, # 'с' + 6: 1, # 'т' + 14: 2, # 'у' + 39: 1, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 2, # 'я' + }, + 45: { # 'Р' + 37: 2, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 2, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 2, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 2, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 2, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 2, # 'я' + }, + 32: { # 'С' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 2, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 2, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 2, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 1, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 40: { # 'Т' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 2, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 1, # 'Ь' + 47: 1, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 1, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 52: { # 'У' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 1, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 1, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 1, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 2, # 'и' + 23: 1, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 1, # 'н' + 1: 2, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 0, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 53: { # 'Ф' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 1, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 55: { # 'Х' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 2, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 0, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 58: { # 'Ц' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 1, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 50: { # 'Ч' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 1, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 1, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 1, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 1, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 57: { # 'Ш' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 1, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 2, # 'о' + 15: 2, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 63: { # 'Щ' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 1, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 1, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 1, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 62: { # 'Ы' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 1, # 'Ц' + 50: 0, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 0, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 61: { # 'Ь' + 37: 0, # 'А' + 44: 1, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 1, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 1, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 1, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 0, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 47: { # 'Э' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 1, # 'Й' + 36: 1, # 'К' + 49: 1, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 1, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 2, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 59: { # 'Ю' + 37: 1, # 'А' + 44: 1, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 1, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 0, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 0, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 1, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 43: { # 'Я' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 1, # 'В' + 46: 1, # 'Г' + 41: 0, # 'Д' + 48: 1, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 1, # 'С' + 40: 1, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 1, # 'Х' + 58: 0, # 'Ц' + 50: 1, # 'Ч' + 57: 0, # 'Ш' + 63: 1, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 1, # 'Ю' + 43: 1, # 'Я' + 3: 0, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 0, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 1, # 'й' + 11: 1, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 1, # 'п' + 9: 1, # 'р' + 7: 1, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 3: { # 'а' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 1, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 21: { # 'б' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 1, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 2, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 3, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 10: { # 'в' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 19: { # 'г' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 13: { # 'д' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 3, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 2: { # 'е' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 24: { # 'ж' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 1, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 0, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 20: { # 'з' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 1, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 4: { # 'и' + 37: 1, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 23: { # 'й' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 1, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 2, # 'з' + 4: 1, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 2, # 'я' + }, + 11: { # 'к' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 3, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 1, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 8: { # 'л' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 3, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 1, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 1, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 12: { # 'м' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 5: { # 'н' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 3, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 2, # 'щ' + 54: 1, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 1: { # 'о' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 3, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 15: { # 'п' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 3, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 0, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 1, # 'ш' + 29: 1, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 2, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 3, # 'я' + }, + 9: { # 'р' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 2, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 2, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 7: { # 'с' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 1, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 2, # 'ш' + 29: 1, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 6: { # 'т' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 2, # 'щ' + 54: 2, # 'ъ' + 18: 3, # 'ы' + 17: 3, # 'ь' + 30: 2, # 'э' + 27: 2, # 'ю' + 16: 3, # 'я' + }, + 14: { # 'у' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 3, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 2, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 2, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 2, # 'э' + 27: 3, # 'ю' + 16: 2, # 'я' + }, + 39: { # 'ф' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 0, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 2, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 1, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 2, # 'ы' + 17: 1, # 'ь' + 30: 2, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 26: { # 'х' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 3, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 1, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 1, # 'п' + 9: 3, # 'р' + 7: 2, # 'с' + 6: 2, # 'т' + 14: 2, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 1, # 'ъ' + 18: 0, # 'ы' + 17: 1, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 28: { # 'ц' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 1, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 2, # 'к' + 8: 1, # 'л' + 12: 1, # 'м' + 5: 1, # 'н' + 1: 3, # 'о' + 15: 0, # 'п' + 9: 1, # 'р' + 7: 0, # 'с' + 6: 1, # 'т' + 14: 3, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 1, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 3, # 'ы' + 17: 1, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 22: { # 'ч' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 2, # 'л' + 12: 1, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 3, # 'т' + 14: 3, # 'у' + 39: 1, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 1, # 'ч' + 25: 2, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 3, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 25: { # 'ш' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 1, # 'б' + 10: 2, # 'в' + 19: 1, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 2, # 'м' + 5: 3, # 'н' + 1: 3, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 1, # 'с' + 6: 2, # 'т' + 14: 3, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 1, # 'ц' + 22: 1, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 3, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 0, # 'я' + }, + 29: { # 'щ' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 3, # 'а' + 21: 0, # 'б' + 10: 1, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 3, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 3, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 1, # 'м' + 5: 2, # 'н' + 1: 1, # 'о' + 15: 0, # 'п' + 9: 2, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 2, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 2, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 0, # 'я' + }, + 54: { # 'ъ' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 0, # 'б' + 10: 0, # 'в' + 19: 0, # 'г' + 13: 0, # 'д' + 2: 2, # 'е' + 24: 0, # 'ж' + 20: 0, # 'з' + 4: 0, # 'и' + 23: 0, # 'й' + 11: 0, # 'к' + 8: 0, # 'л' + 12: 0, # 'м' + 5: 0, # 'н' + 1: 0, # 'о' + 15: 0, # 'п' + 9: 0, # 'р' + 7: 0, # 'с' + 6: 0, # 'т' + 14: 0, # 'у' + 39: 0, # 'ф' + 26: 0, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 0, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 1, # 'ю' + 16: 2, # 'я' + }, + 18: { # 'ы' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 3, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 2, # 'и' + 23: 3, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 1, # 'о' + 15: 3, # 'п' + 9: 3, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 0, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 3, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 0, # 'ю' + 16: 2, # 'я' + }, + 17: { # 'ь' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 2, # 'б' + 10: 2, # 'в' + 19: 2, # 'г' + 13: 2, # 'д' + 2: 3, # 'е' + 24: 1, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 0, # 'й' + 11: 3, # 'к' + 8: 0, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 2, # 'о' + 15: 2, # 'п' + 9: 1, # 'р' + 7: 3, # 'с' + 6: 2, # 'т' + 14: 0, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 3, # 'ш' + 29: 2, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 3, # 'ю' + 16: 3, # 'я' + }, + 30: { # 'э' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 1, # 'М' + 31: 1, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 1, # 'Р' + 32: 1, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 1, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 1, # 'б' + 10: 1, # 'в' + 19: 1, # 'г' + 13: 2, # 'д' + 2: 1, # 'е' + 24: 0, # 'ж' + 20: 1, # 'з' + 4: 0, # 'и' + 23: 2, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 2, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 2, # 'ф' + 26: 1, # 'х' + 28: 0, # 'ц' + 22: 0, # 'ч' + 25: 1, # 'ш' + 29: 0, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 1, # 'ю' + 16: 1, # 'я' + }, + 27: { # 'ю' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 2, # 'а' + 21: 3, # 'б' + 10: 1, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 1, # 'е' + 24: 2, # 'ж' + 20: 2, # 'з' + 4: 1, # 'и' + 23: 1, # 'й' + 11: 2, # 'к' + 8: 2, # 'л' + 12: 2, # 'м' + 5: 2, # 'н' + 1: 1, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 0, # 'у' + 39: 1, # 'ф' + 26: 2, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 1, # 'э' + 27: 2, # 'ю' + 16: 1, # 'я' + }, + 16: { # 'я' + 37: 0, # 'А' + 44: 0, # 'Б' + 33: 0, # 'В' + 46: 0, # 'Г' + 41: 0, # 'Д' + 48: 0, # 'Е' + 56: 0, # 'Ж' + 51: 0, # 'З' + 42: 0, # 'И' + 60: 0, # 'Й' + 36: 0, # 'К' + 49: 0, # 'Л' + 38: 0, # 'М' + 31: 0, # 'Н' + 34: 0, # 'О' + 35: 0, # 'П' + 45: 0, # 'Р' + 32: 0, # 'С' + 40: 0, # 'Т' + 52: 0, # 'У' + 53: 0, # 'Ф' + 55: 0, # 'Х' + 58: 0, # 'Ц' + 50: 0, # 'Ч' + 57: 0, # 'Ш' + 63: 0, # 'Щ' + 62: 0, # 'Ы' + 61: 0, # 'Ь' + 47: 0, # 'Э' + 59: 0, # 'Ю' + 43: 0, # 'Я' + 3: 0, # 'а' + 21: 2, # 'б' + 10: 3, # 'в' + 19: 2, # 'г' + 13: 3, # 'д' + 2: 3, # 'е' + 24: 3, # 'ж' + 20: 3, # 'з' + 4: 2, # 'и' + 23: 2, # 'й' + 11: 3, # 'к' + 8: 3, # 'л' + 12: 3, # 'м' + 5: 3, # 'н' + 1: 0, # 'о' + 15: 2, # 'п' + 9: 2, # 'р' + 7: 3, # 'с' + 6: 3, # 'т' + 14: 1, # 'у' + 39: 1, # 'ф' + 26: 3, # 'х' + 28: 2, # 'ц' + 22: 2, # 'ч' + 25: 2, # 'ш' + 29: 3, # 'щ' + 54: 0, # 'ъ' + 18: 0, # 'ы' + 17: 0, # 'ь' + 30: 0, # 'э' + 27: 2, # 'ю' + 16: 2, # 'я' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +IBM866_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 37, # 'А' + 129: 44, # 'Б' + 130: 33, # 'В' + 131: 46, # 'Г' + 132: 41, # 'Д' + 133: 48, # 'Е' + 134: 56, # 'Ж' + 135: 51, # 'З' + 136: 42, # 'И' + 137: 60, # 'Й' + 138: 36, # 'К' + 139: 49, # 'Л' + 140: 38, # 'М' + 141: 31, # 'Н' + 142: 34, # 'О' + 143: 35, # 'П' + 144: 45, # 'Р' + 145: 32, # 'С' + 146: 40, # 'Т' + 147: 52, # 'У' + 148: 53, # 'Ф' + 149: 55, # 'Х' + 150: 58, # 'Ц' + 151: 50, # 'Ч' + 152: 57, # 'Ш' + 153: 63, # 'Щ' + 154: 70, # 'Ъ' + 155: 62, # 'Ы' + 156: 61, # 'Ь' + 157: 47, # 'Э' + 158: 59, # 'Ю' + 159: 43, # 'Я' + 160: 3, # 'а' + 161: 21, # 'б' + 162: 10, # 'в' + 163: 19, # 'г' + 164: 13, # 'д' + 165: 2, # 'е' + 166: 24, # 'ж' + 167: 20, # 'з' + 168: 4, # 'и' + 169: 23, # 'й' + 170: 11, # 'к' + 171: 8, # 'л' + 172: 12, # 'м' + 173: 5, # 'н' + 174: 1, # 'о' + 175: 15, # 'п' + 176: 191, # '░' + 177: 192, # '▒' + 178: 193, # '▓' + 179: 194, # '│' + 180: 195, # '┤' + 181: 196, # '╡' + 182: 197, # '╢' + 183: 198, # '╖' + 184: 199, # '╕' + 185: 200, # '╣' + 186: 201, # '║' + 187: 202, # '╗' + 188: 203, # '╝' + 189: 204, # '╜' + 190: 205, # '╛' + 191: 206, # '┐' + 192: 207, # '└' + 193: 208, # '┴' + 194: 209, # '┬' + 195: 210, # '├' + 196: 211, # '─' + 197: 212, # '┼' + 198: 213, # '╞' + 199: 214, # '╟' + 200: 215, # '╚' + 201: 216, # '╔' + 202: 217, # '╩' + 203: 218, # '╦' + 204: 219, # '╠' + 205: 220, # '═' + 206: 221, # '╬' + 207: 222, # '╧' + 208: 223, # '╨' + 209: 224, # '╤' + 210: 225, # '╥' + 211: 226, # '╙' + 212: 227, # '╘' + 213: 228, # '╒' + 214: 229, # '╓' + 215: 230, # '╫' + 216: 231, # '╪' + 217: 232, # '┘' + 218: 233, # '┌' + 219: 234, # '█' + 220: 235, # '▄' + 221: 236, # '▌' + 222: 237, # '▐' + 223: 238, # '▀' + 224: 9, # 'р' + 225: 7, # 'с' + 226: 6, # 'т' + 227: 14, # 'у' + 228: 39, # 'ф' + 229: 26, # 'х' + 230: 28, # 'ц' + 231: 22, # 'ч' + 232: 25, # 'ш' + 233: 29, # 'щ' + 234: 54, # 'ъ' + 235: 18, # 'ы' + 236: 17, # 'ь' + 237: 30, # 'э' + 238: 27, # 'ю' + 239: 16, # 'я' + 240: 239, # 'Ё' + 241: 68, # 'ё' + 242: 240, # 'Є' + 243: 241, # 'є' + 244: 242, # 'Ї' + 245: 243, # 'ї' + 246: 244, # 'Ў' + 247: 245, # 'ў' + 248: 246, # '°' + 249: 247, # '∙' + 250: 248, # '·' + 251: 249, # '√' + 252: 250, # '№' + 253: 251, # '¤' + 254: 252, # '■' + 255: 255, # '\xa0' +} + +IBM866_RUSSIAN_MODEL = SingleByteCharSetModel(charset_name='IBM866', + language='Russian', + char_to_order_map=IBM866_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet='ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё') + +WINDOWS_1251_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # 'Ђ' + 129: 192, # 'Ѓ' + 130: 193, # '‚' + 131: 194, # 'ѓ' + 132: 195, # '„' + 133: 196, # '…' + 134: 197, # '†' + 135: 198, # '‡' + 136: 199, # '€' + 137: 200, # '‰' + 138: 201, # 'Љ' + 139: 202, # '‹' + 140: 203, # 'Њ' + 141: 204, # 'Ќ' + 142: 205, # 'Ћ' + 143: 206, # 'Џ' + 144: 207, # 'ђ' + 145: 208, # '‘' + 146: 209, # '’' + 147: 210, # '“' + 148: 211, # '”' + 149: 212, # '•' + 150: 213, # '–' + 151: 214, # '—' + 152: 215, # None + 153: 216, # '™' + 154: 217, # 'љ' + 155: 218, # '›' + 156: 219, # 'њ' + 157: 220, # 'ќ' + 158: 221, # 'ћ' + 159: 222, # 'џ' + 160: 223, # '\xa0' + 161: 224, # 'Ў' + 162: 225, # 'ў' + 163: 226, # 'Ј' + 164: 227, # '¤' + 165: 228, # 'Ґ' + 166: 229, # '¦' + 167: 230, # '§' + 168: 231, # 'Ё' + 169: 232, # '©' + 170: 233, # 'Є' + 171: 234, # '«' + 172: 235, # '¬' + 173: 236, # '\xad' + 174: 237, # '®' + 175: 238, # 'Ї' + 176: 239, # '°' + 177: 240, # '±' + 178: 241, # 'І' + 179: 242, # 'і' + 180: 243, # 'ґ' + 181: 244, # 'µ' + 182: 245, # '¶' + 183: 246, # '·' + 184: 68, # 'ё' + 185: 247, # '№' + 186: 248, # 'є' + 187: 249, # '»' + 188: 250, # 'ј' + 189: 251, # 'Ѕ' + 190: 252, # 'ѕ' + 191: 253, # 'ї' + 192: 37, # 'А' + 193: 44, # 'Б' + 194: 33, # 'В' + 195: 46, # 'Г' + 196: 41, # 'Д' + 197: 48, # 'Е' + 198: 56, # 'Ж' + 199: 51, # 'З' + 200: 42, # 'И' + 201: 60, # 'Й' + 202: 36, # 'К' + 203: 49, # 'Л' + 204: 38, # 'М' + 205: 31, # 'Н' + 206: 34, # 'О' + 207: 35, # 'П' + 208: 45, # 'Р' + 209: 32, # 'С' + 210: 40, # 'Т' + 211: 52, # 'У' + 212: 53, # 'Ф' + 213: 55, # 'Х' + 214: 58, # 'Ц' + 215: 50, # 'Ч' + 216: 57, # 'Ш' + 217: 63, # 'Щ' + 218: 70, # 'Ъ' + 219: 62, # 'Ы' + 220: 61, # 'Ь' + 221: 47, # 'Э' + 222: 59, # 'Ю' + 223: 43, # 'Я' + 224: 3, # 'а' + 225: 21, # 'б' + 226: 10, # 'в' + 227: 19, # 'г' + 228: 13, # 'д' + 229: 2, # 'е' + 230: 24, # 'ж' + 231: 20, # 'з' + 232: 4, # 'и' + 233: 23, # 'й' + 234: 11, # 'к' + 235: 8, # 'л' + 236: 12, # 'м' + 237: 5, # 'н' + 238: 1, # 'о' + 239: 15, # 'п' + 240: 9, # 'р' + 241: 7, # 'с' + 242: 6, # 'т' + 243: 14, # 'у' + 244: 39, # 'ф' + 245: 26, # 'х' + 246: 28, # 'ц' + 247: 22, # 'ч' + 248: 25, # 'ш' + 249: 29, # 'щ' + 250: 54, # 'ъ' + 251: 18, # 'ы' + 252: 17, # 'ь' + 253: 30, # 'э' + 254: 27, # 'ю' + 255: 16, # 'я' +} + +WINDOWS_1251_RUSSIAN_MODEL = SingleByteCharSetModel(charset_name='windows-1251', + language='Russian', + char_to_order_map=WINDOWS_1251_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet='ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё') + +IBM855_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # 'ђ' + 129: 192, # 'Ђ' + 130: 193, # 'ѓ' + 131: 194, # 'Ѓ' + 132: 68, # 'ё' + 133: 195, # 'Ё' + 134: 196, # 'є' + 135: 197, # 'Є' + 136: 198, # 'ѕ' + 137: 199, # 'Ѕ' + 138: 200, # 'і' + 139: 201, # 'І' + 140: 202, # 'ї' + 141: 203, # 'Ї' + 142: 204, # 'ј' + 143: 205, # 'Ј' + 144: 206, # 'љ' + 145: 207, # 'Љ' + 146: 208, # 'њ' + 147: 209, # 'Њ' + 148: 210, # 'ћ' + 149: 211, # 'Ћ' + 150: 212, # 'ќ' + 151: 213, # 'Ќ' + 152: 214, # 'ў' + 153: 215, # 'Ў' + 154: 216, # 'џ' + 155: 217, # 'Џ' + 156: 27, # 'ю' + 157: 59, # 'Ю' + 158: 54, # 'ъ' + 159: 70, # 'Ъ' + 160: 3, # 'а' + 161: 37, # 'А' + 162: 21, # 'б' + 163: 44, # 'Б' + 164: 28, # 'ц' + 165: 58, # 'Ц' + 166: 13, # 'д' + 167: 41, # 'Д' + 168: 2, # 'е' + 169: 48, # 'Е' + 170: 39, # 'ф' + 171: 53, # 'Ф' + 172: 19, # 'г' + 173: 46, # 'Г' + 174: 218, # '«' + 175: 219, # '»' + 176: 220, # '░' + 177: 221, # '▒' + 178: 222, # '▓' + 179: 223, # '│' + 180: 224, # '┤' + 181: 26, # 'х' + 182: 55, # 'Х' + 183: 4, # 'и' + 184: 42, # 'И' + 185: 225, # '╣' + 186: 226, # '║' + 187: 227, # '╗' + 188: 228, # '╝' + 189: 23, # 'й' + 190: 60, # 'Й' + 191: 229, # '┐' + 192: 230, # '└' + 193: 231, # '┴' + 194: 232, # '┬' + 195: 233, # '├' + 196: 234, # '─' + 197: 235, # '┼' + 198: 11, # 'к' + 199: 36, # 'К' + 200: 236, # '╚' + 201: 237, # '╔' + 202: 238, # '╩' + 203: 239, # '╦' + 204: 240, # '╠' + 205: 241, # '═' + 206: 242, # '╬' + 207: 243, # '¤' + 208: 8, # 'л' + 209: 49, # 'Л' + 210: 12, # 'м' + 211: 38, # 'М' + 212: 5, # 'н' + 213: 31, # 'Н' + 214: 1, # 'о' + 215: 34, # 'О' + 216: 15, # 'п' + 217: 244, # '┘' + 218: 245, # '┌' + 219: 246, # '█' + 220: 247, # '▄' + 221: 35, # 'П' + 222: 16, # 'я' + 223: 248, # '▀' + 224: 43, # 'Я' + 225: 9, # 'р' + 226: 45, # 'Р' + 227: 7, # 'с' + 228: 32, # 'С' + 229: 6, # 'т' + 230: 40, # 'Т' + 231: 14, # 'у' + 232: 52, # 'У' + 233: 24, # 'ж' + 234: 56, # 'Ж' + 235: 10, # 'в' + 236: 33, # 'В' + 237: 17, # 'ь' + 238: 61, # 'Ь' + 239: 249, # '№' + 240: 250, # '\xad' + 241: 18, # 'ы' + 242: 62, # 'Ы' + 243: 20, # 'з' + 244: 51, # 'З' + 245: 25, # 'ш' + 246: 57, # 'Ш' + 247: 30, # 'э' + 248: 47, # 'Э' + 249: 29, # 'щ' + 250: 63, # 'Щ' + 251: 22, # 'ч' + 252: 50, # 'Ч' + 253: 251, # '§' + 254: 252, # '■' + 255: 255, # '\xa0' +} + +IBM855_RUSSIAN_MODEL = SingleByteCharSetModel(charset_name='IBM855', + language='Russian', + char_to_order_map=IBM855_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet='ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё') + +KOI8_R_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # '─' + 129: 192, # '│' + 130: 193, # '┌' + 131: 194, # '┐' + 132: 195, # '└' + 133: 196, # '┘' + 134: 197, # '├' + 135: 198, # '┤' + 136: 199, # '┬' + 137: 200, # '┴' + 138: 201, # '┼' + 139: 202, # '▀' + 140: 203, # '▄' + 141: 204, # '█' + 142: 205, # '▌' + 143: 206, # '▐' + 144: 207, # '░' + 145: 208, # '▒' + 146: 209, # '▓' + 147: 210, # '⌠' + 148: 211, # '■' + 149: 212, # '∙' + 150: 213, # '√' + 151: 214, # '≈' + 152: 215, # '≤' + 153: 216, # '≥' + 154: 217, # '\xa0' + 155: 218, # '⌡' + 156: 219, # '°' + 157: 220, # '²' + 158: 221, # '·' + 159: 222, # '÷' + 160: 223, # '═' + 161: 224, # '║' + 162: 225, # '╒' + 163: 68, # 'ё' + 164: 226, # '╓' + 165: 227, # '╔' + 166: 228, # '╕' + 167: 229, # '╖' + 168: 230, # '╗' + 169: 231, # '╘' + 170: 232, # '╙' + 171: 233, # '╚' + 172: 234, # '╛' + 173: 235, # '╜' + 174: 236, # '╝' + 175: 237, # '╞' + 176: 238, # '╟' + 177: 239, # '╠' + 178: 240, # '╡' + 179: 241, # 'Ё' + 180: 242, # '╢' + 181: 243, # '╣' + 182: 244, # '╤' + 183: 245, # '╥' + 184: 246, # '╦' + 185: 247, # '╧' + 186: 248, # '╨' + 187: 249, # '╩' + 188: 250, # '╪' + 189: 251, # '╫' + 190: 252, # '╬' + 191: 253, # '©' + 192: 27, # 'ю' + 193: 3, # 'а' + 194: 21, # 'б' + 195: 28, # 'ц' + 196: 13, # 'д' + 197: 2, # 'е' + 198: 39, # 'ф' + 199: 19, # 'г' + 200: 26, # 'х' + 201: 4, # 'и' + 202: 23, # 'й' + 203: 11, # 'к' + 204: 8, # 'л' + 205: 12, # 'м' + 206: 5, # 'н' + 207: 1, # 'о' + 208: 15, # 'п' + 209: 16, # 'я' + 210: 9, # 'р' + 211: 7, # 'с' + 212: 6, # 'т' + 213: 14, # 'у' + 214: 24, # 'ж' + 215: 10, # 'в' + 216: 17, # 'ь' + 217: 18, # 'ы' + 218: 20, # 'з' + 219: 25, # 'ш' + 220: 30, # 'э' + 221: 29, # 'щ' + 222: 22, # 'ч' + 223: 54, # 'ъ' + 224: 59, # 'Ю' + 225: 37, # 'А' + 226: 44, # 'Б' + 227: 58, # 'Ц' + 228: 41, # 'Д' + 229: 48, # 'Е' + 230: 53, # 'Ф' + 231: 46, # 'Г' + 232: 55, # 'Х' + 233: 42, # 'И' + 234: 60, # 'Й' + 235: 36, # 'К' + 236: 49, # 'Л' + 237: 38, # 'М' + 238: 31, # 'Н' + 239: 34, # 'О' + 240: 35, # 'П' + 241: 43, # 'Я' + 242: 45, # 'Р' + 243: 32, # 'С' + 244: 40, # 'Т' + 245: 52, # 'У' + 246: 56, # 'Ж' + 247: 33, # 'В' + 248: 61, # 'Ь' + 249: 62, # 'Ы' + 250: 51, # 'З' + 251: 57, # 'Ш' + 252: 47, # 'Э' + 253: 63, # 'Щ' + 254: 50, # 'Ч' + 255: 70, # 'Ъ' +} + +KOI8_R_RUSSIAN_MODEL = SingleByteCharSetModel(charset_name='KOI8-R', + language='Russian', + char_to_order_map=KOI8_R_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet='ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё') + +MACCYRILLIC_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 37, # 'А' + 129: 44, # 'Б' + 130: 33, # 'В' + 131: 46, # 'Г' + 132: 41, # 'Д' + 133: 48, # 'Е' + 134: 56, # 'Ж' + 135: 51, # 'З' + 136: 42, # 'И' + 137: 60, # 'Й' + 138: 36, # 'К' + 139: 49, # 'Л' + 140: 38, # 'М' + 141: 31, # 'Н' + 142: 34, # 'О' + 143: 35, # 'П' + 144: 45, # 'Р' + 145: 32, # 'С' + 146: 40, # 'Т' + 147: 52, # 'У' + 148: 53, # 'Ф' + 149: 55, # 'Х' + 150: 58, # 'Ц' + 151: 50, # 'Ч' + 152: 57, # 'Ш' + 153: 63, # 'Щ' + 154: 70, # 'Ъ' + 155: 62, # 'Ы' + 156: 61, # 'Ь' + 157: 47, # 'Э' + 158: 59, # 'Ю' + 159: 43, # 'Я' + 160: 191, # '†' + 161: 192, # '°' + 162: 193, # 'Ґ' + 163: 194, # '£' + 164: 195, # '§' + 165: 196, # '•' + 166: 197, # '¶' + 167: 198, # 'І' + 168: 199, # '®' + 169: 200, # '©' + 170: 201, # '™' + 171: 202, # 'Ђ' + 172: 203, # 'ђ' + 173: 204, # '≠' + 174: 205, # 'Ѓ' + 175: 206, # 'ѓ' + 176: 207, # '∞' + 177: 208, # '±' + 178: 209, # '≤' + 179: 210, # '≥' + 180: 211, # 'і' + 181: 212, # 'µ' + 182: 213, # 'ґ' + 183: 214, # 'Ј' + 184: 215, # 'Є' + 185: 216, # 'є' + 186: 217, # 'Ї' + 187: 218, # 'ї' + 188: 219, # 'Љ' + 189: 220, # 'љ' + 190: 221, # 'Њ' + 191: 222, # 'њ' + 192: 223, # 'ј' + 193: 224, # 'Ѕ' + 194: 225, # '¬' + 195: 226, # '√' + 196: 227, # 'ƒ' + 197: 228, # '≈' + 198: 229, # '∆' + 199: 230, # '«' + 200: 231, # '»' + 201: 232, # '…' + 202: 233, # '\xa0' + 203: 234, # 'Ћ' + 204: 235, # 'ћ' + 205: 236, # 'Ќ' + 206: 237, # 'ќ' + 207: 238, # 'ѕ' + 208: 239, # '–' + 209: 240, # '—' + 210: 241, # '“' + 211: 242, # '”' + 212: 243, # '‘' + 213: 244, # '’' + 214: 245, # '÷' + 215: 246, # '„' + 216: 247, # 'Ў' + 217: 248, # 'ў' + 218: 249, # 'Џ' + 219: 250, # 'џ' + 220: 251, # '№' + 221: 252, # 'Ё' + 222: 68, # 'ё' + 223: 16, # 'я' + 224: 3, # 'а' + 225: 21, # 'б' + 226: 10, # 'в' + 227: 19, # 'г' + 228: 13, # 'д' + 229: 2, # 'е' + 230: 24, # 'ж' + 231: 20, # 'з' + 232: 4, # 'и' + 233: 23, # 'й' + 234: 11, # 'к' + 235: 8, # 'л' + 236: 12, # 'м' + 237: 5, # 'н' + 238: 1, # 'о' + 239: 15, # 'п' + 240: 9, # 'р' + 241: 7, # 'с' + 242: 6, # 'т' + 243: 14, # 'у' + 244: 39, # 'ф' + 245: 26, # 'х' + 246: 28, # 'ц' + 247: 22, # 'ч' + 248: 25, # 'ш' + 249: 29, # 'щ' + 250: 54, # 'ъ' + 251: 18, # 'ы' + 252: 17, # 'ь' + 253: 30, # 'э' + 254: 27, # 'ю' + 255: 255, # '€' +} + +MACCYRILLIC_RUSSIAN_MODEL = SingleByteCharSetModel(charset_name='MacCyrillic', + language='Russian', + char_to_order_map=MACCYRILLIC_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet='ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё') + +ISO_8859_5_RUSSIAN_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 142, # 'A' + 66: 143, # 'B' + 67: 144, # 'C' + 68: 145, # 'D' + 69: 146, # 'E' + 70: 147, # 'F' + 71: 148, # 'G' + 72: 149, # 'H' + 73: 150, # 'I' + 74: 151, # 'J' + 75: 152, # 'K' + 76: 74, # 'L' + 77: 153, # 'M' + 78: 75, # 'N' + 79: 154, # 'O' + 80: 155, # 'P' + 81: 156, # 'Q' + 82: 157, # 'R' + 83: 158, # 'S' + 84: 159, # 'T' + 85: 160, # 'U' + 86: 161, # 'V' + 87: 162, # 'W' + 88: 163, # 'X' + 89: 164, # 'Y' + 90: 165, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 71, # 'a' + 98: 172, # 'b' + 99: 66, # 'c' + 100: 173, # 'd' + 101: 65, # 'e' + 102: 174, # 'f' + 103: 76, # 'g' + 104: 175, # 'h' + 105: 64, # 'i' + 106: 176, # 'j' + 107: 177, # 'k' + 108: 77, # 'l' + 109: 72, # 'm' + 110: 178, # 'n' + 111: 69, # 'o' + 112: 67, # 'p' + 113: 179, # 'q' + 114: 78, # 'r' + 115: 73, # 's' + 116: 180, # 't' + 117: 181, # 'u' + 118: 79, # 'v' + 119: 182, # 'w' + 120: 183, # 'x' + 121: 184, # 'y' + 122: 185, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 191, # '\x80' + 129: 192, # '\x81' + 130: 193, # '\x82' + 131: 194, # '\x83' + 132: 195, # '\x84' + 133: 196, # '\x85' + 134: 197, # '\x86' + 135: 198, # '\x87' + 136: 199, # '\x88' + 137: 200, # '\x89' + 138: 201, # '\x8a' + 139: 202, # '\x8b' + 140: 203, # '\x8c' + 141: 204, # '\x8d' + 142: 205, # '\x8e' + 143: 206, # '\x8f' + 144: 207, # '\x90' + 145: 208, # '\x91' + 146: 209, # '\x92' + 147: 210, # '\x93' + 148: 211, # '\x94' + 149: 212, # '\x95' + 150: 213, # '\x96' + 151: 214, # '\x97' + 152: 215, # '\x98' + 153: 216, # '\x99' + 154: 217, # '\x9a' + 155: 218, # '\x9b' + 156: 219, # '\x9c' + 157: 220, # '\x9d' + 158: 221, # '\x9e' + 159: 222, # '\x9f' + 160: 223, # '\xa0' + 161: 224, # 'Ё' + 162: 225, # 'Ђ' + 163: 226, # 'Ѓ' + 164: 227, # 'Є' + 165: 228, # 'Ѕ' + 166: 229, # 'І' + 167: 230, # 'Ї' + 168: 231, # 'Ј' + 169: 232, # 'Љ' + 170: 233, # 'Њ' + 171: 234, # 'Ћ' + 172: 235, # 'Ќ' + 173: 236, # '\xad' + 174: 237, # 'Ў' + 175: 238, # 'Џ' + 176: 37, # 'А' + 177: 44, # 'Б' + 178: 33, # 'В' + 179: 46, # 'Г' + 180: 41, # 'Д' + 181: 48, # 'Е' + 182: 56, # 'Ж' + 183: 51, # 'З' + 184: 42, # 'И' + 185: 60, # 'Й' + 186: 36, # 'К' + 187: 49, # 'Л' + 188: 38, # 'М' + 189: 31, # 'Н' + 190: 34, # 'О' + 191: 35, # 'П' + 192: 45, # 'Р' + 193: 32, # 'С' + 194: 40, # 'Т' + 195: 52, # 'У' + 196: 53, # 'Ф' + 197: 55, # 'Х' + 198: 58, # 'Ц' + 199: 50, # 'Ч' + 200: 57, # 'Ш' + 201: 63, # 'Щ' + 202: 70, # 'Ъ' + 203: 62, # 'Ы' + 204: 61, # 'Ь' + 205: 47, # 'Э' + 206: 59, # 'Ю' + 207: 43, # 'Я' + 208: 3, # 'а' + 209: 21, # 'б' + 210: 10, # 'в' + 211: 19, # 'г' + 212: 13, # 'д' + 213: 2, # 'е' + 214: 24, # 'ж' + 215: 20, # 'з' + 216: 4, # 'и' + 217: 23, # 'й' + 218: 11, # 'к' + 219: 8, # 'л' + 220: 12, # 'м' + 221: 5, # 'н' + 222: 1, # 'о' + 223: 15, # 'п' + 224: 9, # 'р' + 225: 7, # 'с' + 226: 6, # 'т' + 227: 14, # 'у' + 228: 39, # 'ф' + 229: 26, # 'х' + 230: 28, # 'ц' + 231: 22, # 'ч' + 232: 25, # 'ш' + 233: 29, # 'щ' + 234: 54, # 'ъ' + 235: 18, # 'ы' + 236: 17, # 'ь' + 237: 30, # 'э' + 238: 27, # 'ю' + 239: 16, # 'я' + 240: 239, # '№' + 241: 68, # 'ё' + 242: 240, # 'ђ' + 243: 241, # 'ѓ' + 244: 242, # 'є' + 245: 243, # 'ѕ' + 246: 244, # 'і' + 247: 245, # 'ї' + 248: 246, # 'ј' + 249: 247, # 'љ' + 250: 248, # 'њ' + 251: 249, # 'ћ' + 252: 250, # 'ќ' + 253: 251, # '§' + 254: 252, # 'ў' + 255: 255, # 'џ' +} + +ISO_8859_5_RUSSIAN_MODEL = SingleByteCharSetModel(charset_name='ISO-8859-5', + language='Russian', + char_to_order_map=ISO_8859_5_RUSSIAN_CHAR_TO_ORDER, + language_model=RUSSIAN_LANG_MODEL, + typical_positive_ratio=0.976601, + keep_ascii_letters=False, + alphabet='ЁАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё') + diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langthaimodel.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langthaimodel.py new file mode 100644 index 00000000..9a37db57 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langthaimodel.py @@ -0,0 +1,4383 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +THAI_LANG_MODEL = { + 5: { # 'ก' + 5: 2, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 3, # 'ฎ' + 57: 2, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 2, # 'ณ' + 20: 2, # 'ด' + 19: 3, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 1, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 1, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 2, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 3, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 2, # 'ื' + 32: 2, # 'ุ' + 35: 1, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 3, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 30: { # 'ข' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 2, # 'ณ' + 20: 0, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 2, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 2, # 'ี' + 40: 3, # 'ึ' + 27: 1, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 2, # '่' + 7: 3, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 24: { # 'ค' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 2, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 0, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 2, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 3, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 8: { # 'ง' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 2, # 'ง' + 26: 2, # 'จ' + 52: 1, # 'ฉ' + 34: 2, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 2, # 'ศ' + 46: 1, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 1, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 1, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 3, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 26: { # 'จ' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 0, # 'ค' + 8: 2, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 3, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 2, # 'ิ' + 13: 1, # 'ี' + 40: 3, # 'ึ' + 27: 1, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 52: { # 'ฉ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 3, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 3, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 1, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 1, # 'ั' + 1: 1, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 34: { # 'ช' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 1, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 1, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 1, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 51: { # 'ซ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 1, # 'ั' + 1: 1, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 2, # 'ี' + 40: 3, # 'ึ' + 27: 2, # 'ื' + 32: 1, # 'ุ' + 35: 1, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 1, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 47: { # 'ญ' + 5: 1, # 'ก' + 30: 1, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 3, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 2, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 58: { # 'ฎ' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 1, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 57: { # 'ฏ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 49: { # 'ฐ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 53: { # 'ฑ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 55: { # 'ฒ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 43: { # 'ณ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 3, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 3, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 3, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 20: { # 'ด' + 5: 2, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 3, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 2, # 'า' + 36: 2, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 1, # 'ึ' + 27: 2, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 2, # 'ๆ' + 37: 2, # '็' + 6: 1, # '่' + 7: 3, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 19: { # 'ต' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 2, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 2, # 'ภ' + 9: 1, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 0, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 1, # 'ึ' + 27: 1, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 2, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 44: { # 'ถ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 1, # 'ี' + 40: 3, # 'ึ' + 27: 2, # 'ื' + 32: 2, # 'ุ' + 35: 3, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 14: { # 'ท' + 5: 1, # 'ก' + 30: 1, # 'ข' + 24: 3, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 3, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 1, # 'ฤ' + 15: 1, # 'ล' + 12: 2, # 'ว' + 42: 3, # 'ศ' + 46: 1, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 1, # 'ื' + 32: 3, # 'ุ' + 35: 1, # 'ู' + 11: 0, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 48: { # 'ธ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 2, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 2, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 3: { # 'น' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 1, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 2, # 'ถ' + 14: 3, # 'ท' + 48: 3, # 'ธ' + 3: 2, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 1, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 3, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 3, # 'โ' + 29: 3, # 'ใ' + 33: 3, # 'ไ' + 50: 2, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 17: { # 'บ' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 1, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 2, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 2, # 'ื' + 32: 3, # 'ุ' + 35: 2, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 2, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 25: { # 'ป' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 1, # 'ฎ' + 57: 3, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 1, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 1, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 3, # 'ั' + 1: 1, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 2, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 3, # '็' + 6: 1, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 39: { # 'ผ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 1, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 1, # 'ื' + 32: 0, # 'ุ' + 35: 3, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 1, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 62: { # 'ฝ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 1, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 1, # 'ี' + 40: 2, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 2, # '่' + 7: 1, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 31: { # 'พ' + 5: 1, # 'ก' + 30: 1, # 'ข' + 24: 1, # 'ค' + 8: 1, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 2, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 1, # 'ึ' + 27: 3, # 'ื' + 32: 1, # 'ุ' + 35: 2, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 1, # '็' + 6: 0, # '่' + 7: 1, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 54: { # 'ฟ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 2, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 1, # 'ื' + 32: 1, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 45: { # 'ภ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 2, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 9: { # 'ม' + 5: 2, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 3, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 2, # 'ร' + 61: 2, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 1, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 2, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 16: { # 'ย' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 2, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 3, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 1, # 'ึ' + 27: 2, # 'ื' + 32: 2, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 2, # 'ๆ' + 37: 1, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 2: { # 'ร' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 2, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 3, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 3, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 3, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 2, # 'น' + 17: 2, # 'บ' + 25: 3, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 2, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 2, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 1, # 'ฯ' + 22: 3, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 3, # 'ู' + 11: 3, # 'เ' + 28: 3, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 3, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 3, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 61: { # 'ฤ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 2, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 15: { # 'ล' + 5: 2, # 'ก' + 30: 3, # 'ข' + 24: 1, # 'ค' + 8: 3, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 3, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 3, # 'อ' + 63: 2, # 'ฯ' + 22: 3, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 3, # 'ื' + 32: 2, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 2, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 12: { # 'ว' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 1, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 3, # 'ิ' + 13: 2, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 2, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 42: { # 'ศ' + 5: 1, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 1, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 2, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 2, # 'ิ' + 13: 0, # 'ี' + 40: 3, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 2, # 'ู' + 11: 0, # 'เ' + 28: 1, # 'แ' + 41: 0, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 46: { # 'ษ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 2, # 'ฎ' + 57: 1, # 'ฏ' + 49: 2, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 3, # 'ณ' + 20: 0, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 2, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 18: { # 'ส' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 2, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 3, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 2, # 'ภ' + 9: 3, # 'ม' + 16: 1, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 3, # 'ำ' + 23: 3, # 'ิ' + 13: 3, # 'ี' + 40: 2, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 3, # 'ู' + 11: 2, # 'เ' + 28: 0, # 'แ' + 41: 1, # 'โ' + 29: 0, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 1, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 21: { # 'ห' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 1, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 3, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 0, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 0, # 'ำ' + 23: 1, # 'ิ' + 13: 1, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 1, # 'ุ' + 35: 1, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 3, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 4: { # 'อ' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 2, # 'ะ' + 10: 3, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 2, # 'ิ' + 13: 3, # 'ี' + 40: 0, # 'ึ' + 27: 3, # 'ื' + 32: 3, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 1, # '็' + 6: 2, # '่' + 7: 2, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 63: { # 'ฯ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 22: { # 'ะ' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 1, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 2, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 1, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 10: { # 'ั' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 3, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 3, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 2, # 'ฐ' + 53: 0, # 'ฑ' + 55: 3, # 'ฒ' + 43: 3, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 1: { # 'า' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 3, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 1, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 3, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 2, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 1, # 'ฝ' + 31: 3, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 3, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 3, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 36: { # 'ำ' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 3, # 'ค' + 8: 2, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 3, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 23: { # 'ิ' + 5: 3, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 3, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 3, # 'พ' + 54: 1, # 'ฟ' + 45: 2, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 3, # 'ศ' + 46: 2, # 'ษ' + 18: 2, # 'ส' + 21: 3, # 'ห' + 4: 1, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 2, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 13: { # 'ี' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 1, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 3, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 2, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 40: { # 'ึ' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 3, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 1, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 27: { # 'ื' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 3, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 32: { # 'ุ' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 3, # 'ค' + 8: 3, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 1, # 'ฒ' + 43: 3, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 2, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 1, # 'ภ' + 9: 3, # 'ม' + 16: 1, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 1, # 'ว' + 42: 1, # 'ศ' + 46: 2, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 1, # 'โ' + 29: 0, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 2, # '้' + 38: 1, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 35: { # 'ู' + 5: 3, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 2, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 2, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 2, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 2, # 'น' + 17: 0, # 'บ' + 25: 3, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 1, # 'แ' + 41: 1, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 3, # '่' + 7: 3, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 11: { # 'เ' + 5: 3, # 'ก' + 30: 3, # 'ข' + 24: 3, # 'ค' + 8: 2, # 'ง' + 26: 3, # 'จ' + 52: 3, # 'ฉ' + 34: 3, # 'ช' + 51: 2, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 1, # 'ณ' + 20: 3, # 'ด' + 19: 3, # 'ต' + 44: 1, # 'ถ' + 14: 3, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 3, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 3, # 'พ' + 54: 1, # 'ฟ' + 45: 3, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 3, # 'ว' + 42: 2, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 28: { # 'แ' + 5: 3, # 'ก' + 30: 2, # 'ข' + 24: 2, # 'ค' + 8: 1, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 3, # 'ต' + 44: 2, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 2, # 'ป' + 39: 3, # 'ผ' + 62: 0, # 'ฝ' + 31: 2, # 'พ' + 54: 2, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 41: { # 'โ' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 1, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 3, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 1, # 'ภ' + 9: 1, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 3, # 'ล' + 12: 0, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 0, # 'ห' + 4: 2, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 29: { # 'ใ' + 5: 2, # 'ก' + 30: 0, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 3, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 1, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 3, # 'ส' + 21: 3, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 33: { # 'ไ' + 5: 1, # 'ก' + 30: 2, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 3, # 'ด' + 19: 1, # 'ต' + 44: 0, # 'ถ' + 14: 3, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 1, # 'บ' + 25: 3, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 2, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 0, # 'ย' + 2: 3, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 2, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 50: { # 'ๆ' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 37: { # '็' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 2, # 'ง' + 26: 3, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 1, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 0, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 3, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 1, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 2, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 0, # 'ห' + 4: 1, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 1, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 6: { # '่' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 1, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 1, # 'ธ' + 3: 3, # 'น' + 17: 1, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 1, # 'ฝ' + 31: 1, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 3, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 2, # 'ล' + 12: 3, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 1, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 1, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 3, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 1, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 7: { # '้' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 2, # 'ค' + 8: 3, # 'ง' + 26: 2, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 1, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 1, # 'ด' + 19: 2, # 'ต' + 44: 1, # 'ถ' + 14: 2, # 'ท' + 48: 0, # 'ธ' + 3: 3, # 'น' + 17: 2, # 'บ' + 25: 2, # 'ป' + 39: 2, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 0, # 'ภ' + 9: 3, # 'ม' + 16: 2, # 'ย' + 2: 2, # 'ร' + 61: 0, # 'ฤ' + 15: 1, # 'ล' + 12: 3, # 'ว' + 42: 1, # 'ศ' + 46: 0, # 'ษ' + 18: 2, # 'ส' + 21: 2, # 'ห' + 4: 3, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 3, # 'า' + 36: 2, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 2, # 'ใ' + 33: 2, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 38: { # '์' + 5: 2, # 'ก' + 30: 1, # 'ข' + 24: 1, # 'ค' + 8: 0, # 'ง' + 26: 1, # 'จ' + 52: 0, # 'ฉ' + 34: 1, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 2, # 'ด' + 19: 1, # 'ต' + 44: 1, # 'ถ' + 14: 1, # 'ท' + 48: 0, # 'ธ' + 3: 1, # 'น' + 17: 1, # 'บ' + 25: 1, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 1, # 'พ' + 54: 1, # 'ฟ' + 45: 0, # 'ภ' + 9: 2, # 'ม' + 16: 0, # 'ย' + 2: 1, # 'ร' + 61: 1, # 'ฤ' + 15: 1, # 'ล' + 12: 1, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 1, # 'ส' + 21: 1, # 'ห' + 4: 2, # 'อ' + 63: 1, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 2, # 'เ' + 28: 2, # 'แ' + 41: 1, # 'โ' + 29: 1, # 'ใ' + 33: 1, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 0, # '๑' + 59: 0, # '๒' + 60: 0, # '๕' + }, + 56: { # '๑' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 2, # '๑' + 59: 1, # '๒' + 60: 1, # '๕' + }, + 59: { # '๒' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 1, # '๑' + 59: 1, # '๒' + 60: 3, # '๕' + }, + 60: { # '๕' + 5: 0, # 'ก' + 30: 0, # 'ข' + 24: 0, # 'ค' + 8: 0, # 'ง' + 26: 0, # 'จ' + 52: 0, # 'ฉ' + 34: 0, # 'ช' + 51: 0, # 'ซ' + 47: 0, # 'ญ' + 58: 0, # 'ฎ' + 57: 0, # 'ฏ' + 49: 0, # 'ฐ' + 53: 0, # 'ฑ' + 55: 0, # 'ฒ' + 43: 0, # 'ณ' + 20: 0, # 'ด' + 19: 0, # 'ต' + 44: 0, # 'ถ' + 14: 0, # 'ท' + 48: 0, # 'ธ' + 3: 0, # 'น' + 17: 0, # 'บ' + 25: 0, # 'ป' + 39: 0, # 'ผ' + 62: 0, # 'ฝ' + 31: 0, # 'พ' + 54: 0, # 'ฟ' + 45: 0, # 'ภ' + 9: 0, # 'ม' + 16: 0, # 'ย' + 2: 0, # 'ร' + 61: 0, # 'ฤ' + 15: 0, # 'ล' + 12: 0, # 'ว' + 42: 0, # 'ศ' + 46: 0, # 'ษ' + 18: 0, # 'ส' + 21: 0, # 'ห' + 4: 0, # 'อ' + 63: 0, # 'ฯ' + 22: 0, # 'ะ' + 10: 0, # 'ั' + 1: 0, # 'า' + 36: 0, # 'ำ' + 23: 0, # 'ิ' + 13: 0, # 'ี' + 40: 0, # 'ึ' + 27: 0, # 'ื' + 32: 0, # 'ุ' + 35: 0, # 'ู' + 11: 0, # 'เ' + 28: 0, # 'แ' + 41: 0, # 'โ' + 29: 0, # 'ใ' + 33: 0, # 'ไ' + 50: 0, # 'ๆ' + 37: 0, # '็' + 6: 0, # '่' + 7: 0, # '้' + 38: 0, # '์' + 56: 2, # '๑' + 59: 1, # '๒' + 60: 0, # '๕' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +TIS_620_THAI_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 254, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 254, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 253, # ' ' + 33: 253, # '!' + 34: 253, # '"' + 35: 253, # '#' + 36: 253, # '$' + 37: 253, # '%' + 38: 253, # '&' + 39: 253, # "'" + 40: 253, # '(' + 41: 253, # ')' + 42: 253, # '*' + 43: 253, # '+' + 44: 253, # ',' + 45: 253, # '-' + 46: 253, # '.' + 47: 253, # '/' + 48: 252, # '0' + 49: 252, # '1' + 50: 252, # '2' + 51: 252, # '3' + 52: 252, # '4' + 53: 252, # '5' + 54: 252, # '6' + 55: 252, # '7' + 56: 252, # '8' + 57: 252, # '9' + 58: 253, # ':' + 59: 253, # ';' + 60: 253, # '<' + 61: 253, # '=' + 62: 253, # '>' + 63: 253, # '?' + 64: 253, # '@' + 65: 182, # 'A' + 66: 106, # 'B' + 67: 107, # 'C' + 68: 100, # 'D' + 69: 183, # 'E' + 70: 184, # 'F' + 71: 185, # 'G' + 72: 101, # 'H' + 73: 94, # 'I' + 74: 186, # 'J' + 75: 187, # 'K' + 76: 108, # 'L' + 77: 109, # 'M' + 78: 110, # 'N' + 79: 111, # 'O' + 80: 188, # 'P' + 81: 189, # 'Q' + 82: 190, # 'R' + 83: 89, # 'S' + 84: 95, # 'T' + 85: 112, # 'U' + 86: 113, # 'V' + 87: 191, # 'W' + 88: 192, # 'X' + 89: 193, # 'Y' + 90: 194, # 'Z' + 91: 253, # '[' + 92: 253, # '\\' + 93: 253, # ']' + 94: 253, # '^' + 95: 253, # '_' + 96: 253, # '`' + 97: 64, # 'a' + 98: 72, # 'b' + 99: 73, # 'c' + 100: 114, # 'd' + 101: 74, # 'e' + 102: 115, # 'f' + 103: 116, # 'g' + 104: 102, # 'h' + 105: 81, # 'i' + 106: 201, # 'j' + 107: 117, # 'k' + 108: 90, # 'l' + 109: 103, # 'm' + 110: 78, # 'n' + 111: 82, # 'o' + 112: 96, # 'p' + 113: 202, # 'q' + 114: 91, # 'r' + 115: 79, # 's' + 116: 84, # 't' + 117: 104, # 'u' + 118: 105, # 'v' + 119: 97, # 'w' + 120: 98, # 'x' + 121: 92, # 'y' + 122: 203, # 'z' + 123: 253, # '{' + 124: 253, # '|' + 125: 253, # '}' + 126: 253, # '~' + 127: 253, # '\x7f' + 128: 209, # '\x80' + 129: 210, # '\x81' + 130: 211, # '\x82' + 131: 212, # '\x83' + 132: 213, # '\x84' + 133: 88, # '\x85' + 134: 214, # '\x86' + 135: 215, # '\x87' + 136: 216, # '\x88' + 137: 217, # '\x89' + 138: 218, # '\x8a' + 139: 219, # '\x8b' + 140: 220, # '\x8c' + 141: 118, # '\x8d' + 142: 221, # '\x8e' + 143: 222, # '\x8f' + 144: 223, # '\x90' + 145: 224, # '\x91' + 146: 99, # '\x92' + 147: 85, # '\x93' + 148: 83, # '\x94' + 149: 225, # '\x95' + 150: 226, # '\x96' + 151: 227, # '\x97' + 152: 228, # '\x98' + 153: 229, # '\x99' + 154: 230, # '\x9a' + 155: 231, # '\x9b' + 156: 232, # '\x9c' + 157: 233, # '\x9d' + 158: 234, # '\x9e' + 159: 235, # '\x9f' + 160: 236, # None + 161: 5, # 'ก' + 162: 30, # 'ข' + 163: 237, # 'ฃ' + 164: 24, # 'ค' + 165: 238, # 'ฅ' + 166: 75, # 'ฆ' + 167: 8, # 'ง' + 168: 26, # 'จ' + 169: 52, # 'ฉ' + 170: 34, # 'ช' + 171: 51, # 'ซ' + 172: 119, # 'ฌ' + 173: 47, # 'ญ' + 174: 58, # 'ฎ' + 175: 57, # 'ฏ' + 176: 49, # 'ฐ' + 177: 53, # 'ฑ' + 178: 55, # 'ฒ' + 179: 43, # 'ณ' + 180: 20, # 'ด' + 181: 19, # 'ต' + 182: 44, # 'ถ' + 183: 14, # 'ท' + 184: 48, # 'ธ' + 185: 3, # 'น' + 186: 17, # 'บ' + 187: 25, # 'ป' + 188: 39, # 'ผ' + 189: 62, # 'ฝ' + 190: 31, # 'พ' + 191: 54, # 'ฟ' + 192: 45, # 'ภ' + 193: 9, # 'ม' + 194: 16, # 'ย' + 195: 2, # 'ร' + 196: 61, # 'ฤ' + 197: 15, # 'ล' + 198: 239, # 'ฦ' + 199: 12, # 'ว' + 200: 42, # 'ศ' + 201: 46, # 'ษ' + 202: 18, # 'ส' + 203: 21, # 'ห' + 204: 76, # 'ฬ' + 205: 4, # 'อ' + 206: 66, # 'ฮ' + 207: 63, # 'ฯ' + 208: 22, # 'ะ' + 209: 10, # 'ั' + 210: 1, # 'า' + 211: 36, # 'ำ' + 212: 23, # 'ิ' + 213: 13, # 'ี' + 214: 40, # 'ึ' + 215: 27, # 'ื' + 216: 32, # 'ุ' + 217: 35, # 'ู' + 218: 86, # 'ฺ' + 219: 240, # None + 220: 241, # None + 221: 242, # None + 222: 243, # None + 223: 244, # '฿' + 224: 11, # 'เ' + 225: 28, # 'แ' + 226: 41, # 'โ' + 227: 29, # 'ใ' + 228: 33, # 'ไ' + 229: 245, # 'ๅ' + 230: 50, # 'ๆ' + 231: 37, # '็' + 232: 6, # '่' + 233: 7, # '้' + 234: 67, # '๊' + 235: 77, # '๋' + 236: 38, # '์' + 237: 93, # 'ํ' + 238: 246, # '๎' + 239: 247, # '๏' + 240: 68, # '๐' + 241: 56, # '๑' + 242: 59, # '๒' + 243: 65, # '๓' + 244: 69, # '๔' + 245: 60, # '๕' + 246: 70, # '๖' + 247: 80, # '๗' + 248: 71, # '๘' + 249: 87, # '๙' + 250: 248, # '๚' + 251: 249, # '๛' + 252: 250, # None + 253: 251, # None + 254: 252, # None + 255: 253, # None +} + +TIS_620_THAI_MODEL = SingleByteCharSetModel(charset_name='TIS-620', + language='Thai', + char_to_order_map=TIS_620_THAI_CHAR_TO_ORDER, + language_model=THAI_LANG_MODEL, + typical_positive_ratio=0.926386, + keep_ascii_letters=False, + alphabet='กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛') + diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langturkishmodel.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langturkishmodel.py new file mode 100644 index 00000000..43f4230a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/langturkishmodel.py @@ -0,0 +1,4383 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel + + +# 3: Positive +# 2: Likely +# 1: Unlikely +# 0: Negative + +TURKISH_LANG_MODEL = { + 23: { # 'A' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 1, # 'i' + 24: 0, # 'j' + 10: 2, # 'k' + 5: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 37: { # 'B' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 2, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 47: { # 'C' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 2, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 39: { # 'D' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 0, # 'ş' + }, + 29: { # 'E' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 1, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 52: { # 'F' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 1, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 1, # 'c' + 12: 1, # 'd' + 2: 0, # 'e' + 18: 1, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 2, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 2, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 2, # 'ş' + }, + 36: { # 'G' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 2, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 2, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 1, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 1, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 45: { # 'H' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 2, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 2, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 53: { # 'I' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 60: { # 'J' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 0, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 16: { # 'K' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 1, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 0, # 'u' + 32: 3, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 49: { # 'L' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 2, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 2, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 2, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 1, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 20: { # 'M' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 0, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 46: { # 'N' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 42: { # 'O' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 2, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 2, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 48: { # 'P' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 2, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 44: { # 'R' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 1, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 1, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, + 35: { # 'S' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 1, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 2, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 2, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 31: { # 'T' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 2, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 2, # 'r' + 8: 0, # 's' + 9: 2, # 't' + 14: 2, # 'u' + 32: 1, # 'v' + 57: 1, # 'w' + 58: 1, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 51: { # 'U' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 1, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 38: { # 'V' + 23: 1, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 2, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 1, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 62: { # 'W' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 43: { # 'Y' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 2, # 'N' + 42: 0, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 1, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 1, # 'Ü' + 59: 1, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 56: { # 'Z' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 2, # 'Z' + 1: 2, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 1, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 1: { # 'a' + 23: 3, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 2, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 1, # 'î' + 34: 1, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 21: { # 'b' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 3, # 'g' + 25: 1, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 1, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 2, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 28: { # 'c' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 2, # 'E' + 52: 0, # 'F' + 36: 2, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 2, # 'T' + 51: 2, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 3, # 'Y' + 56: 0, # 'Z' + 1: 1, # 'a' + 21: 1, # 'b' + 28: 2, # 'c' + 12: 2, # 'd' + 2: 1, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 1, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 1, # 'î' + 34: 2, # 'ö' + 17: 2, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 2, # 'ş' + }, + 12: { # 'd' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 2: { # 'e' + 23: 2, # 'A' + 37: 0, # 'B' + 47: 2, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 18: { # 'f' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 1, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 1, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 27: { # 'g' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 2, # 'r' + 8: 2, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 25: { # 'h' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 3: { # 'i' + 23: 2, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 1, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 3, # 'g' + 25: 1, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 1, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 1, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 1, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 24: { # 'j' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 2, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 2, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 10: { # 'k' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 2, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 3, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 5: { # 'l' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 1, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 1, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 2, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 13: { # 'm' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 2, # 'u' + 32: 2, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 4: { # 'n' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 3, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 3, # 'p' + 7: 2, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 15: { # 'o' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 2, # 'L' + 20: 0, # 'M' + 46: 2, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 2, # 'ğ' + 41: 2, # 'İ' + 6: 3, # 'ı' + 40: 2, # 'Ş' + 19: 2, # 'ş' + }, + 26: { # 'p' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 2, # 'r' + 8: 1, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 1, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 7: { # 'r' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 1, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 1, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 3, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 8: { # 's' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 2, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 9: { # 't' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 2, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 0, # 'w' + 58: 2, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 14: { # 'u' + 23: 3, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 2, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 3, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 2, # 'Z' + 1: 2, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 2, # 'e' + 18: 2, # 'f' + 27: 3, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 2, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 32: { # 'v' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 1, # 'k' + 5: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 1, # 'r' + 8: 2, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 57: { # 'w' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 1, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 1, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 1, # 's' + 9: 0, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 2, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 58: { # 'x' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 1, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 2, # 's' + 9: 1, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 11: { # 'y' + 23: 1, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 2, # 'r' + 8: 1, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 3, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 22: { # 'z' + 23: 2, # 'A' + 37: 2, # 'B' + 47: 1, # 'C' + 39: 2, # 'D' + 29: 3, # 'E' + 52: 1, # 'F' + 36: 2, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 2, # 'N' + 42: 2, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 3, # 'T' + 51: 2, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 1, # 'Z' + 1: 1, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 2, # 'd' + 2: 2, # 'e' + 18: 3, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 0, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 3, # 'y' + 22: 2, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 2, # 'Ü' + 59: 1, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 2, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 3, # 'ı' + 40: 1, # 'Ş' + 19: 2, # 'ş' + }, + 63: { # '·' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 1, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 54: { # 'Ç' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 1, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 0, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 3, # 'i' + 24: 0, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 2, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 2, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 0, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 2, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 50: { # 'Ö' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 2, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 2, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 1, # 'N' + 42: 2, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 1, # 'f' + 27: 1, # 'g' + 25: 1, # 'h' + 3: 2, # 'i' + 24: 0, # 'j' + 10: 2, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 2, # 'p' + 7: 3, # 'r' + 8: 1, # 's' + 9: 2, # 't' + 14: 0, # 'u' + 32: 1, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 2, # 'ü' + 30: 1, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 55: { # 'Ü' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 1, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 1, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 1, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 1, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 1, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 0, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 59: { # 'â' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 0, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 2, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 2, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 0, # 'ş' + }, + 33: { # 'ç' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 3, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 0, # 'Z' + 1: 0, # 'a' + 21: 3, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 2, # 'f' + 27: 1, # 'g' + 25: 3, # 'h' + 3: 3, # 'i' + 24: 0, # 'j' + 10: 3, # 'k' + 5: 0, # 'l' + 13: 0, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 2, # 's' + 9: 3, # 't' + 14: 0, # 'u' + 32: 2, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 1, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 61: { # 'î' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 0, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 0, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 2, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 1, # 'j' + 10: 0, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 1, # 'n' + 15: 0, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 1, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 1, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 1, # 'î' + 34: 0, # 'ö' + 17: 0, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 1, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 34: { # 'ö' + 23: 0, # 'A' + 37: 1, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 1, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 1, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 2, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 2, # 'h' + 3: 1, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 2, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 0, # 'r' + 8: 3, # 's' + 9: 1, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 1, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 2, # 'ğ' + 41: 1, # 'İ' + 6: 1, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 17: { # 'ü' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 0, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 1, # 'J' + 16: 1, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 0, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 0, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 0, # 'c' + 12: 1, # 'd' + 2: 3, # 'e' + 18: 1, # 'f' + 27: 2, # 'g' + 25: 0, # 'h' + 3: 1, # 'i' + 24: 1, # 'j' + 10: 2, # 'k' + 5: 3, # 'l' + 13: 2, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 2, # 'p' + 7: 2, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 3, # 'u' + 32: 1, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 2, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 30: { # 'ğ' + 23: 0, # 'A' + 37: 2, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 1, # 'M' + 46: 2, # 'N' + 42: 2, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 0, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 2, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 0, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 2, # 'e' + 18: 0, # 'f' + 27: 0, # 'g' + 25: 0, # 'h' + 3: 0, # 'i' + 24: 3, # 'j' + 10: 1, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 1, # 'o' + 26: 0, # 'p' + 7: 1, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 2, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 2, # 'İ' + 6: 2, # 'ı' + 40: 2, # 'Ş' + 19: 1, # 'ş' + }, + 41: { # 'İ' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 2, # 'G' + 45: 2, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 0, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 0, # 'Z' + 1: 1, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 2, # 'd' + 2: 1, # 'e' + 18: 0, # 'f' + 27: 3, # 'g' + 25: 2, # 'h' + 3: 2, # 'i' + 24: 2, # 'j' + 10: 2, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 15: 1, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 2, # 't' + 14: 0, # 'u' + 32: 0, # 'v' + 57: 1, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 1, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 1, # 'ö' + 17: 1, # 'ü' + 30: 2, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 1, # 'ş' + }, + 6: { # 'ı' + 23: 2, # 'A' + 37: 0, # 'B' + 47: 0, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 2, # 'J' + 16: 3, # 'K' + 49: 0, # 'L' + 20: 3, # 'M' + 46: 1, # 'N' + 42: 0, # 'O' + 48: 0, # 'P' + 44: 0, # 'R' + 35: 0, # 'S' + 31: 2, # 'T' + 51: 0, # 'U' + 38: 0, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 1, # 'Z' + 1: 3, # 'a' + 21: 2, # 'b' + 28: 1, # 'c' + 12: 3, # 'd' + 2: 3, # 'e' + 18: 3, # 'f' + 27: 3, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 3, # 'j' + 10: 3, # 'k' + 5: 3, # 'l' + 13: 3, # 'm' + 4: 3, # 'n' + 15: 0, # 'o' + 26: 3, # 'p' + 7: 3, # 'r' + 8: 3, # 's' + 9: 3, # 't' + 14: 3, # 'u' + 32: 3, # 'v' + 57: 1, # 'w' + 58: 1, # 'x' + 11: 3, # 'y' + 22: 0, # 'z' + 63: 1, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 2, # 'ç' + 61: 0, # 'î' + 34: 0, # 'ö' + 17: 3, # 'ü' + 30: 0, # 'ğ' + 41: 0, # 'İ' + 6: 3, # 'ı' + 40: 0, # 'Ş' + 19: 0, # 'ş' + }, + 40: { # 'Ş' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 1, # 'D' + 29: 1, # 'E' + 52: 0, # 'F' + 36: 1, # 'G' + 45: 2, # 'H' + 53: 1, # 'I' + 60: 0, # 'J' + 16: 0, # 'K' + 49: 0, # 'L' + 20: 2, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 2, # 'P' + 44: 2, # 'R' + 35: 1, # 'S' + 31: 1, # 'T' + 51: 0, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 2, # 'Y' + 56: 1, # 'Z' + 1: 0, # 'a' + 21: 2, # 'b' + 28: 0, # 'c' + 12: 2, # 'd' + 2: 0, # 'e' + 18: 3, # 'f' + 27: 0, # 'g' + 25: 2, # 'h' + 3: 3, # 'i' + 24: 2, # 'j' + 10: 1, # 'k' + 5: 0, # 'l' + 13: 1, # 'm' + 4: 3, # 'n' + 15: 2, # 'o' + 26: 0, # 'p' + 7: 3, # 'r' + 8: 2, # 's' + 9: 2, # 't' + 14: 1, # 'u' + 32: 3, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 2, # 'y' + 22: 0, # 'z' + 63: 0, # '·' + 54: 0, # 'Ç' + 50: 0, # 'Ö' + 55: 1, # 'Ü' + 59: 0, # 'â' + 33: 0, # 'ç' + 61: 0, # 'î' + 34: 2, # 'ö' + 17: 1, # 'ü' + 30: 2, # 'ğ' + 41: 0, # 'İ' + 6: 2, # 'ı' + 40: 1, # 'Ş' + 19: 2, # 'ş' + }, + 19: { # 'ş' + 23: 0, # 'A' + 37: 0, # 'B' + 47: 1, # 'C' + 39: 0, # 'D' + 29: 0, # 'E' + 52: 2, # 'F' + 36: 1, # 'G' + 45: 0, # 'H' + 53: 0, # 'I' + 60: 0, # 'J' + 16: 3, # 'K' + 49: 2, # 'L' + 20: 0, # 'M' + 46: 1, # 'N' + 42: 1, # 'O' + 48: 1, # 'P' + 44: 1, # 'R' + 35: 1, # 'S' + 31: 0, # 'T' + 51: 1, # 'U' + 38: 1, # 'V' + 62: 0, # 'W' + 43: 1, # 'Y' + 56: 0, # 'Z' + 1: 3, # 'a' + 21: 1, # 'b' + 28: 2, # 'c' + 12: 0, # 'd' + 2: 3, # 'e' + 18: 0, # 'f' + 27: 2, # 'g' + 25: 1, # 'h' + 3: 1, # 'i' + 24: 0, # 'j' + 10: 2, # 'k' + 5: 2, # 'l' + 13: 3, # 'm' + 4: 0, # 'n' + 15: 0, # 'o' + 26: 1, # 'p' + 7: 3, # 'r' + 8: 0, # 's' + 9: 0, # 't' + 14: 3, # 'u' + 32: 0, # 'v' + 57: 0, # 'w' + 58: 0, # 'x' + 11: 0, # 'y' + 22: 2, # 'z' + 63: 0, # '·' + 54: 1, # 'Ç' + 50: 2, # 'Ö' + 55: 0, # 'Ü' + 59: 0, # 'â' + 33: 1, # 'ç' + 61: 1, # 'î' + 34: 2, # 'ö' + 17: 0, # 'ü' + 30: 1, # 'ğ' + 41: 1, # 'İ' + 6: 1, # 'ı' + 40: 1, # 'Ş' + 19: 1, # 'ş' + }, +} + +# 255: Undefined characters that did not exist in training text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 +# 251: Control characters + +# Character Mapping Table(s): +ISO_8859_9_TURKISH_CHAR_TO_ORDER = { + 0: 255, # '\x00' + 1: 255, # '\x01' + 2: 255, # '\x02' + 3: 255, # '\x03' + 4: 255, # '\x04' + 5: 255, # '\x05' + 6: 255, # '\x06' + 7: 255, # '\x07' + 8: 255, # '\x08' + 9: 255, # '\t' + 10: 255, # '\n' + 11: 255, # '\x0b' + 12: 255, # '\x0c' + 13: 255, # '\r' + 14: 255, # '\x0e' + 15: 255, # '\x0f' + 16: 255, # '\x10' + 17: 255, # '\x11' + 18: 255, # '\x12' + 19: 255, # '\x13' + 20: 255, # '\x14' + 21: 255, # '\x15' + 22: 255, # '\x16' + 23: 255, # '\x17' + 24: 255, # '\x18' + 25: 255, # '\x19' + 26: 255, # '\x1a' + 27: 255, # '\x1b' + 28: 255, # '\x1c' + 29: 255, # '\x1d' + 30: 255, # '\x1e' + 31: 255, # '\x1f' + 32: 255, # ' ' + 33: 255, # '!' + 34: 255, # '"' + 35: 255, # '#' + 36: 255, # '$' + 37: 255, # '%' + 38: 255, # '&' + 39: 255, # "'" + 40: 255, # '(' + 41: 255, # ')' + 42: 255, # '*' + 43: 255, # '+' + 44: 255, # ',' + 45: 255, # '-' + 46: 255, # '.' + 47: 255, # '/' + 48: 255, # '0' + 49: 255, # '1' + 50: 255, # '2' + 51: 255, # '3' + 52: 255, # '4' + 53: 255, # '5' + 54: 255, # '6' + 55: 255, # '7' + 56: 255, # '8' + 57: 255, # '9' + 58: 255, # ':' + 59: 255, # ';' + 60: 255, # '<' + 61: 255, # '=' + 62: 255, # '>' + 63: 255, # '?' + 64: 255, # '@' + 65: 23, # 'A' + 66: 37, # 'B' + 67: 47, # 'C' + 68: 39, # 'D' + 69: 29, # 'E' + 70: 52, # 'F' + 71: 36, # 'G' + 72: 45, # 'H' + 73: 53, # 'I' + 74: 60, # 'J' + 75: 16, # 'K' + 76: 49, # 'L' + 77: 20, # 'M' + 78: 46, # 'N' + 79: 42, # 'O' + 80: 48, # 'P' + 81: 69, # 'Q' + 82: 44, # 'R' + 83: 35, # 'S' + 84: 31, # 'T' + 85: 51, # 'U' + 86: 38, # 'V' + 87: 62, # 'W' + 88: 65, # 'X' + 89: 43, # 'Y' + 90: 56, # 'Z' + 91: 255, # '[' + 92: 255, # '\\' + 93: 255, # ']' + 94: 255, # '^' + 95: 255, # '_' + 96: 255, # '`' + 97: 1, # 'a' + 98: 21, # 'b' + 99: 28, # 'c' + 100: 12, # 'd' + 101: 2, # 'e' + 102: 18, # 'f' + 103: 27, # 'g' + 104: 25, # 'h' + 105: 3, # 'i' + 106: 24, # 'j' + 107: 10, # 'k' + 108: 5, # 'l' + 109: 13, # 'm' + 110: 4, # 'n' + 111: 15, # 'o' + 112: 26, # 'p' + 113: 64, # 'q' + 114: 7, # 'r' + 115: 8, # 's' + 116: 9, # 't' + 117: 14, # 'u' + 118: 32, # 'v' + 119: 57, # 'w' + 120: 58, # 'x' + 121: 11, # 'y' + 122: 22, # 'z' + 123: 255, # '{' + 124: 255, # '|' + 125: 255, # '}' + 126: 255, # '~' + 127: 255, # '\x7f' + 128: 180, # '\x80' + 129: 179, # '\x81' + 130: 178, # '\x82' + 131: 177, # '\x83' + 132: 176, # '\x84' + 133: 175, # '\x85' + 134: 174, # '\x86' + 135: 173, # '\x87' + 136: 172, # '\x88' + 137: 171, # '\x89' + 138: 170, # '\x8a' + 139: 169, # '\x8b' + 140: 168, # '\x8c' + 141: 167, # '\x8d' + 142: 166, # '\x8e' + 143: 165, # '\x8f' + 144: 164, # '\x90' + 145: 163, # '\x91' + 146: 162, # '\x92' + 147: 161, # '\x93' + 148: 160, # '\x94' + 149: 159, # '\x95' + 150: 101, # '\x96' + 151: 158, # '\x97' + 152: 157, # '\x98' + 153: 156, # '\x99' + 154: 155, # '\x9a' + 155: 154, # '\x9b' + 156: 153, # '\x9c' + 157: 152, # '\x9d' + 158: 151, # '\x9e' + 159: 106, # '\x9f' + 160: 150, # '\xa0' + 161: 149, # '¡' + 162: 148, # '¢' + 163: 147, # '£' + 164: 146, # '¤' + 165: 145, # '¥' + 166: 144, # '¦' + 167: 100, # '§' + 168: 143, # '¨' + 169: 142, # '©' + 170: 141, # 'ª' + 171: 140, # '«' + 172: 139, # '¬' + 173: 138, # '\xad' + 174: 137, # '®' + 175: 136, # '¯' + 176: 94, # '°' + 177: 80, # '±' + 178: 93, # '²' + 179: 135, # '³' + 180: 105, # '´' + 181: 134, # 'µ' + 182: 133, # '¶' + 183: 63, # '·' + 184: 132, # '¸' + 185: 131, # '¹' + 186: 130, # 'º' + 187: 129, # '»' + 188: 128, # '¼' + 189: 127, # '½' + 190: 126, # '¾' + 191: 125, # '¿' + 192: 124, # 'À' + 193: 104, # 'Á' + 194: 73, # 'Â' + 195: 99, # 'Ã' + 196: 79, # 'Ä' + 197: 85, # 'Å' + 198: 123, # 'Æ' + 199: 54, # 'Ç' + 200: 122, # 'È' + 201: 98, # 'É' + 202: 92, # 'Ê' + 203: 121, # 'Ë' + 204: 120, # 'Ì' + 205: 91, # 'Í' + 206: 103, # 'Î' + 207: 119, # 'Ï' + 208: 68, # 'Ğ' + 209: 118, # 'Ñ' + 210: 117, # 'Ò' + 211: 97, # 'Ó' + 212: 116, # 'Ô' + 213: 115, # 'Õ' + 214: 50, # 'Ö' + 215: 90, # '×' + 216: 114, # 'Ø' + 217: 113, # 'Ù' + 218: 112, # 'Ú' + 219: 111, # 'Û' + 220: 55, # 'Ü' + 221: 41, # 'İ' + 222: 40, # 'Ş' + 223: 86, # 'ß' + 224: 89, # 'à' + 225: 70, # 'á' + 226: 59, # 'â' + 227: 78, # 'ã' + 228: 71, # 'ä' + 229: 82, # 'å' + 230: 88, # 'æ' + 231: 33, # 'ç' + 232: 77, # 'è' + 233: 66, # 'é' + 234: 84, # 'ê' + 235: 83, # 'ë' + 236: 110, # 'ì' + 237: 75, # 'í' + 238: 61, # 'î' + 239: 96, # 'ï' + 240: 30, # 'ğ' + 241: 67, # 'ñ' + 242: 109, # 'ò' + 243: 74, # 'ó' + 244: 87, # 'ô' + 245: 102, # 'õ' + 246: 34, # 'ö' + 247: 95, # '÷' + 248: 81, # 'ø' + 249: 108, # 'ù' + 250: 76, # 'ú' + 251: 72, # 'û' + 252: 17, # 'ü' + 253: 6, # 'ı' + 254: 19, # 'ş' + 255: 107, # 'ÿ' +} + +ISO_8859_9_TURKISH_MODEL = SingleByteCharSetModel(charset_name='ISO-8859-9', + language='Turkish', + char_to_order_map=ISO_8859_9_TURKISH_CHAR_TO_ORDER, + language_model=TURKISH_LANG_MODEL, + typical_positive_ratio=0.97029, + keep_ascii_letters=True, + alphabet='ABCDEFGHIJKLMNOPRSTUVYZabcdefghijklmnoprstuvyzÂÇÎÖÛÜâçîöûüĞğİıŞş') + diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/latin1prober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/latin1prober.py new file mode 100644 index 00000000..7d1e8c20 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/latin1prober.py @@ -0,0 +1,145 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .enums import ProbingState + +FREQ_CAT_NUM = 4 + +UDF = 0 # undefined +OTH = 1 # other +ASC = 2 # ascii capital letter +ASS = 3 # ascii small letter +ACV = 4 # accent capital vowel +ACO = 5 # accent capital other +ASV = 6 # accent small vowel +ASO = 7 # accent small other +CLASS_NUM = 8 # total classes + +Latin1_CharToClass = ( + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 00 - 07 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 08 - 0F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 10 - 17 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 18 - 1F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 20 - 27 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 28 - 2F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 30 - 37 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 38 - 3F + OTH, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 40 - 47 + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 48 - 4F + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 50 - 57 + ASC, ASC, ASC, OTH, OTH, OTH, OTH, OTH, # 58 - 5F + OTH, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 60 - 67 + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 68 - 6F + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 70 - 77 + ASS, ASS, ASS, OTH, OTH, OTH, OTH, OTH, # 78 - 7F + OTH, UDF, OTH, ASO, OTH, OTH, OTH, OTH, # 80 - 87 + OTH, OTH, ACO, OTH, ACO, UDF, ACO, UDF, # 88 - 8F + UDF, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 90 - 97 + OTH, OTH, ASO, OTH, ASO, UDF, ASO, ACO, # 98 - 9F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A0 - A7 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A8 - AF + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B0 - B7 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B8 - BF + ACV, ACV, ACV, ACV, ACV, ACV, ACO, ACO, # C0 - C7 + ACV, ACV, ACV, ACV, ACV, ACV, ACV, ACV, # C8 - CF + ACO, ACO, ACV, ACV, ACV, ACV, ACV, OTH, # D0 - D7 + ACV, ACV, ACV, ACV, ACV, ACO, ACO, ACO, # D8 - DF + ASV, ASV, ASV, ASV, ASV, ASV, ASO, ASO, # E0 - E7 + ASV, ASV, ASV, ASV, ASV, ASV, ASV, ASV, # E8 - EF + ASO, ASO, ASV, ASV, ASV, ASV, ASV, OTH, # F0 - F7 + ASV, ASV, ASV, ASV, ASV, ASO, ASO, ASO, # F8 - FF +) + +# 0 : illegal +# 1 : very unlikely +# 2 : normal +# 3 : very likely +Latin1ClassModel = ( +# UDF OTH ASC ASS ACV ACO ASV ASO + 0, 0, 0, 0, 0, 0, 0, 0, # UDF + 0, 3, 3, 3, 3, 3, 3, 3, # OTH + 0, 3, 3, 3, 3, 3, 3, 3, # ASC + 0, 3, 3, 3, 1, 1, 3, 3, # ASS + 0, 3, 3, 3, 1, 2, 1, 2, # ACV + 0, 3, 3, 3, 3, 3, 3, 3, # ACO + 0, 3, 1, 3, 1, 1, 1, 3, # ASV + 0, 3, 1, 3, 1, 1, 3, 3, # ASO +) + + +class Latin1Prober(CharSetProber): + def __init__(self): + super(Latin1Prober, self).__init__() + self._last_char_class = None + self._freq_counter = None + self.reset() + + def reset(self): + self._last_char_class = OTH + self._freq_counter = [0] * FREQ_CAT_NUM + CharSetProber.reset(self) + + @property + def charset_name(self): + return "ISO-8859-1" + + @property + def language(self): + return "" + + def feed(self, byte_str): + byte_str = self.filter_with_english_letters(byte_str) + for c in byte_str: + char_class = Latin1_CharToClass[c] + freq = Latin1ClassModel[(self._last_char_class * CLASS_NUM) + + char_class] + if freq == 0: + self._state = ProbingState.NOT_ME + break + self._freq_counter[freq] += 1 + self._last_char_class = char_class + + return self.state + + def get_confidence(self): + if self.state == ProbingState.NOT_ME: + return 0.01 + + total = sum(self._freq_counter) + if total < 0.01: + confidence = 0.0 + else: + confidence = ((self._freq_counter[3] - self._freq_counter[1] * 20.0) + / total) + if confidence < 0.0: + confidence = 0.0 + # lower the confidence of latin1 so that other more accurate + # detector can take priority. + confidence = confidence * 0.73 + return confidence diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcharsetprober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcharsetprober.py new file mode 100644 index 00000000..6256ecfd --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcharsetprober.py @@ -0,0 +1,91 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Proofpoint, Inc. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .enums import ProbingState, MachineState + + +class MultiByteCharSetProber(CharSetProber): + """ + MultiByteCharSetProber + """ + + def __init__(self, lang_filter=None): + super(MultiByteCharSetProber, self).__init__(lang_filter=lang_filter) + self.distribution_analyzer = None + self.coding_sm = None + self._last_char = [0, 0] + + def reset(self): + super(MultiByteCharSetProber, self).reset() + if self.coding_sm: + self.coding_sm.reset() + if self.distribution_analyzer: + self.distribution_analyzer.reset() + self._last_char = [0, 0] + + @property + def charset_name(self): + raise NotImplementedError + + @property + def language(self): + raise NotImplementedError + + def feed(self, byte_str): + for i in range(len(byte_str)): + coding_state = self.coding_sm.next_state(byte_str[i]) + if coding_state == MachineState.ERROR: + self.logger.debug('%s %s prober hit error at byte %s', + self.charset_name, self.language, i) + self._state = ProbingState.NOT_ME + break + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte_str[0] + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.distribution_analyzer.feed(byte_str[i - 1:i + 1], + char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if (self.distribution_analyzer.got_enough_data() and + (self.get_confidence() > self.SHORTCUT_THRESHOLD)): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self): + return self.distribution_analyzer.get_confidence() diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcsgroupprober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcsgroupprober.py new file mode 100644 index 00000000..530abe75 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcsgroupprober.py @@ -0,0 +1,54 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Proofpoint, Inc. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetgroupprober import CharSetGroupProber +from .utf8prober import UTF8Prober +from .sjisprober import SJISProber +from .eucjpprober import EUCJPProber +from .gb2312prober import GB2312Prober +from .euckrprober import EUCKRProber +from .cp949prober import CP949Prober +from .big5prober import Big5Prober +from .euctwprober import EUCTWProber + + +class MBCSGroupProber(CharSetGroupProber): + def __init__(self, lang_filter=None): + super(MBCSGroupProber, self).__init__(lang_filter=lang_filter) + self.probers = [ + UTF8Prober(), + SJISProber(), + EUCJPProber(), + GB2312Prober(), + EUCKRProber(), + CP949Prober(), + Big5Prober(), + EUCTWProber() + ] + self.reset() diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcssm.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcssm.py new file mode 100644 index 00000000..8360d0f2 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcssm.py @@ -0,0 +1,572 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .enums import MachineState + +# BIG5 + +BIG5_CLS = ( + 1,1,1,1,1,1,1,1, # 00 - 07 #allow 0x00 as legal value + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,1, # 78 - 7f + 4,4,4,4,4,4,4,4, # 80 - 87 + 4,4,4,4,4,4,4,4, # 88 - 8f + 4,4,4,4,4,4,4,4, # 90 - 97 + 4,4,4,4,4,4,4,4, # 98 - 9f + 4,3,3,3,3,3,3,3, # a0 - a7 + 3,3,3,3,3,3,3,3, # a8 - af + 3,3,3,3,3,3,3,3, # b0 - b7 + 3,3,3,3,3,3,3,3, # b8 - bf + 3,3,3,3,3,3,3,3, # c0 - c7 + 3,3,3,3,3,3,3,3, # c8 - cf + 3,3,3,3,3,3,3,3, # d0 - d7 + 3,3,3,3,3,3,3,3, # d8 - df + 3,3,3,3,3,3,3,3, # e0 - e7 + 3,3,3,3,3,3,3,3, # e8 - ef + 3,3,3,3,3,3,3,3, # f0 - f7 + 3,3,3,3,3,3,3,0 # f8 - ff +) + +BIG5_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,#08-0f + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START#10-17 +) + +BIG5_CHAR_LEN_TABLE = (0, 1, 1, 2, 0) + +BIG5_SM_MODEL = {'class_table': BIG5_CLS, + 'class_factor': 5, + 'state_table': BIG5_ST, + 'char_len_table': BIG5_CHAR_LEN_TABLE, + 'name': 'Big5'} + +# CP949 + +CP949_CLS = ( + 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,0,0, # 00 - 0f + 1,1,1,1,1,1,1,1, 1,1,1,0,1,1,1,1, # 10 - 1f + 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, # 20 - 2f + 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, # 30 - 3f + 1,4,4,4,4,4,4,4, 4,4,4,4,4,4,4,4, # 40 - 4f + 4,4,5,5,5,5,5,5, 5,5,5,1,1,1,1,1, # 50 - 5f + 1,5,5,5,5,5,5,5, 5,5,5,5,5,5,5,5, # 60 - 6f + 5,5,5,5,5,5,5,5, 5,5,5,1,1,1,1,1, # 70 - 7f + 0,6,6,6,6,6,6,6, 6,6,6,6,6,6,6,6, # 80 - 8f + 6,6,6,6,6,6,6,6, 6,6,6,6,6,6,6,6, # 90 - 9f + 6,7,7,7,7,7,7,7, 7,7,7,7,7,8,8,8, # a0 - af + 7,7,7,7,7,7,7,7, 7,7,7,7,7,7,7,7, # b0 - bf + 7,7,7,7,7,7,9,2, 2,3,2,2,2,2,2,2, # c0 - cf + 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, # d0 - df + 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, # e0 - ef + 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,0, # f0 - ff +) + +CP949_ST = ( +#cls= 0 1 2 3 4 5 6 7 8 9 # previous state = + MachineState.ERROR,MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START, 4, 5,MachineState.ERROR, 6, # MachineState.START + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, # MachineState.ERROR + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME, # MachineState.ITS_ME + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START, # 3 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, # 4 + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, # 5 + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START, # 6 +) + +CP949_CHAR_LEN_TABLE = (0, 1, 2, 0, 1, 1, 2, 2, 0, 2) + +CP949_SM_MODEL = {'class_table': CP949_CLS, + 'class_factor': 10, + 'state_table': CP949_ST, + 'char_len_table': CP949_CHAR_LEN_TABLE, + 'name': 'CP949'} + +# EUC-JP + +EUCJP_CLS = ( + 4,4,4,4,4,4,4,4, # 00 - 07 + 4,4,4,4,4,4,5,5, # 08 - 0f + 4,4,4,4,4,4,4,4, # 10 - 17 + 4,4,4,5,4,4,4,4, # 18 - 1f + 4,4,4,4,4,4,4,4, # 20 - 27 + 4,4,4,4,4,4,4,4, # 28 - 2f + 4,4,4,4,4,4,4,4, # 30 - 37 + 4,4,4,4,4,4,4,4, # 38 - 3f + 4,4,4,4,4,4,4,4, # 40 - 47 + 4,4,4,4,4,4,4,4, # 48 - 4f + 4,4,4,4,4,4,4,4, # 50 - 57 + 4,4,4,4,4,4,4,4, # 58 - 5f + 4,4,4,4,4,4,4,4, # 60 - 67 + 4,4,4,4,4,4,4,4, # 68 - 6f + 4,4,4,4,4,4,4,4, # 70 - 77 + 4,4,4,4,4,4,4,4, # 78 - 7f + 5,5,5,5,5,5,5,5, # 80 - 87 + 5,5,5,5,5,5,1,3, # 88 - 8f + 5,5,5,5,5,5,5,5, # 90 - 97 + 5,5,5,5,5,5,5,5, # 98 - 9f + 5,2,2,2,2,2,2,2, # a0 - a7 + 2,2,2,2,2,2,2,2, # a8 - af + 2,2,2,2,2,2,2,2, # b0 - b7 + 2,2,2,2,2,2,2,2, # b8 - bf + 2,2,2,2,2,2,2,2, # c0 - c7 + 2,2,2,2,2,2,2,2, # c8 - cf + 2,2,2,2,2,2,2,2, # d0 - d7 + 2,2,2,2,2,2,2,2, # d8 - df + 0,0,0,0,0,0,0,0, # e0 - e7 + 0,0,0,0,0,0,0,0, # e8 - ef + 0,0,0,0,0,0,0,0, # f0 - f7 + 0,0,0,0,0,0,0,5 # f8 - ff +) + +EUCJP_ST = ( + 3, 4, 3, 5,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.START,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#10-17 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 3,MachineState.ERROR,#18-1f + 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START#20-27 +) + +EUCJP_CHAR_LEN_TABLE = (2, 2, 2, 3, 1, 0) + +EUCJP_SM_MODEL = {'class_table': EUCJP_CLS, + 'class_factor': 6, + 'state_table': EUCJP_ST, + 'char_len_table': EUCJP_CHAR_LEN_TABLE, + 'name': 'EUC-JP'} + +# EUC-KR + +EUCKR_CLS = ( + 1,1,1,1,1,1,1,1, # 00 - 07 + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 1,1,1,1,1,1,1,1, # 40 - 47 + 1,1,1,1,1,1,1,1, # 48 - 4f + 1,1,1,1,1,1,1,1, # 50 - 57 + 1,1,1,1,1,1,1,1, # 58 - 5f + 1,1,1,1,1,1,1,1, # 60 - 67 + 1,1,1,1,1,1,1,1, # 68 - 6f + 1,1,1,1,1,1,1,1, # 70 - 77 + 1,1,1,1,1,1,1,1, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,0,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,2,2,2,2,2,2,2, # a0 - a7 + 2,2,2,2,2,3,3,3, # a8 - af + 2,2,2,2,2,2,2,2, # b0 - b7 + 2,2,2,2,2,2,2,2, # b8 - bf + 2,2,2,2,2,2,2,2, # c0 - c7 + 2,3,2,2,2,2,2,2, # c8 - cf + 2,2,2,2,2,2,2,2, # d0 - d7 + 2,2,2,2,2,2,2,2, # d8 - df + 2,2,2,2,2,2,2,2, # e0 - e7 + 2,2,2,2,2,2,2,2, # e8 - ef + 2,2,2,2,2,2,2,2, # f0 - f7 + 2,2,2,2,2,2,2,0 # f8 - ff +) + +EUCKR_ST = ( + MachineState.ERROR,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START #08-0f +) + +EUCKR_CHAR_LEN_TABLE = (0, 1, 2, 0) + +EUCKR_SM_MODEL = {'class_table': EUCKR_CLS, + 'class_factor': 4, + 'state_table': EUCKR_ST, + 'char_len_table': EUCKR_CHAR_LEN_TABLE, + 'name': 'EUC-KR'} + +# EUC-TW + +EUCTW_CLS = ( + 2,2,2,2,2,2,2,2, # 00 - 07 + 2,2,2,2,2,2,0,0, # 08 - 0f + 2,2,2,2,2,2,2,2, # 10 - 17 + 2,2,2,0,2,2,2,2, # 18 - 1f + 2,2,2,2,2,2,2,2, # 20 - 27 + 2,2,2,2,2,2,2,2, # 28 - 2f + 2,2,2,2,2,2,2,2, # 30 - 37 + 2,2,2,2,2,2,2,2, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,2, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,6,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,3,4,4,4,4,4,4, # a0 - a7 + 5,5,1,1,1,1,1,1, # a8 - af + 1,1,1,1,1,1,1,1, # b0 - b7 + 1,1,1,1,1,1,1,1, # b8 - bf + 1,1,3,1,3,3,3,3, # c0 - c7 + 3,3,3,3,3,3,3,3, # c8 - cf + 3,3,3,3,3,3,3,3, # d0 - d7 + 3,3,3,3,3,3,3,3, # d8 - df + 3,3,3,3,3,3,3,3, # e0 - e7 + 3,3,3,3,3,3,3,3, # e8 - ef + 3,3,3,3,3,3,3,3, # f0 - f7 + 3,3,3,3,3,3,3,0 # f8 - ff +) + +EUCTW_ST = ( + MachineState.ERROR,MachineState.ERROR,MachineState.START, 3, 3, 3, 4,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.START,MachineState.ERROR,#10-17 + MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.START,MachineState.START,#20-27 + MachineState.START,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START #28-2f +) + +EUCTW_CHAR_LEN_TABLE = (0, 0, 1, 2, 2, 2, 3) + +EUCTW_SM_MODEL = {'class_table': EUCTW_CLS, + 'class_factor': 7, + 'state_table': EUCTW_ST, + 'char_len_table': EUCTW_CHAR_LEN_TABLE, + 'name': 'x-euc-tw'} + +# GB2312 + +GB2312_CLS = ( + 1,1,1,1,1,1,1,1, # 00 - 07 + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 3,3,3,3,3,3,3,3, # 30 - 37 + 3,3,1,1,1,1,1,1, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,4, # 78 - 7f + 5,6,6,6,6,6,6,6, # 80 - 87 + 6,6,6,6,6,6,6,6, # 88 - 8f + 6,6,6,6,6,6,6,6, # 90 - 97 + 6,6,6,6,6,6,6,6, # 98 - 9f + 6,6,6,6,6,6,6,6, # a0 - a7 + 6,6,6,6,6,6,6,6, # a8 - af + 6,6,6,6,6,6,6,6, # b0 - b7 + 6,6,6,6,6,6,6,6, # b8 - bf + 6,6,6,6,6,6,6,6, # c0 - c7 + 6,6,6,6,6,6,6,6, # c8 - cf + 6,6,6,6,6,6,6,6, # d0 - d7 + 6,6,6,6,6,6,6,6, # d8 - df + 6,6,6,6,6,6,6,6, # e0 - e7 + 6,6,6,6,6,6,6,6, # e8 - ef + 6,6,6,6,6,6,6,6, # f0 - f7 + 6,6,6,6,6,6,6,0 # f8 - ff +) + +GB2312_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, 3,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,#10-17 + 4,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + MachineState.ERROR,MachineState.ERROR, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,#20-27 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START #28-2f +) + +# To be accurate, the length of class 6 can be either 2 or 4. +# But it is not necessary to discriminate between the two since +# it is used for frequency analysis only, and we are validating +# each code range there as well. So it is safe to set it to be +# 2 here. +GB2312_CHAR_LEN_TABLE = (0, 1, 1, 1, 1, 1, 2) + +GB2312_SM_MODEL = {'class_table': GB2312_CLS, + 'class_factor': 7, + 'state_table': GB2312_ST, + 'char_len_table': GB2312_CHAR_LEN_TABLE, + 'name': 'GB2312'} + +# Shift_JIS + +SJIS_CLS = ( + 1,1,1,1,1,1,1,1, # 00 - 07 + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,1, # 78 - 7f + 3,3,3,3,3,2,2,3, # 80 - 87 + 3,3,3,3,3,3,3,3, # 88 - 8f + 3,3,3,3,3,3,3,3, # 90 - 97 + 3,3,3,3,3,3,3,3, # 98 - 9f + #0xa0 is illegal in sjis encoding, but some pages does + #contain such byte. We need to be more error forgiven. + 2,2,2,2,2,2,2,2, # a0 - a7 + 2,2,2,2,2,2,2,2, # a8 - af + 2,2,2,2,2,2,2,2, # b0 - b7 + 2,2,2,2,2,2,2,2, # b8 - bf + 2,2,2,2,2,2,2,2, # c0 - c7 + 2,2,2,2,2,2,2,2, # c8 - cf + 2,2,2,2,2,2,2,2, # d0 - d7 + 2,2,2,2,2,2,2,2, # d8 - df + 3,3,3,3,3,3,3,3, # e0 - e7 + 3,3,3,3,3,4,4,4, # e8 - ef + 3,3,3,3,3,3,3,3, # f0 - f7 + 3,3,3,3,3,0,0,0) # f8 - ff + + +SJIS_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START #10-17 +) + +SJIS_CHAR_LEN_TABLE = (0, 1, 1, 2, 0, 0) + +SJIS_SM_MODEL = {'class_table': SJIS_CLS, + 'class_factor': 6, + 'state_table': SJIS_ST, + 'char_len_table': SJIS_CHAR_LEN_TABLE, + 'name': 'Shift_JIS'} + +# UCS2-BE + +UCS2BE_CLS = ( + 0,0,0,0,0,0,0,0, # 00 - 07 + 0,0,1,0,0,2,0,0, # 08 - 0f + 0,0,0,0,0,0,0,0, # 10 - 17 + 0,0,0,3,0,0,0,0, # 18 - 1f + 0,0,0,0,0,0,0,0, # 20 - 27 + 0,3,3,3,3,3,0,0, # 28 - 2f + 0,0,0,0,0,0,0,0, # 30 - 37 + 0,0,0,0,0,0,0,0, # 38 - 3f + 0,0,0,0,0,0,0,0, # 40 - 47 + 0,0,0,0,0,0,0,0, # 48 - 4f + 0,0,0,0,0,0,0,0, # 50 - 57 + 0,0,0,0,0,0,0,0, # 58 - 5f + 0,0,0,0,0,0,0,0, # 60 - 67 + 0,0,0,0,0,0,0,0, # 68 - 6f + 0,0,0,0,0,0,0,0, # 70 - 77 + 0,0,0,0,0,0,0,0, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,0,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,0,0,0,0,0,0,0, # a0 - a7 + 0,0,0,0,0,0,0,0, # a8 - af + 0,0,0,0,0,0,0,0, # b0 - b7 + 0,0,0,0,0,0,0,0, # b8 - bf + 0,0,0,0,0,0,0,0, # c0 - c7 + 0,0,0,0,0,0,0,0, # c8 - cf + 0,0,0,0,0,0,0,0, # d0 - d7 + 0,0,0,0,0,0,0,0, # d8 - df + 0,0,0,0,0,0,0,0, # e0 - e7 + 0,0,0,0,0,0,0,0, # e8 - ef + 0,0,0,0,0,0,0,0, # f0 - f7 + 0,0,0,0,0,0,4,5 # f8 - ff +) + +UCS2BE_ST = ( + 5, 7, 7,MachineState.ERROR, 4, 3,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME, 6, 6, 6, 6,MachineState.ERROR,MachineState.ERROR,#10-17 + 6, 6, 6, 6, 6,MachineState.ITS_ME, 6, 6,#18-1f + 6, 6, 6, 6, 5, 7, 7,MachineState.ERROR,#20-27 + 5, 8, 6, 6,MachineState.ERROR, 6, 6, 6,#28-2f + 6, 6, 6, 6,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START #30-37 +) + +UCS2BE_CHAR_LEN_TABLE = (2, 2, 2, 0, 2, 2) + +UCS2BE_SM_MODEL = {'class_table': UCS2BE_CLS, + 'class_factor': 6, + 'state_table': UCS2BE_ST, + 'char_len_table': UCS2BE_CHAR_LEN_TABLE, + 'name': 'UTF-16BE'} + +# UCS2-LE + +UCS2LE_CLS = ( + 0,0,0,0,0,0,0,0, # 00 - 07 + 0,0,1,0,0,2,0,0, # 08 - 0f + 0,0,0,0,0,0,0,0, # 10 - 17 + 0,0,0,3,0,0,0,0, # 18 - 1f + 0,0,0,0,0,0,0,0, # 20 - 27 + 0,3,3,3,3,3,0,0, # 28 - 2f + 0,0,0,0,0,0,0,0, # 30 - 37 + 0,0,0,0,0,0,0,0, # 38 - 3f + 0,0,0,0,0,0,0,0, # 40 - 47 + 0,0,0,0,0,0,0,0, # 48 - 4f + 0,0,0,0,0,0,0,0, # 50 - 57 + 0,0,0,0,0,0,0,0, # 58 - 5f + 0,0,0,0,0,0,0,0, # 60 - 67 + 0,0,0,0,0,0,0,0, # 68 - 6f + 0,0,0,0,0,0,0,0, # 70 - 77 + 0,0,0,0,0,0,0,0, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,0,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,0,0,0,0,0,0,0, # a0 - a7 + 0,0,0,0,0,0,0,0, # a8 - af + 0,0,0,0,0,0,0,0, # b0 - b7 + 0,0,0,0,0,0,0,0, # b8 - bf + 0,0,0,0,0,0,0,0, # c0 - c7 + 0,0,0,0,0,0,0,0, # c8 - cf + 0,0,0,0,0,0,0,0, # d0 - d7 + 0,0,0,0,0,0,0,0, # d8 - df + 0,0,0,0,0,0,0,0, # e0 - e7 + 0,0,0,0,0,0,0,0, # e8 - ef + 0,0,0,0,0,0,0,0, # f0 - f7 + 0,0,0,0,0,0,4,5 # f8 - ff +) + +UCS2LE_ST = ( + 6, 6, 7, 6, 4, 3,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME, 5, 5, 5,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,#10-17 + 5, 5, 5,MachineState.ERROR, 5,MachineState.ERROR, 6, 6,#18-1f + 7, 6, 8, 8, 5, 5, 5,MachineState.ERROR,#20-27 + 5, 5, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5, 5,#28-2f + 5, 5, 5,MachineState.ERROR, 5,MachineState.ERROR,MachineState.START,MachineState.START #30-37 +) + +UCS2LE_CHAR_LEN_TABLE = (2, 2, 2, 2, 2, 2) + +UCS2LE_SM_MODEL = {'class_table': UCS2LE_CLS, + 'class_factor': 6, + 'state_table': UCS2LE_ST, + 'char_len_table': UCS2LE_CHAR_LEN_TABLE, + 'name': 'UTF-16LE'} + +# UTF-8 + +UTF8_CLS = ( + 1,1,1,1,1,1,1,1, # 00 - 07 #allow 0x00 as a legal value + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 1,1,1,1,1,1,1,1, # 40 - 47 + 1,1,1,1,1,1,1,1, # 48 - 4f + 1,1,1,1,1,1,1,1, # 50 - 57 + 1,1,1,1,1,1,1,1, # 58 - 5f + 1,1,1,1,1,1,1,1, # 60 - 67 + 1,1,1,1,1,1,1,1, # 68 - 6f + 1,1,1,1,1,1,1,1, # 70 - 77 + 1,1,1,1,1,1,1,1, # 78 - 7f + 2,2,2,2,3,3,3,3, # 80 - 87 + 4,4,4,4,4,4,4,4, # 88 - 8f + 4,4,4,4,4,4,4,4, # 90 - 97 + 4,4,4,4,4,4,4,4, # 98 - 9f + 5,5,5,5,5,5,5,5, # a0 - a7 + 5,5,5,5,5,5,5,5, # a8 - af + 5,5,5,5,5,5,5,5, # b0 - b7 + 5,5,5,5,5,5,5,5, # b8 - bf + 0,0,6,6,6,6,6,6, # c0 - c7 + 6,6,6,6,6,6,6,6, # c8 - cf + 6,6,6,6,6,6,6,6, # d0 - d7 + 6,6,6,6,6,6,6,6, # d8 - df + 7,8,8,8,8,8,8,8, # e0 - e7 + 8,8,8,8,8,9,8,8, # e8 - ef + 10,11,11,11,11,11,11,11, # f0 - f7 + 12,13,13,13,14,15,0,0 # f8 - ff +) + +UTF8_ST = ( + MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 12, 10,#00-07 + 9, 11, 8, 7, 6, 5, 4, 3,#08-0f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#10-17 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#20-27 + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#28-2f + MachineState.ERROR,MachineState.ERROR, 5, 5, 5, 5,MachineState.ERROR,MachineState.ERROR,#30-37 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#38-3f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5, 5, 5,MachineState.ERROR,MachineState.ERROR,#40-47 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#48-4f + MachineState.ERROR,MachineState.ERROR, 7, 7, 7, 7,MachineState.ERROR,MachineState.ERROR,#50-57 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#58-5f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 7, 7,MachineState.ERROR,MachineState.ERROR,#60-67 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#68-6f + MachineState.ERROR,MachineState.ERROR, 9, 9, 9, 9,MachineState.ERROR,MachineState.ERROR,#70-77 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#78-7f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 9,MachineState.ERROR,MachineState.ERROR,#80-87 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#88-8f + MachineState.ERROR,MachineState.ERROR, 12, 12, 12, 12,MachineState.ERROR,MachineState.ERROR,#90-97 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#98-9f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 12,MachineState.ERROR,MachineState.ERROR,#a0-a7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#a8-af + MachineState.ERROR,MachineState.ERROR, 12, 12, 12,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#b0-b7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#b8-bf + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,#c0-c7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR #c8-cf +) + +UTF8_CHAR_LEN_TABLE = (0, 1, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 5, 5, 6, 6) + +UTF8_SM_MODEL = {'class_table': UTF8_CLS, + 'class_factor': 16, + 'state_table': UTF8_ST, + 'char_len_table': UTF8_CHAR_LEN_TABLE, + 'name': 'UTF-8'} diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/metadata/__init__.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/metadata/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cf7bc08483d18109ed13b1526672df054de4f8f5 GIT binary patch literal 164 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 self.SB_ENOUGH_REL_THRESHOLD: + confidence = self.get_confidence() + if confidence > self.POSITIVE_SHORTCUT_THRESHOLD: + self.logger.debug('%s confidence = %s, we have a winner', + charset_name, confidence) + self._state = ProbingState.FOUND_IT + elif confidence < self.NEGATIVE_SHORTCUT_THRESHOLD: + self.logger.debug('%s confidence = %s, below negative ' + 'shortcut threshhold %s', charset_name, + confidence, + self.NEGATIVE_SHORTCUT_THRESHOLD) + self._state = ProbingState.NOT_ME + + return self.state + + def get_confidence(self): + r = 0.01 + if self._total_seqs > 0: + r = ((1.0 * self._seq_counters[SequenceLikelihood.POSITIVE]) / + self._total_seqs / self._model.typical_positive_ratio) + r = r * self._freq_char / self._total_char + if r >= 1.0: + r = 0.99 + return r diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/sbcsgroupprober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/sbcsgroupprober.py new file mode 100644 index 00000000..bdeef4e1 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/sbcsgroupprober.py @@ -0,0 +1,83 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetgroupprober import CharSetGroupProber +from .hebrewprober import HebrewProber +from .langbulgarianmodel import (ISO_8859_5_BULGARIAN_MODEL, + WINDOWS_1251_BULGARIAN_MODEL) +from .langgreekmodel import ISO_8859_7_GREEK_MODEL, WINDOWS_1253_GREEK_MODEL +from .langhebrewmodel import WINDOWS_1255_HEBREW_MODEL +# from .langhungarianmodel import (ISO_8859_2_HUNGARIAN_MODEL, +# WINDOWS_1250_HUNGARIAN_MODEL) +from .langrussianmodel import (IBM855_RUSSIAN_MODEL, IBM866_RUSSIAN_MODEL, + ISO_8859_5_RUSSIAN_MODEL, KOI8_R_RUSSIAN_MODEL, + MACCYRILLIC_RUSSIAN_MODEL, + WINDOWS_1251_RUSSIAN_MODEL) +from .langthaimodel import TIS_620_THAI_MODEL +from .langturkishmodel import ISO_8859_9_TURKISH_MODEL +from .sbcharsetprober import SingleByteCharSetProber + + +class SBCSGroupProber(CharSetGroupProber): + def __init__(self): + super(SBCSGroupProber, self).__init__() + hebrew_prober = HebrewProber() + logical_hebrew_prober = SingleByteCharSetProber(WINDOWS_1255_HEBREW_MODEL, + False, hebrew_prober) + # TODO: See if using ISO-8859-8 Hebrew model works better here, since + # it's actually the visual one + visual_hebrew_prober = SingleByteCharSetProber(WINDOWS_1255_HEBREW_MODEL, + True, hebrew_prober) + hebrew_prober.set_model_probers(logical_hebrew_prober, + visual_hebrew_prober) + # TODO: ORDER MATTERS HERE. I changed the order vs what was in master + # and several tests failed that did not before. Some thought + # should be put into the ordering, and we should consider making + # order not matter here, because that is very counter-intuitive. + self.probers = [ + SingleByteCharSetProber(WINDOWS_1251_RUSSIAN_MODEL), + SingleByteCharSetProber(KOI8_R_RUSSIAN_MODEL), + SingleByteCharSetProber(ISO_8859_5_RUSSIAN_MODEL), + SingleByteCharSetProber(MACCYRILLIC_RUSSIAN_MODEL), + SingleByteCharSetProber(IBM866_RUSSIAN_MODEL), + SingleByteCharSetProber(IBM855_RUSSIAN_MODEL), + SingleByteCharSetProber(ISO_8859_7_GREEK_MODEL), + SingleByteCharSetProber(WINDOWS_1253_GREEK_MODEL), + SingleByteCharSetProber(ISO_8859_5_BULGARIAN_MODEL), + SingleByteCharSetProber(WINDOWS_1251_BULGARIAN_MODEL), + # TODO: Restore Hungarian encodings (iso-8859-2 and windows-1250) + # after we retrain model. + # SingleByteCharSetProber(ISO_8859_2_HUNGARIAN_MODEL), + # SingleByteCharSetProber(WINDOWS_1250_HUNGARIAN_MODEL), + SingleByteCharSetProber(TIS_620_THAI_MODEL), + SingleByteCharSetProber(ISO_8859_9_TURKISH_MODEL), + hebrew_prober, + logical_hebrew_prober, + visual_hebrew_prober, + ] + self.reset() diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/sjisprober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/sjisprober.py new file mode 100644 index 00000000..9e29623b --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/sjisprober.py @@ -0,0 +1,92 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import SJISDistributionAnalysis +from .jpcntx import SJISContextAnalysis +from .mbcssm import SJIS_SM_MODEL +from .enums import ProbingState, MachineState + + +class SJISProber(MultiByteCharSetProber): + def __init__(self): + super(SJISProber, self).__init__() + self.coding_sm = CodingStateMachine(SJIS_SM_MODEL) + self.distribution_analyzer = SJISDistributionAnalysis() + self.context_analyzer = SJISContextAnalysis() + self.reset() + + def reset(self): + super(SJISProber, self).reset() + self.context_analyzer.reset() + + @property + def charset_name(self): + return self.context_analyzer.charset_name + + @property + def language(self): + return "Japanese" + + def feed(self, byte_str): + for i in range(len(byte_str)): + coding_state = self.coding_sm.next_state(byte_str[i]) + if coding_state == MachineState.ERROR: + self.logger.debug('%s %s prober hit error at byte %s', + self.charset_name, self.language, i) + self._state = ProbingState.NOT_ME + break + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte_str[0] + self.context_analyzer.feed(self._last_char[2 - char_len:], + char_len) + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.context_analyzer.feed(byte_str[i + 1 - char_len:i + 3 + - char_len], char_len) + self.distribution_analyzer.feed(byte_str[i - 1:i + 1], + char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if (self.context_analyzer.got_enough_data() and + (self.get_confidence() > self.SHORTCUT_THRESHOLD)): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self): + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/universaldetector.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/universaldetector.py new file mode 100644 index 00000000..055a8ac1 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/universaldetector.py @@ -0,0 +1,286 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### +""" +Module containing the UniversalDetector detector class, which is the primary +class a user of ``chardet`` should use. + +:author: Mark Pilgrim (initial port to Python) +:author: Shy Shalom (original C code) +:author: Dan Blanchard (major refactoring for 3.0) +:author: Ian Cordasco +""" + + +import codecs +import logging +import re + +from .charsetgroupprober import CharSetGroupProber +from .enums import InputState, LanguageFilter, ProbingState +from .escprober import EscCharSetProber +from .latin1prober import Latin1Prober +from .mbcsgroupprober import MBCSGroupProber +from .sbcsgroupprober import SBCSGroupProber + + +class UniversalDetector(object): + """ + The ``UniversalDetector`` class underlies the ``chardet.detect`` function + and coordinates all of the different charset probers. + + To get a ``dict`` containing an encoding and its confidence, you can simply + run: + + .. code:: + + u = UniversalDetector() + u.feed(some_bytes) + u.close() + detected = u.result + + """ + + MINIMUM_THRESHOLD = 0.20 + HIGH_BYTE_DETECTOR = re.compile(b'[\x80-\xFF]') + ESC_DETECTOR = re.compile(b'(\033|~{)') + WIN_BYTE_DETECTOR = re.compile(b'[\x80-\x9F]') + ISO_WIN_MAP = {'iso-8859-1': 'Windows-1252', + 'iso-8859-2': 'Windows-1250', + 'iso-8859-5': 'Windows-1251', + 'iso-8859-6': 'Windows-1256', + 'iso-8859-7': 'Windows-1253', + 'iso-8859-8': 'Windows-1255', + 'iso-8859-9': 'Windows-1254', + 'iso-8859-13': 'Windows-1257'} + + def __init__(self, lang_filter=LanguageFilter.ALL): + self._esc_charset_prober = None + self._charset_probers = [] + self.result = None + self.done = None + self._got_data = None + self._input_state = None + self._last_char = None + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + self._has_win_bytes = None + self.reset() + + def reset(self): + """ + Reset the UniversalDetector and all of its probers back to their + initial states. This is called by ``__init__``, so you only need to + call this directly in between analyses of different documents. + """ + self.result = {'encoding': None, 'confidence': 0.0, 'language': None} + self.done = False + self._got_data = False + self._has_win_bytes = False + self._input_state = InputState.PURE_ASCII + self._last_char = b'' + if self._esc_charset_prober: + self._esc_charset_prober.reset() + for prober in self._charset_probers: + prober.reset() + + def feed(self, byte_str): + """ + Takes a chunk of a document and feeds it through all of the relevant + charset probers. + + After calling ``feed``, you can check the value of the ``done`` + attribute to see if you need to continue feeding the + ``UniversalDetector`` more data, or if it has made a prediction + (in the ``result`` attribute). + + .. note:: + You should always call ``close`` when you're done feeding in your + document if ``done`` is not already ``True``. + """ + if self.done: + return + + if not len(byte_str): + return + + if not isinstance(byte_str, bytearray): + byte_str = bytearray(byte_str) + + # First check for known BOMs, since these are guaranteed to be correct + if not self._got_data: + # If the data starts with BOM, we know it is UTF + if byte_str.startswith(codecs.BOM_UTF8): + # EF BB BF UTF-8 with BOM + self.result = {'encoding': "UTF-8-SIG", + 'confidence': 1.0, + 'language': ''} + elif byte_str.startswith((codecs.BOM_UTF32_LE, + codecs.BOM_UTF32_BE)): + # FF FE 00 00 UTF-32, little-endian BOM + # 00 00 FE FF UTF-32, big-endian BOM + self.result = {'encoding': "UTF-32", + 'confidence': 1.0, + 'language': ''} + elif byte_str.startswith(b'\xFE\xFF\x00\x00'): + # FE FF 00 00 UCS-4, unusual octet order BOM (3412) + self.result = {'encoding': "X-ISO-10646-UCS-4-3412", + 'confidence': 1.0, + 'language': ''} + elif byte_str.startswith(b'\x00\x00\xFF\xFE'): + # 00 00 FF FE UCS-4, unusual octet order BOM (2143) + self.result = {'encoding': "X-ISO-10646-UCS-4-2143", + 'confidence': 1.0, + 'language': ''} + elif byte_str.startswith((codecs.BOM_LE, codecs.BOM_BE)): + # FF FE UTF-16, little endian BOM + # FE FF UTF-16, big endian BOM + self.result = {'encoding': "UTF-16", + 'confidence': 1.0, + 'language': ''} + + self._got_data = True + if self.result['encoding'] is not None: + self.done = True + return + + # If none of those matched and we've only see ASCII so far, check + # for high bytes and escape sequences + if self._input_state == InputState.PURE_ASCII: + if self.HIGH_BYTE_DETECTOR.search(byte_str): + self._input_state = InputState.HIGH_BYTE + elif self._input_state == InputState.PURE_ASCII and \ + self.ESC_DETECTOR.search(self._last_char + byte_str): + self._input_state = InputState.ESC_ASCII + + self._last_char = byte_str[-1:] + + # If we've seen escape sequences, use the EscCharSetProber, which + # uses a simple state machine to check for known escape sequences in + # HZ and ISO-2022 encodings, since those are the only encodings that + # use such sequences. + if self._input_state == InputState.ESC_ASCII: + if not self._esc_charset_prober: + self._esc_charset_prober = EscCharSetProber(self.lang_filter) + if self._esc_charset_prober.feed(byte_str) == ProbingState.FOUND_IT: + self.result = {'encoding': + self._esc_charset_prober.charset_name, + 'confidence': + self._esc_charset_prober.get_confidence(), + 'language': + self._esc_charset_prober.language} + self.done = True + # If we've seen high bytes (i.e., those with values greater than 127), + # we need to do more complicated checks using all our multi-byte and + # single-byte probers that are left. The single-byte probers + # use character bigram distributions to determine the encoding, whereas + # the multi-byte probers use a combination of character unigram and + # bigram distributions. + elif self._input_state == InputState.HIGH_BYTE: + if not self._charset_probers: + self._charset_probers = [MBCSGroupProber(self.lang_filter)] + # If we're checking non-CJK encodings, use single-byte prober + if self.lang_filter & LanguageFilter.NON_CJK: + self._charset_probers.append(SBCSGroupProber()) + self._charset_probers.append(Latin1Prober()) + for prober in self._charset_probers: + if prober.feed(byte_str) == ProbingState.FOUND_IT: + self.result = {'encoding': prober.charset_name, + 'confidence': prober.get_confidence(), + 'language': prober.language} + self.done = True + break + if self.WIN_BYTE_DETECTOR.search(byte_str): + self._has_win_bytes = True + + def close(self): + """ + Stop analyzing the current document and come up with a final + prediction. + + :returns: The ``result`` attribute, a ``dict`` with the keys + `encoding`, `confidence`, and `language`. + """ + # Don't bother with checks if we're already done + if self.done: + return self.result + self.done = True + + if not self._got_data: + self.logger.debug('no data received!') + + # Default to ASCII if it is all we've seen so far + elif self._input_state == InputState.PURE_ASCII: + self.result = {'encoding': 'ascii', + 'confidence': 1.0, + 'language': ''} + + # If we have seen non-ASCII, return the best that met MINIMUM_THRESHOLD + elif self._input_state == InputState.HIGH_BYTE: + prober_confidence = None + max_prober_confidence = 0.0 + max_prober = None + for prober in self._charset_probers: + if not prober: + continue + prober_confidence = prober.get_confidence() + if prober_confidence > max_prober_confidence: + max_prober_confidence = prober_confidence + max_prober = prober + if max_prober and (max_prober_confidence > self.MINIMUM_THRESHOLD): + charset_name = max_prober.charset_name + lower_charset_name = max_prober.charset_name.lower() + confidence = max_prober.get_confidence() + # Use Windows encoding name instead of ISO-8859 if we saw any + # extra Windows-specific bytes + if lower_charset_name.startswith('iso-8859'): + if self._has_win_bytes: + charset_name = self.ISO_WIN_MAP.get(lower_charset_name, + charset_name) + self.result = {'encoding': charset_name, + 'confidence': confidence, + 'language': max_prober.language} + + # Log all prober confidences if none met MINIMUM_THRESHOLD + if self.logger.getEffectiveLevel() <= logging.DEBUG: + if self.result['encoding'] is None: + self.logger.debug('no probers hit minimum threshold') + for group_prober in self._charset_probers: + if not group_prober: + continue + if isinstance(group_prober, CharSetGroupProber): + for prober in group_prober.probers: + self.logger.debug('%s %s confidence = %s', + prober.charset_name, + prober.language, + prober.get_confidence()) + else: + self.logger.debug('%s %s confidence = %s', + group_prober.charset_name, + group_prober.language, + group_prober.get_confidence()) + return self.result diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/utf8prober.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/utf8prober.py new file mode 100644 index 00000000..6c3196cc --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/utf8prober.py @@ -0,0 +1,82 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .enums import ProbingState, MachineState +from .codingstatemachine import CodingStateMachine +from .mbcssm import UTF8_SM_MODEL + + + +class UTF8Prober(CharSetProber): + ONE_CHAR_PROB = 0.5 + + def __init__(self): + super(UTF8Prober, self).__init__() + self.coding_sm = CodingStateMachine(UTF8_SM_MODEL) + self._num_mb_chars = None + self.reset() + + def reset(self): + super(UTF8Prober, self).reset() + self.coding_sm.reset() + self._num_mb_chars = 0 + + @property + def charset_name(self): + return "utf-8" + + @property + def language(self): + return "" + + def feed(self, byte_str): + for c in byte_str: + coding_state = self.coding_sm.next_state(c) + if coding_state == MachineState.ERROR: + self._state = ProbingState.NOT_ME + break + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + if self.coding_sm.get_current_charlen() >= 2: + self._num_mb_chars += 1 + + if self.state == ProbingState.DETECTING: + if self.get_confidence() > self.SHORTCUT_THRESHOLD: + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self): + unlike = 0.99 + if self._num_mb_chars < 6: + unlike *= self.ONE_CHAR_PROB ** self._num_mb_chars + return 1.0 - unlike + else: + return unlike diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/chardet/version.py b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/version.py new file mode 100644 index 00000000..70369b9d --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/chardet/version.py @@ -0,0 +1,9 @@ +""" +This module exists only to simplify retrieving the version number of chardet +from within setup.py and from chardet subpackages. + +:author: Dan Blanchard (dan.blanchard@gmail.com) +""" + +__version__ = "4.0.0" +VERSION = __version__.split('.') diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/colorama/__init__.py b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/__init__.py new file mode 100644 index 00000000..b149ed79 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/__init__.py @@ -0,0 +1,6 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +from .initialise import init, deinit, reinit, colorama_text +from .ansi import Fore, Back, Style, Cursor +from .ansitowin32 import AnsiToWin32 + +__version__ = '0.4.4' diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..45bfd2640ef84b503fa053e3a76f4a496a07eaa2 GIT binary patch literal 407 zcmYk2Jx{|h5QgK#Nz_mi(OWQ}6jI&j*1&+i$NoU*3Lz^Z$h2Irg_Z^I!o(GEj&h6_QXzBvP1Q1o2SD zDj|vLk)BFPs`{k=8;|5bWhC=&Ool9;1x50S{HOvuEE-{5!uZCTjm_s;YE!G4TK;UI z>|7h}@JT&?bn(otC3nf`!gSgc$Ys-}6PNm0G<&-*@y>WMo?H~U8^B0WOVM!y8<+@y z0kMa}wQn;C_&q=h=tCxhjMXa`Xy9vHM(L89PUwcx_rPpHDd2lrS=CmpXv;;@dUc$Y xt9#C6`E>VS58C}($W^|%VcJxGYgLqjI7-Lu+NFm|vxVeGAhH8JBQ!$8@CVsAYRdos literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cb1e912e4ea3dc55e35f07f221674110d3f955b2 GIT binary patch literal 3192 zcmc&$-EY%Y6!*2A#Bn|wN;_cMvM-HnYoak}+F(OX(oi}=S|zPI%$V_VFRdX>!u2hT zsz{TdS21U+(d_Ip62l8<~u)!Bzb0&xbOpY5yQG zd6_^g!U|pkP|eXOaR}8Nof?ioO&WWpIVO$M1pLP6do)SySHy|aOEg8(uuCj!G()qm zG@51B$Z(QC=V%`2yrONOXJ`TF0!sov1@r|v3-qj_(?DOOb3o52I>S;U&B?MfV2)(~ z^UMaEq4OQBbb0R&dwtsviaP_k+hfHo)@R%kEGSl6ot0vD+v8qWFkb8qC_EH{;*k4& z;rF-TNpHZ_BjE4&eXkdk?G9tti`zmBuU9IpUw-aC@rR81UU|T`Do9mOuFHb1H)Jjf zwfFQZ_hCJFLlRvAF&kgFH(=Fa1$h9W39_$^$UKB}UIXLxmLxj|x-{yY6=?*5mxwe` z=7Gi&@P{`)R>aP*GW3TFyZxcpeZuI%^KHg@3s1Kmi|>cuJwjf^ea8B9z$?ljZ^x^6 z{lG5|U&su~a>c;KFa&9|LkG|Zhs0|qj78prv1sJJHV;N08oQ@oyHNsbS37lS)EZ5& zHYR-0W6IbFERZ3S0TZs`tmpav9xDU(&m zRULc^j@gOc#$na*@81FlNX3XOX%DWxB>Utwq2zB8SVG^|_Q^i&>Yckc=)u>=~eg%$7(w}fmwTQm4_8D*v zdt)#2PGfmv?Hu}QQOTmrX;tRZ>SpWn31ztnWym{+y87Ab61P^{o7MJGX+mRE7b>9T zL-sk8E}gB^tX1oGzMRlF=_B&Gn6mMO`=b=T4}_Y`&^gg$hAADTQ&)q}XuTmfB)P4$ zmyE-V{w~Rj=|~%EtDOZ9H_mEyBGABUl?eX?*r)&KiWeQQ_=j+g7ZE-}!1Qs9C`Ttb zD&f}(R~ec^B5P3+sCkR#5p()B zjz8ge{{KmD4L(i6tDru_5)HpVz&Z`TLcn4T%Lo+&bSb0=4B-*N7Q!}ykMJ1b2|$ZC z08fq1CNP#^{nzN=`Lm;gL*VS^p27yeuO-1W~a1%h+gA2 db&wDg0nC^xN5g{KHf%GW%4hO(aL3~W@3(ezW}yH8 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a078e58c29b5743c0c09277f54e48c0441c6f138 GIT binary patch literal 7736 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 PBVL%dY>ZuN{>J|TPqgqX literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7b30c657b875d47754c35322fe7fc3d35372f509 GIT binary patch literal 1668 zcma)6OOG2x5bo}IcszdWBM@K}&}a`xBe7T_3IaqBC}IyBe2Gbrg=89c$2+^@nMrj! zW`lEK7r_O7!|pMEX|9~|7r2C~cD!pxibRjPrmMTAr~3Q8>hC+9m|;u)`2D9}8;t!! z&U*9F`5L>iXcSXCXT#;254rQjP$;3i+?)DCpJRj!u!qVbz5b*qGIGBQ?`Gg~)7 z8*N82&!00uFqY=udp$d?dR0~(%!*2mPqaFiA8DN*Jf0le&#TWK(OPfxL>H=r-nh(5 zkW<;qip*v*&y4=KI)xCo+r@4OP{t$fW(H&D(iAotQ=B`%pEy`}X3w$(TkwULcxN2; zELV7x-?$aWp7hZMGNdscG=fhRla1o0jjT^!;CJ3x;4>>mo@`L8i~13xnl37QEh>;r z8=G_6x@gp%Ty4zjv?D08Eeaaladv#~YFJhMlMEKZZs9%)D99*W90^NgHQ|=^(DMmiAmY=&VFE22 zLz_&OOoz;s7MCNJW2iJ`c^lUaO^~KS($yZ0H}avHpdCu=W*^N`Qhy`CPm$gSSQQW1 z9jXx={opEOnUQd3a~r0j_K{rV?_^HzwUk^oot5lI$cO!c{^XKEs05D%ypJ;*NukfK ziZwy!|AMrIv1=ghko#tkz=7lnY6B$VbxayuHB!n|?R|*O!iW7;?JYdT|MH&&i{OG^ zGT2`P$Kn~*C02%@tK=re1L+0cMsszyn4@x*s}U)Tq)q}(Lr5rY^9!Kcs%|WW53gYh z+qn20c0>0E<32tDu@f&tL6p1o)IaR^2k8#nz>qpdkrNMj_OpYkZb`f}Z8@h)(_MT^ ztvQ7`Kpl*c-B+l literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d3e26308aa1c1d38de865837641bc9687968c143 GIT binary patch literal 3944 zcmai1Npl;=74Gg?FaQ^U)J9RX1W}eOq$JXjQ&|<3C6ZbyFsUM_(4IKmZ2n z8JH3aI#H>dlFBVt`RKplpE1{*d`@zSs=|D)2LwUMOa|=Nulx1#`g=<^pG`~@7{1b< z{`iNv^NjtS8lztxjn7fy?>J+U`Al-3?=MIpt(NcwYP%)cmTz&UEG3%u0rwsBI_PzM zm$NO_S+JSPDX%V`7qsMze$v7ySLWU@KQBE~7rtVDOgjNAS?OTjBEn*yeg_msJMld7Cxs0)hKxh%@5H{8D@ zr{!6L;z#nlynvo7@}itU&nrlU{M4?m~9o}A}lf3GxxJE;cJ~#j@$Jis3*anfT%D&}m--4t(&& zy)DC~Ni6vf6sE}!|Gzex)XEfbhn&&NJ6hxnG34`QJ9V~SX;n}2)kODdNl&ZPtp&B+ zP^Y=4>rd7;S2s>{TwA;0#VH8k|7GXZ%Lu-I-Uw20s4j1;uC4_So;`fHx)D5Cd$_)THa1$78l4h=sYRWI-G$VZ zd)3CiN{e!Dxu@euKaJu>(ug|g*xvml(T(k1qTQ z^7jAyE0@P~5xb`RtCWAKr@-oIB4?@7+KjrXT~YPKcOOJa619D2qp`D_=yMRmQ|(x_ z>c^g^$;@dk2!LG>TtOqA1z}upm$|0cMCnKMyZ!moEwC_HW(|h&f}j(&RS=|wAZSOj z*CKvA2wwEU) znGh-4W|j1E@JJ=gQ74XCs#?=ZbsqHUb)}zl>X9D9N~ygaMXj=xy1QXVwp41@;_XJ7 zi+i=2isKRO4f5jwTs7=A0ytsvJIs&CwHUM)Trl_07WxykYt%XV(b0|eWU>Ss@tHbyoZS{hM%jMp~pN%@7r(vydJ5!{KRl8uLUE}?-#0u{0}>@CRFnU!I0 zSo`SEw!V$A#^8FMI5I4B&Lc=v*bW*}e@xvsh}V!ylai;lu`d&O` zYMb^Z07+T>6V#hE(&^|U?1%V%jRrZ^)+9E*$g$c$PpSoT|HwLz{m-+hyR!v=nn-h;3GIQ#z zP%=*Ef`^S(YmoKUdr7yKEaT1(Yl+hLv#jTQ9kzO^oXZfi&6B`wsm@Nan>uk4>cpUv zj&*wNU{5!aM0I{RbWY#u04l{~IP%7EUf=~mNizGHRJj7#>8Sk@(qq)#B8Ut={4GM? zU z+%Da$5s>j#21u!#*~883K_<{8BEJT~)pPppS%x}7p8{Rqr-|e!8Sr`PG>;ukF7!dh zI(_XwW4O5|7#tIzzX!XfC(wzkOHoLfjP{A?mdijt%C0<}8VR}0M$%GSc$hc|aqsJO z<~V%J$iLB=CQWkv8}MbmS^iNL+zV*pIclEanueqDcYoES!OI-Hk?RI>?D>Q$L3SCVhVKe5r?RxHXvpx0RjPf zc41kpWhzxs$|pO2fxJceDLLc^%rz(e1)uVD?=C<#(!yW@n>VOh!zo%h7@h%P}GDl)(vS&>!~5F(EOWKvoN-$gR#S78)H`% zFfQ=ek>0jZDV_^#QxV#E-0ZynUIT-nA8{AaqMw0;MombgW=c`Bq*=42Rdb|WbEQ)& zNVn$6LaivhnlFpk+1K8e&CW`<-BssUYbe_4+$3TVAv?|;A})~vNVPJiy&&k+55pkP zeh?gXWv@;BQV@LAtG6?bv%Imi^0~H`H+I*wv%a;qR@L^(-cnUtTWhPjaDQoit-7+!=dY~T9oK`Z|7=*|K0 z7J{$Cj_j(11{qO5tS`Vvai|V&A3afI11TPrK|Em({W15&zMR97%Y6yIIqbLX_(?ld z>?04-=YIvMR$MiPrz#N{2hnbIbL;-nhIW^??yY~eqo>kmunhmKZ*A^YR|iI?y;)jI z3QVCzWI?Jt&poFyS-D7p--8TPmgZ9f5U`|;CqO1$JRLbNJz0Dz0EnN+FPxFYQ8tLtIB((OducDUV8Vc1#j9UO$}Ugw~z z-R+&#&D|Y6_IN3dRdc@=hYJdB?SZAW4I;6k7&#*|3SPBRVy3U)-0F+^FEghzkQaXItd?Og1| zPP~Sta11pe#f&jaJrm7ZMxR}DPFYZ~)th*zn?&9r@-C5|66vR&V&#eta#zrbh&*eE zw3Evj;OD0fb}*S=Z_(LF>yipew3>()}G!C9I{I@9Fjv} z&v!tjL_e@HovAi6Xi^y3{BrdMDK|#1YNTLfU*}pEyB&Z=hDwcSu8S&U{n~9ZFVnv? zq<>%HZo`I5{-b{1`x_X*=f)#XO+ats1U`q(A~DswiD3gCvDLCS5wgJSOb=!zjr%-@ zHBMq>)&fG$%xXob_pvJi^A;XybQnK_=)6aKI}MD@3FL4J@WK&G)vqD^3$$ng!~p1B z;hMIXHmAjLDF+&D^8d3^{R*1EK!Q%1B?AK)c|!(L@~aO>l>9Pk-W|++jP|4E(H0E~ zTK=PcKZp#%%YsPRjYFQHh~T7ZTdIP^X4>y^+h*o z#?5X=i$7?wS4qR7eoHdmQN|mwM3<<-=FDA)W+5tB6I2Uka&s<uk(C`sz0zdTtP(VaxIWEs-cE16em}(-p3U?2^7|e}Y^d zEsG+>(RwvE?~)Zm)qqY4x}q{3m(gL%fH+lV%jhm)CAdkPIEm9jtZ+0ssBB`^I51CK z$he7}xDuz+cUFqfidDUflJ3@Js~5$U!iW$p!n#9eOI= zD3pDhNBuJ1NPUtDKER^PBdIrhF(Zy&$~`h9%O}oI*o# z*oob;;R>Sei~$Gb;{uH_Dzuzg z=Ad|7+-3+xlvaHd{R@L1K~aj1j|e@CA%{|mFa?yjozF6q{1K5X;L=VU4@k*y2Z@_m ztp9R}1onc&FlyYyc@8z%9AC(sQG}@9!GKC>G>@r9GYZt_)Z=8PTT`0bbc(1d5jv}~ z1Xr6hF{p1}&~Tf`4w2!*Nc*XK+s#h+53r+okbaCfKGUFOTuzyCe2%B{JRd9`I;N;1 zTWFl$ba8^$_?SwIS6aADwpC9K%Joh&Zio5h(}`&`sxE*0Fz27x_PHBBRbu8=aDt;m z-c5;#VwpFAE?1<%b86&!SlzroBo#2^X$+JAiclWy5%if{AkJEp6d_rO1yLrhjkCmPO0qDJ`0RR91 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/colorama/ansi.py b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/ansi.py new file mode 100644 index 00000000..11ec695f --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/ansi.py @@ -0,0 +1,102 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +''' +This module generates ANSI character codes to printing colors to terminals. +See: http://en.wikipedia.org/wiki/ANSI_escape_code +''' + +CSI = '\033[' +OSC = '\033]' +BEL = '\a' + + +def code_to_chars(code): + return CSI + str(code) + 'm' + +def set_title(title): + return OSC + '2;' + title + BEL + +def clear_screen(mode=2): + return CSI + str(mode) + 'J' + +def clear_line(mode=2): + return CSI + str(mode) + 'K' + + +class AnsiCodes(object): + def __init__(self): + # the subclasses declare class attributes which are numbers. + # Upon instantiation we define instance attributes, which are the same + # as the class attributes but wrapped with the ANSI escape sequence + for name in dir(self): + if not name.startswith('_'): + value = getattr(self, name) + setattr(self, name, code_to_chars(value)) + + +class AnsiCursor(object): + def UP(self, n=1): + return CSI + str(n) + 'A' + def DOWN(self, n=1): + return CSI + str(n) + 'B' + def FORWARD(self, n=1): + return CSI + str(n) + 'C' + def BACK(self, n=1): + return CSI + str(n) + 'D' + def POS(self, x=1, y=1): + return CSI + str(y) + ';' + str(x) + 'H' + + +class AnsiFore(AnsiCodes): + BLACK = 30 + RED = 31 + GREEN = 32 + YELLOW = 33 + BLUE = 34 + MAGENTA = 35 + CYAN = 36 + WHITE = 37 + RESET = 39 + + # These are fairly well supported, but not part of the standard. + LIGHTBLACK_EX = 90 + LIGHTRED_EX = 91 + LIGHTGREEN_EX = 92 + LIGHTYELLOW_EX = 93 + LIGHTBLUE_EX = 94 + LIGHTMAGENTA_EX = 95 + LIGHTCYAN_EX = 96 + LIGHTWHITE_EX = 97 + + +class AnsiBack(AnsiCodes): + BLACK = 40 + RED = 41 + GREEN = 42 + YELLOW = 43 + BLUE = 44 + MAGENTA = 45 + CYAN = 46 + WHITE = 47 + RESET = 49 + + # These are fairly well supported, but not part of the standard. + LIGHTBLACK_EX = 100 + LIGHTRED_EX = 101 + LIGHTGREEN_EX = 102 + LIGHTYELLOW_EX = 103 + LIGHTBLUE_EX = 104 + LIGHTMAGENTA_EX = 105 + LIGHTCYAN_EX = 106 + LIGHTWHITE_EX = 107 + + +class AnsiStyle(AnsiCodes): + BRIGHT = 1 + DIM = 2 + NORMAL = 22 + RESET_ALL = 0 + +Fore = AnsiFore() +Back = AnsiBack() +Style = AnsiStyle() +Cursor = AnsiCursor() diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/colorama/ansitowin32.py b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/ansitowin32.py new file mode 100644 index 00000000..6039a054 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/ansitowin32.py @@ -0,0 +1,258 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import re +import sys +import os + +from .ansi import AnsiFore, AnsiBack, AnsiStyle, Style, BEL +from .winterm import WinTerm, WinColor, WinStyle +from .win32 import windll, winapi_test + + +winterm = None +if windll is not None: + winterm = WinTerm() + + +class StreamWrapper(object): + ''' + Wraps a stream (such as stdout), acting as a transparent proxy for all + attribute access apart from method 'write()', which is delegated to our + Converter instance. + ''' + def __init__(self, wrapped, converter): + # double-underscore everything to prevent clashes with names of + # attributes on the wrapped stream object. + self.__wrapped = wrapped + self.__convertor = converter + + def __getattr__(self, name): + return getattr(self.__wrapped, name) + + def __enter__(self, *args, **kwargs): + # special method lookup bypasses __getattr__/__getattribute__, see + # https://stackoverflow.com/questions/12632894/why-doesnt-getattr-work-with-exit + # thus, contextlib magic methods are not proxied via __getattr__ + return self.__wrapped.__enter__(*args, **kwargs) + + def __exit__(self, *args, **kwargs): + return self.__wrapped.__exit__(*args, **kwargs) + + def write(self, text): + self.__convertor.write(text) + + def isatty(self): + stream = self.__wrapped + if 'PYCHARM_HOSTED' in os.environ: + if stream is not None and (stream is sys.__stdout__ or stream is sys.__stderr__): + return True + try: + stream_isatty = stream.isatty + except AttributeError: + return False + else: + return stream_isatty() + + @property + def closed(self): + stream = self.__wrapped + try: + return stream.closed + except AttributeError: + return True + + +class AnsiToWin32(object): + ''' + Implements a 'write()' method which, on Windows, will strip ANSI character + sequences from the text, and if outputting to a tty, will convert them into + win32 function calls. + ''' + ANSI_CSI_RE = re.compile('\001?\033\\[((?:\\d|;)*)([a-zA-Z])\002?') # Control Sequence Introducer + ANSI_OSC_RE = re.compile('\001?\033\\]([^\a]*)(\a)\002?') # Operating System Command + + def __init__(self, wrapped, convert=None, strip=None, autoreset=False): + # The wrapped stream (normally sys.stdout or sys.stderr) + self.wrapped = wrapped + + # should we reset colors to defaults after every .write() + self.autoreset = autoreset + + # create the proxy wrapping our output stream + self.stream = StreamWrapper(wrapped, self) + + on_windows = os.name == 'nt' + # We test if the WinAPI works, because even if we are on Windows + # we may be using a terminal that doesn't support the WinAPI + # (e.g. Cygwin Terminal). In this case it's up to the terminal + # to support the ANSI codes. + conversion_supported = on_windows and winapi_test() + + # should we strip ANSI sequences from our output? + if strip is None: + strip = conversion_supported or (not self.stream.closed and not self.stream.isatty()) + self.strip = strip + + # should we should convert ANSI sequences into win32 calls? + if convert is None: + convert = conversion_supported and not self.stream.closed and self.stream.isatty() + self.convert = convert + + # dict of ansi codes to win32 functions and parameters + self.win32_calls = self.get_win32_calls() + + # are we wrapping stderr? + self.on_stderr = self.wrapped is sys.stderr + + def should_wrap(self): + ''' + True if this class is actually needed. If false, then the output + stream will not be affected, nor will win32 calls be issued, so + wrapping stdout is not actually required. This will generally be + False on non-Windows platforms, unless optional functionality like + autoreset has been requested using kwargs to init() + ''' + return self.convert or self.strip or self.autoreset + + def get_win32_calls(self): + if self.convert and winterm: + return { + AnsiStyle.RESET_ALL: (winterm.reset_all, ), + AnsiStyle.BRIGHT: (winterm.style, WinStyle.BRIGHT), + AnsiStyle.DIM: (winterm.style, WinStyle.NORMAL), + AnsiStyle.NORMAL: (winterm.style, WinStyle.NORMAL), + AnsiFore.BLACK: (winterm.fore, WinColor.BLACK), + AnsiFore.RED: (winterm.fore, WinColor.RED), + AnsiFore.GREEN: (winterm.fore, WinColor.GREEN), + AnsiFore.YELLOW: (winterm.fore, WinColor.YELLOW), + AnsiFore.BLUE: (winterm.fore, WinColor.BLUE), + AnsiFore.MAGENTA: (winterm.fore, WinColor.MAGENTA), + AnsiFore.CYAN: (winterm.fore, WinColor.CYAN), + AnsiFore.WHITE: (winterm.fore, WinColor.GREY), + AnsiFore.RESET: (winterm.fore, ), + AnsiFore.LIGHTBLACK_EX: (winterm.fore, WinColor.BLACK, True), + AnsiFore.LIGHTRED_EX: (winterm.fore, WinColor.RED, True), + AnsiFore.LIGHTGREEN_EX: (winterm.fore, WinColor.GREEN, True), + AnsiFore.LIGHTYELLOW_EX: (winterm.fore, WinColor.YELLOW, True), + AnsiFore.LIGHTBLUE_EX: (winterm.fore, WinColor.BLUE, True), + AnsiFore.LIGHTMAGENTA_EX: (winterm.fore, WinColor.MAGENTA, True), + AnsiFore.LIGHTCYAN_EX: (winterm.fore, WinColor.CYAN, True), + AnsiFore.LIGHTWHITE_EX: (winterm.fore, WinColor.GREY, True), + AnsiBack.BLACK: (winterm.back, WinColor.BLACK), + AnsiBack.RED: (winterm.back, WinColor.RED), + AnsiBack.GREEN: (winterm.back, WinColor.GREEN), + AnsiBack.YELLOW: (winterm.back, WinColor.YELLOW), + AnsiBack.BLUE: (winterm.back, WinColor.BLUE), + AnsiBack.MAGENTA: (winterm.back, WinColor.MAGENTA), + AnsiBack.CYAN: (winterm.back, WinColor.CYAN), + AnsiBack.WHITE: (winterm.back, WinColor.GREY), + AnsiBack.RESET: (winterm.back, ), + AnsiBack.LIGHTBLACK_EX: (winterm.back, WinColor.BLACK, True), + AnsiBack.LIGHTRED_EX: (winterm.back, WinColor.RED, True), + AnsiBack.LIGHTGREEN_EX: (winterm.back, WinColor.GREEN, True), + AnsiBack.LIGHTYELLOW_EX: (winterm.back, WinColor.YELLOW, True), + AnsiBack.LIGHTBLUE_EX: (winterm.back, WinColor.BLUE, True), + AnsiBack.LIGHTMAGENTA_EX: (winterm.back, WinColor.MAGENTA, True), + AnsiBack.LIGHTCYAN_EX: (winterm.back, WinColor.CYAN, True), + AnsiBack.LIGHTWHITE_EX: (winterm.back, WinColor.GREY, True), + } + return dict() + + def write(self, text): + if self.strip or self.convert: + self.write_and_convert(text) + else: + self.wrapped.write(text) + self.wrapped.flush() + if self.autoreset: + self.reset_all() + + + def reset_all(self): + if self.convert: + self.call_win32('m', (0,)) + elif not self.strip and not self.stream.closed: + self.wrapped.write(Style.RESET_ALL) + + + def write_and_convert(self, text): + ''' + Write the given text to our wrapped stream, stripping any ANSI + sequences from the text, and optionally converting them into win32 + calls. + ''' + cursor = 0 + text = self.convert_osc(text) + for match in self.ANSI_CSI_RE.finditer(text): + start, end = match.span() + self.write_plain_text(text, cursor, start) + self.convert_ansi(*match.groups()) + cursor = end + self.write_plain_text(text, cursor, len(text)) + + + def write_plain_text(self, text, start, end): + if start < end: + self.wrapped.write(text[start:end]) + self.wrapped.flush() + + + def convert_ansi(self, paramstring, command): + if self.convert: + params = self.extract_params(command, paramstring) + self.call_win32(command, params) + + + def extract_params(self, command, paramstring): + if command in 'Hf': + params = tuple(int(p) if len(p) != 0 else 1 for p in paramstring.split(';')) + while len(params) < 2: + # defaults: + params = params + (1,) + else: + params = tuple(int(p) for p in paramstring.split(';') if len(p) != 0) + if len(params) == 0: + # defaults: + if command in 'JKm': + params = (0,) + elif command in 'ABCD': + params = (1,) + + return params + + + def call_win32(self, command, params): + if command == 'm': + for param in params: + if param in self.win32_calls: + func_args = self.win32_calls[param] + func = func_args[0] + args = func_args[1:] + kwargs = dict(on_stderr=self.on_stderr) + func(*args, **kwargs) + elif command in 'J': + winterm.erase_screen(params[0], on_stderr=self.on_stderr) + elif command in 'K': + winterm.erase_line(params[0], on_stderr=self.on_stderr) + elif command in 'Hf': # cursor position - absolute + winterm.set_cursor_position(params, on_stderr=self.on_stderr) + elif command in 'ABCD': # cursor position - relative + n = params[0] + # A - up, B - down, C - forward, D - back + x, y = {'A': (0, -n), 'B': (0, n), 'C': (n, 0), 'D': (-n, 0)}[command] + winterm.cursor_adjust(x, y, on_stderr=self.on_stderr) + + + def convert_osc(self, text): + for match in self.ANSI_OSC_RE.finditer(text): + start, end = match.span() + text = text[:start] + text[end:] + paramstring, command = match.groups() + if command == BEL: + if paramstring.count(";") == 1: + params = paramstring.split(";") + # 0 - change title and icon (we will only change title) + # 1 - change icon (we don't support this) + # 2 - change title + if params[0] in '02': + winterm.set_title(params[1]) + return text diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/colorama/initialise.py b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/initialise.py new file mode 100644 index 00000000..430d0668 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/initialise.py @@ -0,0 +1,80 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +import atexit +import contextlib +import sys + +from .ansitowin32 import AnsiToWin32 + + +orig_stdout = None +orig_stderr = None + +wrapped_stdout = None +wrapped_stderr = None + +atexit_done = False + + +def reset_all(): + if AnsiToWin32 is not None: # Issue #74: objects might become None at exit + AnsiToWin32(orig_stdout).reset_all() + + +def init(autoreset=False, convert=None, strip=None, wrap=True): + + if not wrap and any([autoreset, convert, strip]): + raise ValueError('wrap=False conflicts with any other arg=True') + + global wrapped_stdout, wrapped_stderr + global orig_stdout, orig_stderr + + orig_stdout = sys.stdout + orig_stderr = sys.stderr + + if sys.stdout is None: + wrapped_stdout = None + else: + sys.stdout = wrapped_stdout = \ + wrap_stream(orig_stdout, convert, strip, autoreset, wrap) + if sys.stderr is None: + wrapped_stderr = None + else: + sys.stderr = wrapped_stderr = \ + wrap_stream(orig_stderr, convert, strip, autoreset, wrap) + + global atexit_done + if not atexit_done: + atexit.register(reset_all) + atexit_done = True + + +def deinit(): + if orig_stdout is not None: + sys.stdout = orig_stdout + if orig_stderr is not None: + sys.stderr = orig_stderr + + +@contextlib.contextmanager +def colorama_text(*args, **kwargs): + init(*args, **kwargs) + try: + yield + finally: + deinit() + + +def reinit(): + if wrapped_stdout is not None: + sys.stdout = wrapped_stdout + if wrapped_stderr is not None: + sys.stderr = wrapped_stderr + + +def wrap_stream(stream, convert, strip, autoreset, wrap): + if wrap: + wrapper = AnsiToWin32(stream, + convert=convert, strip=strip, autoreset=autoreset) + if wrapper.should_wrap(): + stream = wrapper.stream + return stream diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/colorama/win32.py b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/win32.py new file mode 100644 index 00000000..c2d83603 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/win32.py @@ -0,0 +1,152 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. + +# from winbase.h +STDOUT = -11 +STDERR = -12 + +try: + import ctypes + from ctypes import LibraryLoader + windll = LibraryLoader(ctypes.WinDLL) + from ctypes import wintypes +except (AttributeError, ImportError): + windll = None + SetConsoleTextAttribute = lambda *_: None + winapi_test = lambda *_: None +else: + from ctypes import byref, Structure, c_char, POINTER + + COORD = wintypes._COORD + + class CONSOLE_SCREEN_BUFFER_INFO(Structure): + """struct in wincon.h.""" + _fields_ = [ + ("dwSize", COORD), + ("dwCursorPosition", COORD), + ("wAttributes", wintypes.WORD), + ("srWindow", wintypes.SMALL_RECT), + ("dwMaximumWindowSize", COORD), + ] + def __str__(self): + return '(%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d)' % ( + self.dwSize.Y, self.dwSize.X + , self.dwCursorPosition.Y, self.dwCursorPosition.X + , self.wAttributes + , self.srWindow.Top, self.srWindow.Left, self.srWindow.Bottom, self.srWindow.Right + , self.dwMaximumWindowSize.Y, self.dwMaximumWindowSize.X + ) + + _GetStdHandle = windll.kernel32.GetStdHandle + _GetStdHandle.argtypes = [ + wintypes.DWORD, + ] + _GetStdHandle.restype = wintypes.HANDLE + + _GetConsoleScreenBufferInfo = windll.kernel32.GetConsoleScreenBufferInfo + _GetConsoleScreenBufferInfo.argtypes = [ + wintypes.HANDLE, + POINTER(CONSOLE_SCREEN_BUFFER_INFO), + ] + _GetConsoleScreenBufferInfo.restype = wintypes.BOOL + + _SetConsoleTextAttribute = windll.kernel32.SetConsoleTextAttribute + _SetConsoleTextAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, + ] + _SetConsoleTextAttribute.restype = wintypes.BOOL + + _SetConsoleCursorPosition = windll.kernel32.SetConsoleCursorPosition + _SetConsoleCursorPosition.argtypes = [ + wintypes.HANDLE, + COORD, + ] + _SetConsoleCursorPosition.restype = wintypes.BOOL + + _FillConsoleOutputCharacterA = windll.kernel32.FillConsoleOutputCharacterA + _FillConsoleOutputCharacterA.argtypes = [ + wintypes.HANDLE, + c_char, + wintypes.DWORD, + COORD, + POINTER(wintypes.DWORD), + ] + _FillConsoleOutputCharacterA.restype = wintypes.BOOL + + _FillConsoleOutputAttribute = windll.kernel32.FillConsoleOutputAttribute + _FillConsoleOutputAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, + wintypes.DWORD, + COORD, + POINTER(wintypes.DWORD), + ] + _FillConsoleOutputAttribute.restype = wintypes.BOOL + + _SetConsoleTitleW = windll.kernel32.SetConsoleTitleW + _SetConsoleTitleW.argtypes = [ + wintypes.LPCWSTR + ] + _SetConsoleTitleW.restype = wintypes.BOOL + + def _winapi_test(handle): + csbi = CONSOLE_SCREEN_BUFFER_INFO() + success = _GetConsoleScreenBufferInfo( + handle, byref(csbi)) + return bool(success) + + def winapi_test(): + return any(_winapi_test(h) for h in + (_GetStdHandle(STDOUT), _GetStdHandle(STDERR))) + + def GetConsoleScreenBufferInfo(stream_id=STDOUT): + handle = _GetStdHandle(stream_id) + csbi = CONSOLE_SCREEN_BUFFER_INFO() + success = _GetConsoleScreenBufferInfo( + handle, byref(csbi)) + return csbi + + def SetConsoleTextAttribute(stream_id, attrs): + handle = _GetStdHandle(stream_id) + return _SetConsoleTextAttribute(handle, attrs) + + def SetConsoleCursorPosition(stream_id, position, adjust=True): + position = COORD(*position) + # If the position is out of range, do nothing. + if position.Y <= 0 or position.X <= 0: + return + # Adjust for Windows' SetConsoleCursorPosition: + # 1. being 0-based, while ANSI is 1-based. + # 2. expecting (x,y), while ANSI uses (y,x). + adjusted_position = COORD(position.Y - 1, position.X - 1) + if adjust: + # Adjust for viewport's scroll position + sr = GetConsoleScreenBufferInfo(STDOUT).srWindow + adjusted_position.Y += sr.Top + adjusted_position.X += sr.Left + # Resume normal processing + handle = _GetStdHandle(stream_id) + return _SetConsoleCursorPosition(handle, adjusted_position) + + def FillConsoleOutputCharacter(stream_id, char, length, start): + handle = _GetStdHandle(stream_id) + char = c_char(char.encode()) + length = wintypes.DWORD(length) + num_written = wintypes.DWORD(0) + # Note that this is hard-coded for ANSI (vs wide) bytes. + success = _FillConsoleOutputCharacterA( + handle, char, length, start, byref(num_written)) + return num_written.value + + def FillConsoleOutputAttribute(stream_id, attr, length, start): + ''' FillConsoleOutputAttribute( hConsole, csbi.wAttributes, dwConSize, coordScreen, &cCharsWritten )''' + handle = _GetStdHandle(stream_id) + attribute = wintypes.WORD(attr) + length = wintypes.DWORD(length) + num_written = wintypes.DWORD(0) + # Note that this is hard-coded for ANSI (vs wide) bytes. + return _FillConsoleOutputAttribute( + handle, attribute, length, start, byref(num_written)) + + def SetConsoleTitle(title): + return _SetConsoleTitleW(title) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/colorama/winterm.py b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/winterm.py new file mode 100644 index 00000000..0fdb4ec4 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/colorama/winterm.py @@ -0,0 +1,169 @@ +# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. +from . import win32 + + +# from wincon.h +class WinColor(object): + BLACK = 0 + BLUE = 1 + GREEN = 2 + CYAN = 3 + RED = 4 + MAGENTA = 5 + YELLOW = 6 + GREY = 7 + +# from wincon.h +class WinStyle(object): + NORMAL = 0x00 # dim text, dim background + BRIGHT = 0x08 # bright text, dim background + BRIGHT_BACKGROUND = 0x80 # dim text, bright background + +class WinTerm(object): + + def __init__(self): + self._default = win32.GetConsoleScreenBufferInfo(win32.STDOUT).wAttributes + self.set_attrs(self._default) + self._default_fore = self._fore + self._default_back = self._back + self._default_style = self._style + # In order to emulate LIGHT_EX in windows, we borrow the BRIGHT style. + # So that LIGHT_EX colors and BRIGHT style do not clobber each other, + # we track them separately, since LIGHT_EX is overwritten by Fore/Back + # and BRIGHT is overwritten by Style codes. + self._light = 0 + + def get_attrs(self): + return self._fore + self._back * 16 + (self._style | self._light) + + def set_attrs(self, value): + self._fore = value & 7 + self._back = (value >> 4) & 7 + self._style = value & (WinStyle.BRIGHT | WinStyle.BRIGHT_BACKGROUND) + + def reset_all(self, on_stderr=None): + self.set_attrs(self._default) + self.set_console(attrs=self._default) + self._light = 0 + + def fore(self, fore=None, light=False, on_stderr=False): + if fore is None: + fore = self._default_fore + self._fore = fore + # Emulate LIGHT_EX with BRIGHT Style + if light: + self._light |= WinStyle.BRIGHT + else: + self._light &= ~WinStyle.BRIGHT + self.set_console(on_stderr=on_stderr) + + def back(self, back=None, light=False, on_stderr=False): + if back is None: + back = self._default_back + self._back = back + # Emulate LIGHT_EX with BRIGHT_BACKGROUND Style + if light: + self._light |= WinStyle.BRIGHT_BACKGROUND + else: + self._light &= ~WinStyle.BRIGHT_BACKGROUND + self.set_console(on_stderr=on_stderr) + + def style(self, style=None, on_stderr=False): + if style is None: + style = self._default_style + self._style = style + self.set_console(on_stderr=on_stderr) + + def set_console(self, attrs=None, on_stderr=False): + if attrs is None: + attrs = self.get_attrs() + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + win32.SetConsoleTextAttribute(handle, attrs) + + def get_position(self, handle): + position = win32.GetConsoleScreenBufferInfo(handle).dwCursorPosition + # Because Windows coordinates are 0-based, + # and win32.SetConsoleCursorPosition expects 1-based. + position.X += 1 + position.Y += 1 + return position + + def set_cursor_position(self, position=None, on_stderr=False): + if position is None: + # I'm not currently tracking the position, so there is no default. + # position = self.get_position() + return + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + win32.SetConsoleCursorPosition(handle, position) + + def cursor_adjust(self, x, y, on_stderr=False): + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + position = self.get_position(handle) + adjusted_position = (position.Y + y, position.X + x) + win32.SetConsoleCursorPosition(handle, adjusted_position, adjust=False) + + def erase_screen(self, mode=0, on_stderr=False): + # 0 should clear from the cursor to the end of the screen. + # 1 should clear from the cursor to the beginning of the screen. + # 2 should clear the entire screen, and move cursor to (1,1) + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + csbi = win32.GetConsoleScreenBufferInfo(handle) + # get the number of character cells in the current buffer + cells_in_screen = csbi.dwSize.X * csbi.dwSize.Y + # get number of character cells before current cursor position + cells_before_cursor = csbi.dwSize.X * csbi.dwCursorPosition.Y + csbi.dwCursorPosition.X + if mode == 0: + from_coord = csbi.dwCursorPosition + cells_to_erase = cells_in_screen - cells_before_cursor + elif mode == 1: + from_coord = win32.COORD(0, 0) + cells_to_erase = cells_before_cursor + elif mode == 2: + from_coord = win32.COORD(0, 0) + cells_to_erase = cells_in_screen + else: + # invalid mode + return + # fill the entire screen with blanks + win32.FillConsoleOutputCharacter(handle, ' ', cells_to_erase, from_coord) + # now set the buffer's attributes accordingly + win32.FillConsoleOutputAttribute(handle, self.get_attrs(), cells_to_erase, from_coord) + if mode == 2: + # put the cursor where needed + win32.SetConsoleCursorPosition(handle, (1, 1)) + + def erase_line(self, mode=0, on_stderr=False): + # 0 should clear from the cursor to the end of the line. + # 1 should clear from the cursor to the beginning of the line. + # 2 should clear the entire line. + handle = win32.STDOUT + if on_stderr: + handle = win32.STDERR + csbi = win32.GetConsoleScreenBufferInfo(handle) + if mode == 0: + from_coord = csbi.dwCursorPosition + cells_to_erase = csbi.dwSize.X - csbi.dwCursorPosition.X + elif mode == 1: + from_coord = win32.COORD(0, csbi.dwCursorPosition.Y) + cells_to_erase = csbi.dwCursorPosition.X + elif mode == 2: + from_coord = win32.COORD(0, csbi.dwCursorPosition.Y) + cells_to_erase = csbi.dwSize.X + else: + # invalid mode + return + # fill the entire screen with blanks + win32.FillConsoleOutputCharacter(handle, ' ', cells_to_erase, from_coord) + # now set the buffer's attributes accordingly + win32.FillConsoleOutputAttribute(handle, self.get_attrs(), cells_to_erase, from_coord) + + def set_title(self, title): + win32.SetConsoleTitle(title) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__init__.py b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__init__.py new file mode 100644 index 00000000..63d916e3 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2019 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import logging + +__version__ = '0.3.1' + +class DistlibException(Exception): + pass + +try: + from logging import NullHandler +except ImportError: # pragma: no cover + class NullHandler(logging.Handler): + def handle(self, record): pass + def emit(self, record): pass + def createLock(self): self.lock = None + +logger = logging.getLogger(__name__) +logger.addHandler(NullHandler()) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..81ce25567d7a4208585d87aaa856ea4922b54b71 GIT binary patch literal 1022 zcmah{J8u&~5T3o;d-$9L6A+@LKu9iP6VZT#kR^x!DRM!CfNK_WyKyeQSN6_4BDw_e zH836fM8oE_+gKM@nghu;0cgTZD(#xgN9M#%LF3I#Ef5IZ)}F}-JL z-DK&9t&QqD8dSA;m2PqNmt0PSNnD}IlLO# z)g+lIx$$XFschq5y5Bsi9`2HFC_bt}mU<{##Gw#rkv2jMsxKNh3SDZEl#p4w&rEkb z&$1VjLS{<;H5P@ADCaJU%dw<$46)npJm%7qKH8oPXiu76DWSx3BAxd06uIUoB<#R~ zjqP9y$M9NZyT;clDYd*DSqB(u{5{*+I_kfW;c$Ja-$CpAKbr1fYFnC4>?#OXdD`3{ z#~MNOmLbTMQ2XaZI*nwf!)?NShJO?xC(Nn9gwoy5g~v>L6)?MK~_$uX)!fjfv2KtJVv~_ z&c$Wgqp-oI`!cUe-E3)HY7?9ti0MpKvyC;Bwv8E|3My@)iIitC|LVzvkJ}r6LLJsU SYRutI&vjUjt+Cr)#Qp%o&CtdG literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fb5f0352a1281d49991e43ac6fd5f0f7959795a3 GIT binary patch literal 32188 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..970db1a3ecd90a6584cb57486ed527e68103fe36 GIT binary patch literal 17375 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 f_wHvnwsJ-2P(+x7mvS&Co>?sr~6F>oV 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 A@&Et; literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d555e3658b80bf106fd2ed83c2ddf8c0440b6b49 GIT binary patch literal 10972 zcmbVSTZ|jmd7c}Gvs~^~D`|DHOvjg)j}-%^o!CK(Bu!hOKm(LQ0~9KX0xeMVrSE<2Lto~pfS>$a^u<7%e&2sMye$C|Nj4n?=CD9EPP5I{_ytVbC&fn8{?ljG+x3JePmmfvXtGj_U(#ov+lH< ziX-1{#g%Wb;>mZel9O-0;>&lwl9%tG63F*lWlp{em4b4W*P7oiR*G2DRk_x}{$gcu zf2p#xzg$_~U#YCvR_OIt!xIne%9?U&CttUeuks&QDj%*Kxs_9B2Wk%Ox$rdF>u49$ zJlgZ&I@)K@E~*8z7o>d_?M1bO_L9s$hxW2sL3<@UhxzBj$CPtqhv&jV^FnyO;Zz>) z-RKn+&s(ZI@t)Pb;921p_6k3<^;5RRKN)+n^2E2TwsXtEn~#T2G@rVf)t66wWdy@UJmE_&xK!7r;co#{GvLo*3o-OIqz8I zGoO$~WjkFyXgBH|6;@k~IMlUPwD}3>BqOgjqPW%AdhK34?8c2wyX>V)^;&&5RMoET zbVD8APZxK>xGJ61ty&bOE8SYWTa7z|KGo1^?mFM8bHDMAH)uo~sDxIhXA~*X%Uf z+Q-VN8^t(bbO3BP2B|JN1Z|hjuzwt=3z$D5_Q;TA#jrIo|JH z?l!uY4%*#XeJ@m(?(T+R>(ZT_X8g78i`yK#Tzx-mtB$^`3?(jSFhv{P`+5o6J%%SD zAeJ3CYj*F{1X?ySSn5PY_FC_c1KI! zP6Hs7GB|#xFns4qx29|R!;vecn^@tB9QexZ4656ut+3JFF)OQ$>6eLI^CD}d&bDls zZB}ZuM_`S;tHby}xAC4n2uls~jsd+98R$ooZ|XH1_@S$p@s$SI(s~|E88XF58Er&W zIsB7oMZ#cn(+JL{Oz>ZT`Q!yba37V#Zd!et{Pl;

yaajR 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 Cwiws| literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6a2e84f20c3c054fd6213e34c72b9f75077f63ba GIT binary patch literal 48125 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

2UGtb>;F;bUFrv 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e2d2939064d6da86ea8a87a13d3fba7c53b0fbb6 GIT binary patch literal 25749 zcmc(HdvILWecs-?@5N%VcmpIwE-6Cdk_1Ree2FG0fiID^1TrM`T1#3ka2Di(`vA|q z5QWWM#}SppX(EeuT(@!i+O(t4)TxOFq} zu&Lee`<=VH07$t_|0&2l_uO;O`|&&9?{UtH{r#yB{&GL`1J{4K9SZ#^U)KLc@$xKw z&L{0qNQIPD4b`lIWzla}?Sd`Oa3L(uNFgH6Xd#AYxEik|3W*?YvXGQ-sX|JgeT6=G zrVD9#_80o)nJHxCIZzmoXSR@)=U`z_oU+zBOGn$sRR5ZVu*)igurY?Ifm@6GJ8j zp~CEkPnQSUXVfF*fu*zfojV;utn(7KeM8uD61D>+To7LlzKd#S;e%>d;X~#ArRUY7 zXrHamtKDh}`M*$4sK<=&xsZBX?Rh7p_LS%Dh6|UgIQDqk5C*AT}ZqZ#`F8eWLixN@V=*7C@ma5gVVt%?Zzan`>{KN}ox1>sL z$sc^-+_l-Wv)5*e=Py2gZf^F4bN=|t7tWn~zWCsWiRaHfH+$yQ2fyT#ewy{Uw2X$j z4eh5eCAx{LUXoHjLjH{G2Orl;wtQ*sYLjwQXgu zS$dlnYKK*L4dhG0A_zMuVbN|_Y|T>fTeiL+;R%MTWIN)8)+|i7)STXhoc+Y*)#BN6 zr(b-|x0K)i^2KWxikDw~VfOjwFP-tNnm>TgFV0;&bLs54;?;|Vb6<}zk+tH7FtbuG zox4)J`r`TX7hlnFhMOUfxmJ9$r2SZFdAVFy=&nYkj(HVbE@3P_8`4J+`~JxTZf*I% za%FjXrM_HRxK&oucW#!;)#=+emfWY8k1g`s0d#&{HS_^xX7&MzGPAsjiI0gei~uTW@^tfmrvAdr#}3~^y~ZbscF8xSwHof+Q*Q+`P3c> znqL=`f5t>xUOn~NoqdS8=d~H*$s@jrUg4+UrKI^{A~D8mGk0!Qcc+?1|DVdaXv09zn<(dn9bnt`EPl>-BxRyw|So%jaKn_U)P3o8Rpu5aZFE zW==WDbuV}BTL%_6uR4G9^CxqRgX)E@hCXY}$n0hLi1riuFK2S(n8s{8;&1#%FCK#xT#Dj z;5x&ffwO?$hQBc0p2g2O0;e1*SSo~V+)_5kELMk#;E9b@#qf-(v`VNX$ZbreR3Ad( zDvlcU`|%eVD|HZ-2O7dvD-Geqs-P)Fz`J+oRbStaKu9YEQk}A3wYE*HIPtTeRwe0$3sknVBuJ^lP zh0w9kUF&VjjkKfY3*)WX7zj+6V$8GJaX_yyLc(ss3*WU=_*O(OdRQlujFI%XLZfrd z9V_+He6^f&8#&f6*PSZ4#fHvJIeHJOq*+N#3X)G@{jOq%HSKlG%Y<92Fx(J&TC zAzf`?KUS;gzRH51Di--()<7*W?JNWA_~B}~PCUcSfLN!PH{Gtkhh<%*!-d-umfESDU0?U4$ z&Sg5+=)6vcyV*L2)KYWo7VvY(l_ac01pi{GcsCrOy+5v@XYq6XE1Vu70}-=9z``J2 zhg3|(NxaH&A!8WoLIQpvW$-8APpkfS7@jKksf-#Be_CbLAc$Q*!iLnagk{u-8b#QE zI!u&}T(dyglL#3Eir$LnklLmm!E;z0QQOrH#28UIwG$zuYL|Kx&#?dnj{^fgj`s<* zN9FOHRD0DvJh!N$YQLIB%B^Zf9YDx7bx=Kl=OgNvdQv@wFWXfF6Ygn0`Z9O@=Ci3B z{?1fOj>D-pzf!5HTnY29V!&vQ&^IS>F)yoSC%5PFxy!jjPae(BNYcD*CM9R4A9HS& zo;-YH?)(B@JAXtee3zAV46~QSv=}0JDq2`Wp`z`EZ}1sWwmhTCyvN*lJF&)1An92u zax0;)s3_i2Dh9U?BqWVzfBjF~OnX2GV8n~)&v=n`7JHx7ih5BM$2vm__!5($_Ml3t z)Edk0Lr9-|BWXAJe8!D04Yh}v6G&*RWw|50e4Q`4qbl85@m@@SMPiS6zp>}UiQPK`s$n?RV%gHYBPLr<_X`f*9!KVb^SOZ z>Bry{?D=|g+r_%%mt$5r5G2k8`j6+Pw4P#I(kH|PE-&f)IQHVoje4Qqx!G8$Dq{J{ z;;NsJ`Gprhdiho0SYXptzJ-A%{YXhK+|;wk#*cxkSh%D7ICuw^g4)uJBQAGOa8g0> zep1*n`8q&;sEAyzUc59{ymHQu)=KUI7@8ZpfgQQB;Ob{tQDS>PYKUK7hmS&h9pi_1 zY2M*3laHJ2kUNRy&g{obBlI+1BIHVRgCBc@NN5lV)+g|D&cX>rVjzSu;A8$v;m5ZW zNMrr2)aF(S8BJ;YVD6dDh; zENrcI3%d>g0zd#ELf{7<(*jXbyvSl~4A3DT zYksgh15bB}g)X}*x{g`b85ct~+?(YbIFd?Z#mOx+ur<}ob=O%p6FI+RI-1>$bFMiu z^(&rPp!nlX&+@eDOqHA<+(|MN8GMs$OjGIJ%Sj}^QnI`s~3>irH_*woXT>Kk!OH=N&L z=?OR?On?4src90baYKCv5T_46nbZ&fKBPxwf^&+-7VR+rGX>;}XP6rXS@c%Kl`Z40 z{oWU_4TRd*01z7UVk!!<+Q*$8BNKNGgA(%MXR(XlwOR?c-_3yShqSSk@{;J0#a3VQ zd3OLK8ut2-ChbMrSuee2y|=#wa_{vcRmL6kGAi}1g)}Msg_lEzL*Em+68cA>m)VDZ z)_H#g@3*~3$Q`u>i5!DR?>w zAe)GDrZ?u7n#VdD%pJm#{ki$_LTLqCTPJ<4;^b--hnw5+T(!}F+yZ+ZaBoMSOQy5!m@?xag&Nz+p!5T6ye{=+8yfG$!Y`J#4e=FL)Pjm@R+TKbY;`ZwAyN?#e5Ke^e?R>B zWN(o5dyFBw#69|cgwBuB3B&OtL;=`Kgs^^^!9PalQ*{0Togb(36L7#-8QJfq39sM9 z$G^hQp`axsJ;~i71CFOTVdngU^J&B4;}Yri7+I@_>=)Q8lm*(AC0%aEC~atkdwoJq znPQ!{ks3gSnCW3#iOg@QafeKEI%;XSFm@ZswEkXv1x4ym=^?ahq)Vkab2p4UDRg(= z`#rq4>!c9c^X#_0My?)`8!t@V1NN1$3ejhWS`k1D3t&0CMk&B)H`0pLBW@HkAO=W6 zKmv-c7fILK@il0JCJATafHRR6=7<-^8|IJ~6_9fcGb*7-;S=HmByT0X1VphRr|l)Y zB$)1htYWQHeLHHAz?a0h)I=pAto?#Y;tPaUt&|(}Qsby8bM=hK)*-$!(!D$1MDK)h zU;hsNL^>w#{oDjsG2rpL<=!YqpjaD0Xu<{2wA1}Xp z?ZTzGm;KDf0DrLaeimZ?i_a6&#sthl|V1Z~AmSSIikO_K<_Z#V^e0hFk^Sco8MZPT3h2O#cWz;fv15$7D)kCMpmlXh&e z(;{Wz+Ys;*sEF+GS%i+rm$cO!HLGJ&UK_+jl)sRm2r;<{j|T-IxV{X?2{!p=#oH*4f_WROq#(UP-JsX+XaWR&7941*uXiZ8h? zh&sa{jPx_Jc%=r%>;{Ilh^fkrvg7(OYD$hA@&{LR)hR8Oi}ObgmFuDyf=~wOmi?Gf z6m?{BKaZ}^pNHeeSORvghb&(|LBhlDQyiZmM5kar2Fjih`jocDy39l;>H~~=momMC zTh}|J_EDfrpubkyjV%Gq5(^S% zwn5LlwAXL?`}Q{ZO0fooi%F#G12u#=aV-q>lu4Tc+BM?^(W9hKE@JW;EhD69qcJ9-&{8~AO^`jK_x%2^+t^Q}A0@t1YOEd#hx+y)mQ z_6{L0_*POrKi;e?6Z!e+!o|x_5}tp4_S(6#=)%U08`v|Vsyx4P!;ea{JG`#!>c5NB zW^4cV^s)aocUDrwFGZAafgQ#2h+v3bngga=x-m9P^<9X_^+6Ejd=f6`vIV-Fu7E0Y zs{c@E5gH&BekY+KcR>iqWN~{|F>J5rRU91!$sU#kft)Ed;H9vD`czh)X)Mfs zHHbm`qgKYtd@Ka%{TFY49;q`(J>aI7`r8?A0NUKoyJ^V#;6vPBcrDz@wgy{6-Vol} ztzkDSF$cY@H!MVOMBazI5u~tNqwa9dqic}$x5m8w_J}v;jhJNz7I6su@eOaJ zJ*tM+Eaw|8zNrxay-aJ|8*h(;98C144Hor;H-Y6pA@N295Hj8*LoG0qhRp=~_>J3t za{KdMvNfQr*5tZYe6HJytVdH3Tc_PE-r!xf@EE4>mey7`>up6{w|ZMqt1&U|_+q!E zThX#fZ_wLv62S1Db^F`+ebJk|XFF+ks~YECEB$kU{o@VawU7tuhI01Yvu|(cvDQe? zLqU(B%u(r|(N6y`1@ixC)PI{diFTX5KiwMkhSlV)IC8CaM`5x%3Y~sW2O*n!9l2K3 z7B76yUj9|gkw?ZtYOA{)?lvzv7P=8`L9f5G1O1UhUp>;=-rC`9YmcZ$yhpt4-j2oa z7o)`)b94~(+=btxD19g5?DlrzD@cvE6Xa!g^M^M} z<_u*qvN+Ndp*GHPd7-jc0skyic)v*d$!bFsoa=q0P^Oz7C{#VC%EX4yr9!?;$sU>7 zTw_uELc)52y}1nx4`_`j|At9DNOZgq)?h3UDH$R~Jv3wuuvOsBAVglIsZ@5qgbW02 zHy>F?q}EFmjEWqJ;W*X81YmLKxoMMQK=~gd7eBfP`2$4Bu3mxO86jHHxkaZ+N2G~l zG4IDITp_0ZDBhsQ^y7Ta01fnZKXvNoAUQdj1^t zzw!dCZC0V#!wA6SWq+>TaG~8>0g$(w5m;9&h}!_O_V1Wo^5WdpYcL8qccl=!dSUj; zxwE>B@aBm0LPx{{Y^r9aRCDyXa@`p897kbdkVNsw@RdfxoxbQyUp761=uWf$S_xv5 zj(}Bi)xXaot<;8*BfaO3Xw%sX#{+v0nhDmZ4Ff)`P|$pjI?`R(5h6#i8vr7L@yC1w zyUu|Z(*yl=_$pb*cOmnME>QIkYXr;H+^T%5zImgHIW!8=zlaP(m1hi0C_-;;edrW0 z@sWA>R(Ul)rGJejlR@=k7hkwcO+y%#KYnEP%9#s#iQ!>@m(63p%v2&yo~2JfPPF0> zxoS85!aG8hBLf#DRC z7)E3iCjb^~Bul6x@6qIh^hcQ3^o7!2VMv3Hrt^nz^1BSk`i~4?Wc@$k6bQG_4Su}h z6uBN?8ChN|L1PY<4?-vyP6n^gy1;s}^Fr;*?=X`eg9BVf))6%`(h)%y-{4p2m59cy zqBuo6SXU%1`tS22Q3p`vvJ9;LJq8JY`!anWlaH#d{|?_at-HTqm;jlh^!*VXQUE_H zkYtWi;WKy-MIo57w_qwnM3<5PyD2&r!FL%uVNK*%A zJYYDXlfsS%EZBm02fjFd2|;;D=zxc3KggzkY zaj6CL!S5Xd;v4oR)abj`d%J+YCV@`IT3fs=Y7B9=dRx44Z|e!-v30C-i0<^r-ooG)2i|+D3*NZSufV=fx zwD~Fg=26S-YfvBEvtR#Q>rwB~rC4jXyTjY<=EPw6KYP1dQ}vX$yS-C-dJ0Homp3Jt z5N*HxCDeTitzc`mO(GY4$Yn0O?^-707LXdkrhvevj5G(~K*-z4!F`0;NCh?eQLy*!k98Z?E^bl<;YkfLaG7#E|>1dQQzn+T?_R`7bz3-u7Vc$I+wJKHk|1M>7D_rlKSf*uR&&$$_IMm-9YdZ^bsoBHH{cfi|=J_+leL7(jQW=x-~ z%RP55qCeuzpv4?V_?z3j9ZLti885CL17bbsvHXJu`PO$sE_d)&3h`orWG=t-gnAri zE_>cZt&ME1?n-N)L|ZZPSdmWzt>5K6f&O{&A#HwgW1A&@maWD-c&hb;_Y`L-_{FD? zgVj2Oo;u_ml0MnlK5Tq4iZRseGcvY$epOprhws^S7tbSDuSdAX!I_Mzy;!SJ{n20r z?L)1OHh)6ubyQ~CpnFs(#kw_!ReVJ4$7gc&-bwER zc#ne$L~l>ri`@S6KqAVXk7}>e^X(@Tjumu!T{TZj3#h)FSx4(mv`>0CGytmn6#DLn zcLaHS-aCSK^kC~qZ!T;oInumWtIn?L8CZu>bvX@J^$q>t+q|_-HUE$3*eF)twbi`LKJMa%G}mHGGo7p%J)a zczyupp@-XNpkkof9~?E>_}8*Fw#qy_+&&AQ%~B_z3^4+u!!KhM|Ky36!60>1##b>* zWc|eT^WFYEr%p-^JKE>hz=^*dtRjw!yRH3*w~Jq?UhYT))K*~dQ>BjpcXTm9aKIo} z3K&C3pvcJem_FgYW^xx7bGPn5Es(o@9S?97*RMnW+RdgLe}Asxu0tfH95lRDS~2cN z0hNWDxjU6=l~{%0gem~YIrmPZo0BM5$(2GcSArDKFqS|x<&~@gm=1RY_G`C1qVOY<+H920mqAtdUaKLF?S8@=l&eur3L}RdLZCe zrQ)cpE_YiNz&J9Dou&tz=>8lUL{4;nj%ZyzcWnZCs`K@kk>#Z95O&BL#(93#m7^)5 zKfnQxim~^?pfu|1>m8)+R<4uI3^frd`is&84!|^(5jl$EsjL?RGRaVE2&WGpelm}K z=w{VD3xc>{{+3}>1O(g}q1>J`m*vz(?#Y>>`(S+7O?M6B7#JX-2n>`A_VESUG#yZ5I58i zvWEObC&%-JZJlm=Sa%yO_n!eUi}*pe>7zhEwB4ff)pz;2hfV~}0^oS}kFcD9!n0Fv z^1ikm`W<}LKS)P-E^$Qa^1}%G7BN0Eih(vYcN&x*%*FMx7x1rQ{?Q!RBx%rp%ACJO z=a1n)x)XzPt6ZuXxd1glB0&My9#?v`s8{OO=0tybe}tlb+IxrvUtj@!-#U4J%&5>d ze`=0)`u4cti%3dfGyR`f2KgOL`Al=i=F}iBB1jKPXoew#L3M^j$+mG3G{;Y4iA=Mp z6^NEdnHEc!;|lQ;AOKh~i;d<)uO4P*up*oh&F~X52b)>po}lZ(40mSSw_J*>aQez= zK;R#~u~KQKrl4gti@GT$B1MR6prSd>NAAN@&g=KB{mt1IyT;;F%;c)&8zm4mld!w+ zK^__;WnA+&jBp6VK9F6JA!`m89q^Q#EcdBKGR;Ax+5Iawj=hLzr-|Mu+e&hPA&~d8;`ROt4FnVrTtAb%_&hq;)VDxuy8xr<}%$UMP!|PYN0Xbtt z|Cy@5uF23Nonqntk`BN#`U6YGPqKibsK2P3GUBB#z=yI>fNLaAK0o~jI)6oHh~N7b z8aN#nEW1MtNwex0Cr)D=MC_hfgh7(o+hC*%;wBcgky`0i*&lY$0LVBOR$T7wG}Onj zMLD0K#AHNIFyojIUq_F!+A(Kk5hDoMP!)1y97S_rwHx690R5M&+$WhLik_@FI?aGJ zIE69OxiBKv*n(&<#&zZtMooAy8}Nz!0Yk3tzUwD+qgtKE35NWco=A)az_*|?iwT%< z%(S8Hf~HMjVQhZkq2yPDP?Uk`Z`1h{9KXL~`y>Yz{9%D8U2`!L*ik}@?Bs7V>8F`A zJP)g^pWy3H()qh|{vI8XwNVEuR!5v`Vw3hIhER@HFe13+#kUH^Y>d8?S-(a2<>+X+ zu?(Z@g+ihM3qa|W_??En#rYO(idr?w@kp)|1F4Q55tD_ejFu73K`a~6zrqrekQkZ* zpkajksjR`TLGm4BUP#uc5JA5WM5Oc5ZM|7eLdj4$vte)A!yx@MCm6nrN;%iy zga#?!qhYTxfJ?w=g>NZH4$~qb%u=Ff41XajcB3X4N=DOm)0msi1bzJg5Fw#GgP%iK z;fBPR=MXjN?XVlU8**U-24%5LTLzrU7b`KS+rqFofne;eRYDrDF)+^QQ>)k+rWbhp znET-jHjLfK6E;>+3EaFDjN_xuVb~4vP6s$rwrM@el!1NqzhOjyKH{*Vezqt?n?;(# z&A$v(Wh_KQz??-VKo>D)K+)#N8+w67k)}&8+(dmIwD$Whw#=}%5pih5O~7O+0wy;K z@m$PJfr*S#+ychXW#>%1X$nmqofif_2?s z{RmQz@qK9=0@R5mh!H7PfFd{E-a^GX)Wit&hL^T}Jk%P2>U`){1Y(Fm2t^-5oNW-k z8kJ@YOl`)?8pZkTU+giq5I~H9LEa8AhoxUJ46+d^_2PI?F6QIw>_rQybFW-GH^-A9 zS9>t}T7JjoY131%EOTCnGUz?}9tIv}IK2+gp?bpaH?XA$YbFpVEfb5oouA-7gdj&B zWMuBly2TF>Y~LV|j$5p`6&!FO#V?DmpXaXVLkwUFn%a<>`$@(qN|ZRZU|qtg7Vhi% z6L9jQX7lUqVBEYkcK|IL5_tk+Bl6?)$*x2oNI^qLcJ4w-R#TA}z<{XVz;{q`R7Agw zSOo({SOeMo3n{Y~O2DRNG$1RZdy>)lHLjvl$S)+skxCa@3}%FMk!Tsh#ZZ!Bl2#HT zl2?+UGzct-TE~)bQ|=p<9cn5%XIXZnLNMZiWgw=7)qJ7LI`$MUkQ8*JBIN%8kAOXR z9@EGy$YQS4MfHtSmw+uj{to!RAKPXxiKflaCW@j9sL-FX`S^i9YX(+G8xlUy05(Dz zKsHRV@^8`eP8M*cvR;jqN56aPX8YtV%*W`R9DF zcd#P}x80Fg-ue}c78xTTg0M-_zu*qwTNYM8 zKgDM|?Se4DXl?)`5cZ&qEoO>1m75m|5AH;mmfje5rUmATkxI-ocXy*AuvXGMp@0z} z^VRLcndT6(Dpd*fLVJ>sdcc+8K%ll3Th*W_EEDX()a*_w{GQ1}k3JXRk3NVzGn_B9F z(ZLl=fgp?_PTfr*UK(HOe72KN1|oi7bK1-V!w4x3`yHl^v#5(m@O3bR5Zq0~FTPTjo`{6egCzOvLG~I68jvJ@9rP5$+|Xy+kf0Agv;NV8rq8f& zx~IzC4>xd8K=BYk4`MpIRDwp09|!`+S_3~8Ak?hMHV)HbUrxAvz!Y)86d#8@X%Y(w z;ZTUCV0W4VqUeLlv=7hpx_uU>r=Y;dm_xO|5d%EG1chjSpb*VKAu=F&#gW&MRu)EL zP@h7rnd7bxwZ{mJyr|xTk=GD*|KSs%+h6IG(DNaeK|v$`g}7lU0)soKR^4GyI_~yH zp-fGAqcGfJYsS1W)JpIMi~xtBezEi%j_(e7V}ZhtIK>#dy#b|A0wq(m%DN0e)oAH^ z?l?-BfKpOIpdMow%=WrD45^gFOdtk)C~t&Ei-DEKp=x9QjiSvNQ7%)NI=QYbA)uj2 z4@z0Yh6$dx)titK5-0(xCsRk(tCvP*@mPRq{tPqY|EqLxCucRcC6NxA1L8Bl*f{0; zFyWw1a^2u(#BulSnVI`r0+DcF*&wo22>xknFVJ46nWmpk22OtKy5)M9IlV7d%kt~P z02?a3UfLsq9$e@Z(mUu7rU#-I`Y3-f9K=rg#HQy9_>kYW8D(|l1o|*z9-(uTj({#o z0W>X>A1Vdt3IO!ejPfN$Cil-%4FPmJN#7|t&(QgKe(mz?o5;3q;%k!^^noyS9GY1Lp$DkZJcTTGGS37pH+>N^tw8O2H&H2Bmif=Eeg7T_BIt z?_nJS5SUt~K(hjV2d2MiZvYhPW^Y}>>OKvQiz}JN!WPUnan9-E;B>rU(2Osw`#u6% zFoLk%;Clwe5M(#FwGl5X1|qgf-%8-?oIAKQL=zJahRpAVkuPW)_^M&j6F{B4Qm+xh z9Nh1A6SdEFj=cmmhN<)tDgBr`>ZRLbYXH8j@lI=KJWW#o4`wtlEeW;9L5WhJMPUI+ z6HsJ=F2Uca&zIauP%B<@fY5dA9tIvAEPVoVt&1gJl#6dfF#Ohm&%?t{-o<=cHC>q;Iqs&{NaIgf86GW^qudBPq1>wT- zZKM7yFrbUR>oy#KaS;+>s?HW};@sAzG6EZ05%1+hcOYs>r~{SiW(LWe z5K+OA6-%^e; z?}p|$bOg5hMc>=48M~;{)UFD%E=odvS|-1ua(h^590GE{b*<*i4N5BC&4dRxgW*Q0 zMrl*ZvC+bQiZ1i|b#kfXy{}VW-P3FDm!=?cH#FHd9zB|zDnnXDN zb)!-*RZTHWfy<9{kZO|>veU?pN<7dFQsGNYG<4-bv!pswh5flQY?5>5X_?$(Dc6sT z$pi{#bd^JkYnid~+AS}L)63uiW-JU!Oy=LY07pST*uoJy;71(z79$Ftq~x)P-C(zP z_Q<@)^s~6eh(|2KIL!n})Vq+}iHUExb7&5txC2m4_2F^(L(ffLoI8K%vz9<=m`%$* z+>a7Pj)J@EFEByWqI-3A=A7yZX*zQ#{pnKIEr2*z2n2wz<(^_E0 z^lT4$tV_G0Gbjq+Pdejk@Zgxg-Smuf07rXpgjMVk(E-Z771DbFrg3Q|ZhpGP>p}r- z(IF}}j&wZ8ikkreYzcN@$%q?fq9NG$#g4+-^91hwgS9kbGoFgK!{*u`FUr_!!Qtq@ znkIr%jP1bIBZ|{6xQ&LyHaNv->#u?0!wxG$+bWl- z2T(^j1}2a(J15t;2>5E^X2g9@Y~VAf*v<4<8&eSe>!$4O;JN0CT6%9+vb|a47NJH?{GS2v(fa+Tm{u4sI~WbZ#(^t1E1_ z-(0t086fwAh_v!sd}gG5o)}T{tfHi$)$Plj8VCoRzd)PizXpYs#Z#M z*H}IrI&?7KF>D~(Rp?A~ELQ>!dWkN#`N&Iw{Y!^t$VE(3nnZU>=hK=XOaC05J9GpQ zZ>6s%73eNKqY;$lNP~2ofbT9nKOPhyDj2cRmixX6c1>x@t2g&oX5;7)_&GDklt=Dp zZY@$gI|n%()DhpIa)s)P6odta>7~E`H>wzM$phCCfcoXB%H zGl2_Yn*Bmgr%n245TE^wAcDaOn5t7bqPyvfT;z zs1K%~a2fiEY6EhazhvTHqa#A#uh930bha@zlw`}R+~M0F27 z$8iN@V*yvniIV^G48OqeMCUSFbFhMfd2^V8L`DBYI`7hv=Kd0WU!e1wbb6y0VRsA5 z_#yhJ5D-C}NPdmX?mELtbjYM>cGbG>la8eJNtfV|mO9VEfpm@M6zo*qwo+OApvgPsXNS=@8y!u`I`jYKlBD}i$fsnJ9_aZGYsKt|oaLHLsRox#s}OC(D; zb_s6B9PKe@y%jetdjdK+6}}sWoJMX4!dX|j=+KqZ-Z#L3kR!Rh8#*buc_%Q@#NCrP z1C4XA&{^S520aJEer%|eG?9~I-ja^teKcp}Ej%!q|1{qFancq#DexaWSt}RlipDF$ z1EMg;9N>)&;F3P>W^tKY%B3Mb?sH&>muL^Ig!2v~Ds&)QCYdmNMtSk>WG>eG;4=U%hun6-NI5>`!&jkje-%ao?IT+Crafjdqxn2Mp19CD}a=ZD3s{l7ElmPGR&51p{ zMYy;JcMSJjgzSb%R;2ROu_L${b$J2z?v!v;O~1uey9&pTy>;wJ@yMY<1RtJ4+$drl zIi$ar-*CdvJ#q*;xkNWXv}LS9?A{I1AL-;pBW;>y)Nv$UJEba7G|ausf2~;MDLDCY z{UmE1)npBg%PXBkNc#VPIWMG0u zr(g?fII>li`$_cAGR6<^V+sf7ikGjP<2}>gVgT+7cJqUNBG?sh@T*o@!foAAoC(Dv zg3fl#t}DW+t4tH)Frp&U%yyYhjlprT>qGbog9J-f>H8R++jKT=D>Mt~Xyl4KnfkNb zVy+`1FWAHVBe;Qt<`gLyH;^;n77+LA`j|=l4&VvYH#H}O{ ze1Q}_My6{iB0dp+(TCgmK>TjMa{Dp485aB6H5~I7`D6)&`2%Mzy>NN<+Qrk)pDSLQ zeeUX}b9DKbSniaoW($)+2xG+7op9aQwX#2bgWXB+&kJ3s&*3j4_AD_=VsLMLk=L{? zuHdRaT-mCLzxBVMBa+su=qEozgC82XIWuDFmh8U!(Q*yul5!1`xm<$NRnIV0oOc^Q zBw^&cqHVv6Z~;bUx)V_8KVX6<=uo{FT&ZH_g0`Gq|qwjx@fz&Kwg=m;8=c`7J;E5hVjvFGKI1_L|eNG2lyGd~WU% zj`Gc3J?F=9&h_-AtLOAvjO^0+Cv^T9oqtN_XXu=!^XqW@SYv((N0H@vT%*}4@f)YS zewU6Y9eeXde8-qFaRTrZ_bi`^_id>(2gZi--@JSk8gLaapsAt4qPxwiDjY*&J)nuo8=)Zu1=i@k$g-7@xJ8*LT5Ayk&7@{% zlBpwFL!MXEoG69{*QB7Y z$lMprsEKj6G0w-h534xft*n&?QGhuCcTY&vTxA3TChe$=IoB|!gE?PTIc@G?TzeVE z>2uOsoA)0j?4T;8R^h0WVOsF?Fy+%E3t5&ZB~+LcJRD66rqi-e+dmN^8JG>0uzeAa zWSPgRoJuB)&yp-lh8apDB??w@(E~{_e2-avesF@s>bpql60!wIpF z`d)Q+WPSbkP!znBeV!_vrNe$aTp{o0sbbsJtnPKgcI6@?(19Kpe|Lq7fi@ILZwMLJrytN>wj&@JIGjaxKZ*b7f1v!R^e+BtR;C7yLFy9nMm0&s?&NQwSm#wtC z6BeZoZ>nBPcCdu;YNv6~Wg5#RqB2wF@>poQ0+hALYfoB?O>1vfiN{iw(zqH$}-P7{)KH}-9S=ZWCQ|mk-F3c|921edTXW`$Gl{5Y-p*ZU5T~eBGBTbc~x)9 zw4dho;nvmbNt)IGi!HlpvogyNt$noh2Ba-&x(~IM>2Ru-VHX;!pOamR@ptl)Pcw19 dftm`Dxzq=r1`dUF=)$^3!N-4xc3o;4hd*;A`7{6k literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fea79db3283a5f0a6ece1739c8d6590662b97bea GIT binary patch literal 21514 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c557c24da8a838f653ba2b1d93e2733f32330a21 GIT binary patch literal 62707 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 V)>{7K&!)__j@1Tk4b~L%{|B1ld6xhH literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/misc.py b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/misc.py new file mode 100644 index 00000000..cfb318d3 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/misc.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Backports for individual classes and functions.""" + +import os +import sys + +__all__ = ['cache_from_source', 'callable', 'fsencode'] + + +try: + from imp import cache_from_source +except ImportError: + def cache_from_source(py_file, debug=__debug__): + ext = debug and 'c' or 'o' + return py_file + ext + + +try: + callable = callable +except NameError: + from collections import Callable + + def callable(obj): + return isinstance(obj, Callable) + + +try: + fsencode = os.fsencode +except AttributeError: + def fsencode(filename): + if isinstance(filename, bytes): + return filename + elif isinstance(filename, str): + return filename.encode(sys.getfilesystemencoding()) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/shutil.py b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/shutil.py new file mode 100644 index 00000000..10ed3625 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/shutil.py @@ -0,0 +1,764 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Utility functions for copying and archiving files and directory trees. + +XXX The functions here don't copy the resource fork or other metadata on Mac. + +""" + +import os +import sys +import stat +from os.path import abspath +import fnmatch +try: + from collections.abc import Callable +except ImportError: + from collections import Callable +import errno +from . import tarfile + +try: + import bz2 + _BZ2_SUPPORTED = True +except ImportError: + _BZ2_SUPPORTED = False + +try: + from pwd import getpwnam +except ImportError: + getpwnam = None + +try: + from grp import getgrnam +except ImportError: + getgrnam = None + +__all__ = ["copyfileobj", "copyfile", "copymode", "copystat", "copy", "copy2", + "copytree", "move", "rmtree", "Error", "SpecialFileError", + "ExecError", "make_archive", "get_archive_formats", + "register_archive_format", "unregister_archive_format", + "get_unpack_formats", "register_unpack_format", + "unregister_unpack_format", "unpack_archive", "ignore_patterns"] + +class Error(EnvironmentError): + pass + +class SpecialFileError(EnvironmentError): + """Raised when trying to do a kind of operation (e.g. copying) which is + not supported on a special file (e.g. a named pipe)""" + +class ExecError(EnvironmentError): + """Raised when a command could not be executed""" + +class ReadError(EnvironmentError): + """Raised when an archive cannot be read""" + +class RegistryError(Exception): + """Raised when a registry operation with the archiving + and unpacking registries fails""" + + +try: + WindowsError +except NameError: + WindowsError = None + +def copyfileobj(fsrc, fdst, length=16*1024): + """copy data from file-like object fsrc to file-like object fdst""" + while 1: + buf = fsrc.read(length) + if not buf: + break + fdst.write(buf) + +def _samefile(src, dst): + # Macintosh, Unix. + if hasattr(os.path, 'samefile'): + try: + return os.path.samefile(src, dst) + except OSError: + return False + + # All other platforms: check for same pathname. + return (os.path.normcase(os.path.abspath(src)) == + os.path.normcase(os.path.abspath(dst))) + +def copyfile(src, dst): + """Copy data from src to dst""" + if _samefile(src, dst): + raise Error("`%s` and `%s` are the same file" % (src, dst)) + + for fn in [src, dst]: + try: + st = os.stat(fn) + except OSError: + # File most likely does not exist + pass + else: + # XXX What about other special files? (sockets, devices...) + if stat.S_ISFIFO(st.st_mode): + raise SpecialFileError("`%s` is a named pipe" % fn) + + with open(src, 'rb') as fsrc: + with open(dst, 'wb') as fdst: + copyfileobj(fsrc, fdst) + +def copymode(src, dst): + """Copy mode bits from src to dst""" + if hasattr(os, 'chmod'): + st = os.stat(src) + mode = stat.S_IMODE(st.st_mode) + os.chmod(dst, mode) + +def copystat(src, dst): + """Copy all stat info (mode bits, atime, mtime, flags) from src to dst""" + st = os.stat(src) + mode = stat.S_IMODE(st.st_mode) + if hasattr(os, 'utime'): + os.utime(dst, (st.st_atime, st.st_mtime)) + if hasattr(os, 'chmod'): + os.chmod(dst, mode) + if hasattr(os, 'chflags') and hasattr(st, 'st_flags'): + try: + os.chflags(dst, st.st_flags) + except OSError as why: + if (not hasattr(errno, 'EOPNOTSUPP') or + why.errno != errno.EOPNOTSUPP): + raise + +def copy(src, dst): + """Copy data and mode bits ("cp src dst"). + + The destination may be a directory. + + """ + if os.path.isdir(dst): + dst = os.path.join(dst, os.path.basename(src)) + copyfile(src, dst) + copymode(src, dst) + +def copy2(src, dst): + """Copy data and all stat info ("cp -p src dst"). + + The destination may be a directory. + + """ + if os.path.isdir(dst): + dst = os.path.join(dst, os.path.basename(src)) + copyfile(src, dst) + copystat(src, dst) + +def ignore_patterns(*patterns): + """Function that can be used as copytree() ignore parameter. + + Patterns is a sequence of glob-style patterns + that are used to exclude files""" + def _ignore_patterns(path, names): + ignored_names = [] + for pattern in patterns: + ignored_names.extend(fnmatch.filter(names, pattern)) + return set(ignored_names) + return _ignore_patterns + +def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2, + ignore_dangling_symlinks=False): + """Recursively copy a directory tree. + + The destination directory must not already exist. + If exception(s) occur, an Error is raised with a list of reasons. + + If the optional symlinks flag is true, symbolic links in the + source tree result in symbolic links in the destination tree; if + it is false, the contents of the files pointed to by symbolic + links are copied. If the file pointed by the symlink doesn't + exist, an exception will be added in the list of errors raised in + an Error exception at the end of the copy process. + + You can set the optional ignore_dangling_symlinks flag to true if you + want to silence this exception. Notice that this has no effect on + platforms that don't support os.symlink. + + The optional ignore argument is a callable. If given, it + is called with the `src` parameter, which is the directory + being visited by copytree(), and `names` which is the list of + `src` contents, as returned by os.listdir(): + + callable(src, names) -> ignored_names + + Since copytree() is called recursively, the callable will be + called once for each directory that is copied. It returns a + list of names relative to the `src` directory that should + not be copied. + + The optional copy_function argument is a callable that will be used + to copy each file. It will be called with the source path and the + destination path as arguments. By default, copy2() is used, but any + function that supports the same signature (like copy()) can be used. + + """ + names = os.listdir(src) + if ignore is not None: + ignored_names = ignore(src, names) + else: + ignored_names = set() + + os.makedirs(dst) + errors = [] + for name in names: + if name in ignored_names: + continue + srcname = os.path.join(src, name) + dstname = os.path.join(dst, name) + try: + if os.path.islink(srcname): + linkto = os.readlink(srcname) + if symlinks: + os.symlink(linkto, dstname) + else: + # ignore dangling symlink if the flag is on + if not os.path.exists(linkto) and ignore_dangling_symlinks: + continue + # otherwise let the copy occurs. copy2 will raise an error + copy_function(srcname, dstname) + elif os.path.isdir(srcname): + copytree(srcname, dstname, symlinks, ignore, copy_function) + else: + # Will raise a SpecialFileError for unsupported file types + copy_function(srcname, dstname) + # catch the Error from the recursive copytree so that we can + # continue with other files + except Error as err: + errors.extend(err.args[0]) + except EnvironmentError as why: + errors.append((srcname, dstname, str(why))) + try: + copystat(src, dst) + except OSError as why: + if WindowsError is not None and isinstance(why, WindowsError): + # Copying file access times may fail on Windows + pass + else: + errors.extend((src, dst, str(why))) + if errors: + raise Error(errors) + +def rmtree(path, ignore_errors=False, onerror=None): + """Recursively delete a directory tree. + + If ignore_errors is set, errors are ignored; otherwise, if onerror + is set, it is called to handle the error with arguments (func, + path, exc_info) where func is os.listdir, os.remove, or os.rmdir; + path is the argument to that function that caused it to fail; and + exc_info is a tuple returned by sys.exc_info(). If ignore_errors + is false and onerror is None, an exception is raised. + + """ + if ignore_errors: + def onerror(*args): + pass + elif onerror is None: + def onerror(*args): + raise + try: + if os.path.islink(path): + # symlinks to directories are forbidden, see bug #1669 + raise OSError("Cannot call rmtree on a symbolic link") + except OSError: + onerror(os.path.islink, path, sys.exc_info()) + # can't continue even if onerror hook returns + return + names = [] + try: + names = os.listdir(path) + except os.error: + onerror(os.listdir, path, sys.exc_info()) + for name in names: + fullname = os.path.join(path, name) + try: + mode = os.lstat(fullname).st_mode + except os.error: + mode = 0 + if stat.S_ISDIR(mode): + rmtree(fullname, ignore_errors, onerror) + else: + try: + os.remove(fullname) + except os.error: + onerror(os.remove, fullname, sys.exc_info()) + try: + os.rmdir(path) + except os.error: + onerror(os.rmdir, path, sys.exc_info()) + + +def _basename(path): + # A basename() variant which first strips the trailing slash, if present. + # Thus we always get the last component of the path, even for directories. + return os.path.basename(path.rstrip(os.path.sep)) + +def move(src, dst): + """Recursively move a file or directory to another location. This is + similar to the Unix "mv" command. + + If the destination is a directory or a symlink to a directory, the source + is moved inside the directory. The destination path must not already + exist. + + If the destination already exists but is not a directory, it may be + overwritten depending on os.rename() semantics. + + If the destination is on our current filesystem, then rename() is used. + Otherwise, src is copied to the destination and then removed. + A lot more could be done here... A look at a mv.c shows a lot of + the issues this implementation glosses over. + + """ + real_dst = dst + if os.path.isdir(dst): + if _samefile(src, dst): + # We might be on a case insensitive filesystem, + # perform the rename anyway. + os.rename(src, dst) + return + + real_dst = os.path.join(dst, _basename(src)) + if os.path.exists(real_dst): + raise Error("Destination path '%s' already exists" % real_dst) + try: + os.rename(src, real_dst) + except OSError: + if os.path.isdir(src): + if _destinsrc(src, dst): + raise Error("Cannot move a directory '%s' into itself '%s'." % (src, dst)) + copytree(src, real_dst, symlinks=True) + rmtree(src) + else: + copy2(src, real_dst) + os.unlink(src) + +def _destinsrc(src, dst): + src = abspath(src) + dst = abspath(dst) + if not src.endswith(os.path.sep): + src += os.path.sep + if not dst.endswith(os.path.sep): + dst += os.path.sep + return dst.startswith(src) + +def _get_gid(name): + """Returns a gid, given a group name.""" + if getgrnam is None or name is None: + return None + try: + result = getgrnam(name) + except KeyError: + result = None + if result is not None: + return result[2] + return None + +def _get_uid(name): + """Returns an uid, given a user name.""" + if getpwnam is None or name is None: + return None + try: + result = getpwnam(name) + except KeyError: + result = None + if result is not None: + return result[2] + return None + +def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, + owner=None, group=None, logger=None): + """Create a (possibly compressed) tar file from all the files under + 'base_dir'. + + 'compress' must be "gzip" (the default), "bzip2", or None. + + 'owner' and 'group' can be used to define an owner and a group for the + archive that is being built. If not provided, the current owner and group + will be used. + + The output tar file will be named 'base_name' + ".tar", possibly plus + the appropriate compression extension (".gz", or ".bz2"). + + Returns the output filename. + """ + tar_compression = {'gzip': 'gz', None: ''} + compress_ext = {'gzip': '.gz'} + + if _BZ2_SUPPORTED: + tar_compression['bzip2'] = 'bz2' + compress_ext['bzip2'] = '.bz2' + + # flags for compression program, each element of list will be an argument + if compress is not None and compress not in compress_ext: + raise ValueError("bad value for 'compress', or compression format not " + "supported : {0}".format(compress)) + + archive_name = base_name + '.tar' + compress_ext.get(compress, '') + archive_dir = os.path.dirname(archive_name) + + if not os.path.exists(archive_dir): + if logger is not None: + logger.info("creating %s", archive_dir) + if not dry_run: + os.makedirs(archive_dir) + + # creating the tarball + if logger is not None: + logger.info('Creating tar archive') + + uid = _get_uid(owner) + gid = _get_gid(group) + + def _set_uid_gid(tarinfo): + if gid is not None: + tarinfo.gid = gid + tarinfo.gname = group + if uid is not None: + tarinfo.uid = uid + tarinfo.uname = owner + return tarinfo + + if not dry_run: + tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress]) + try: + tar.add(base_dir, filter=_set_uid_gid) + finally: + tar.close() + + return archive_name + +def _call_external_zip(base_dir, zip_filename, verbose=False, dry_run=False): + # XXX see if we want to keep an external call here + if verbose: + zipoptions = "-r" + else: + zipoptions = "-rq" + from distutils.errors import DistutilsExecError + from distutils.spawn import spawn + try: + spawn(["zip", zipoptions, zip_filename, base_dir], dry_run=dry_run) + except DistutilsExecError: + # XXX really should distinguish between "couldn't find + # external 'zip' command" and "zip failed". + raise ExecError("unable to create zip file '%s': " + "could neither import the 'zipfile' module nor " + "find a standalone zip utility") % zip_filename + +def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, logger=None): + """Create a zip file from all the files under 'base_dir'. + + The output zip file will be named 'base_name' + ".zip". Uses either the + "zipfile" Python module (if available) or the InfoZIP "zip" utility + (if installed and found on the default search path). If neither tool is + available, raises ExecError. Returns the name of the output zip + file. + """ + zip_filename = base_name + ".zip" + archive_dir = os.path.dirname(base_name) + + if not os.path.exists(archive_dir): + if logger is not None: + logger.info("creating %s", archive_dir) + if not dry_run: + os.makedirs(archive_dir) + + # If zipfile module is not available, try spawning an external 'zip' + # command. + try: + import zipfile + except ImportError: + zipfile = None + + if zipfile is None: + _call_external_zip(base_dir, zip_filename, verbose, dry_run) + else: + if logger is not None: + logger.info("creating '%s' and adding '%s' to it", + zip_filename, base_dir) + + if not dry_run: + zip = zipfile.ZipFile(zip_filename, "w", + compression=zipfile.ZIP_DEFLATED) + + for dirpath, dirnames, filenames in os.walk(base_dir): + for name in filenames: + path = os.path.normpath(os.path.join(dirpath, name)) + if os.path.isfile(path): + zip.write(path, path) + if logger is not None: + logger.info("adding '%s'", path) + zip.close() + + return zip_filename + +_ARCHIVE_FORMATS = { + 'gztar': (_make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"), + 'bztar': (_make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"), + 'tar': (_make_tarball, [('compress', None)], "uncompressed tar file"), + 'zip': (_make_zipfile, [], "ZIP file"), + } + +if _BZ2_SUPPORTED: + _ARCHIVE_FORMATS['bztar'] = (_make_tarball, [('compress', 'bzip2')], + "bzip2'ed tar-file") + +def get_archive_formats(): + """Returns a list of supported formats for archiving and unarchiving. + + Each element of the returned sequence is a tuple (name, description) + """ + formats = [(name, registry[2]) for name, registry in + _ARCHIVE_FORMATS.items()] + formats.sort() + return formats + +def register_archive_format(name, function, extra_args=None, description=''): + """Registers an archive format. + + name is the name of the format. function is the callable that will be + used to create archives. If provided, extra_args is a sequence of + (name, value) tuples that will be passed as arguments to the callable. + description can be provided to describe the format, and will be returned + by the get_archive_formats() function. + """ + if extra_args is None: + extra_args = [] + if not isinstance(function, Callable): + raise TypeError('The %s object is not callable' % function) + if not isinstance(extra_args, (tuple, list)): + raise TypeError('extra_args needs to be a sequence') + for element in extra_args: + if not isinstance(element, (tuple, list)) or len(element) !=2: + raise TypeError('extra_args elements are : (arg_name, value)') + + _ARCHIVE_FORMATS[name] = (function, extra_args, description) + +def unregister_archive_format(name): + del _ARCHIVE_FORMATS[name] + +def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0, + dry_run=0, owner=None, group=None, logger=None): + """Create an archive file (eg. zip or tar). + + 'base_name' is the name of the file to create, minus any format-specific + extension; 'format' is the archive format: one of "zip", "tar", "bztar" + or "gztar". + + 'root_dir' is a directory that will be the root directory of the + archive; ie. we typically chdir into 'root_dir' before creating the + archive. 'base_dir' is the directory where we start archiving from; + ie. 'base_dir' will be the common prefix of all files and + directories in the archive. 'root_dir' and 'base_dir' both default + to the current directory. Returns the name of the archive file. + + 'owner' and 'group' are used when creating a tar archive. By default, + uses the current owner and group. + """ + save_cwd = os.getcwd() + if root_dir is not None: + if logger is not None: + logger.debug("changing into '%s'", root_dir) + base_name = os.path.abspath(base_name) + if not dry_run: + os.chdir(root_dir) + + if base_dir is None: + base_dir = os.curdir + + kwargs = {'dry_run': dry_run, 'logger': logger} + + try: + format_info = _ARCHIVE_FORMATS[format] + except KeyError: + raise ValueError("unknown archive format '%s'" % format) + + func = format_info[0] + for arg, val in format_info[1]: + kwargs[arg] = val + + if format != 'zip': + kwargs['owner'] = owner + kwargs['group'] = group + + try: + filename = func(base_name, base_dir, **kwargs) + finally: + if root_dir is not None: + if logger is not None: + logger.debug("changing back to '%s'", save_cwd) + os.chdir(save_cwd) + + return filename + + +def get_unpack_formats(): + """Returns a list of supported formats for unpacking. + + Each element of the returned sequence is a tuple + (name, extensions, description) + """ + formats = [(name, info[0], info[3]) for name, info in + _UNPACK_FORMATS.items()] + formats.sort() + return formats + +def _check_unpack_options(extensions, function, extra_args): + """Checks what gets registered as an unpacker.""" + # first make sure no other unpacker is registered for this extension + existing_extensions = {} + for name, info in _UNPACK_FORMATS.items(): + for ext in info[0]: + existing_extensions[ext] = name + + for extension in extensions: + if extension in existing_extensions: + msg = '%s is already registered for "%s"' + raise RegistryError(msg % (extension, + existing_extensions[extension])) + + if not isinstance(function, Callable): + raise TypeError('The registered function must be a callable') + + +def register_unpack_format(name, extensions, function, extra_args=None, + description=''): + """Registers an unpack format. + + `name` is the name of the format. `extensions` is a list of extensions + corresponding to the format. + + `function` is the callable that will be + used to unpack archives. The callable will receive archives to unpack. + If it's unable to handle an archive, it needs to raise a ReadError + exception. + + If provided, `extra_args` is a sequence of + (name, value) tuples that will be passed as arguments to the callable. + description can be provided to describe the format, and will be returned + by the get_unpack_formats() function. + """ + if extra_args is None: + extra_args = [] + _check_unpack_options(extensions, function, extra_args) + _UNPACK_FORMATS[name] = extensions, function, extra_args, description + +def unregister_unpack_format(name): + """Removes the pack format from the registry.""" + del _UNPACK_FORMATS[name] + +def _ensure_directory(path): + """Ensure that the parent directory of `path` exists""" + dirname = os.path.dirname(path) + if not os.path.isdir(dirname): + os.makedirs(dirname) + +def _unpack_zipfile(filename, extract_dir): + """Unpack zip `filename` to `extract_dir` + """ + try: + import zipfile + except ImportError: + raise ReadError('zlib not supported, cannot unpack this archive.') + + if not zipfile.is_zipfile(filename): + raise ReadError("%s is not a zip file" % filename) + + zip = zipfile.ZipFile(filename) + try: + for info in zip.infolist(): + name = info.filename + + # don't extract absolute paths or ones with .. in them + if name.startswith('/') or '..' in name: + continue + + target = os.path.join(extract_dir, *name.split('/')) + if not target: + continue + + _ensure_directory(target) + if not name.endswith('/'): + # file + data = zip.read(info.filename) + f = open(target, 'wb') + try: + f.write(data) + finally: + f.close() + del data + finally: + zip.close() + +def _unpack_tarfile(filename, extract_dir): + """Unpack tar/tar.gz/tar.bz2 `filename` to `extract_dir` + """ + try: + tarobj = tarfile.open(filename) + except tarfile.TarError: + raise ReadError( + "%s is not a compressed or uncompressed tar file" % filename) + try: + tarobj.extractall(extract_dir) + finally: + tarobj.close() + +_UNPACK_FORMATS = { + 'gztar': (['.tar.gz', '.tgz'], _unpack_tarfile, [], "gzip'ed tar-file"), + 'tar': (['.tar'], _unpack_tarfile, [], "uncompressed tar file"), + 'zip': (['.zip'], _unpack_zipfile, [], "ZIP file") + } + +if _BZ2_SUPPORTED: + _UNPACK_FORMATS['bztar'] = (['.bz2'], _unpack_tarfile, [], + "bzip2'ed tar-file") + +def _find_unpack_format(filename): + for name, info in _UNPACK_FORMATS.items(): + for extension in info[0]: + if filename.endswith(extension): + return name + return None + +def unpack_archive(filename, extract_dir=None, format=None): + """Unpack an archive. + + `filename` is the name of the archive. + + `extract_dir` is the name of the target directory, where the archive + is unpacked. If not provided, the current working directory is used. + + `format` is the archive format: one of "zip", "tar", or "gztar". Or any + other registered format. If not provided, unpack_archive will use the + filename extension and see if an unpacker was registered for that + extension. + + In case none is found, a ValueError is raised. + """ + if extract_dir is None: + extract_dir = os.getcwd() + + if format is not None: + try: + format_info = _UNPACK_FORMATS[format] + except KeyError: + raise ValueError("Unknown unpack format '{0}'".format(format)) + + func = format_info[1] + func(filename, extract_dir, **dict(format_info[2])) + else: + # we need to look at the registered unpackers supported extensions + format = _find_unpack_format(filename) + if format is None: + raise ReadError("Unknown archive format '{0}'".format(filename)) + + func = _UNPACK_FORMATS[format][1] + kwargs = dict(_UNPACK_FORMATS[format][2]) + func(filename, extract_dir, **kwargs) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg new file mode 100644 index 00000000..1746bd01 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg @@ -0,0 +1,84 @@ +[posix_prefix] +# Configuration directories. Some of these come straight out of the +# configure script. They are for implementing the other variables, not to +# be used directly in [resource_locations]. +confdir = /etc +datadir = /usr/share +libdir = /usr/lib +statedir = /var +# User resource directory +local = ~/.local/{distribution.name} + +stdlib = {base}/lib/python{py_version_short} +platstdlib = {platbase}/lib/python{py_version_short} +purelib = {base}/lib/python{py_version_short}/site-packages +platlib = {platbase}/lib/python{py_version_short}/site-packages +include = {base}/include/python{py_version_short}{abiflags} +platinclude = {platbase}/include/python{py_version_short}{abiflags} +data = {base} + +[posix_home] +stdlib = {base}/lib/python +platstdlib = {base}/lib/python +purelib = {base}/lib/python +platlib = {base}/lib/python +include = {base}/include/python +platinclude = {base}/include/python +scripts = {base}/bin +data = {base} + +[nt] +stdlib = {base}/Lib +platstdlib = {base}/Lib +purelib = {base}/Lib/site-packages +platlib = {base}/Lib/site-packages +include = {base}/Include +platinclude = {base}/Include +scripts = {base}/Scripts +data = {base} + +[os2] +stdlib = {base}/Lib +platstdlib = {base}/Lib +purelib = {base}/Lib/site-packages +platlib = {base}/Lib/site-packages +include = {base}/Include +platinclude = {base}/Include +scripts = {base}/Scripts +data = {base} + +[os2_home] +stdlib = {userbase}/lib/python{py_version_short} +platstdlib = {userbase}/lib/python{py_version_short} +purelib = {userbase}/lib/python{py_version_short}/site-packages +platlib = {userbase}/lib/python{py_version_short}/site-packages +include = {userbase}/include/python{py_version_short} +scripts = {userbase}/bin +data = {userbase} + +[nt_user] +stdlib = {userbase}/Python{py_version_nodot} +platstdlib = {userbase}/Python{py_version_nodot} +purelib = {userbase}/Python{py_version_nodot}/site-packages +platlib = {userbase}/Python{py_version_nodot}/site-packages +include = {userbase}/Python{py_version_nodot}/Include +scripts = {userbase}/Scripts +data = {userbase} + +[posix_user] +stdlib = {userbase}/lib/python{py_version_short} +platstdlib = {userbase}/lib/python{py_version_short} +purelib = {userbase}/lib/python{py_version_short}/site-packages +platlib = {userbase}/lib/python{py_version_short}/site-packages +include = {userbase}/include/python{py_version_short} +scripts = {userbase}/bin +data = {userbase} + +[osx_framework_user] +stdlib = {userbase}/lib/python +platstdlib = {userbase}/lib/python +purelib = {userbase}/lib/python/site-packages +platlib = {userbase}/lib/python/site-packages +include = {userbase}/include +scripts = {userbase}/bin +data = {userbase} diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.py b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.py new file mode 100644 index 00000000..b470a373 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.py @@ -0,0 +1,786 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Access to Python's configuration information.""" + +import codecs +import os +import re +import sys +from os.path import pardir, realpath +try: + import configparser +except ImportError: + import ConfigParser as configparser + + +__all__ = [ + 'get_config_h_filename', + 'get_config_var', + 'get_config_vars', + 'get_makefile_filename', + 'get_path', + 'get_path_names', + 'get_paths', + 'get_platform', + 'get_python_version', + 'get_scheme_names', + 'parse_config_h', +] + + +def _safe_realpath(path): + try: + return realpath(path) + except OSError: + return path + + +if sys.executable: + _PROJECT_BASE = os.path.dirname(_safe_realpath(sys.executable)) +else: + # sys.executable can be empty if argv[0] has been changed and Python is + # unable to retrieve the real program name + _PROJECT_BASE = _safe_realpath(os.getcwd()) + +if os.name == "nt" and "pcbuild" in _PROJECT_BASE[-8:].lower(): + _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir)) +# PC/VS7.1 +if os.name == "nt" and "\\pc\\v" in _PROJECT_BASE[-10:].lower(): + _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir)) +# PC/AMD64 +if os.name == "nt" and "\\pcbuild\\amd64" in _PROJECT_BASE[-14:].lower(): + _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir)) + + +def is_python_build(): + for fn in ("Setup.dist", "Setup.local"): + if os.path.isfile(os.path.join(_PROJECT_BASE, "Modules", fn)): + return True + return False + +_PYTHON_BUILD = is_python_build() + +_cfg_read = False + +def _ensure_cfg_read(): + global _cfg_read + if not _cfg_read: + from ..resources import finder + backport_package = __name__.rsplit('.', 1)[0] + _finder = finder(backport_package) + _cfgfile = _finder.find('sysconfig.cfg') + assert _cfgfile, 'sysconfig.cfg exists' + with _cfgfile.as_stream() as s: + _SCHEMES.readfp(s) + if _PYTHON_BUILD: + for scheme in ('posix_prefix', 'posix_home'): + _SCHEMES.set(scheme, 'include', '{srcdir}/Include') + _SCHEMES.set(scheme, 'platinclude', '{projectbase}/.') + + _cfg_read = True + + +_SCHEMES = configparser.RawConfigParser() +_VAR_REPL = re.compile(r'\{([^{]*?)\}') + +def _expand_globals(config): + _ensure_cfg_read() + if config.has_section('globals'): + globals = config.items('globals') + else: + globals = tuple() + + sections = config.sections() + for section in sections: + if section == 'globals': + continue + for option, value in globals: + if config.has_option(section, option): + continue + config.set(section, option, value) + config.remove_section('globals') + + # now expanding local variables defined in the cfg file + # + for section in config.sections(): + variables = dict(config.items(section)) + + def _replacer(matchobj): + name = matchobj.group(1) + if name in variables: + return variables[name] + return matchobj.group(0) + + for option, value in config.items(section): + config.set(section, option, _VAR_REPL.sub(_replacer, value)) + +#_expand_globals(_SCHEMES) + +_PY_VERSION = '%s.%s.%s' % sys.version_info[:3] +_PY_VERSION_SHORT = '%s.%s' % sys.version_info[:2] +_PY_VERSION_SHORT_NO_DOT = '%s%s' % sys.version_info[:2] +_PREFIX = os.path.normpath(sys.prefix) +_EXEC_PREFIX = os.path.normpath(sys.exec_prefix) +_CONFIG_VARS = None +_USER_BASE = None + + +def _subst_vars(path, local_vars): + """In the string `path`, replace tokens like {some.thing} with the + corresponding value from the map `local_vars`. + + If there is no corresponding value, leave the token unchanged. + """ + def _replacer(matchobj): + name = matchobj.group(1) + if name in local_vars: + return local_vars[name] + elif name in os.environ: + return os.environ[name] + return matchobj.group(0) + return _VAR_REPL.sub(_replacer, path) + + +def _extend_dict(target_dict, other_dict): + target_keys = target_dict.keys() + for key, value in other_dict.items(): + if key in target_keys: + continue + target_dict[key] = value + + +def _expand_vars(scheme, vars): + res = {} + if vars is None: + vars = {} + _extend_dict(vars, get_config_vars()) + + for key, value in _SCHEMES.items(scheme): + if os.name in ('posix', 'nt'): + value = os.path.expanduser(value) + res[key] = os.path.normpath(_subst_vars(value, vars)) + return res + + +def format_value(value, vars): + def _replacer(matchobj): + name = matchobj.group(1) + if name in vars: + return vars[name] + return matchobj.group(0) + return _VAR_REPL.sub(_replacer, value) + + +def _get_default_scheme(): + if os.name == 'posix': + # the default scheme for posix is posix_prefix + return 'posix_prefix' + return os.name + + +def _getuserbase(): + env_base = os.environ.get("PYTHONUSERBASE", None) + + def joinuser(*args): + return os.path.expanduser(os.path.join(*args)) + + # what about 'os2emx', 'riscos' ? + if os.name == "nt": + base = os.environ.get("APPDATA") or "~" + if env_base: + return env_base + else: + return joinuser(base, "Python") + + if sys.platform == "darwin": + framework = get_config_var("PYTHONFRAMEWORK") + if framework: + if env_base: + return env_base + else: + return joinuser("~", "Library", framework, "%d.%d" % + sys.version_info[:2]) + + if env_base: + return env_base + else: + return joinuser("~", ".local") + + +def _parse_makefile(filename, vars=None): + """Parse a Makefile-style file. + + A dictionary containing name/value pairs is returned. If an + optional dictionary is passed in as the second argument, it is + used instead of a new dictionary. + """ + # Regexes needed for parsing Makefile (and similar syntaxes, + # like old-style Setup files). + _variable_rx = re.compile(r"([a-zA-Z][a-zA-Z0-9_]+)\s*=\s*(.*)") + _findvar1_rx = re.compile(r"\$\(([A-Za-z][A-Za-z0-9_]*)\)") + _findvar2_rx = re.compile(r"\${([A-Za-z][A-Za-z0-9_]*)}") + + if vars is None: + vars = {} + done = {} + notdone = {} + + with codecs.open(filename, encoding='utf-8', errors="surrogateescape") as f: + lines = f.readlines() + + for line in lines: + if line.startswith('#') or line.strip() == '': + continue + m = _variable_rx.match(line) + if m: + n, v = m.group(1, 2) + v = v.strip() + # `$$' is a literal `$' in make + tmpv = v.replace('$$', '') + + if "$" in tmpv: + notdone[n] = v + else: + try: + v = int(v) + except ValueError: + # insert literal `$' + done[n] = v.replace('$$', '$') + else: + done[n] = v + + # do variable interpolation here + variables = list(notdone.keys()) + + # Variables with a 'PY_' prefix in the makefile. These need to + # be made available without that prefix through sysconfig. + # Special care is needed to ensure that variable expansion works, even + # if the expansion uses the name without a prefix. + renamed_variables = ('CFLAGS', 'LDFLAGS', 'CPPFLAGS') + + while len(variables) > 0: + for name in tuple(variables): + value = notdone[name] + m = _findvar1_rx.search(value) or _findvar2_rx.search(value) + if m is not None: + n = m.group(1) + found = True + if n in done: + item = str(done[n]) + elif n in notdone: + # get it on a subsequent round + found = False + elif n in os.environ: + # do it like make: fall back to environment + item = os.environ[n] + + elif n in renamed_variables: + if (name.startswith('PY_') and + name[3:] in renamed_variables): + item = "" + + elif 'PY_' + n in notdone: + found = False + + else: + item = str(done['PY_' + n]) + + else: + done[n] = item = "" + + if found: + after = value[m.end():] + value = value[:m.start()] + item + after + if "$" in after: + notdone[name] = value + else: + try: + value = int(value) + except ValueError: + done[name] = value.strip() + else: + done[name] = value + variables.remove(name) + + if (name.startswith('PY_') and + name[3:] in renamed_variables): + + name = name[3:] + if name not in done: + done[name] = value + + else: + # bogus variable reference (e.g. "prefix=$/opt/python"); + # just drop it since we can't deal + done[name] = value + variables.remove(name) + + # strip spurious spaces + for k, v in done.items(): + if isinstance(v, str): + done[k] = v.strip() + + # save the results in the global dictionary + vars.update(done) + return vars + + +def get_makefile_filename(): + """Return the path of the Makefile.""" + if _PYTHON_BUILD: + return os.path.join(_PROJECT_BASE, "Makefile") + if hasattr(sys, 'abiflags'): + config_dir_name = 'config-%s%s' % (_PY_VERSION_SHORT, sys.abiflags) + else: + config_dir_name = 'config' + return os.path.join(get_path('stdlib'), config_dir_name, 'Makefile') + + +def _init_posix(vars): + """Initialize the module as appropriate for POSIX systems.""" + # load the installed Makefile: + makefile = get_makefile_filename() + try: + _parse_makefile(makefile, vars) + except IOError as e: + msg = "invalid Python installation: unable to open %s" % makefile + if hasattr(e, "strerror"): + msg = msg + " (%s)" % e.strerror + raise IOError(msg) + # load the installed pyconfig.h: + config_h = get_config_h_filename() + try: + with open(config_h) as f: + parse_config_h(f, vars) + except IOError as e: + msg = "invalid Python installation: unable to open %s" % config_h + if hasattr(e, "strerror"): + msg = msg + " (%s)" % e.strerror + raise IOError(msg) + # On AIX, there are wrong paths to the linker scripts in the Makefile + # -- these paths are relative to the Python source, but when installed + # the scripts are in another directory. + if _PYTHON_BUILD: + vars['LDSHARED'] = vars['BLDSHARED'] + + +def _init_non_posix(vars): + """Initialize the module as appropriate for NT""" + # set basic install directories + vars['LIBDEST'] = get_path('stdlib') + vars['BINLIBDEST'] = get_path('platstdlib') + vars['INCLUDEPY'] = get_path('include') + vars['SO'] = '.pyd' + vars['EXE'] = '.exe' + vars['VERSION'] = _PY_VERSION_SHORT_NO_DOT + vars['BINDIR'] = os.path.dirname(_safe_realpath(sys.executable)) + +# +# public APIs +# + + +def parse_config_h(fp, vars=None): + """Parse a config.h-style file. + + A dictionary containing name/value pairs is returned. If an + optional dictionary is passed in as the second argument, it is + used instead of a new dictionary. + """ + if vars is None: + vars = {} + define_rx = re.compile("#define ([A-Z][A-Za-z0-9_]+) (.*)\n") + undef_rx = re.compile("/[*] #undef ([A-Z][A-Za-z0-9_]+) [*]/\n") + + while True: + line = fp.readline() + if not line: + break + m = define_rx.match(line) + if m: + n, v = m.group(1, 2) + try: + v = int(v) + except ValueError: + pass + vars[n] = v + else: + m = undef_rx.match(line) + if m: + vars[m.group(1)] = 0 + return vars + + +def get_config_h_filename(): + """Return the path of pyconfig.h.""" + if _PYTHON_BUILD: + if os.name == "nt": + inc_dir = os.path.join(_PROJECT_BASE, "PC") + else: + inc_dir = _PROJECT_BASE + else: + inc_dir = get_path('platinclude') + return os.path.join(inc_dir, 'pyconfig.h') + + +def get_scheme_names(): + """Return a tuple containing the schemes names.""" + return tuple(sorted(_SCHEMES.sections())) + + +def get_path_names(): + """Return a tuple containing the paths names.""" + # xxx see if we want a static list + return _SCHEMES.options('posix_prefix') + + +def get_paths(scheme=_get_default_scheme(), vars=None, expand=True): + """Return a mapping containing an install scheme. + + ``scheme`` is the install scheme name. If not provided, it will + return the default scheme for the current platform. + """ + _ensure_cfg_read() + if expand: + return _expand_vars(scheme, vars) + else: + return dict(_SCHEMES.items(scheme)) + + +def get_path(name, scheme=_get_default_scheme(), vars=None, expand=True): + """Return a path corresponding to the scheme. + + ``scheme`` is the install scheme name. + """ + return get_paths(scheme, vars, expand)[name] + + +def get_config_vars(*args): + """With no arguments, return a dictionary of all configuration + variables relevant for the current platform. + + On Unix, this means every variable defined in Python's installed Makefile; + On Windows and Mac OS it's a much smaller set. + + With arguments, return a list of values that result from looking up + each argument in the configuration variable dictionary. + """ + global _CONFIG_VARS + if _CONFIG_VARS is None: + _CONFIG_VARS = {} + # Normalized versions of prefix and exec_prefix are handy to have; + # in fact, these are the standard versions used most places in the + # distutils2 module. + _CONFIG_VARS['prefix'] = _PREFIX + _CONFIG_VARS['exec_prefix'] = _EXEC_PREFIX + _CONFIG_VARS['py_version'] = _PY_VERSION + _CONFIG_VARS['py_version_short'] = _PY_VERSION_SHORT + _CONFIG_VARS['py_version_nodot'] = _PY_VERSION[0] + _PY_VERSION[2] + _CONFIG_VARS['base'] = _PREFIX + _CONFIG_VARS['platbase'] = _EXEC_PREFIX + _CONFIG_VARS['projectbase'] = _PROJECT_BASE + try: + _CONFIG_VARS['abiflags'] = sys.abiflags + except AttributeError: + # sys.abiflags may not be defined on all platforms. + _CONFIG_VARS['abiflags'] = '' + + if os.name in ('nt', 'os2'): + _init_non_posix(_CONFIG_VARS) + if os.name == 'posix': + _init_posix(_CONFIG_VARS) + # Setting 'userbase' is done below the call to the + # init function to enable using 'get_config_var' in + # the init-function. + if sys.version >= '2.6': + _CONFIG_VARS['userbase'] = _getuserbase() + + if 'srcdir' not in _CONFIG_VARS: + _CONFIG_VARS['srcdir'] = _PROJECT_BASE + else: + _CONFIG_VARS['srcdir'] = _safe_realpath(_CONFIG_VARS['srcdir']) + + # Convert srcdir into an absolute path if it appears necessary. + # Normally it is relative to the build directory. However, during + # testing, for example, we might be running a non-installed python + # from a different directory. + if _PYTHON_BUILD and os.name == "posix": + base = _PROJECT_BASE + try: + cwd = os.getcwd() + except OSError: + cwd = None + if (not os.path.isabs(_CONFIG_VARS['srcdir']) and + base != cwd): + # srcdir is relative and we are not in the same directory + # as the executable. Assume executable is in the build + # directory and make srcdir absolute. + srcdir = os.path.join(base, _CONFIG_VARS['srcdir']) + _CONFIG_VARS['srcdir'] = os.path.normpath(srcdir) + + if sys.platform == 'darwin': + kernel_version = os.uname()[2] # Kernel version (8.4.3) + major_version = int(kernel_version.split('.')[0]) + + if major_version < 8: + # On Mac OS X before 10.4, check if -arch and -isysroot + # are in CFLAGS or LDFLAGS and remove them if they are. + # This is needed when building extensions on a 10.3 system + # using a universal build of python. + for key in ('LDFLAGS', 'BASECFLAGS', + # a number of derived variables. These need to be + # patched up as well. + 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'): + flags = _CONFIG_VARS[key] + flags = re.sub(r'-arch\s+\w+\s', ' ', flags) + flags = re.sub('-isysroot [^ \t]*', ' ', flags) + _CONFIG_VARS[key] = flags + else: + # Allow the user to override the architecture flags using + # an environment variable. + # NOTE: This name was introduced by Apple in OSX 10.5 and + # is used by several scripting languages distributed with + # that OS release. + if 'ARCHFLAGS' in os.environ: + arch = os.environ['ARCHFLAGS'] + for key in ('LDFLAGS', 'BASECFLAGS', + # a number of derived variables. These need to be + # patched up as well. + 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'): + + flags = _CONFIG_VARS[key] + flags = re.sub(r'-arch\s+\w+\s', ' ', flags) + flags = flags + ' ' + arch + _CONFIG_VARS[key] = flags + + # If we're on OSX 10.5 or later and the user tries to + # compiles an extension using an SDK that is not present + # on the current machine it is better to not use an SDK + # than to fail. + # + # The major usecase for this is users using a Python.org + # binary installer on OSX 10.6: that installer uses + # the 10.4u SDK, but that SDK is not installed by default + # when you install Xcode. + # + CFLAGS = _CONFIG_VARS.get('CFLAGS', '') + m = re.search(r'-isysroot\s+(\S+)', CFLAGS) + if m is not None: + sdk = m.group(1) + if not os.path.exists(sdk): + for key in ('LDFLAGS', 'BASECFLAGS', + # a number of derived variables. These need to be + # patched up as well. + 'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'): + + flags = _CONFIG_VARS[key] + flags = re.sub(r'-isysroot\s+\S+(\s|$)', ' ', flags) + _CONFIG_VARS[key] = flags + + if args: + vals = [] + for name in args: + vals.append(_CONFIG_VARS.get(name)) + return vals + else: + return _CONFIG_VARS + + +def get_config_var(name): + """Return the value of a single variable using the dictionary returned by + 'get_config_vars()'. + + Equivalent to get_config_vars().get(name) + """ + return get_config_vars().get(name) + + +def get_platform(): + """Return a string that identifies the current platform. + + This is used mainly to distinguish platform-specific build directories and + platform-specific built distributions. Typically includes the OS name + and version and the architecture (as supplied by 'os.uname()'), + although the exact information included depends on the OS; eg. for IRIX + the architecture isn't particularly important (IRIX only runs on SGI + hardware), but for Linux the kernel version isn't particularly + important. + + Examples of returned values: + linux-i586 + linux-alpha (?) + solaris-2.6-sun4u + irix-5.3 + irix64-6.2 + + Windows will return one of: + win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc) + win-ia64 (64bit Windows on Itanium) + win32 (all others - specifically, sys.platform is returned) + + For other non-POSIX platforms, currently just returns 'sys.platform'. + """ + if os.name == 'nt': + # sniff sys.version for architecture. + prefix = " bit (" + i = sys.version.find(prefix) + if i == -1: + return sys.platform + j = sys.version.find(")", i) + look = sys.version[i+len(prefix):j].lower() + if look == 'amd64': + return 'win-amd64' + if look == 'itanium': + return 'win-ia64' + return sys.platform + + if os.name != "posix" or not hasattr(os, 'uname'): + # XXX what about the architecture? NT is Intel or Alpha, + # Mac OS is M68k or PPC, etc. + return sys.platform + + # Try to distinguish various flavours of Unix + osname, host, release, version, machine = os.uname() + + # Convert the OS name to lowercase, remove '/' characters + # (to accommodate BSD/OS), and translate spaces (for "Power Macintosh") + osname = osname.lower().replace('/', '') + machine = machine.replace(' ', '_') + machine = machine.replace('/', '-') + + if osname[:5] == "linux": + # At least on Linux/Intel, 'machine' is the processor -- + # i386, etc. + # XXX what about Alpha, SPARC, etc? + return "%s-%s" % (osname, machine) + elif osname[:5] == "sunos": + if release[0] >= "5": # SunOS 5 == Solaris 2 + osname = "solaris" + release = "%d.%s" % (int(release[0]) - 3, release[2:]) + # fall through to standard osname-release-machine representation + elif osname[:4] == "irix": # could be "irix64"! + return "%s-%s" % (osname, release) + elif osname[:3] == "aix": + return "%s-%s.%s" % (osname, version, release) + elif osname[:6] == "cygwin": + osname = "cygwin" + rel_re = re.compile(r'[\d.]+') + m = rel_re.match(release) + if m: + release = m.group() + elif osname[:6] == "darwin": + # + # For our purposes, we'll assume that the system version from + # distutils' perspective is what MACOSX_DEPLOYMENT_TARGET is set + # to. This makes the compatibility story a bit more sane because the + # machine is going to compile and link as if it were + # MACOSX_DEPLOYMENT_TARGET. + cfgvars = get_config_vars() + macver = cfgvars.get('MACOSX_DEPLOYMENT_TARGET') + + if True: + # Always calculate the release of the running machine, + # needed to determine if we can build fat binaries or not. + + macrelease = macver + # Get the system version. Reading this plist is a documented + # way to get the system version (see the documentation for + # the Gestalt Manager) + try: + f = open('/System/Library/CoreServices/SystemVersion.plist') + except IOError: + # We're on a plain darwin box, fall back to the default + # behaviour. + pass + else: + try: + m = re.search(r'ProductUserVisibleVersion\s*' + r'(.*?)', f.read()) + finally: + f.close() + if m is not None: + macrelease = '.'.join(m.group(1).split('.')[:2]) + # else: fall back to the default behaviour + + if not macver: + macver = macrelease + + if macver: + release = macver + osname = "macosx" + + if ((macrelease + '.') >= '10.4.' and + '-arch' in get_config_vars().get('CFLAGS', '').strip()): + # The universal build will build fat binaries, but not on + # systems before 10.4 + # + # Try to detect 4-way universal builds, those have machine-type + # 'universal' instead of 'fat'. + + machine = 'fat' + cflags = get_config_vars().get('CFLAGS') + + archs = re.findall(r'-arch\s+(\S+)', cflags) + archs = tuple(sorted(set(archs))) + + if len(archs) == 1: + machine = archs[0] + elif archs == ('i386', 'ppc'): + machine = 'fat' + elif archs == ('i386', 'x86_64'): + machine = 'intel' + elif archs == ('i386', 'ppc', 'x86_64'): + machine = 'fat3' + elif archs == ('ppc64', 'x86_64'): + machine = 'fat64' + elif archs == ('i386', 'ppc', 'ppc64', 'x86_64'): + machine = 'universal' + else: + raise ValueError( + "Don't know machine value for archs=%r" % (archs,)) + + elif machine == 'i386': + # On OSX the machine type returned by uname is always the + # 32-bit variant, even if the executable architecture is + # the 64-bit variant + if sys.maxsize >= 2**32: + machine = 'x86_64' + + elif machine in ('PowerPC', 'Power_Macintosh'): + # Pick a sane name for the PPC architecture. + # See 'i386' case + if sys.maxsize >= 2**32: + machine = 'ppc64' + else: + machine = 'ppc' + + return "%s-%s-%s" % (osname, release, machine) + + +def get_python_version(): + return _PY_VERSION_SHORT + + +def _print_dict(title, data): + for index, (key, value) in enumerate(sorted(data.items())): + if index == 0: + print('%s: ' % (title)) + print('\t%s = "%s"' % (key, value)) + + +def _main(): + """Display all information sysconfig detains.""" + print('Platform: "%s"' % get_platform()) + print('Python version: "%s"' % get_python_version()) + print('Current installation scheme: "%s"' % _get_default_scheme()) + print() + _print_dict('Paths', get_paths()) + print() + _print_dict('Variables', get_config_vars()) + + +if __name__ == '__main__': + _main() diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/tarfile.py b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/tarfile.py new file mode 100644 index 00000000..d66d8566 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/tarfile.py @@ -0,0 +1,2607 @@ +#------------------------------------------------------------------- +# tarfile.py +#------------------------------------------------------------------- +# Copyright (C) 2002 Lars Gustaebel +# All rights reserved. +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, +# copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. +# +from __future__ import print_function + +"""Read from and write to tar format archives. +""" + +__version__ = "$Revision$" + +version = "0.9.0" +__author__ = "Lars Gust\u00e4bel (lars@gustaebel.de)" +__date__ = "$Date: 2011-02-25 17:42:01 +0200 (Fri, 25 Feb 2011) $" +__cvsid__ = "$Id: tarfile.py 88586 2011-02-25 15:42:01Z marc-andre.lemburg $" +__credits__ = "Gustavo Niemeyer, Niels Gust\u00e4bel, Richard Townsend." + +#--------- +# Imports +#--------- +import sys +import os +import stat +import errno +import time +import struct +import copy +import re + +try: + import grp, pwd +except ImportError: + grp = pwd = None + +# os.symlink on Windows prior to 6.0 raises NotImplementedError +symlink_exception = (AttributeError, NotImplementedError) +try: + # WindowsError (1314) will be raised if the caller does not hold the + # SeCreateSymbolicLinkPrivilege privilege + symlink_exception += (WindowsError,) +except NameError: + pass + +# from tarfile import * +__all__ = ["TarFile", "TarInfo", "is_tarfile", "TarError"] + +if sys.version_info[0] < 3: + import __builtin__ as builtins +else: + import builtins + +_open = builtins.open # Since 'open' is TarFile.open + +#--------------------------------------------------------- +# tar constants +#--------------------------------------------------------- +NUL = b"\0" # the null character +BLOCKSIZE = 512 # length of processing blocks +RECORDSIZE = BLOCKSIZE * 20 # length of records +GNU_MAGIC = b"ustar \0" # magic gnu tar string +POSIX_MAGIC = b"ustar\x0000" # magic posix tar string + +LENGTH_NAME = 100 # maximum length of a filename +LENGTH_LINK = 100 # maximum length of a linkname +LENGTH_PREFIX = 155 # maximum length of the prefix field + +REGTYPE = b"0" # regular file +AREGTYPE = b"\0" # regular file +LNKTYPE = b"1" # link (inside tarfile) +SYMTYPE = b"2" # symbolic link +CHRTYPE = b"3" # character special device +BLKTYPE = b"4" # block special device +DIRTYPE = b"5" # directory +FIFOTYPE = b"6" # fifo special device +CONTTYPE = b"7" # contiguous file + +GNUTYPE_LONGNAME = b"L" # GNU tar longname +GNUTYPE_LONGLINK = b"K" # GNU tar longlink +GNUTYPE_SPARSE = b"S" # GNU tar sparse file + +XHDTYPE = b"x" # POSIX.1-2001 extended header +XGLTYPE = b"g" # POSIX.1-2001 global header +SOLARIS_XHDTYPE = b"X" # Solaris extended header + +USTAR_FORMAT = 0 # POSIX.1-1988 (ustar) format +GNU_FORMAT = 1 # GNU tar format +PAX_FORMAT = 2 # POSIX.1-2001 (pax) format +DEFAULT_FORMAT = GNU_FORMAT + +#--------------------------------------------------------- +# tarfile constants +#--------------------------------------------------------- +# File types that tarfile supports: +SUPPORTED_TYPES = (REGTYPE, AREGTYPE, LNKTYPE, + SYMTYPE, DIRTYPE, FIFOTYPE, + CONTTYPE, CHRTYPE, BLKTYPE, + GNUTYPE_LONGNAME, GNUTYPE_LONGLINK, + GNUTYPE_SPARSE) + +# File types that will be treated as a regular file. +REGULAR_TYPES = (REGTYPE, AREGTYPE, + CONTTYPE, GNUTYPE_SPARSE) + +# File types that are part of the GNU tar format. +GNU_TYPES = (GNUTYPE_LONGNAME, GNUTYPE_LONGLINK, + GNUTYPE_SPARSE) + +# Fields from a pax header that override a TarInfo attribute. +PAX_FIELDS = ("path", "linkpath", "size", "mtime", + "uid", "gid", "uname", "gname") + +# Fields from a pax header that are affected by hdrcharset. +PAX_NAME_FIELDS = set(("path", "linkpath", "uname", "gname")) + +# Fields in a pax header that are numbers, all other fields +# are treated as strings. +PAX_NUMBER_FIELDS = { + "atime": float, + "ctime": float, + "mtime": float, + "uid": int, + "gid": int, + "size": int +} + +#--------------------------------------------------------- +# Bits used in the mode field, values in octal. +#--------------------------------------------------------- +S_IFLNK = 0o120000 # symbolic link +S_IFREG = 0o100000 # regular file +S_IFBLK = 0o060000 # block device +S_IFDIR = 0o040000 # directory +S_IFCHR = 0o020000 # character device +S_IFIFO = 0o010000 # fifo + +TSUID = 0o4000 # set UID on execution +TSGID = 0o2000 # set GID on execution +TSVTX = 0o1000 # reserved + +TUREAD = 0o400 # read by owner +TUWRITE = 0o200 # write by owner +TUEXEC = 0o100 # execute/search by owner +TGREAD = 0o040 # read by group +TGWRITE = 0o020 # write by group +TGEXEC = 0o010 # execute/search by group +TOREAD = 0o004 # read by other +TOWRITE = 0o002 # write by other +TOEXEC = 0o001 # execute/search by other + +#--------------------------------------------------------- +# initialization +#--------------------------------------------------------- +if os.name in ("nt", "ce"): + ENCODING = "utf-8" +else: + ENCODING = sys.getfilesystemencoding() + +#--------------------------------------------------------- +# Some useful functions +#--------------------------------------------------------- + +def stn(s, length, encoding, errors): + """Convert a string to a null-terminated bytes object. + """ + s = s.encode(encoding, errors) + return s[:length] + (length - len(s)) * NUL + +def nts(s, encoding, errors): + """Convert a null-terminated bytes object to a string. + """ + p = s.find(b"\0") + if p != -1: + s = s[:p] + return s.decode(encoding, errors) + +def nti(s): + """Convert a number field to a python number. + """ + # There are two possible encodings for a number field, see + # itn() below. + if s[0] != chr(0o200): + try: + n = int(nts(s, "ascii", "strict") or "0", 8) + except ValueError: + raise InvalidHeaderError("invalid header") + else: + n = 0 + for i in range(len(s) - 1): + n <<= 8 + n += ord(s[i + 1]) + return n + +def itn(n, digits=8, format=DEFAULT_FORMAT): + """Convert a python number to a number field. + """ + # POSIX 1003.1-1988 requires numbers to be encoded as a string of + # octal digits followed by a null-byte, this allows values up to + # (8**(digits-1))-1. GNU tar allows storing numbers greater than + # that if necessary. A leading 0o200 byte indicates this particular + # encoding, the following digits-1 bytes are a big-endian + # representation. This allows values up to (256**(digits-1))-1. + if 0 <= n < 8 ** (digits - 1): + s = ("%0*o" % (digits - 1, n)).encode("ascii") + NUL + else: + if format != GNU_FORMAT or n >= 256 ** (digits - 1): + raise ValueError("overflow in number field") + + if n < 0: + # XXX We mimic GNU tar's behaviour with negative numbers, + # this could raise OverflowError. + n = struct.unpack("L", struct.pack("l", n))[0] + + s = bytearray() + for i in range(digits - 1): + s.insert(0, n & 0o377) + n >>= 8 + s.insert(0, 0o200) + return s + +def calc_chksums(buf): + """Calculate the checksum for a member's header by summing up all + characters except for the chksum field which is treated as if + it was filled with spaces. According to the GNU tar sources, + some tars (Sun and NeXT) calculate chksum with signed char, + which will be different if there are chars in the buffer with + the high bit set. So we calculate two checksums, unsigned and + signed. + """ + unsigned_chksum = 256 + sum(struct.unpack("148B", buf[:148]) + struct.unpack("356B", buf[156:512])) + signed_chksum = 256 + sum(struct.unpack("148b", buf[:148]) + struct.unpack("356b", buf[156:512])) + return unsigned_chksum, signed_chksum + +def copyfileobj(src, dst, length=None): + """Copy length bytes from fileobj src to fileobj dst. + If length is None, copy the entire content. + """ + if length == 0: + return + if length is None: + while True: + buf = src.read(16*1024) + if not buf: + break + dst.write(buf) + return + + BUFSIZE = 16 * 1024 + blocks, remainder = divmod(length, BUFSIZE) + for b in range(blocks): + buf = src.read(BUFSIZE) + if len(buf) < BUFSIZE: + raise IOError("end of file reached") + dst.write(buf) + + if remainder != 0: + buf = src.read(remainder) + if len(buf) < remainder: + raise IOError("end of file reached") + dst.write(buf) + return + +filemode_table = ( + ((S_IFLNK, "l"), + (S_IFREG, "-"), + (S_IFBLK, "b"), + (S_IFDIR, "d"), + (S_IFCHR, "c"), + (S_IFIFO, "p")), + + ((TUREAD, "r"),), + ((TUWRITE, "w"),), + ((TUEXEC|TSUID, "s"), + (TSUID, "S"), + (TUEXEC, "x")), + + ((TGREAD, "r"),), + ((TGWRITE, "w"),), + ((TGEXEC|TSGID, "s"), + (TSGID, "S"), + (TGEXEC, "x")), + + ((TOREAD, "r"),), + ((TOWRITE, "w"),), + ((TOEXEC|TSVTX, "t"), + (TSVTX, "T"), + (TOEXEC, "x")) +) + +def filemode(mode): + """Convert a file's mode to a string of the form + -rwxrwxrwx. + Used by TarFile.list() + """ + perm = [] + for table in filemode_table: + for bit, char in table: + if mode & bit == bit: + perm.append(char) + break + else: + perm.append("-") + return "".join(perm) + +class TarError(Exception): + """Base exception.""" + pass +class ExtractError(TarError): + """General exception for extract errors.""" + pass +class ReadError(TarError): + """Exception for unreadable tar archives.""" + pass +class CompressionError(TarError): + """Exception for unavailable compression methods.""" + pass +class StreamError(TarError): + """Exception for unsupported operations on stream-like TarFiles.""" + pass +class HeaderError(TarError): + """Base exception for header errors.""" + pass +class EmptyHeaderError(HeaderError): + """Exception for empty headers.""" + pass +class TruncatedHeaderError(HeaderError): + """Exception for truncated headers.""" + pass +class EOFHeaderError(HeaderError): + """Exception for end of file headers.""" + pass +class InvalidHeaderError(HeaderError): + """Exception for invalid headers.""" + pass +class SubsequentHeaderError(HeaderError): + """Exception for missing and invalid extended headers.""" + pass + +#--------------------------- +# internal stream interface +#--------------------------- +class _LowLevelFile(object): + """Low-level file object. Supports reading and writing. + It is used instead of a regular file object for streaming + access. + """ + + def __init__(self, name, mode): + mode = { + "r": os.O_RDONLY, + "w": os.O_WRONLY | os.O_CREAT | os.O_TRUNC, + }[mode] + if hasattr(os, "O_BINARY"): + mode |= os.O_BINARY + self.fd = os.open(name, mode, 0o666) + + def close(self): + os.close(self.fd) + + def read(self, size): + return os.read(self.fd, size) + + def write(self, s): + os.write(self.fd, s) + +class _Stream(object): + """Class that serves as an adapter between TarFile and + a stream-like object. The stream-like object only + needs to have a read() or write() method and is accessed + blockwise. Use of gzip or bzip2 compression is possible. + A stream-like object could be for example: sys.stdin, + sys.stdout, a socket, a tape device etc. + + _Stream is intended to be used only internally. + """ + + def __init__(self, name, mode, comptype, fileobj, bufsize): + """Construct a _Stream object. + """ + self._extfileobj = True + if fileobj is None: + fileobj = _LowLevelFile(name, mode) + self._extfileobj = False + + if comptype == '*': + # Enable transparent compression detection for the + # stream interface + fileobj = _StreamProxy(fileobj) + comptype = fileobj.getcomptype() + + self.name = name or "" + self.mode = mode + self.comptype = comptype + self.fileobj = fileobj + self.bufsize = bufsize + self.buf = b"" + self.pos = 0 + self.closed = False + + try: + if comptype == "gz": + try: + import zlib + except ImportError: + raise CompressionError("zlib module is not available") + self.zlib = zlib + self.crc = zlib.crc32(b"") + if mode == "r": + self._init_read_gz() + else: + self._init_write_gz() + + if comptype == "bz2": + try: + import bz2 + except ImportError: + raise CompressionError("bz2 module is not available") + if mode == "r": + self.dbuf = b"" + self.cmp = bz2.BZ2Decompressor() + else: + self.cmp = bz2.BZ2Compressor() + except: + if not self._extfileobj: + self.fileobj.close() + self.closed = True + raise + + def __del__(self): + if hasattr(self, "closed") and not self.closed: + self.close() + + def _init_write_gz(self): + """Initialize for writing with gzip compression. + """ + self.cmp = self.zlib.compressobj(9, self.zlib.DEFLATED, + -self.zlib.MAX_WBITS, + self.zlib.DEF_MEM_LEVEL, + 0) + timestamp = struct.pack(" self.bufsize: + self.fileobj.write(self.buf[:self.bufsize]) + self.buf = self.buf[self.bufsize:] + + def close(self): + """Close the _Stream object. No operation should be + done on it afterwards. + """ + if self.closed: + return + + if self.mode == "w" and self.comptype != "tar": + self.buf += self.cmp.flush() + + if self.mode == "w" and self.buf: + self.fileobj.write(self.buf) + self.buf = b"" + if self.comptype == "gz": + # The native zlib crc is an unsigned 32-bit integer, but + # the Python wrapper implicitly casts that to a signed C + # long. So, on a 32-bit box self.crc may "look negative", + # while the same crc on a 64-bit box may "look positive". + # To avoid irksome warnings from the `struct` module, force + # it to look positive on all boxes. + self.fileobj.write(struct.pack("= 0: + blocks, remainder = divmod(pos - self.pos, self.bufsize) + for i in range(blocks): + self.read(self.bufsize) + self.read(remainder) + else: + raise StreamError("seeking backwards is not allowed") + return self.pos + + def read(self, size=None): + """Return the next size number of bytes from the stream. + If size is not defined, return all bytes of the stream + up to EOF. + """ + if size is None: + t = [] + while True: + buf = self._read(self.bufsize) + if not buf: + break + t.append(buf) + buf = "".join(t) + else: + buf = self._read(size) + self.pos += len(buf) + return buf + + def _read(self, size): + """Return size bytes from the stream. + """ + if self.comptype == "tar": + return self.__read(size) + + c = len(self.dbuf) + while c < size: + buf = self.__read(self.bufsize) + if not buf: + break + try: + buf = self.cmp.decompress(buf) + except IOError: + raise ReadError("invalid compressed data") + self.dbuf += buf + c += len(buf) + buf = self.dbuf[:size] + self.dbuf = self.dbuf[size:] + return buf + + def __read(self, size): + """Return size bytes from stream. If internal buffer is empty, + read another block from the stream. + """ + c = len(self.buf) + while c < size: + buf = self.fileobj.read(self.bufsize) + if not buf: + break + self.buf += buf + c += len(buf) + buf = self.buf[:size] + self.buf = self.buf[size:] + return buf +# class _Stream + +class _StreamProxy(object): + """Small proxy class that enables transparent compression + detection for the Stream interface (mode 'r|*'). + """ + + def __init__(self, fileobj): + self.fileobj = fileobj + self.buf = self.fileobj.read(BLOCKSIZE) + + def read(self, size): + self.read = self.fileobj.read + return self.buf + + def getcomptype(self): + if self.buf.startswith(b"\037\213\010"): + return "gz" + if self.buf.startswith(b"BZh91"): + return "bz2" + return "tar" + + def close(self): + self.fileobj.close() +# class StreamProxy + +class _BZ2Proxy(object): + """Small proxy class that enables external file object + support for "r:bz2" and "w:bz2" modes. This is actually + a workaround for a limitation in bz2 module's BZ2File + class which (unlike gzip.GzipFile) has no support for + a file object argument. + """ + + blocksize = 16 * 1024 + + def __init__(self, fileobj, mode): + self.fileobj = fileobj + self.mode = mode + self.name = getattr(self.fileobj, "name", None) + self.init() + + def init(self): + import bz2 + self.pos = 0 + if self.mode == "r": + self.bz2obj = bz2.BZ2Decompressor() + self.fileobj.seek(0) + self.buf = b"" + else: + self.bz2obj = bz2.BZ2Compressor() + + def read(self, size): + x = len(self.buf) + while x < size: + raw = self.fileobj.read(self.blocksize) + if not raw: + break + data = self.bz2obj.decompress(raw) + self.buf += data + x += len(data) + + buf = self.buf[:size] + self.buf = self.buf[size:] + self.pos += len(buf) + return buf + + def seek(self, pos): + if pos < self.pos: + self.init() + self.read(pos - self.pos) + + def tell(self): + return self.pos + + def write(self, data): + self.pos += len(data) + raw = self.bz2obj.compress(data) + self.fileobj.write(raw) + + def close(self): + if self.mode == "w": + raw = self.bz2obj.flush() + self.fileobj.write(raw) +# class _BZ2Proxy + +#------------------------ +# Extraction file object +#------------------------ +class _FileInFile(object): + """A thin wrapper around an existing file object that + provides a part of its data as an individual file + object. + """ + + def __init__(self, fileobj, offset, size, blockinfo=None): + self.fileobj = fileobj + self.offset = offset + self.size = size + self.position = 0 + + if blockinfo is None: + blockinfo = [(0, size)] + + # Construct a map with data and zero blocks. + self.map_index = 0 + self.map = [] + lastpos = 0 + realpos = self.offset + for offset, size in blockinfo: + if offset > lastpos: + self.map.append((False, lastpos, offset, None)) + self.map.append((True, offset, offset + size, realpos)) + realpos += size + lastpos = offset + size + if lastpos < self.size: + self.map.append((False, lastpos, self.size, None)) + + def seekable(self): + if not hasattr(self.fileobj, "seekable"): + # XXX gzip.GzipFile and bz2.BZ2File + return True + return self.fileobj.seekable() + + def tell(self): + """Return the current file position. + """ + return self.position + + def seek(self, position): + """Seek to a position in the file. + """ + self.position = position + + def read(self, size=None): + """Read data from the file. + """ + if size is None: + size = self.size - self.position + else: + size = min(size, self.size - self.position) + + buf = b"" + while size > 0: + while True: + data, start, stop, offset = self.map[self.map_index] + if start <= self.position < stop: + break + else: + self.map_index += 1 + if self.map_index == len(self.map): + self.map_index = 0 + length = min(size, stop - self.position) + if data: + self.fileobj.seek(offset + (self.position - start)) + buf += self.fileobj.read(length) + else: + buf += NUL * length + size -= length + self.position += length + return buf +#class _FileInFile + + +class ExFileObject(object): + """File-like object for reading an archive member. + Is returned by TarFile.extractfile(). + """ + blocksize = 1024 + + def __init__(self, tarfile, tarinfo): + self.fileobj = _FileInFile(tarfile.fileobj, + tarinfo.offset_data, + tarinfo.size, + tarinfo.sparse) + self.name = tarinfo.name + self.mode = "r" + self.closed = False + self.size = tarinfo.size + + self.position = 0 + self.buffer = b"" + + def readable(self): + return True + + def writable(self): + return False + + def seekable(self): + return self.fileobj.seekable() + + def read(self, size=None): + """Read at most size bytes from the file. If size is not + present or None, read all data until EOF is reached. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + buf = b"" + if self.buffer: + if size is None: + buf = self.buffer + self.buffer = b"" + else: + buf = self.buffer[:size] + self.buffer = self.buffer[size:] + + if size is None: + buf += self.fileobj.read() + else: + buf += self.fileobj.read(size - len(buf)) + + self.position += len(buf) + return buf + + # XXX TextIOWrapper uses the read1() method. + read1 = read + + def readline(self, size=-1): + """Read one entire line from the file. If size is present + and non-negative, return a string with at most that + size, which may be an incomplete line. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + pos = self.buffer.find(b"\n") + 1 + if pos == 0: + # no newline found. + while True: + buf = self.fileobj.read(self.blocksize) + self.buffer += buf + if not buf or b"\n" in buf: + pos = self.buffer.find(b"\n") + 1 + if pos == 0: + # no newline found. + pos = len(self.buffer) + break + + if size != -1: + pos = min(size, pos) + + buf = self.buffer[:pos] + self.buffer = self.buffer[pos:] + self.position += len(buf) + return buf + + def readlines(self): + """Return a list with all remaining lines. + """ + result = [] + while True: + line = self.readline() + if not line: break + result.append(line) + return result + + def tell(self): + """Return the current file position. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + return self.position + + def seek(self, pos, whence=os.SEEK_SET): + """Seek to a position in the file. + """ + if self.closed: + raise ValueError("I/O operation on closed file") + + if whence == os.SEEK_SET: + self.position = min(max(pos, 0), self.size) + elif whence == os.SEEK_CUR: + if pos < 0: + self.position = max(self.position + pos, 0) + else: + self.position = min(self.position + pos, self.size) + elif whence == os.SEEK_END: + self.position = max(min(self.size + pos, self.size), 0) + else: + raise ValueError("Invalid argument") + + self.buffer = b"" + self.fileobj.seek(self.position) + + def close(self): + """Close the file object. + """ + self.closed = True + + def __iter__(self): + """Get an iterator over the file's lines. + """ + while True: + line = self.readline() + if not line: + break + yield line +#class ExFileObject + +#------------------ +# Exported Classes +#------------------ +class TarInfo(object): + """Informational class which holds the details about an + archive member given by a tar header block. + TarInfo objects are returned by TarFile.getmember(), + TarFile.getmembers() and TarFile.gettarinfo() and are + usually created internally. + """ + + __slots__ = ("name", "mode", "uid", "gid", "size", "mtime", + "chksum", "type", "linkname", "uname", "gname", + "devmajor", "devminor", + "offset", "offset_data", "pax_headers", "sparse", + "tarfile", "_sparse_structs", "_link_target") + + def __init__(self, name=""): + """Construct a TarInfo object. name is the optional name + of the member. + """ + self.name = name # member name + self.mode = 0o644 # file permissions + self.uid = 0 # user id + self.gid = 0 # group id + self.size = 0 # file size + self.mtime = 0 # modification time + self.chksum = 0 # header checksum + self.type = REGTYPE # member type + self.linkname = "" # link name + self.uname = "" # user name + self.gname = "" # group name + self.devmajor = 0 # device major number + self.devminor = 0 # device minor number + + self.offset = 0 # the tar header starts here + self.offset_data = 0 # the file's data starts here + + self.sparse = None # sparse member information + self.pax_headers = {} # pax header information + + # In pax headers the "name" and "linkname" field are called + # "path" and "linkpath". + def _getpath(self): + return self.name + def _setpath(self, name): + self.name = name + path = property(_getpath, _setpath) + + def _getlinkpath(self): + return self.linkname + def _setlinkpath(self, linkname): + self.linkname = linkname + linkpath = property(_getlinkpath, _setlinkpath) + + def __repr__(self): + return "<%s %r at %#x>" % (self.__class__.__name__,self.name,id(self)) + + def get_info(self): + """Return the TarInfo's attributes as a dictionary. + """ + info = { + "name": self.name, + "mode": self.mode & 0o7777, + "uid": self.uid, + "gid": self.gid, + "size": self.size, + "mtime": self.mtime, + "chksum": self.chksum, + "type": self.type, + "linkname": self.linkname, + "uname": self.uname, + "gname": self.gname, + "devmajor": self.devmajor, + "devminor": self.devminor + } + + if info["type"] == DIRTYPE and not info["name"].endswith("/"): + info["name"] += "/" + + return info + + def tobuf(self, format=DEFAULT_FORMAT, encoding=ENCODING, errors="surrogateescape"): + """Return a tar header as a string of 512 byte blocks. + """ + info = self.get_info() + + if format == USTAR_FORMAT: + return self.create_ustar_header(info, encoding, errors) + elif format == GNU_FORMAT: + return self.create_gnu_header(info, encoding, errors) + elif format == PAX_FORMAT: + return self.create_pax_header(info, encoding) + else: + raise ValueError("invalid format") + + def create_ustar_header(self, info, encoding, errors): + """Return the object as a ustar header block. + """ + info["magic"] = POSIX_MAGIC + + if len(info["linkname"]) > LENGTH_LINK: + raise ValueError("linkname is too long") + + if len(info["name"]) > LENGTH_NAME: + info["prefix"], info["name"] = self._posix_split_name(info["name"]) + + return self._create_header(info, USTAR_FORMAT, encoding, errors) + + def create_gnu_header(self, info, encoding, errors): + """Return the object as a GNU header block sequence. + """ + info["magic"] = GNU_MAGIC + + buf = b"" + if len(info["linkname"]) > LENGTH_LINK: + buf += self._create_gnu_long_header(info["linkname"], GNUTYPE_LONGLINK, encoding, errors) + + if len(info["name"]) > LENGTH_NAME: + buf += self._create_gnu_long_header(info["name"], GNUTYPE_LONGNAME, encoding, errors) + + return buf + self._create_header(info, GNU_FORMAT, encoding, errors) + + def create_pax_header(self, info, encoding): + """Return the object as a ustar header block. If it cannot be + represented this way, prepend a pax extended header sequence + with supplement information. + """ + info["magic"] = POSIX_MAGIC + pax_headers = self.pax_headers.copy() + + # Test string fields for values that exceed the field length or cannot + # be represented in ASCII encoding. + for name, hname, length in ( + ("name", "path", LENGTH_NAME), ("linkname", "linkpath", LENGTH_LINK), + ("uname", "uname", 32), ("gname", "gname", 32)): + + if hname in pax_headers: + # The pax header has priority. + continue + + # Try to encode the string as ASCII. + try: + info[name].encode("ascii", "strict") + except UnicodeEncodeError: + pax_headers[hname] = info[name] + continue + + if len(info[name]) > length: + pax_headers[hname] = info[name] + + # Test number fields for values that exceed the field limit or values + # that like to be stored as float. + for name, digits in (("uid", 8), ("gid", 8), ("size", 12), ("mtime", 12)): + if name in pax_headers: + # The pax header has priority. Avoid overflow. + info[name] = 0 + continue + + val = info[name] + if not 0 <= val < 8 ** (digits - 1) or isinstance(val, float): + pax_headers[name] = str(val) + info[name] = 0 + + # Create a pax extended header if necessary. + if pax_headers: + buf = self._create_pax_generic_header(pax_headers, XHDTYPE, encoding) + else: + buf = b"" + + return buf + self._create_header(info, USTAR_FORMAT, "ascii", "replace") + + @classmethod + def create_pax_global_header(cls, pax_headers): + """Return the object as a pax global header block sequence. + """ + return cls._create_pax_generic_header(pax_headers, XGLTYPE, "utf8") + + def _posix_split_name(self, name): + """Split a name longer than 100 chars into a prefix + and a name part. + """ + prefix = name[:LENGTH_PREFIX + 1] + while prefix and prefix[-1] != "/": + prefix = prefix[:-1] + + name = name[len(prefix):] + prefix = prefix[:-1] + + if not prefix or len(name) > LENGTH_NAME: + raise ValueError("name is too long") + return prefix, name + + @staticmethod + def _create_header(info, format, encoding, errors): + """Return a header block. info is a dictionary with file + information, format must be one of the *_FORMAT constants. + """ + parts = [ + stn(info.get("name", ""), 100, encoding, errors), + itn(info.get("mode", 0) & 0o7777, 8, format), + itn(info.get("uid", 0), 8, format), + itn(info.get("gid", 0), 8, format), + itn(info.get("size", 0), 12, format), + itn(info.get("mtime", 0), 12, format), + b" ", # checksum field + info.get("type", REGTYPE), + stn(info.get("linkname", ""), 100, encoding, errors), + info.get("magic", POSIX_MAGIC), + stn(info.get("uname", ""), 32, encoding, errors), + stn(info.get("gname", ""), 32, encoding, errors), + itn(info.get("devmajor", 0), 8, format), + itn(info.get("devminor", 0), 8, format), + stn(info.get("prefix", ""), 155, encoding, errors) + ] + + buf = struct.pack("%ds" % BLOCKSIZE, b"".join(parts)) + chksum = calc_chksums(buf[-BLOCKSIZE:])[0] + buf = buf[:-364] + ("%06o\0" % chksum).encode("ascii") + buf[-357:] + return buf + + @staticmethod + def _create_payload(payload): + """Return the string payload filled with zero bytes + up to the next 512 byte border. + """ + blocks, remainder = divmod(len(payload), BLOCKSIZE) + if remainder > 0: + payload += (BLOCKSIZE - remainder) * NUL + return payload + + @classmethod + def _create_gnu_long_header(cls, name, type, encoding, errors): + """Return a GNUTYPE_LONGNAME or GNUTYPE_LONGLINK sequence + for name. + """ + name = name.encode(encoding, errors) + NUL + + info = {} + info["name"] = "././@LongLink" + info["type"] = type + info["size"] = len(name) + info["magic"] = GNU_MAGIC + + # create extended header + name blocks. + return cls._create_header(info, USTAR_FORMAT, encoding, errors) + \ + cls._create_payload(name) + + @classmethod + def _create_pax_generic_header(cls, pax_headers, type, encoding): + """Return a POSIX.1-2008 extended or global header sequence + that contains a list of keyword, value pairs. The values + must be strings. + """ + # Check if one of the fields contains surrogate characters and thereby + # forces hdrcharset=BINARY, see _proc_pax() for more information. + binary = False + for keyword, value in pax_headers.items(): + try: + value.encode("utf8", "strict") + except UnicodeEncodeError: + binary = True + break + + records = b"" + if binary: + # Put the hdrcharset field at the beginning of the header. + records += b"21 hdrcharset=BINARY\n" + + for keyword, value in pax_headers.items(): + keyword = keyword.encode("utf8") + if binary: + # Try to restore the original byte representation of `value'. + # Needless to say, that the encoding must match the string. + value = value.encode(encoding, "surrogateescape") + else: + value = value.encode("utf8") + + l = len(keyword) + len(value) + 3 # ' ' + '=' + '\n' + n = p = 0 + while True: + n = l + len(str(p)) + if n == p: + break + p = n + records += bytes(str(p), "ascii") + b" " + keyword + b"=" + value + b"\n" + + # We use a hardcoded "././@PaxHeader" name like star does + # instead of the one that POSIX recommends. + info = {} + info["name"] = "././@PaxHeader" + info["type"] = type + info["size"] = len(records) + info["magic"] = POSIX_MAGIC + + # Create pax header + record blocks. + return cls._create_header(info, USTAR_FORMAT, "ascii", "replace") + \ + cls._create_payload(records) + + @classmethod + def frombuf(cls, buf, encoding, errors): + """Construct a TarInfo object from a 512 byte bytes object. + """ + if len(buf) == 0: + raise EmptyHeaderError("empty header") + if len(buf) != BLOCKSIZE: + raise TruncatedHeaderError("truncated header") + if buf.count(NUL) == BLOCKSIZE: + raise EOFHeaderError("end of file header") + + chksum = nti(buf[148:156]) + if chksum not in calc_chksums(buf): + raise InvalidHeaderError("bad checksum") + + obj = cls() + obj.name = nts(buf[0:100], encoding, errors) + obj.mode = nti(buf[100:108]) + obj.uid = nti(buf[108:116]) + obj.gid = nti(buf[116:124]) + obj.size = nti(buf[124:136]) + obj.mtime = nti(buf[136:148]) + obj.chksum = chksum + obj.type = buf[156:157] + obj.linkname = nts(buf[157:257], encoding, errors) + obj.uname = nts(buf[265:297], encoding, errors) + obj.gname = nts(buf[297:329], encoding, errors) + obj.devmajor = nti(buf[329:337]) + obj.devminor = nti(buf[337:345]) + prefix = nts(buf[345:500], encoding, errors) + + # Old V7 tar format represents a directory as a regular + # file with a trailing slash. + if obj.type == AREGTYPE and obj.name.endswith("/"): + obj.type = DIRTYPE + + # The old GNU sparse format occupies some of the unused + # space in the buffer for up to 4 sparse structures. + # Save the them for later processing in _proc_sparse(). + if obj.type == GNUTYPE_SPARSE: + pos = 386 + structs = [] + for i in range(4): + try: + offset = nti(buf[pos:pos + 12]) + numbytes = nti(buf[pos + 12:pos + 24]) + except ValueError: + break + structs.append((offset, numbytes)) + pos += 24 + isextended = bool(buf[482]) + origsize = nti(buf[483:495]) + obj._sparse_structs = (structs, isextended, origsize) + + # Remove redundant slashes from directories. + if obj.isdir(): + obj.name = obj.name.rstrip("/") + + # Reconstruct a ustar longname. + if prefix and obj.type not in GNU_TYPES: + obj.name = prefix + "/" + obj.name + return obj + + @classmethod + def fromtarfile(cls, tarfile): + """Return the next TarInfo object from TarFile object + tarfile. + """ + buf = tarfile.fileobj.read(BLOCKSIZE) + obj = cls.frombuf(buf, tarfile.encoding, tarfile.errors) + obj.offset = tarfile.fileobj.tell() - BLOCKSIZE + return obj._proc_member(tarfile) + + #-------------------------------------------------------------------------- + # The following are methods that are called depending on the type of a + # member. The entry point is _proc_member() which can be overridden in a + # subclass to add custom _proc_*() methods. A _proc_*() method MUST + # implement the following + # operations: + # 1. Set self.offset_data to the position where the data blocks begin, + # if there is data that follows. + # 2. Set tarfile.offset to the position where the next member's header will + # begin. + # 3. Return self or another valid TarInfo object. + def _proc_member(self, tarfile): + """Choose the right processing method depending on + the type and call it. + """ + if self.type in (GNUTYPE_LONGNAME, GNUTYPE_LONGLINK): + return self._proc_gnulong(tarfile) + elif self.type == GNUTYPE_SPARSE: + return self._proc_sparse(tarfile) + elif self.type in (XHDTYPE, XGLTYPE, SOLARIS_XHDTYPE): + return self._proc_pax(tarfile) + else: + return self._proc_builtin(tarfile) + + def _proc_builtin(self, tarfile): + """Process a builtin type or an unknown type which + will be treated as a regular file. + """ + self.offset_data = tarfile.fileobj.tell() + offset = self.offset_data + if self.isreg() or self.type not in SUPPORTED_TYPES: + # Skip the following data blocks. + offset += self._block(self.size) + tarfile.offset = offset + + # Patch the TarInfo object with saved global + # header information. + self._apply_pax_info(tarfile.pax_headers, tarfile.encoding, tarfile.errors) + + return self + + def _proc_gnulong(self, tarfile): + """Process the blocks that hold a GNU longname + or longlink member. + """ + buf = tarfile.fileobj.read(self._block(self.size)) + + # Fetch the next header and process it. + try: + next = self.fromtarfile(tarfile) + except HeaderError: + raise SubsequentHeaderError("missing or bad subsequent header") + + # Patch the TarInfo object from the next header with + # the longname information. + next.offset = self.offset + if self.type == GNUTYPE_LONGNAME: + next.name = nts(buf, tarfile.encoding, tarfile.errors) + elif self.type == GNUTYPE_LONGLINK: + next.linkname = nts(buf, tarfile.encoding, tarfile.errors) + + return next + + def _proc_sparse(self, tarfile): + """Process a GNU sparse header plus extra headers. + """ + # We already collected some sparse structures in frombuf(). + structs, isextended, origsize = self._sparse_structs + del self._sparse_structs + + # Collect sparse structures from extended header blocks. + while isextended: + buf = tarfile.fileobj.read(BLOCKSIZE) + pos = 0 + for i in range(21): + try: + offset = nti(buf[pos:pos + 12]) + numbytes = nti(buf[pos + 12:pos + 24]) + except ValueError: + break + if offset and numbytes: + structs.append((offset, numbytes)) + pos += 24 + isextended = bool(buf[504]) + self.sparse = structs + + self.offset_data = tarfile.fileobj.tell() + tarfile.offset = self.offset_data + self._block(self.size) + self.size = origsize + return self + + def _proc_pax(self, tarfile): + """Process an extended or global header as described in + POSIX.1-2008. + """ + # Read the header information. + buf = tarfile.fileobj.read(self._block(self.size)) + + # A pax header stores supplemental information for either + # the following file (extended) or all following files + # (global). + if self.type == XGLTYPE: + pax_headers = tarfile.pax_headers + else: + pax_headers = tarfile.pax_headers.copy() + + # Check if the pax header contains a hdrcharset field. This tells us + # the encoding of the path, linkpath, uname and gname fields. Normally, + # these fields are UTF-8 encoded but since POSIX.1-2008 tar + # implementations are allowed to store them as raw binary strings if + # the translation to UTF-8 fails. + match = re.search(br"\d+ hdrcharset=([^\n]+)\n", buf) + if match is not None: + pax_headers["hdrcharset"] = match.group(1).decode("utf8") + + # For the time being, we don't care about anything other than "BINARY". + # The only other value that is currently allowed by the standard is + # "ISO-IR 10646 2000 UTF-8" in other words UTF-8. + hdrcharset = pax_headers.get("hdrcharset") + if hdrcharset == "BINARY": + encoding = tarfile.encoding + else: + encoding = "utf8" + + # Parse pax header information. A record looks like that: + # "%d %s=%s\n" % (length, keyword, value). length is the size + # of the complete record including the length field itself and + # the newline. keyword and value are both UTF-8 encoded strings. + regex = re.compile(br"(\d+) ([^=]+)=") + pos = 0 + while True: + match = regex.match(buf, pos) + if not match: + break + + length, keyword = match.groups() + length = int(length) + value = buf[match.end(2) + 1:match.start(1) + length - 1] + + # Normally, we could just use "utf8" as the encoding and "strict" + # as the error handler, but we better not take the risk. For + # example, GNU tar <= 1.23 is known to store filenames it cannot + # translate to UTF-8 as raw strings (unfortunately without a + # hdrcharset=BINARY header). + # We first try the strict standard encoding, and if that fails we + # fall back on the user's encoding and error handler. + keyword = self._decode_pax_field(keyword, "utf8", "utf8", + tarfile.errors) + if keyword in PAX_NAME_FIELDS: + value = self._decode_pax_field(value, encoding, tarfile.encoding, + tarfile.errors) + else: + value = self._decode_pax_field(value, "utf8", "utf8", + tarfile.errors) + + pax_headers[keyword] = value + pos += length + + # Fetch the next header. + try: + next = self.fromtarfile(tarfile) + except HeaderError: + raise SubsequentHeaderError("missing or bad subsequent header") + + # Process GNU sparse information. + if "GNU.sparse.map" in pax_headers: + # GNU extended sparse format version 0.1. + self._proc_gnusparse_01(next, pax_headers) + + elif "GNU.sparse.size" in pax_headers: + # GNU extended sparse format version 0.0. + self._proc_gnusparse_00(next, pax_headers, buf) + + elif pax_headers.get("GNU.sparse.major") == "1" and pax_headers.get("GNU.sparse.minor") == "0": + # GNU extended sparse format version 1.0. + self._proc_gnusparse_10(next, pax_headers, tarfile) + + if self.type in (XHDTYPE, SOLARIS_XHDTYPE): + # Patch the TarInfo object with the extended header info. + next._apply_pax_info(pax_headers, tarfile.encoding, tarfile.errors) + next.offset = self.offset + + if "size" in pax_headers: + # If the extended header replaces the size field, + # we need to recalculate the offset where the next + # header starts. + offset = next.offset_data + if next.isreg() or next.type not in SUPPORTED_TYPES: + offset += next._block(next.size) + tarfile.offset = offset + + return next + + def _proc_gnusparse_00(self, next, pax_headers, buf): + """Process a GNU tar extended sparse header, version 0.0. + """ + offsets = [] + for match in re.finditer(br"\d+ GNU.sparse.offset=(\d+)\n", buf): + offsets.append(int(match.group(1))) + numbytes = [] + for match in re.finditer(br"\d+ GNU.sparse.numbytes=(\d+)\n", buf): + numbytes.append(int(match.group(1))) + next.sparse = list(zip(offsets, numbytes)) + + def _proc_gnusparse_01(self, next, pax_headers): + """Process a GNU tar extended sparse header, version 0.1. + """ + sparse = [int(x) for x in pax_headers["GNU.sparse.map"].split(",")] + next.sparse = list(zip(sparse[::2], sparse[1::2])) + + def _proc_gnusparse_10(self, next, pax_headers, tarfile): + """Process a GNU tar extended sparse header, version 1.0. + """ + fields = None + sparse = [] + buf = tarfile.fileobj.read(BLOCKSIZE) + fields, buf = buf.split(b"\n", 1) + fields = int(fields) + while len(sparse) < fields * 2: + if b"\n" not in buf: + buf += tarfile.fileobj.read(BLOCKSIZE) + number, buf = buf.split(b"\n", 1) + sparse.append(int(number)) + next.offset_data = tarfile.fileobj.tell() + next.sparse = list(zip(sparse[::2], sparse[1::2])) + + def _apply_pax_info(self, pax_headers, encoding, errors): + """Replace fields with supplemental information from a previous + pax extended or global header. + """ + for keyword, value in pax_headers.items(): + if keyword == "GNU.sparse.name": + setattr(self, "path", value) + elif keyword == "GNU.sparse.size": + setattr(self, "size", int(value)) + elif keyword == "GNU.sparse.realsize": + setattr(self, "size", int(value)) + elif keyword in PAX_FIELDS: + if keyword in PAX_NUMBER_FIELDS: + try: + value = PAX_NUMBER_FIELDS[keyword](value) + except ValueError: + value = 0 + if keyword == "path": + value = value.rstrip("/") + setattr(self, keyword, value) + + self.pax_headers = pax_headers.copy() + + def _decode_pax_field(self, value, encoding, fallback_encoding, fallback_errors): + """Decode a single field from a pax record. + """ + try: + return value.decode(encoding, "strict") + except UnicodeDecodeError: + return value.decode(fallback_encoding, fallback_errors) + + def _block(self, count): + """Round up a byte count by BLOCKSIZE and return it, + e.g. _block(834) => 1024. + """ + blocks, remainder = divmod(count, BLOCKSIZE) + if remainder: + blocks += 1 + return blocks * BLOCKSIZE + + def isreg(self): + return self.type in REGULAR_TYPES + def isfile(self): + return self.isreg() + def isdir(self): + return self.type == DIRTYPE + def issym(self): + return self.type == SYMTYPE + def islnk(self): + return self.type == LNKTYPE + def ischr(self): + return self.type == CHRTYPE + def isblk(self): + return self.type == BLKTYPE + def isfifo(self): + return self.type == FIFOTYPE + def issparse(self): + return self.sparse is not None + def isdev(self): + return self.type in (CHRTYPE, BLKTYPE, FIFOTYPE) +# class TarInfo + +class TarFile(object): + """The TarFile Class provides an interface to tar archives. + """ + + debug = 0 # May be set from 0 (no msgs) to 3 (all msgs) + + dereference = False # If true, add content of linked file to the + # tar file, else the link. + + ignore_zeros = False # If true, skips empty or invalid blocks and + # continues processing. + + errorlevel = 1 # If 0, fatal errors only appear in debug + # messages (if debug >= 0). If > 0, errors + # are passed to the caller as exceptions. + + format = DEFAULT_FORMAT # The format to use when creating an archive. + + encoding = ENCODING # Encoding for 8-bit character strings. + + errors = None # Error handler for unicode conversion. + + tarinfo = TarInfo # The default TarInfo class to use. + + fileobject = ExFileObject # The default ExFileObject class to use. + + def __init__(self, name=None, mode="r", fileobj=None, format=None, + tarinfo=None, dereference=None, ignore_zeros=None, encoding=None, + errors="surrogateescape", pax_headers=None, debug=None, errorlevel=None): + """Open an (uncompressed) tar archive `name'. `mode' is either 'r' to + read from an existing archive, 'a' to append data to an existing + file or 'w' to create a new file overwriting an existing one. `mode' + defaults to 'r'. + If `fileobj' is given, it is used for reading or writing data. If it + can be determined, `mode' is overridden by `fileobj's mode. + `fileobj' is not closed, when TarFile is closed. + """ + if len(mode) > 1 or mode not in "raw": + raise ValueError("mode must be 'r', 'a' or 'w'") + self.mode = mode + self._mode = {"r": "rb", "a": "r+b", "w": "wb"}[mode] + + if not fileobj: + if self.mode == "a" and not os.path.exists(name): + # Create nonexistent files in append mode. + self.mode = "w" + self._mode = "wb" + fileobj = bltn_open(name, self._mode) + self._extfileobj = False + else: + if name is None and hasattr(fileobj, "name"): + name = fileobj.name + if hasattr(fileobj, "mode"): + self._mode = fileobj.mode + self._extfileobj = True + self.name = os.path.abspath(name) if name else None + self.fileobj = fileobj + + # Init attributes. + if format is not None: + self.format = format + if tarinfo is not None: + self.tarinfo = tarinfo + if dereference is not None: + self.dereference = dereference + if ignore_zeros is not None: + self.ignore_zeros = ignore_zeros + if encoding is not None: + self.encoding = encoding + self.errors = errors + + if pax_headers is not None and self.format == PAX_FORMAT: + self.pax_headers = pax_headers + else: + self.pax_headers = {} + + if debug is not None: + self.debug = debug + if errorlevel is not None: + self.errorlevel = errorlevel + + # Init datastructures. + self.closed = False + self.members = [] # list of members as TarInfo objects + self._loaded = False # flag if all members have been read + self.offset = self.fileobj.tell() + # current position in the archive file + self.inodes = {} # dictionary caching the inodes of + # archive members already added + + try: + if self.mode == "r": + self.firstmember = None + self.firstmember = self.next() + + if self.mode == "a": + # Move to the end of the archive, + # before the first empty block. + while True: + self.fileobj.seek(self.offset) + try: + tarinfo = self.tarinfo.fromtarfile(self) + self.members.append(tarinfo) + except EOFHeaderError: + self.fileobj.seek(self.offset) + break + except HeaderError as e: + raise ReadError(str(e)) + + if self.mode in "aw": + self._loaded = True + + if self.pax_headers: + buf = self.tarinfo.create_pax_global_header(self.pax_headers.copy()) + self.fileobj.write(buf) + self.offset += len(buf) + except: + if not self._extfileobj: + self.fileobj.close() + self.closed = True + raise + + #-------------------------------------------------------------------------- + # Below are the classmethods which act as alternate constructors to the + # TarFile class. The open() method is the only one that is needed for + # public use; it is the "super"-constructor and is able to select an + # adequate "sub"-constructor for a particular compression using the mapping + # from OPEN_METH. + # + # This concept allows one to subclass TarFile without losing the comfort of + # the super-constructor. A sub-constructor is registered and made available + # by adding it to the mapping in OPEN_METH. + + @classmethod + def open(cls, name=None, mode="r", fileobj=None, bufsize=RECORDSIZE, **kwargs): + """Open a tar archive for reading, writing or appending. Return + an appropriate TarFile class. + + mode: + 'r' or 'r:*' open for reading with transparent compression + 'r:' open for reading exclusively uncompressed + 'r:gz' open for reading with gzip compression + 'r:bz2' open for reading with bzip2 compression + 'a' or 'a:' open for appending, creating the file if necessary + 'w' or 'w:' open for writing without compression + 'w:gz' open for writing with gzip compression + 'w:bz2' open for writing with bzip2 compression + + 'r|*' open a stream of tar blocks with transparent compression + 'r|' open an uncompressed stream of tar blocks for reading + 'r|gz' open a gzip compressed stream of tar blocks + 'r|bz2' open a bzip2 compressed stream of tar blocks + 'w|' open an uncompressed stream for writing + 'w|gz' open a gzip compressed stream for writing + 'w|bz2' open a bzip2 compressed stream for writing + """ + + if not name and not fileobj: + raise ValueError("nothing to open") + + if mode in ("r", "r:*"): + # Find out which *open() is appropriate for opening the file. + for comptype in cls.OPEN_METH: + func = getattr(cls, cls.OPEN_METH[comptype]) + if fileobj is not None: + saved_pos = fileobj.tell() + try: + return func(name, "r", fileobj, **kwargs) + except (ReadError, CompressionError) as e: + if fileobj is not None: + fileobj.seek(saved_pos) + continue + raise ReadError("file could not be opened successfully") + + elif ":" in mode: + filemode, comptype = mode.split(":", 1) + filemode = filemode or "r" + comptype = comptype or "tar" + + # Select the *open() function according to + # given compression. + if comptype in cls.OPEN_METH: + func = getattr(cls, cls.OPEN_METH[comptype]) + else: + raise CompressionError("unknown compression type %r" % comptype) + return func(name, filemode, fileobj, **kwargs) + + elif "|" in mode: + filemode, comptype = mode.split("|", 1) + filemode = filemode or "r" + comptype = comptype or "tar" + + if filemode not in "rw": + raise ValueError("mode must be 'r' or 'w'") + + stream = _Stream(name, filemode, comptype, fileobj, bufsize) + try: + t = cls(name, filemode, stream, **kwargs) + except: + stream.close() + raise + t._extfileobj = False + return t + + elif mode in "aw": + return cls.taropen(name, mode, fileobj, **kwargs) + + raise ValueError("undiscernible mode") + + @classmethod + def taropen(cls, name, mode="r", fileobj=None, **kwargs): + """Open uncompressed tar archive name for reading or writing. + """ + if len(mode) > 1 or mode not in "raw": + raise ValueError("mode must be 'r', 'a' or 'w'") + return cls(name, mode, fileobj, **kwargs) + + @classmethod + def gzopen(cls, name, mode="r", fileobj=None, compresslevel=9, **kwargs): + """Open gzip compressed tar archive name for reading or writing. + Appending is not allowed. + """ + if len(mode) > 1 or mode not in "rw": + raise ValueError("mode must be 'r' or 'w'") + + try: + import gzip + gzip.GzipFile + except (ImportError, AttributeError): + raise CompressionError("gzip module is not available") + + extfileobj = fileobj is not None + try: + fileobj = gzip.GzipFile(name, mode + "b", compresslevel, fileobj) + t = cls.taropen(name, mode, fileobj, **kwargs) + except IOError: + if not extfileobj and fileobj is not None: + fileobj.close() + if fileobj is None: + raise + raise ReadError("not a gzip file") + except: + if not extfileobj and fileobj is not None: + fileobj.close() + raise + t._extfileobj = extfileobj + return t + + @classmethod + def bz2open(cls, name, mode="r", fileobj=None, compresslevel=9, **kwargs): + """Open bzip2 compressed tar archive name for reading or writing. + Appending is not allowed. + """ + if len(mode) > 1 or mode not in "rw": + raise ValueError("mode must be 'r' or 'w'.") + + try: + import bz2 + except ImportError: + raise CompressionError("bz2 module is not available") + + if fileobj is not None: + fileobj = _BZ2Proxy(fileobj, mode) + else: + fileobj = bz2.BZ2File(name, mode, compresslevel=compresslevel) + + try: + t = cls.taropen(name, mode, fileobj, **kwargs) + except (IOError, EOFError): + fileobj.close() + raise ReadError("not a bzip2 file") + t._extfileobj = False + return t + + # All *open() methods are registered here. + OPEN_METH = { + "tar": "taropen", # uncompressed tar + "gz": "gzopen", # gzip compressed tar + "bz2": "bz2open" # bzip2 compressed tar + } + + #-------------------------------------------------------------------------- + # The public methods which TarFile provides: + + def close(self): + """Close the TarFile. In write-mode, two finishing zero blocks are + appended to the archive. + """ + if self.closed: + return + + if self.mode in "aw": + self.fileobj.write(NUL * (BLOCKSIZE * 2)) + self.offset += (BLOCKSIZE * 2) + # fill up the end with zero-blocks + # (like option -b20 for tar does) + blocks, remainder = divmod(self.offset, RECORDSIZE) + if remainder > 0: + self.fileobj.write(NUL * (RECORDSIZE - remainder)) + + if not self._extfileobj: + self.fileobj.close() + self.closed = True + + def getmember(self, name): + """Return a TarInfo object for member `name'. If `name' can not be + found in the archive, KeyError is raised. If a member occurs more + than once in the archive, its last occurrence is assumed to be the + most up-to-date version. + """ + tarinfo = self._getmember(name) + if tarinfo is None: + raise KeyError("filename %r not found" % name) + return tarinfo + + def getmembers(self): + """Return the members of the archive as a list of TarInfo objects. The + list has the same order as the members in the archive. + """ + self._check() + if not self._loaded: # if we want to obtain a list of + self._load() # all members, we first have to + # scan the whole archive. + return self.members + + def getnames(self): + """Return the members of the archive as a list of their names. It has + the same order as the list returned by getmembers(). + """ + return [tarinfo.name for tarinfo in self.getmembers()] + + def gettarinfo(self, name=None, arcname=None, fileobj=None): + """Create a TarInfo object for either the file `name' or the file + object `fileobj' (using os.fstat on its file descriptor). You can + modify some of the TarInfo's attributes before you add it using + addfile(). If given, `arcname' specifies an alternative name for the + file in the archive. + """ + self._check("aw") + + # When fileobj is given, replace name by + # fileobj's real name. + if fileobj is not None: + name = fileobj.name + + # Building the name of the member in the archive. + # Backward slashes are converted to forward slashes, + # Absolute paths are turned to relative paths. + if arcname is None: + arcname = name + drv, arcname = os.path.splitdrive(arcname) + arcname = arcname.replace(os.sep, "/") + arcname = arcname.lstrip("/") + + # Now, fill the TarInfo object with + # information specific for the file. + tarinfo = self.tarinfo() + tarinfo.tarfile = self + + # Use os.stat or os.lstat, depending on platform + # and if symlinks shall be resolved. + if fileobj is None: + if hasattr(os, "lstat") and not self.dereference: + statres = os.lstat(name) + else: + statres = os.stat(name) + else: + statres = os.fstat(fileobj.fileno()) + linkname = "" + + stmd = statres.st_mode + if stat.S_ISREG(stmd): + inode = (statres.st_ino, statres.st_dev) + if not self.dereference and statres.st_nlink > 1 and \ + inode in self.inodes and arcname != self.inodes[inode]: + # Is it a hardlink to an already + # archived file? + type = LNKTYPE + linkname = self.inodes[inode] + else: + # The inode is added only if its valid. + # For win32 it is always 0. + type = REGTYPE + if inode[0]: + self.inodes[inode] = arcname + elif stat.S_ISDIR(stmd): + type = DIRTYPE + elif stat.S_ISFIFO(stmd): + type = FIFOTYPE + elif stat.S_ISLNK(stmd): + type = SYMTYPE + linkname = os.readlink(name) + elif stat.S_ISCHR(stmd): + type = CHRTYPE + elif stat.S_ISBLK(stmd): + type = BLKTYPE + else: + return None + + # Fill the TarInfo object with all + # information we can get. + tarinfo.name = arcname + tarinfo.mode = stmd + tarinfo.uid = statres.st_uid + tarinfo.gid = statres.st_gid + if type == REGTYPE: + tarinfo.size = statres.st_size + else: + tarinfo.size = 0 + tarinfo.mtime = statres.st_mtime + tarinfo.type = type + tarinfo.linkname = linkname + if pwd: + try: + tarinfo.uname = pwd.getpwuid(tarinfo.uid)[0] + except KeyError: + pass + if grp: + try: + tarinfo.gname = grp.getgrgid(tarinfo.gid)[0] + except KeyError: + pass + + if type in (CHRTYPE, BLKTYPE): + if hasattr(os, "major") and hasattr(os, "minor"): + tarinfo.devmajor = os.major(statres.st_rdev) + tarinfo.devminor = os.minor(statres.st_rdev) + return tarinfo + + def list(self, verbose=True): + """Print a table of contents to sys.stdout. If `verbose' is False, only + the names of the members are printed. If it is True, an `ls -l'-like + output is produced. + """ + self._check() + + for tarinfo in self: + if verbose: + print(filemode(tarinfo.mode), end=' ') + print("%s/%s" % (tarinfo.uname or tarinfo.uid, + tarinfo.gname or tarinfo.gid), end=' ') + if tarinfo.ischr() or tarinfo.isblk(): + print("%10s" % ("%d,%d" \ + % (tarinfo.devmajor, tarinfo.devminor)), end=' ') + else: + print("%10d" % tarinfo.size, end=' ') + print("%d-%02d-%02d %02d:%02d:%02d" \ + % time.localtime(tarinfo.mtime)[:6], end=' ') + + print(tarinfo.name + ("/" if tarinfo.isdir() else ""), end=' ') + + if verbose: + if tarinfo.issym(): + print("->", tarinfo.linkname, end=' ') + if tarinfo.islnk(): + print("link to", tarinfo.linkname, end=' ') + print() + + def add(self, name, arcname=None, recursive=True, exclude=None, filter=None): + """Add the file `name' to the archive. `name' may be any type of file + (directory, fifo, symbolic link, etc.). If given, `arcname' + specifies an alternative name for the file in the archive. + Directories are added recursively by default. This can be avoided by + setting `recursive' to False. `exclude' is a function that should + return True for each filename to be excluded. `filter' is a function + that expects a TarInfo object argument and returns the changed + TarInfo object, if it returns None the TarInfo object will be + excluded from the archive. + """ + self._check("aw") + + if arcname is None: + arcname = name + + # Exclude pathnames. + if exclude is not None: + import warnings + warnings.warn("use the filter argument instead", + DeprecationWarning, 2) + if exclude(name): + self._dbg(2, "tarfile: Excluded %r" % name) + return + + # Skip if somebody tries to archive the archive... + if self.name is not None and os.path.abspath(name) == self.name: + self._dbg(2, "tarfile: Skipped %r" % name) + return + + self._dbg(1, name) + + # Create a TarInfo object from the file. + tarinfo = self.gettarinfo(name, arcname) + + if tarinfo is None: + self._dbg(1, "tarfile: Unsupported type %r" % name) + return + + # Change or exclude the TarInfo object. + if filter is not None: + tarinfo = filter(tarinfo) + if tarinfo is None: + self._dbg(2, "tarfile: Excluded %r" % name) + return + + # Append the tar header and data to the archive. + if tarinfo.isreg(): + f = bltn_open(name, "rb") + self.addfile(tarinfo, f) + f.close() + + elif tarinfo.isdir(): + self.addfile(tarinfo) + if recursive: + for f in os.listdir(name): + self.add(os.path.join(name, f), os.path.join(arcname, f), + recursive, exclude, filter=filter) + + else: + self.addfile(tarinfo) + + def addfile(self, tarinfo, fileobj=None): + """Add the TarInfo object `tarinfo' to the archive. If `fileobj' is + given, tarinfo.size bytes are read from it and added to the archive. + You can create TarInfo objects using gettarinfo(). + On Windows platforms, `fileobj' should always be opened with mode + 'rb' to avoid irritation about the file size. + """ + self._check("aw") + + tarinfo = copy.copy(tarinfo) + + buf = tarinfo.tobuf(self.format, self.encoding, self.errors) + self.fileobj.write(buf) + self.offset += len(buf) + + # If there's data to follow, append it. + if fileobj is not None: + copyfileobj(fileobj, self.fileobj, tarinfo.size) + blocks, remainder = divmod(tarinfo.size, BLOCKSIZE) + if remainder > 0: + self.fileobj.write(NUL * (BLOCKSIZE - remainder)) + blocks += 1 + self.offset += blocks * BLOCKSIZE + + self.members.append(tarinfo) + + def extractall(self, path=".", members=None): + """Extract all members from the archive to the current working + directory and set owner, modification time and permissions on + directories afterwards. `path' specifies a different directory + to extract to. `members' is optional and must be a subset of the + list returned by getmembers(). + """ + directories = [] + + if members is None: + members = self + + for tarinfo in members: + if tarinfo.isdir(): + # Extract directories with a safe mode. + directories.append(tarinfo) + tarinfo = copy.copy(tarinfo) + tarinfo.mode = 0o700 + # Do not set_attrs directories, as we will do that further down + self.extract(tarinfo, path, set_attrs=not tarinfo.isdir()) + + # Reverse sort directories. + directories.sort(key=lambda a: a.name) + directories.reverse() + + # Set correct owner, mtime and filemode on directories. + for tarinfo in directories: + dirpath = os.path.join(path, tarinfo.name) + try: + self.chown(tarinfo, dirpath) + self.utime(tarinfo, dirpath) + self.chmod(tarinfo, dirpath) + except ExtractError as e: + if self.errorlevel > 1: + raise + else: + self._dbg(1, "tarfile: %s" % e) + + def extract(self, member, path="", set_attrs=True): + """Extract a member from the archive to the current working directory, + using its full name. Its file information is extracted as accurately + as possible. `member' may be a filename or a TarInfo object. You can + specify a different directory using `path'. File attributes (owner, + mtime, mode) are set unless `set_attrs' is False. + """ + self._check("r") + + if isinstance(member, str): + tarinfo = self.getmember(member) + else: + tarinfo = member + + # Prepare the link target for makelink(). + if tarinfo.islnk(): + tarinfo._link_target = os.path.join(path, tarinfo.linkname) + + try: + self._extract_member(tarinfo, os.path.join(path, tarinfo.name), + set_attrs=set_attrs) + except EnvironmentError as e: + if self.errorlevel > 0: + raise + else: + if e.filename is None: + self._dbg(1, "tarfile: %s" % e.strerror) + else: + self._dbg(1, "tarfile: %s %r" % (e.strerror, e.filename)) + except ExtractError as e: + if self.errorlevel > 1: + raise + else: + self._dbg(1, "tarfile: %s" % e) + + def extractfile(self, member): + """Extract a member from the archive as a file object. `member' may be + a filename or a TarInfo object. If `member' is a regular file, a + file-like object is returned. If `member' is a link, a file-like + object is constructed from the link's target. If `member' is none of + the above, None is returned. + The file-like object is read-only and provides the following + methods: read(), readline(), readlines(), seek() and tell() + """ + self._check("r") + + if isinstance(member, str): + tarinfo = self.getmember(member) + else: + tarinfo = member + + if tarinfo.isreg(): + return self.fileobject(self, tarinfo) + + elif tarinfo.type not in SUPPORTED_TYPES: + # If a member's type is unknown, it is treated as a + # regular file. + return self.fileobject(self, tarinfo) + + elif tarinfo.islnk() or tarinfo.issym(): + if isinstance(self.fileobj, _Stream): + # A small but ugly workaround for the case that someone tries + # to extract a (sym)link as a file-object from a non-seekable + # stream of tar blocks. + raise StreamError("cannot extract (sym)link as file object") + else: + # A (sym)link's file object is its target's file object. + return self.extractfile(self._find_link_target(tarinfo)) + else: + # If there's no data associated with the member (directory, chrdev, + # blkdev, etc.), return None instead of a file object. + return None + + def _extract_member(self, tarinfo, targetpath, set_attrs=True): + """Extract the TarInfo object tarinfo to a physical + file called targetpath. + """ + # Fetch the TarInfo object for the given name + # and build the destination pathname, replacing + # forward slashes to platform specific separators. + targetpath = targetpath.rstrip("/") + targetpath = targetpath.replace("/", os.sep) + + # Create all upper directories. + upperdirs = os.path.dirname(targetpath) + if upperdirs and not os.path.exists(upperdirs): + # Create directories that are not part of the archive with + # default permissions. + os.makedirs(upperdirs) + + if tarinfo.islnk() or tarinfo.issym(): + self._dbg(1, "%s -> %s" % (tarinfo.name, tarinfo.linkname)) + else: + self._dbg(1, tarinfo.name) + + if tarinfo.isreg(): + self.makefile(tarinfo, targetpath) + elif tarinfo.isdir(): + self.makedir(tarinfo, targetpath) + elif tarinfo.isfifo(): + self.makefifo(tarinfo, targetpath) + elif tarinfo.ischr() or tarinfo.isblk(): + self.makedev(tarinfo, targetpath) + elif tarinfo.islnk() or tarinfo.issym(): + self.makelink(tarinfo, targetpath) + elif tarinfo.type not in SUPPORTED_TYPES: + self.makeunknown(tarinfo, targetpath) + else: + self.makefile(tarinfo, targetpath) + + if set_attrs: + self.chown(tarinfo, targetpath) + if not tarinfo.issym(): + self.chmod(tarinfo, targetpath) + self.utime(tarinfo, targetpath) + + #-------------------------------------------------------------------------- + # Below are the different file methods. They are called via + # _extract_member() when extract() is called. They can be replaced in a + # subclass to implement other functionality. + + def makedir(self, tarinfo, targetpath): + """Make a directory called targetpath. + """ + try: + # Use a safe mode for the directory, the real mode is set + # later in _extract_member(). + os.mkdir(targetpath, 0o700) + except EnvironmentError as e: + if e.errno != errno.EEXIST: + raise + + def makefile(self, tarinfo, targetpath): + """Make a file called targetpath. + """ + source = self.fileobj + source.seek(tarinfo.offset_data) + target = bltn_open(targetpath, "wb") + if tarinfo.sparse is not None: + for offset, size in tarinfo.sparse: + target.seek(offset) + copyfileobj(source, target, size) + else: + copyfileobj(source, target, tarinfo.size) + target.seek(tarinfo.size) + target.truncate() + target.close() + + def makeunknown(self, tarinfo, targetpath): + """Make a file from a TarInfo object with an unknown type + at targetpath. + """ + self.makefile(tarinfo, targetpath) + self._dbg(1, "tarfile: Unknown file type %r, " \ + "extracted as regular file." % tarinfo.type) + + def makefifo(self, tarinfo, targetpath): + """Make a fifo called targetpath. + """ + if hasattr(os, "mkfifo"): + os.mkfifo(targetpath) + else: + raise ExtractError("fifo not supported by system") + + def makedev(self, tarinfo, targetpath): + """Make a character or block device called targetpath. + """ + if not hasattr(os, "mknod") or not hasattr(os, "makedev"): + raise ExtractError("special devices not supported by system") + + mode = tarinfo.mode + if tarinfo.isblk(): + mode |= stat.S_IFBLK + else: + mode |= stat.S_IFCHR + + os.mknod(targetpath, mode, + os.makedev(tarinfo.devmajor, tarinfo.devminor)) + + def makelink(self, tarinfo, targetpath): + """Make a (symbolic) link called targetpath. If it cannot be created + (platform limitation), we try to make a copy of the referenced file + instead of a link. + """ + try: + # For systems that support symbolic and hard links. + if tarinfo.issym(): + os.symlink(tarinfo.linkname, targetpath) + else: + # See extract(). + if os.path.exists(tarinfo._link_target): + os.link(tarinfo._link_target, targetpath) + else: + self._extract_member(self._find_link_target(tarinfo), + targetpath) + except symlink_exception: + if tarinfo.issym(): + linkpath = os.path.join(os.path.dirname(tarinfo.name), + tarinfo.linkname) + else: + linkpath = tarinfo.linkname + else: + try: + self._extract_member(self._find_link_target(tarinfo), + targetpath) + except KeyError: + raise ExtractError("unable to resolve link inside archive") + + def chown(self, tarinfo, targetpath): + """Set owner of targetpath according to tarinfo. + """ + if pwd and hasattr(os, "geteuid") and os.geteuid() == 0: + # We have to be root to do so. + try: + g = grp.getgrnam(tarinfo.gname)[2] + except KeyError: + g = tarinfo.gid + try: + u = pwd.getpwnam(tarinfo.uname)[2] + except KeyError: + u = tarinfo.uid + try: + if tarinfo.issym() and hasattr(os, "lchown"): + os.lchown(targetpath, u, g) + else: + if sys.platform != "os2emx": + os.chown(targetpath, u, g) + except EnvironmentError as e: + raise ExtractError("could not change owner") + + def chmod(self, tarinfo, targetpath): + """Set file permissions of targetpath according to tarinfo. + """ + if hasattr(os, 'chmod'): + try: + os.chmod(targetpath, tarinfo.mode) + except EnvironmentError as e: + raise ExtractError("could not change mode") + + def utime(self, tarinfo, targetpath): + """Set modification time of targetpath according to tarinfo. + """ + if not hasattr(os, 'utime'): + return + try: + os.utime(targetpath, (tarinfo.mtime, tarinfo.mtime)) + except EnvironmentError as e: + raise ExtractError("could not change modification time") + + #-------------------------------------------------------------------------- + def next(self): + """Return the next member of the archive as a TarInfo object, when + TarFile is opened for reading. Return None if there is no more + available. + """ + self._check("ra") + if self.firstmember is not None: + m = self.firstmember + self.firstmember = None + return m + + # Read the next block. + self.fileobj.seek(self.offset) + tarinfo = None + while True: + try: + tarinfo = self.tarinfo.fromtarfile(self) + except EOFHeaderError as e: + if self.ignore_zeros: + self._dbg(2, "0x%X: %s" % (self.offset, e)) + self.offset += BLOCKSIZE + continue + except InvalidHeaderError as e: + if self.ignore_zeros: + self._dbg(2, "0x%X: %s" % (self.offset, e)) + self.offset += BLOCKSIZE + continue + elif self.offset == 0: + raise ReadError(str(e)) + except EmptyHeaderError: + if self.offset == 0: + raise ReadError("empty file") + except TruncatedHeaderError as e: + if self.offset == 0: + raise ReadError(str(e)) + except SubsequentHeaderError as e: + raise ReadError(str(e)) + break + + if tarinfo is not None: + self.members.append(tarinfo) + else: + self._loaded = True + + return tarinfo + + #-------------------------------------------------------------------------- + # Little helper methods: + + def _getmember(self, name, tarinfo=None, normalize=False): + """Find an archive member by name from bottom to top. + If tarinfo is given, it is used as the starting point. + """ + # Ensure that all members have been loaded. + members = self.getmembers() + + # Limit the member search list up to tarinfo. + if tarinfo is not None: + members = members[:members.index(tarinfo)] + + if normalize: + name = os.path.normpath(name) + + for member in reversed(members): + if normalize: + member_name = os.path.normpath(member.name) + else: + member_name = member.name + + if name == member_name: + return member + + def _load(self): + """Read through the entire archive file and look for readable + members. + """ + while True: + tarinfo = self.next() + if tarinfo is None: + break + self._loaded = True + + def _check(self, mode=None): + """Check if TarFile is still open, and if the operation's mode + corresponds to TarFile's mode. + """ + if self.closed: + raise IOError("%s is closed" % self.__class__.__name__) + if mode is not None and self.mode not in mode: + raise IOError("bad operation for mode %r" % self.mode) + + def _find_link_target(self, tarinfo): + """Find the target member of a symlink or hardlink member in the + archive. + """ + if tarinfo.issym(): + # Always search the entire archive. + linkname = os.path.dirname(tarinfo.name) + "/" + tarinfo.linkname + limit = None + else: + # Search the archive before the link, because a hard link is + # just a reference to an already archived file. + linkname = tarinfo.linkname + limit = tarinfo + + member = self._getmember(linkname, tarinfo=limit, normalize=True) + if member is None: + raise KeyError("linkname %r not found" % linkname) + return member + + def __iter__(self): + """Provide an iterator object. + """ + if self._loaded: + return iter(self.members) + else: + return TarIter(self) + + def _dbg(self, level, msg): + """Write debugging output to sys.stderr. + """ + if level <= self.debug: + print(msg, file=sys.stderr) + + def __enter__(self): + self._check() + return self + + def __exit__(self, type, value, traceback): + if type is None: + self.close() + else: + # An exception occurred. We must not call close() because + # it would try to write end-of-archive blocks and padding. + if not self._extfileobj: + self.fileobj.close() + self.closed = True +# class TarFile + +class TarIter(object): + """Iterator Class. + + for tarinfo in TarFile(...): + suite... + """ + + def __init__(self, tarfile): + """Construct a TarIter object. + """ + self.tarfile = tarfile + self.index = 0 + def __iter__(self): + """Return iterator object. + """ + return self + + def __next__(self): + """Return the next item using TarFile's next() method. + When all members have been read, set TarFile as _loaded. + """ + # Fix for SF #1100429: Under rare circumstances it can + # happen that getmembers() is called during iteration, + # which will cause TarIter to stop prematurely. + if not self.tarfile._loaded: + tarinfo = self.tarfile.next() + if not tarinfo: + self.tarfile._loaded = True + raise StopIteration + else: + try: + tarinfo = self.tarfile.members[self.index] + except IndexError: + raise StopIteration + self.index += 1 + return tarinfo + + next = __next__ # for Python 2.x + +#-------------------- +# exported functions +#-------------------- +def is_tarfile(name): + """Return True if name points to a tar archive that we + are able to handle, else return False. + """ + try: + t = open(name) + t.close() + return True + except TarError: + return False + +bltn_open = open +open = TarFile.open diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/compat.py b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/compat.py new file mode 100644 index 00000000..c316fd97 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/compat.py @@ -0,0 +1,1120 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2017 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import absolute_import + +import os +import re +import sys + +try: + import ssl +except ImportError: # pragma: no cover + ssl = None + +if sys.version_info[0] < 3: # pragma: no cover + from StringIO import StringIO + string_types = basestring, + text_type = unicode + from types import FileType as file_type + import __builtin__ as builtins + import ConfigParser as configparser + from ._backport import shutil + from urlparse import urlparse, urlunparse, urljoin, urlsplit, urlunsplit + from urllib import (urlretrieve, quote as _quote, unquote, url2pathname, + pathname2url, ContentTooShortError, splittype) + + def quote(s): + if isinstance(s, unicode): + s = s.encode('utf-8') + return _quote(s) + + import urllib2 + from urllib2 import (Request, urlopen, URLError, HTTPError, + HTTPBasicAuthHandler, HTTPPasswordMgr, + HTTPHandler, HTTPRedirectHandler, + build_opener) + if ssl: + from urllib2 import HTTPSHandler + import httplib + import xmlrpclib + import Queue as queue + from HTMLParser import HTMLParser + import htmlentitydefs + raw_input = raw_input + from itertools import ifilter as filter + from itertools import ifilterfalse as filterfalse + + _userprog = None + def splituser(host): + """splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'.""" + global _userprog + if _userprog is None: + import re + _userprog = re.compile('^(.*)@(.*)$') + + match = _userprog.match(host) + if match: return match.group(1, 2) + return None, host + +else: # pragma: no cover + from io import StringIO + string_types = str, + text_type = str + from io import TextIOWrapper as file_type + import builtins + import configparser + import shutil + from urllib.parse import (urlparse, urlunparse, urljoin, splituser, quote, + unquote, urlsplit, urlunsplit, splittype) + from urllib.request import (urlopen, urlretrieve, Request, url2pathname, + pathname2url, + HTTPBasicAuthHandler, HTTPPasswordMgr, + HTTPHandler, HTTPRedirectHandler, + build_opener) + if ssl: + from urllib.request import HTTPSHandler + from urllib.error import HTTPError, URLError, ContentTooShortError + import http.client as httplib + import urllib.request as urllib2 + import xmlrpc.client as xmlrpclib + import queue + from html.parser import HTMLParser + import html.entities as htmlentitydefs + raw_input = input + from itertools import filterfalse + filter = filter + +try: + from ssl import match_hostname, CertificateError +except ImportError: # pragma: no cover + class CertificateError(ValueError): + pass + + + def _dnsname_match(dn, hostname, max_wildcards=1): + """Matching according to RFC 6125, section 6.4.3 + + http://tools.ietf.org/html/rfc6125#section-6.4.3 + """ + pats = [] + if not dn: + return False + + parts = dn.split('.') + leftmost, remainder = parts[0], parts[1:] + + wildcards = leftmost.count('*') + if wildcards > max_wildcards: + # Issue #17980: avoid denials of service by refusing more + # than one wildcard per fragment. A survey of established + # policy among SSL implementations showed it to be a + # reasonable choice. + raise CertificateError( + "too many wildcards in certificate DNS name: " + repr(dn)) + + # speed up common case w/o wildcards + if not wildcards: + return dn.lower() == hostname.lower() + + # RFC 6125, section 6.4.3, subitem 1. + # The client SHOULD NOT attempt to match a presented identifier in which + # the wildcard character comprises a label other than the left-most label. + if leftmost == '*': + # When '*' is a fragment by itself, it matches a non-empty dotless + # fragment. + pats.append('[^.]+') + elif leftmost.startswith('xn--') or hostname.startswith('xn--'): + # RFC 6125, section 6.4.3, subitem 3. + # The client SHOULD NOT attempt to match a presented identifier + # where the wildcard character is embedded within an A-label or + # U-label of an internationalized domain name. + pats.append(re.escape(leftmost)) + else: + # Otherwise, '*' matches any dotless string, e.g. www* + pats.append(re.escape(leftmost).replace(r'\*', '[^.]*')) + + # add the remaining fragments, ignore any wildcards + for frag in remainder: + pats.append(re.escape(frag)) + + pat = re.compile(r'\A' + r'\.'.join(pats) + r'\Z', re.IGNORECASE) + return pat.match(hostname) + + + def match_hostname(cert, hostname): + """Verify that *cert* (in decoded format as returned by + SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 and RFC 6125 + rules are followed, but IP addresses are not accepted for *hostname*. + + CertificateError is raised on failure. On success, the function + returns nothing. + """ + if not cert: + raise ValueError("empty or no certificate, match_hostname needs a " + "SSL socket or SSL context with either " + "CERT_OPTIONAL or CERT_REQUIRED") + dnsnames = [] + san = cert.get('subjectAltName', ()) + for key, value in san: + if key == 'DNS': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if not dnsnames: + # The subject is only checked when there is no dNSName entry + # in subjectAltName + for sub in cert.get('subject', ()): + for key, value in sub: + # XXX according to RFC 2818, the most specific Common Name + # must be used. + if key == 'commonName': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if len(dnsnames) > 1: + raise CertificateError("hostname %r " + "doesn't match either of %s" + % (hostname, ', '.join(map(repr, dnsnames)))) + elif len(dnsnames) == 1: + raise CertificateError("hostname %r " + "doesn't match %r" + % (hostname, dnsnames[0])) + else: + raise CertificateError("no appropriate commonName or " + "subjectAltName fields were found") + + +try: + from types import SimpleNamespace as Container +except ImportError: # pragma: no cover + class Container(object): + """ + A generic container for when multiple values need to be returned + """ + def __init__(self, **kwargs): + self.__dict__.update(kwargs) + + +try: + from shutil import which +except ImportError: # pragma: no cover + # Implementation from Python 3.3 + def which(cmd, mode=os.F_OK | os.X_OK, path=None): + """Given a command, mode, and a PATH string, return the path which + conforms to the given mode on the PATH, or None if there is no such + file. + + `mode` defaults to os.F_OK | os.X_OK. `path` defaults to the result + of os.environ.get("PATH"), or can be overridden with a custom search + path. + + """ + # Check that a given file can be accessed with the correct mode. + # Additionally check that `file` is not a directory, as on Windows + # directories pass the os.access check. + def _access_check(fn, mode): + return (os.path.exists(fn) and os.access(fn, mode) + and not os.path.isdir(fn)) + + # If we're given a path with a directory part, look it up directly rather + # than referring to PATH directories. This includes checking relative to the + # current directory, e.g. ./script + if os.path.dirname(cmd): + if _access_check(cmd, mode): + return cmd + return None + + if path is None: + path = os.environ.get("PATH", os.defpath) + if not path: + return None + path = path.split(os.pathsep) + + if sys.platform == "win32": + # The current directory takes precedence on Windows. + if not os.curdir in path: + path.insert(0, os.curdir) + + # PATHEXT is necessary to check on Windows. + pathext = os.environ.get("PATHEXT", "").split(os.pathsep) + # See if the given file matches any of the expected path extensions. + # This will allow us to short circuit when given "python.exe". + # If it does match, only test that one, otherwise we have to try + # others. + if any(cmd.lower().endswith(ext.lower()) for ext in pathext): + files = [cmd] + else: + files = [cmd + ext for ext in pathext] + else: + # On other platforms you don't have things like PATHEXT to tell you + # what file suffixes are executable, so just pass on cmd as-is. + files = [cmd] + + seen = set() + for dir in path: + normdir = os.path.normcase(dir) + if not normdir in seen: + seen.add(normdir) + for thefile in files: + name = os.path.join(dir, thefile) + if _access_check(name, mode): + return name + return None + + +# ZipFile is a context manager in 2.7, but not in 2.6 + +from zipfile import ZipFile as BaseZipFile + +if hasattr(BaseZipFile, '__enter__'): # pragma: no cover + ZipFile = BaseZipFile +else: # pragma: no cover + from zipfile import ZipExtFile as BaseZipExtFile + + class ZipExtFile(BaseZipExtFile): + def __init__(self, base): + self.__dict__.update(base.__dict__) + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + class ZipFile(BaseZipFile): + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + def open(self, *args, **kwargs): + base = BaseZipFile.open(self, *args, **kwargs) + return ZipExtFile(base) + +try: + from platform import python_implementation +except ImportError: # pragma: no cover + def python_implementation(): + """Return a string identifying the Python implementation.""" + if 'PyPy' in sys.version: + return 'PyPy' + if os.name == 'java': + return 'Jython' + if sys.version.startswith('IronPython'): + return 'IronPython' + return 'CPython' + +try: + import sysconfig +except ImportError: # pragma: no cover + from ._backport import sysconfig + +try: + callable = callable +except NameError: # pragma: no cover + from collections.abc import Callable + + def callable(obj): + return isinstance(obj, Callable) + + +try: + fsencode = os.fsencode + fsdecode = os.fsdecode +except AttributeError: # pragma: no cover + # Issue #99: on some systems (e.g. containerised), + # sys.getfilesystemencoding() returns None, and we need a real value, + # so fall back to utf-8. From the CPython 2.7 docs relating to Unix and + # sys.getfilesystemencoding(): the return value is "the user’s preference + # according to the result of nl_langinfo(CODESET), or None if the + # nl_langinfo(CODESET) failed." + _fsencoding = sys.getfilesystemencoding() or 'utf-8' + if _fsencoding == 'mbcs': + _fserrors = 'strict' + else: + _fserrors = 'surrogateescape' + + def fsencode(filename): + if isinstance(filename, bytes): + return filename + elif isinstance(filename, text_type): + return filename.encode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + + def fsdecode(filename): + if isinstance(filename, text_type): + return filename + elif isinstance(filename, bytes): + return filename.decode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + +try: + from tokenize import detect_encoding +except ImportError: # pragma: no cover + from codecs import BOM_UTF8, lookup + import re + + cookie_re = re.compile(r"coding[:=]\s*([-\w.]+)") + + def _get_normal_name(orig_enc): + """Imitates get_normal_name in tokenizer.c.""" + # Only care about the first 12 characters. + enc = orig_enc[:12].lower().replace("_", "-") + if enc == "utf-8" or enc.startswith("utf-8-"): + return "utf-8" + if enc in ("latin-1", "iso-8859-1", "iso-latin-1") or \ + enc.startswith(("latin-1-", "iso-8859-1-", "iso-latin-1-")): + return "iso-8859-1" + return orig_enc + + def detect_encoding(readline): + """ + The detect_encoding() function is used to detect the encoding that should + be used to decode a Python source file. It requires one argument, readline, + in the same way as the tokenize() generator. + + It will call readline a maximum of twice, and return the encoding used + (as a string) and a list of any lines (left as bytes) it has read in. + + It detects the encoding from the presence of a utf-8 bom or an encoding + cookie as specified in pep-0263. If both a bom and a cookie are present, + but disagree, a SyntaxError will be raised. If the encoding cookie is an + invalid charset, raise a SyntaxError. Note that if a utf-8 bom is found, + 'utf-8-sig' is returned. + + If no encoding is specified, then the default of 'utf-8' will be returned. + """ + try: + filename = readline.__self__.name + except AttributeError: + filename = None + bom_found = False + encoding = None + default = 'utf-8' + def read_or_stop(): + try: + return readline() + except StopIteration: + return b'' + + def find_cookie(line): + try: + # Decode as UTF-8. Either the line is an encoding declaration, + # in which case it should be pure ASCII, or it must be UTF-8 + # per default encoding. + line_string = line.decode('utf-8') + except UnicodeDecodeError: + msg = "invalid or missing encoding declaration" + if filename is not None: + msg = '{} for {!r}'.format(msg, filename) + raise SyntaxError(msg) + + matches = cookie_re.findall(line_string) + if not matches: + return None + encoding = _get_normal_name(matches[0]) + try: + codec = lookup(encoding) + except LookupError: + # This behaviour mimics the Python interpreter + if filename is None: + msg = "unknown encoding: " + encoding + else: + msg = "unknown encoding for {!r}: {}".format(filename, + encoding) + raise SyntaxError(msg) + + if bom_found: + if codec.name != 'utf-8': + # This behaviour mimics the Python interpreter + if filename is None: + msg = 'encoding problem: utf-8' + else: + msg = 'encoding problem for {!r}: utf-8'.format(filename) + raise SyntaxError(msg) + encoding += '-sig' + return encoding + + first = read_or_stop() + if first.startswith(BOM_UTF8): + bom_found = True + first = first[3:] + default = 'utf-8-sig' + if not first: + return default, [] + + encoding = find_cookie(first) + if encoding: + return encoding, [first] + + second = read_or_stop() + if not second: + return default, [first] + + encoding = find_cookie(second) + if encoding: + return encoding, [first, second] + + return default, [first, second] + +# For converting & <-> & etc. +try: + from html import escape +except ImportError: + from cgi import escape +if sys.version_info[:2] < (3, 4): + unescape = HTMLParser().unescape +else: + from html import unescape + +try: + from collections import ChainMap +except ImportError: # pragma: no cover + from collections import MutableMapping + + try: + from reprlib import recursive_repr as _recursive_repr + except ImportError: + def _recursive_repr(fillvalue='...'): + ''' + Decorator to make a repr function return fillvalue for a recursive + call + ''' + + def decorating_function(user_function): + repr_running = set() + + def wrapper(self): + key = id(self), get_ident() + if key in repr_running: + return fillvalue + repr_running.add(key) + try: + result = user_function(self) + finally: + repr_running.discard(key) + return result + + # Can't use functools.wraps() here because of bootstrap issues + wrapper.__module__ = getattr(user_function, '__module__') + wrapper.__doc__ = getattr(user_function, '__doc__') + wrapper.__name__ = getattr(user_function, '__name__') + wrapper.__annotations__ = getattr(user_function, '__annotations__', {}) + return wrapper + + return decorating_function + + class ChainMap(MutableMapping): + ''' A ChainMap groups multiple dicts (or other mappings) together + to create a single, updateable view. + + The underlying mappings are stored in a list. That list is public and can + accessed or updated using the *maps* attribute. There is no other state. + + Lookups search the underlying mappings successively until a key is found. + In contrast, writes, updates, and deletions only operate on the first + mapping. + + ''' + + def __init__(self, *maps): + '''Initialize a ChainMap by setting *maps* to the given mappings. + If no mappings are provided, a single empty dictionary is used. + + ''' + self.maps = list(maps) or [{}] # always at least one map + + def __missing__(self, key): + raise KeyError(key) + + def __getitem__(self, key): + for mapping in self.maps: + try: + return mapping[key] # can't use 'key in mapping' with defaultdict + except KeyError: + pass + return self.__missing__(key) # support subclasses that define __missing__ + + def get(self, key, default=None): + return self[key] if key in self else default + + def __len__(self): + return len(set().union(*self.maps)) # reuses stored hash values if possible + + def __iter__(self): + return iter(set().union(*self.maps)) + + def __contains__(self, key): + return any(key in m for m in self.maps) + + def __bool__(self): + return any(self.maps) + + @_recursive_repr() + def __repr__(self): + return '{0.__class__.__name__}({1})'.format( + self, ', '.join(map(repr, self.maps))) + + @classmethod + def fromkeys(cls, iterable, *args): + 'Create a ChainMap with a single dict created from the iterable.' + return cls(dict.fromkeys(iterable, *args)) + + def copy(self): + 'New ChainMap or subclass with a new copy of maps[0] and refs to maps[1:]' + return self.__class__(self.maps[0].copy(), *self.maps[1:]) + + __copy__ = copy + + def new_child(self): # like Django's Context.push() + 'New ChainMap with a new dict followed by all previous maps.' + return self.__class__({}, *self.maps) + + @property + def parents(self): # like Django's Context.pop() + 'New ChainMap from maps[1:].' + return self.__class__(*self.maps[1:]) + + def __setitem__(self, key, value): + self.maps[0][key] = value + + def __delitem__(self, key): + try: + del self.maps[0][key] + except KeyError: + raise KeyError('Key not found in the first mapping: {!r}'.format(key)) + + def popitem(self): + 'Remove and return an item pair from maps[0]. Raise KeyError is maps[0] is empty.' + try: + return self.maps[0].popitem() + except KeyError: + raise KeyError('No keys found in the first mapping.') + + def pop(self, key, *args): + 'Remove *key* from maps[0] and return its value. Raise KeyError if *key* not in maps[0].' + try: + return self.maps[0].pop(key, *args) + except KeyError: + raise KeyError('Key not found in the first mapping: {!r}'.format(key)) + + def clear(self): + 'Clear maps[0], leaving maps[1:] intact.' + self.maps[0].clear() + +try: + from importlib.util import cache_from_source # Python >= 3.4 +except ImportError: # pragma: no cover + try: + from imp import cache_from_source + except ImportError: # pragma: no cover + def cache_from_source(path, debug_override=None): + assert path.endswith('.py') + if debug_override is None: + debug_override = __debug__ + if debug_override: + suffix = 'c' + else: + suffix = 'o' + return path + suffix + +try: + from collections import OrderedDict +except ImportError: # pragma: no cover +## {{{ http://code.activestate.com/recipes/576693/ (r9) +# Backport of OrderedDict() class that runs on Python 2.4, 2.5, 2.6, 2.7 and pypy. +# Passes Python2.7's test suite and incorporates all the latest updates. + try: + from thread import get_ident as _get_ident + except ImportError: + from dummy_thread import get_ident as _get_ident + + try: + from _abcoll import KeysView, ValuesView, ItemsView + except ImportError: + pass + + + class OrderedDict(dict): + 'Dictionary that remembers insertion order' + # An inherited dict maps keys to values. + # The inherited dict provides __getitem__, __len__, __contains__, and get. + # The remaining methods are order-aware. + # Big-O running times for all methods are the same as for regular dictionaries. + + # The internal self.__map dictionary maps keys to links in a doubly linked list. + # The circular doubly linked list starts and ends with a sentinel element. + # The sentinel element never gets deleted (this simplifies the algorithm). + # Each link is stored as a list of length three: [PREV, NEXT, KEY]. + + def __init__(self, *args, **kwds): + '''Initialize an ordered dictionary. Signature is the same as for + regular dictionaries, but keyword arguments are not recommended + because their insertion order is arbitrary. + + ''' + if len(args) > 1: + raise TypeError('expected at most 1 arguments, got %d' % len(args)) + try: + self.__root + except AttributeError: + self.__root = root = [] # sentinel node + root[:] = [root, root, None] + self.__map = {} + self.__update(*args, **kwds) + + def __setitem__(self, key, value, dict_setitem=dict.__setitem__): + 'od.__setitem__(i, y) <==> od[i]=y' + # Setting a new item creates a new link which goes at the end of the linked + # list, and the inherited dictionary is updated with the new key/value pair. + if key not in self: + root = self.__root + last = root[0] + last[1] = root[0] = self.__map[key] = [last, root, key] + dict_setitem(self, key, value) + + def __delitem__(self, key, dict_delitem=dict.__delitem__): + 'od.__delitem__(y) <==> del od[y]' + # Deleting an existing item uses self.__map to find the link which is + # then removed by updating the links in the predecessor and successor nodes. + dict_delitem(self, key) + link_prev, link_next, key = self.__map.pop(key) + link_prev[1] = link_next + link_next[0] = link_prev + + def __iter__(self): + 'od.__iter__() <==> iter(od)' + root = self.__root + curr = root[1] + while curr is not root: + yield curr[2] + curr = curr[1] + + def __reversed__(self): + 'od.__reversed__() <==> reversed(od)' + root = self.__root + curr = root[0] + while curr is not root: + yield curr[2] + curr = curr[0] + + def clear(self): + 'od.clear() -> None. Remove all items from od.' + try: + for node in self.__map.itervalues(): + del node[:] + root = self.__root + root[:] = [root, root, None] + self.__map.clear() + except AttributeError: + pass + dict.clear(self) + + def popitem(self, last=True): + '''od.popitem() -> (k, v), return and remove a (key, value) pair. + Pairs are returned in LIFO order if last is true or FIFO order if false. + + ''' + if not self: + raise KeyError('dictionary is empty') + root = self.__root + if last: + link = root[0] + link_prev = link[0] + link_prev[1] = root + root[0] = link_prev + else: + link = root[1] + link_next = link[1] + root[1] = link_next + link_next[0] = root + key = link[2] + del self.__map[key] + value = dict.pop(self, key) + return key, value + + # -- the following methods do not depend on the internal structure -- + + def keys(self): + 'od.keys() -> list of keys in od' + return list(self) + + def values(self): + 'od.values() -> list of values in od' + return [self[key] for key in self] + + def items(self): + 'od.items() -> list of (key, value) pairs in od' + return [(key, self[key]) for key in self] + + def iterkeys(self): + 'od.iterkeys() -> an iterator over the keys in od' + return iter(self) + + def itervalues(self): + 'od.itervalues -> an iterator over the values in od' + for k in self: + yield self[k] + + def iteritems(self): + 'od.iteritems -> an iterator over the (key, value) items in od' + for k in self: + yield (k, self[k]) + + def update(*args, **kwds): + '''od.update(E, **F) -> None. Update od from dict/iterable E and F. + + If E is a dict instance, does: for k in E: od[k] = E[k] + If E has a .keys() method, does: for k in E.keys(): od[k] = E[k] + Or if E is an iterable of items, does: for k, v in E: od[k] = v + In either case, this is followed by: for k, v in F.items(): od[k] = v + + ''' + if len(args) > 2: + raise TypeError('update() takes at most 2 positional ' + 'arguments (%d given)' % (len(args),)) + elif not args: + raise TypeError('update() takes at least 1 argument (0 given)') + self = args[0] + # Make progressively weaker assumptions about "other" + other = () + if len(args) == 2: + other = args[1] + if isinstance(other, dict): + for key in other: + self[key] = other[key] + elif hasattr(other, 'keys'): + for key in other.keys(): + self[key] = other[key] + else: + for key, value in other: + self[key] = value + for key, value in kwds.items(): + self[key] = value + + __update = update # let subclasses override update without breaking __init__ + + __marker = object() + + def pop(self, key, default=__marker): + '''od.pop(k[,d]) -> v, remove specified key and return the corresponding value. + If key is not found, d is returned if given, otherwise KeyError is raised. + + ''' + if key in self: + result = self[key] + del self[key] + return result + if default is self.__marker: + raise KeyError(key) + return default + + def setdefault(self, key, default=None): + 'od.setdefault(k[,d]) -> od.get(k,d), also set od[k]=d if k not in od' + if key in self: + return self[key] + self[key] = default + return default + + def __repr__(self, _repr_running=None): + 'od.__repr__() <==> repr(od)' + if not _repr_running: _repr_running = {} + call_key = id(self), _get_ident() + if call_key in _repr_running: + return '...' + _repr_running[call_key] = 1 + try: + if not self: + return '%s()' % (self.__class__.__name__,) + return '%s(%r)' % (self.__class__.__name__, self.items()) + finally: + del _repr_running[call_key] + + def __reduce__(self): + 'Return state information for pickling' + items = [[k, self[k]] for k in self] + inst_dict = vars(self).copy() + for k in vars(OrderedDict()): + inst_dict.pop(k, None) + if inst_dict: + return (self.__class__, (items,), inst_dict) + return self.__class__, (items,) + + def copy(self): + 'od.copy() -> a shallow copy of od' + return self.__class__(self) + + @classmethod + def fromkeys(cls, iterable, value=None): + '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S + and values equal to v (which defaults to None). + + ''' + d = cls() + for key in iterable: + d[key] = value + return d + + def __eq__(self, other): + '''od.__eq__(y) <==> od==y. Comparison to another OD is order-sensitive + while comparison to a regular mapping is order-insensitive. + + ''' + if isinstance(other, OrderedDict): + return len(self)==len(other) and self.items() == other.items() + return dict.__eq__(self, other) + + def __ne__(self, other): + return not self == other + + # -- the following methods are only used in Python 2.7 -- + + def viewkeys(self): + "od.viewkeys() -> a set-like object providing a view on od's keys" + return KeysView(self) + + def viewvalues(self): + "od.viewvalues() -> an object providing a view on od's values" + return ValuesView(self) + + def viewitems(self): + "od.viewitems() -> a set-like object providing a view on od's items" + return ItemsView(self) + +try: + from logging.config import BaseConfigurator, valid_ident +except ImportError: # pragma: no cover + IDENTIFIER = re.compile('^[a-z_][a-z0-9_]*$', re.I) + + + def valid_ident(s): + m = IDENTIFIER.match(s) + if not m: + raise ValueError('Not a valid Python identifier: %r' % s) + return True + + + # The ConvertingXXX classes are wrappers around standard Python containers, + # and they serve to convert any suitable values in the container. The + # conversion converts base dicts, lists and tuples to their wrapped + # equivalents, whereas strings which match a conversion format are converted + # appropriately. + # + # Each wrapper should have a configurator attribute holding the actual + # configurator to use for conversion. + + class ConvertingDict(dict): + """A converting dictionary wrapper.""" + + def __getitem__(self, key): + value = dict.__getitem__(self, key) + result = self.configurator.convert(value) + #If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def get(self, key, default=None): + value = dict.get(self, key, default) + result = self.configurator.convert(value) + #If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, key, default=None): + value = dict.pop(self, key, default) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class ConvertingList(list): + """A converting list wrapper.""" + def __getitem__(self, key): + value = list.__getitem__(self, key) + result = self.configurator.convert(value) + #If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, idx=-1): + value = list.pop(self, idx) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + return result + + class ConvertingTuple(tuple): + """A converting tuple wrapper.""" + def __getitem__(self, key): + value = tuple.__getitem__(self, key) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class BaseConfigurator(object): + """ + The configurator base class which defines some useful defaults. + """ + + CONVERT_PATTERN = re.compile(r'^(?P[a-z]+)://(?P.*)$') + + WORD_PATTERN = re.compile(r'^\s*(\w+)\s*') + DOT_PATTERN = re.compile(r'^\.\s*(\w+)\s*') + INDEX_PATTERN = re.compile(r'^\[\s*(\w+)\s*\]\s*') + DIGIT_PATTERN = re.compile(r'^\d+$') + + value_converters = { + 'ext' : 'ext_convert', + 'cfg' : 'cfg_convert', + } + + # We might want to use a different one, e.g. importlib + importer = staticmethod(__import__) + + def __init__(self, config): + self.config = ConvertingDict(config) + self.config.configurator = self + + def resolve(self, s): + """ + Resolve strings to objects using standard import and attribute + syntax. + """ + name = s.split('.') + used = name.pop(0) + try: + found = self.importer(used) + for frag in name: + used += '.' + frag + try: + found = getattr(found, frag) + except AttributeError: + self.importer(used) + found = getattr(found, frag) + return found + except ImportError: + e, tb = sys.exc_info()[1:] + v = ValueError('Cannot resolve %r: %s' % (s, e)) + v.__cause__, v.__traceback__ = e, tb + raise v + + def ext_convert(self, value): + """Default converter for the ext:// protocol.""" + return self.resolve(value) + + def cfg_convert(self, value): + """Default converter for the cfg:// protocol.""" + rest = value + m = self.WORD_PATTERN.match(rest) + if m is None: + raise ValueError("Unable to convert %r" % value) + else: + rest = rest[m.end():] + d = self.config[m.groups()[0]] + #print d, rest + while rest: + m = self.DOT_PATTERN.match(rest) + if m: + d = d[m.groups()[0]] + else: + m = self.INDEX_PATTERN.match(rest) + if m: + idx = m.groups()[0] + if not self.DIGIT_PATTERN.match(idx): + d = d[idx] + else: + try: + n = int(idx) # try as number first (most likely) + d = d[n] + except TypeError: + d = d[idx] + if m: + rest = rest[m.end():] + else: + raise ValueError('Unable to convert ' + '%r at %r' % (value, rest)) + #rest should be empty + return d + + def convert(self, value): + """ + Convert values to an appropriate type. dicts, lists and tuples are + replaced by their converting alternatives. Strings are checked to + see if they have a conversion format and are converted if they do. + """ + if not isinstance(value, ConvertingDict) and isinstance(value, dict): + value = ConvertingDict(value) + value.configurator = self + elif not isinstance(value, ConvertingList) and isinstance(value, list): + value = ConvertingList(value) + value.configurator = self + elif not isinstance(value, ConvertingTuple) and\ + isinstance(value, tuple): + value = ConvertingTuple(value) + value.configurator = self + elif isinstance(value, string_types): + m = self.CONVERT_PATTERN.match(value) + if m: + d = m.groupdict() + prefix = d['prefix'] + converter = self.value_converters.get(prefix, None) + if converter: + suffix = d['suffix'] + converter = getattr(self, converter) + value = converter(suffix) + return value + + def configure_custom(self, config): + """Configure an object with a user-supplied factory.""" + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + kwargs = dict([(k, config[k]) for k in config if valid_ident(k)]) + result = c(**kwargs) + if props: + for name, value in props.items(): + setattr(result, name, value) + return result + + def as_tuple(self, value): + """Utility function which converts lists to tuples.""" + if isinstance(value, list): + value = tuple(value) + return value diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/database.py b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/database.py new file mode 100644 index 00000000..0a90c300 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/database.py @@ -0,0 +1,1339 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2017 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""PEP 376 implementation.""" + +from __future__ import unicode_literals + +import base64 +import codecs +import contextlib +import hashlib +import logging +import os +import posixpath +import sys +import zipimport + +from . import DistlibException, resources +from .compat import StringIO +from .version import get_scheme, UnsupportedVersionError +from .metadata import (Metadata, METADATA_FILENAME, WHEEL_METADATA_FILENAME, + LEGACY_METADATA_FILENAME) +from .util import (parse_requirement, cached_property, parse_name_and_version, + read_exports, write_exports, CSVReader, CSVWriter) + + +__all__ = ['Distribution', 'BaseInstalledDistribution', + 'InstalledDistribution', 'EggInfoDistribution', + 'DistributionPath'] + + +logger = logging.getLogger(__name__) + +EXPORTS_FILENAME = 'pydist-exports.json' +COMMANDS_FILENAME = 'pydist-commands.json' + +DIST_FILES = ('INSTALLER', METADATA_FILENAME, 'RECORD', 'REQUESTED', + 'RESOURCES', EXPORTS_FILENAME, 'SHARED') + +DISTINFO_EXT = '.dist-info' + + +class _Cache(object): + """ + A simple cache mapping names and .dist-info paths to distributions + """ + def __init__(self): + """ + Initialise an instance. There is normally one for each DistributionPath. + """ + self.name = {} + self.path = {} + self.generated = False + + def clear(self): + """ + Clear the cache, setting it to its initial state. + """ + self.name.clear() + self.path.clear() + self.generated = False + + def add(self, dist): + """ + Add a distribution to the cache. + :param dist: The distribution to add. + """ + if dist.path not in self.path: + self.path[dist.path] = dist + self.name.setdefault(dist.key, []).append(dist) + + +class DistributionPath(object): + """ + Represents a set of distributions installed on a path (typically sys.path). + """ + def __init__(self, path=None, include_egg=False): + """ + Create an instance from a path, optionally including legacy (distutils/ + setuptools/distribute) distributions. + :param path: The path to use, as a list of directories. If not specified, + sys.path is used. + :param include_egg: If True, this instance will look for and return legacy + distributions as well as those based on PEP 376. + """ + if path is None: + path = sys.path + self.path = path + self._include_dist = True + self._include_egg = include_egg + + self._cache = _Cache() + self._cache_egg = _Cache() + self._cache_enabled = True + self._scheme = get_scheme('default') + + def _get_cache_enabled(self): + return self._cache_enabled + + def _set_cache_enabled(self, value): + self._cache_enabled = value + + cache_enabled = property(_get_cache_enabled, _set_cache_enabled) + + def clear_cache(self): + """ + Clears the internal cache. + """ + self._cache.clear() + self._cache_egg.clear() + + + def _yield_distributions(self): + """ + Yield .dist-info and/or .egg(-info) distributions. + """ + # We need to check if we've seen some resources already, because on + # some Linux systems (e.g. some Debian/Ubuntu variants) there are + # symlinks which alias other files in the environment. + seen = set() + for path in self.path: + finder = resources.finder_for_path(path) + if finder is None: + continue + r = finder.find('') + if not r or not r.is_container: + continue + rset = sorted(r.resources) + for entry in rset: + r = finder.find(entry) + if not r or r.path in seen: + continue + if self._include_dist and entry.endswith(DISTINFO_EXT): + possible_filenames = [METADATA_FILENAME, + WHEEL_METADATA_FILENAME, + LEGACY_METADATA_FILENAME] + for metadata_filename in possible_filenames: + metadata_path = posixpath.join(entry, metadata_filename) + pydist = finder.find(metadata_path) + if pydist: + break + else: + continue + + with contextlib.closing(pydist.as_stream()) as stream: + metadata = Metadata(fileobj=stream, scheme='legacy') + logger.debug('Found %s', r.path) + seen.add(r.path) + yield new_dist_class(r.path, metadata=metadata, + env=self) + elif self._include_egg and entry.endswith(('.egg-info', + '.egg')): + logger.debug('Found %s', r.path) + seen.add(r.path) + yield old_dist_class(r.path, self) + + def _generate_cache(self): + """ + Scan the path for distributions and populate the cache with + those that are found. + """ + gen_dist = not self._cache.generated + gen_egg = self._include_egg and not self._cache_egg.generated + if gen_dist or gen_egg: + for dist in self._yield_distributions(): + if isinstance(dist, InstalledDistribution): + self._cache.add(dist) + else: + self._cache_egg.add(dist) + + if gen_dist: + self._cache.generated = True + if gen_egg: + self._cache_egg.generated = True + + @classmethod + def distinfo_dirname(cls, name, version): + """ + The *name* and *version* parameters are converted into their + filename-escaped form, i.e. any ``'-'`` characters are replaced + with ``'_'`` other than the one in ``'dist-info'`` and the one + separating the name from the version number. + + :parameter name: is converted to a standard distribution name by replacing + any runs of non- alphanumeric characters with a single + ``'-'``. + :type name: string + :parameter version: is converted to a standard version string. Spaces + become dots, and all other non-alphanumeric characters + (except dots) become dashes, with runs of multiple + dashes condensed to a single dash. + :type version: string + :returns: directory name + :rtype: string""" + name = name.replace('-', '_') + return '-'.join([name, version]) + DISTINFO_EXT + + def get_distributions(self): + """ + Provides an iterator that looks for distributions and returns + :class:`InstalledDistribution` or + :class:`EggInfoDistribution` instances for each one of them. + + :rtype: iterator of :class:`InstalledDistribution` and + :class:`EggInfoDistribution` instances + """ + if not self._cache_enabled: + for dist in self._yield_distributions(): + yield dist + else: + self._generate_cache() + + for dist in self._cache.path.values(): + yield dist + + if self._include_egg: + for dist in self._cache_egg.path.values(): + yield dist + + def get_distribution(self, name): + """ + Looks for a named distribution on the path. + + This function only returns the first result found, as no more than one + value is expected. If nothing is found, ``None`` is returned. + + :rtype: :class:`InstalledDistribution`, :class:`EggInfoDistribution` + or ``None`` + """ + result = None + name = name.lower() + if not self._cache_enabled: + for dist in self._yield_distributions(): + if dist.key == name: + result = dist + break + else: + self._generate_cache() + + if name in self._cache.name: + result = self._cache.name[name][0] + elif self._include_egg and name in self._cache_egg.name: + result = self._cache_egg.name[name][0] + return result + + def provides_distribution(self, name, version=None): + """ + Iterates over all distributions to find which distributions provide *name*. + If a *version* is provided, it will be used to filter the results. + + This function only returns the first result found, since no more than + one values are expected. If the directory is not found, returns ``None``. + + :parameter version: a version specifier that indicates the version + required, conforming to the format in ``PEP-345`` + + :type name: string + :type version: string + """ + matcher = None + if version is not None: + try: + matcher = self._scheme.matcher('%s (%s)' % (name, version)) + except ValueError: + raise DistlibException('invalid name or version: %r, %r' % + (name, version)) + + for dist in self.get_distributions(): + # We hit a problem on Travis where enum34 was installed and doesn't + # have a provides attribute ... + if not hasattr(dist, 'provides'): + logger.debug('No "provides": %s', dist) + else: + provided = dist.provides + + for p in provided: + p_name, p_ver = parse_name_and_version(p) + if matcher is None: + if p_name == name: + yield dist + break + else: + if p_name == name and matcher.match(p_ver): + yield dist + break + + def get_file_path(self, name, relative_path): + """ + Return the path to a resource file. + """ + dist = self.get_distribution(name) + if dist is None: + raise LookupError('no distribution named %r found' % name) + return dist.get_resource_path(relative_path) + + def get_exported_entries(self, category, name=None): + """ + Return all of the exported entries in a particular category. + + :param category: The category to search for entries. + :param name: If specified, only entries with that name are returned. + """ + for dist in self.get_distributions(): + r = dist.exports + if category in r: + d = r[category] + if name is not None: + if name in d: + yield d[name] + else: + for v in d.values(): + yield v + + +class Distribution(object): + """ + A base class for distributions, whether installed or from indexes. + Either way, it must have some metadata, so that's all that's needed + for construction. + """ + + build_time_dependency = False + """ + Set to True if it's known to be only a build-time dependency (i.e. + not needed after installation). + """ + + requested = False + """A boolean that indicates whether the ``REQUESTED`` metadata file is + present (in other words, whether the package was installed by user + request or it was installed as a dependency).""" + + def __init__(self, metadata): + """ + Initialise an instance. + :param metadata: The instance of :class:`Metadata` describing this + distribution. + """ + self.metadata = metadata + self.name = metadata.name + self.key = self.name.lower() # for case-insensitive comparisons + self.version = metadata.version + self.locator = None + self.digest = None + self.extras = None # additional features requested + self.context = None # environment marker overrides + self.download_urls = set() + self.digests = {} + + @property + def source_url(self): + """ + The source archive download URL for this distribution. + """ + return self.metadata.source_url + + download_url = source_url # Backward compatibility + + @property + def name_and_version(self): + """ + A utility property which displays the name and version in parentheses. + """ + return '%s (%s)' % (self.name, self.version) + + @property + def provides(self): + """ + A set of distribution names and versions provided by this distribution. + :return: A set of "name (version)" strings. + """ + plist = self.metadata.provides + s = '%s (%s)' % (self.name, self.version) + if s not in plist: + plist.append(s) + return plist + + def _get_requirements(self, req_attr): + md = self.metadata + logger.debug('Getting requirements from metadata %r', md.todict()) + reqts = getattr(md, req_attr) + return set(md.get_requirements(reqts, extras=self.extras, + env=self.context)) + + @property + def run_requires(self): + return self._get_requirements('run_requires') + + @property + def meta_requires(self): + return self._get_requirements('meta_requires') + + @property + def build_requires(self): + return self._get_requirements('build_requires') + + @property + def test_requires(self): + return self._get_requirements('test_requires') + + @property + def dev_requires(self): + return self._get_requirements('dev_requires') + + def matches_requirement(self, req): + """ + Say if this instance matches (fulfills) a requirement. + :param req: The requirement to match. + :rtype req: str + :return: True if it matches, else False. + """ + # Requirement may contain extras - parse to lose those + # from what's passed to the matcher + r = parse_requirement(req) + scheme = get_scheme(self.metadata.scheme) + try: + matcher = scheme.matcher(r.requirement) + except UnsupportedVersionError: + # XXX compat-mode if cannot read the version + logger.warning('could not read version %r - using name only', + req) + name = req.split()[0] + matcher = scheme.matcher(name) + + name = matcher.key # case-insensitive + + result = False + for p in self.provides: + p_name, p_ver = parse_name_and_version(p) + if p_name != name: + continue + try: + result = matcher.match(p_ver) + break + except UnsupportedVersionError: + pass + return result + + def __repr__(self): + """ + Return a textual representation of this instance, + """ + if self.source_url: + suffix = ' [%s]' % self.source_url + else: + suffix = '' + return '' % (self.name, self.version, suffix) + + def __eq__(self, other): + """ + See if this distribution is the same as another. + :param other: The distribution to compare with. To be equal to one + another. distributions must have the same type, name, + version and source_url. + :return: True if it is the same, else False. + """ + if type(other) is not type(self): + result = False + else: + result = (self.name == other.name and + self.version == other.version and + self.source_url == other.source_url) + return result + + def __hash__(self): + """ + Compute hash in a way which matches the equality test. + """ + return hash(self.name) + hash(self.version) + hash(self.source_url) + + +class BaseInstalledDistribution(Distribution): + """ + This is the base class for installed distributions (whether PEP 376 or + legacy). + """ + + hasher = None + + def __init__(self, metadata, path, env=None): + """ + Initialise an instance. + :param metadata: An instance of :class:`Metadata` which describes the + distribution. This will normally have been initialised + from a metadata file in the ``path``. + :param path: The path of the ``.dist-info`` or ``.egg-info`` + directory for the distribution. + :param env: This is normally the :class:`DistributionPath` + instance where this distribution was found. + """ + super(BaseInstalledDistribution, self).__init__(metadata) + self.path = path + self.dist_path = env + + def get_hash(self, data, hasher=None): + """ + Get the hash of some data, using a particular hash algorithm, if + specified. + + :param data: The data to be hashed. + :type data: bytes + :param hasher: The name of a hash implementation, supported by hashlib, + or ``None``. Examples of valid values are ``'sha1'``, + ``'sha224'``, ``'sha384'``, '``sha256'``, ``'md5'`` and + ``'sha512'``. If no hasher is specified, the ``hasher`` + attribute of the :class:`InstalledDistribution` instance + is used. If the hasher is determined to be ``None``, MD5 + is used as the hashing algorithm. + :returns: The hash of the data. If a hasher was explicitly specified, + the returned hash will be prefixed with the specified hasher + followed by '='. + :rtype: str + """ + if hasher is None: + hasher = self.hasher + if hasher is None: + hasher = hashlib.md5 + prefix = '' + else: + hasher = getattr(hashlib, hasher) + prefix = '%s=' % self.hasher + digest = hasher(data).digest() + digest = base64.urlsafe_b64encode(digest).rstrip(b'=').decode('ascii') + return '%s%s' % (prefix, digest) + + +class InstalledDistribution(BaseInstalledDistribution): + """ + Created with the *path* of the ``.dist-info`` directory provided to the + constructor. It reads the metadata contained in ``pydist.json`` when it is + instantiated., or uses a passed in Metadata instance (useful for when + dry-run mode is being used). + """ + + hasher = 'sha256' + + def __init__(self, path, metadata=None, env=None): + self.modules = [] + self.finder = finder = resources.finder_for_path(path) + if finder is None: + raise ValueError('finder unavailable for %s' % path) + if env and env._cache_enabled and path in env._cache.path: + metadata = env._cache.path[path].metadata + elif metadata is None: + r = finder.find(METADATA_FILENAME) + # Temporary - for Wheel 0.23 support + if r is None: + r = finder.find(WHEEL_METADATA_FILENAME) + # Temporary - for legacy support + if r is None: + r = finder.find(LEGACY_METADATA_FILENAME) + if r is None: + raise ValueError('no %s found in %s' % (METADATA_FILENAME, + path)) + with contextlib.closing(r.as_stream()) as stream: + metadata = Metadata(fileobj=stream, scheme='legacy') + + super(InstalledDistribution, self).__init__(metadata, path, env) + + if env and env._cache_enabled: + env._cache.add(self) + + r = finder.find('REQUESTED') + self.requested = r is not None + p = os.path.join(path, 'top_level.txt') + if os.path.exists(p): + with open(p, 'rb') as f: + data = f.read().decode('utf-8') + self.modules = data.splitlines() + + def __repr__(self): + return '' % ( + self.name, self.version, self.path) + + def __str__(self): + return "%s %s" % (self.name, self.version) + + def _get_records(self): + """ + Get the list of installed files for the distribution + :return: A list of tuples of path, hash and size. Note that hash and + size might be ``None`` for some entries. The path is exactly + as stored in the file (which is as in PEP 376). + """ + results = [] + r = self.get_distinfo_resource('RECORD') + with contextlib.closing(r.as_stream()) as stream: + with CSVReader(stream=stream) as record_reader: + # Base location is parent dir of .dist-info dir + #base_location = os.path.dirname(self.path) + #base_location = os.path.abspath(base_location) + for row in record_reader: + missing = [None for i in range(len(row), 3)] + path, checksum, size = row + missing + #if not os.path.isabs(path): + # path = path.replace('/', os.sep) + # path = os.path.join(base_location, path) + results.append((path, checksum, size)) + return results + + @cached_property + def exports(self): + """ + Return the information exported by this distribution. + :return: A dictionary of exports, mapping an export category to a dict + of :class:`ExportEntry` instances describing the individual + export entries, and keyed by name. + """ + result = {} + r = self.get_distinfo_resource(EXPORTS_FILENAME) + if r: + result = self.read_exports() + return result + + def read_exports(self): + """ + Read exports data from a file in .ini format. + + :return: A dictionary of exports, mapping an export category to a list + of :class:`ExportEntry` instances describing the individual + export entries. + """ + result = {} + r = self.get_distinfo_resource(EXPORTS_FILENAME) + if r: + with contextlib.closing(r.as_stream()) as stream: + result = read_exports(stream) + return result + + def write_exports(self, exports): + """ + Write a dictionary of exports to a file in .ini format. + :param exports: A dictionary of exports, mapping an export category to + a list of :class:`ExportEntry` instances describing the + individual export entries. + """ + rf = self.get_distinfo_file(EXPORTS_FILENAME) + with open(rf, 'w') as f: + write_exports(exports, f) + + def get_resource_path(self, relative_path): + """ + NOTE: This API may change in the future. + + Return the absolute path to a resource file with the given relative + path. + + :param relative_path: The path, relative to .dist-info, of the resource + of interest. + :return: The absolute path where the resource is to be found. + """ + r = self.get_distinfo_resource('RESOURCES') + with contextlib.closing(r.as_stream()) as stream: + with CSVReader(stream=stream) as resources_reader: + for relative, destination in resources_reader: + if relative == relative_path: + return destination + raise KeyError('no resource file with relative path %r ' + 'is installed' % relative_path) + + def list_installed_files(self): + """ + Iterates over the ``RECORD`` entries and returns a tuple + ``(path, hash, size)`` for each line. + + :returns: iterator of (path, hash, size) + """ + for result in self._get_records(): + yield result + + def write_installed_files(self, paths, prefix, dry_run=False): + """ + Writes the ``RECORD`` file, using the ``paths`` iterable passed in. Any + existing ``RECORD`` file is silently overwritten. + + prefix is used to determine when to write absolute paths. + """ + prefix = os.path.join(prefix, '') + base = os.path.dirname(self.path) + base_under_prefix = base.startswith(prefix) + base = os.path.join(base, '') + record_path = self.get_distinfo_file('RECORD') + logger.info('creating %s', record_path) + if dry_run: + return None + with CSVWriter(record_path) as writer: + for path in paths: + if os.path.isdir(path) or path.endswith(('.pyc', '.pyo')): + # do not put size and hash, as in PEP-376 + hash_value = size = '' + else: + size = '%d' % os.path.getsize(path) + with open(path, 'rb') as fp: + hash_value = self.get_hash(fp.read()) + if path.startswith(base) or (base_under_prefix and + path.startswith(prefix)): + path = os.path.relpath(path, base) + writer.writerow((path, hash_value, size)) + + # add the RECORD file itself + if record_path.startswith(base): + record_path = os.path.relpath(record_path, base) + writer.writerow((record_path, '', '')) + return record_path + + def check_installed_files(self): + """ + Checks that the hashes and sizes of the files in ``RECORD`` are + matched by the files themselves. Returns a (possibly empty) list of + mismatches. Each entry in the mismatch list will be a tuple consisting + of the path, 'exists', 'size' or 'hash' according to what didn't match + (existence is checked first, then size, then hash), the expected + value and the actual value. + """ + mismatches = [] + base = os.path.dirname(self.path) + record_path = self.get_distinfo_file('RECORD') + for path, hash_value, size in self.list_installed_files(): + if not os.path.isabs(path): + path = os.path.join(base, path) + if path == record_path: + continue + if not os.path.exists(path): + mismatches.append((path, 'exists', True, False)) + elif os.path.isfile(path): + actual_size = str(os.path.getsize(path)) + if size and actual_size != size: + mismatches.append((path, 'size', size, actual_size)) + elif hash_value: + if '=' in hash_value: + hasher = hash_value.split('=', 1)[0] + else: + hasher = None + + with open(path, 'rb') as f: + actual_hash = self.get_hash(f.read(), hasher) + if actual_hash != hash_value: + mismatches.append((path, 'hash', hash_value, actual_hash)) + return mismatches + + @cached_property + def shared_locations(self): + """ + A dictionary of shared locations whose keys are in the set 'prefix', + 'purelib', 'platlib', 'scripts', 'headers', 'data' and 'namespace'. + The corresponding value is the absolute path of that category for + this distribution, and takes into account any paths selected by the + user at installation time (e.g. via command-line arguments). In the + case of the 'namespace' key, this would be a list of absolute paths + for the roots of namespace packages in this distribution. + + The first time this property is accessed, the relevant information is + read from the SHARED file in the .dist-info directory. + """ + result = {} + shared_path = os.path.join(self.path, 'SHARED') + if os.path.isfile(shared_path): + with codecs.open(shared_path, 'r', encoding='utf-8') as f: + lines = f.read().splitlines() + for line in lines: + key, value = line.split('=', 1) + if key == 'namespace': + result.setdefault(key, []).append(value) + else: + result[key] = value + return result + + def write_shared_locations(self, paths, dry_run=False): + """ + Write shared location information to the SHARED file in .dist-info. + :param paths: A dictionary as described in the documentation for + :meth:`shared_locations`. + :param dry_run: If True, the action is logged but no file is actually + written. + :return: The path of the file written to. + """ + shared_path = os.path.join(self.path, 'SHARED') + logger.info('creating %s', shared_path) + if dry_run: + return None + lines = [] + for key in ('prefix', 'lib', 'headers', 'scripts', 'data'): + path = paths[key] + if os.path.isdir(paths[key]): + lines.append('%s=%s' % (key, path)) + for ns in paths.get('namespace', ()): + lines.append('namespace=%s' % ns) + + with codecs.open(shared_path, 'w', encoding='utf-8') as f: + f.write('\n'.join(lines)) + return shared_path + + def get_distinfo_resource(self, path): + if path not in DIST_FILES: + raise DistlibException('invalid path for a dist-info file: ' + '%r at %r' % (path, self.path)) + finder = resources.finder_for_path(self.path) + if finder is None: + raise DistlibException('Unable to get a finder for %s' % self.path) + return finder.find(path) + + def get_distinfo_file(self, path): + """ + Returns a path located under the ``.dist-info`` directory. Returns a + string representing the path. + + :parameter path: a ``'/'``-separated path relative to the + ``.dist-info`` directory or an absolute path; + If *path* is an absolute path and doesn't start + with the ``.dist-info`` directory path, + a :class:`DistlibException` is raised + :type path: str + :rtype: str + """ + # Check if it is an absolute path # XXX use relpath, add tests + if path.find(os.sep) >= 0: + # it's an absolute path? + distinfo_dirname, path = path.split(os.sep)[-2:] + if distinfo_dirname != self.path.split(os.sep)[-1]: + raise DistlibException( + 'dist-info file %r does not belong to the %r %s ' + 'distribution' % (path, self.name, self.version)) + + # The file must be relative + if path not in DIST_FILES: + raise DistlibException('invalid path for a dist-info file: ' + '%r at %r' % (path, self.path)) + + return os.path.join(self.path, path) + + def list_distinfo_files(self): + """ + Iterates over the ``RECORD`` entries and returns paths for each line if + the path is pointing to a file located in the ``.dist-info`` directory + or one of its subdirectories. + + :returns: iterator of paths + """ + base = os.path.dirname(self.path) + for path, checksum, size in self._get_records(): + # XXX add separator or use real relpath algo + if not os.path.isabs(path): + path = os.path.join(base, path) + if path.startswith(self.path): + yield path + + def __eq__(self, other): + return (isinstance(other, InstalledDistribution) and + self.path == other.path) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + __hash__ = object.__hash__ + + +class EggInfoDistribution(BaseInstalledDistribution): + """Created with the *path* of the ``.egg-info`` directory or file provided + to the constructor. It reads the metadata contained in the file itself, or + if the given path happens to be a directory, the metadata is read from the + file ``PKG-INFO`` under that directory.""" + + requested = True # as we have no way of knowing, assume it was + shared_locations = {} + + def __init__(self, path, env=None): + def set_name_and_version(s, n, v): + s.name = n + s.key = n.lower() # for case-insensitive comparisons + s.version = v + + self.path = path + self.dist_path = env + if env and env._cache_enabled and path in env._cache_egg.path: + metadata = env._cache_egg.path[path].metadata + set_name_and_version(self, metadata.name, metadata.version) + else: + metadata = self._get_metadata(path) + + # Need to be set before caching + set_name_and_version(self, metadata.name, metadata.version) + + if env and env._cache_enabled: + env._cache_egg.add(self) + super(EggInfoDistribution, self).__init__(metadata, path, env) + + def _get_metadata(self, path): + requires = None + + def parse_requires_data(data): + """Create a list of dependencies from a requires.txt file. + + *data*: the contents of a setuptools-produced requires.txt file. + """ + reqs = [] + lines = data.splitlines() + for line in lines: + line = line.strip() + if line.startswith('['): + logger.warning('Unexpected line: quitting requirement scan: %r', + line) + break + r = parse_requirement(line) + if not r: + logger.warning('Not recognised as a requirement: %r', line) + continue + if r.extras: + logger.warning('extra requirements in requires.txt are ' + 'not supported') + if not r.constraints: + reqs.append(r.name) + else: + cons = ', '.join('%s%s' % c for c in r.constraints) + reqs.append('%s (%s)' % (r.name, cons)) + return reqs + + def parse_requires_path(req_path): + """Create a list of dependencies from a requires.txt file. + + *req_path*: the path to a setuptools-produced requires.txt file. + """ + + reqs = [] + try: + with codecs.open(req_path, 'r', 'utf-8') as fp: + reqs = parse_requires_data(fp.read()) + except IOError: + pass + return reqs + + tl_path = tl_data = None + if path.endswith('.egg'): + if os.path.isdir(path): + p = os.path.join(path, 'EGG-INFO') + meta_path = os.path.join(p, 'PKG-INFO') + metadata = Metadata(path=meta_path, scheme='legacy') + req_path = os.path.join(p, 'requires.txt') + tl_path = os.path.join(p, 'top_level.txt') + requires = parse_requires_path(req_path) + else: + # FIXME handle the case where zipfile is not available + zipf = zipimport.zipimporter(path) + fileobj = StringIO( + zipf.get_data('EGG-INFO/PKG-INFO').decode('utf8')) + metadata = Metadata(fileobj=fileobj, scheme='legacy') + try: + data = zipf.get_data('EGG-INFO/requires.txt') + tl_data = zipf.get_data('EGG-INFO/top_level.txt').decode('utf-8') + requires = parse_requires_data(data.decode('utf-8')) + except IOError: + requires = None + elif path.endswith('.egg-info'): + if os.path.isdir(path): + req_path = os.path.join(path, 'requires.txt') + requires = parse_requires_path(req_path) + path = os.path.join(path, 'PKG-INFO') + tl_path = os.path.join(path, 'top_level.txt') + metadata = Metadata(path=path, scheme='legacy') + else: + raise DistlibException('path must end with .egg-info or .egg, ' + 'got %r' % path) + + if requires: + metadata.add_requirements(requires) + # look for top-level modules in top_level.txt, if present + if tl_data is None: + if tl_path is not None and os.path.exists(tl_path): + with open(tl_path, 'rb') as f: + tl_data = f.read().decode('utf-8') + if not tl_data: + tl_data = [] + else: + tl_data = tl_data.splitlines() + self.modules = tl_data + return metadata + + def __repr__(self): + return '' % ( + self.name, self.version, self.path) + + def __str__(self): + return "%s %s" % (self.name, self.version) + + def check_installed_files(self): + """ + Checks that the hashes and sizes of the files in ``RECORD`` are + matched by the files themselves. Returns a (possibly empty) list of + mismatches. Each entry in the mismatch list will be a tuple consisting + of the path, 'exists', 'size' or 'hash' according to what didn't match + (existence is checked first, then size, then hash), the expected + value and the actual value. + """ + mismatches = [] + record_path = os.path.join(self.path, 'installed-files.txt') + if os.path.exists(record_path): + for path, _, _ in self.list_installed_files(): + if path == record_path: + continue + if not os.path.exists(path): + mismatches.append((path, 'exists', True, False)) + return mismatches + + def list_installed_files(self): + """ + Iterates over the ``installed-files.txt`` entries and returns a tuple + ``(path, hash, size)`` for each line. + + :returns: a list of (path, hash, size) + """ + + def _md5(path): + f = open(path, 'rb') + try: + content = f.read() + finally: + f.close() + return hashlib.md5(content).hexdigest() + + def _size(path): + return os.stat(path).st_size + + record_path = os.path.join(self.path, 'installed-files.txt') + result = [] + if os.path.exists(record_path): + with codecs.open(record_path, 'r', encoding='utf-8') as f: + for line in f: + line = line.strip() + p = os.path.normpath(os.path.join(self.path, line)) + # "./" is present as a marker between installed files + # and installation metadata files + if not os.path.exists(p): + logger.warning('Non-existent file: %s', p) + if p.endswith(('.pyc', '.pyo')): + continue + #otherwise fall through and fail + if not os.path.isdir(p): + result.append((p, _md5(p), _size(p))) + result.append((record_path, None, None)) + return result + + def list_distinfo_files(self, absolute=False): + """ + Iterates over the ``installed-files.txt`` entries and returns paths for + each line if the path is pointing to a file located in the + ``.egg-info`` directory or one of its subdirectories. + + :parameter absolute: If *absolute* is ``True``, each returned path is + transformed into a local absolute path. Otherwise the + raw value from ``installed-files.txt`` is returned. + :type absolute: boolean + :returns: iterator of paths + """ + record_path = os.path.join(self.path, 'installed-files.txt') + if os.path.exists(record_path): + skip = True + with codecs.open(record_path, 'r', encoding='utf-8') as f: + for line in f: + line = line.strip() + if line == './': + skip = False + continue + if not skip: + p = os.path.normpath(os.path.join(self.path, line)) + if p.startswith(self.path): + if absolute: + yield p + else: + yield line + + def __eq__(self, other): + return (isinstance(other, EggInfoDistribution) and + self.path == other.path) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + __hash__ = object.__hash__ + +new_dist_class = InstalledDistribution +old_dist_class = EggInfoDistribution + + +class DependencyGraph(object): + """ + Represents a dependency graph between distributions. + + The dependency relationships are stored in an ``adjacency_list`` that maps + distributions to a list of ``(other, label)`` tuples where ``other`` + is a distribution and the edge is labeled with ``label`` (i.e. the version + specifier, if such was provided). Also, for more efficient traversal, for + every distribution ``x``, a list of predecessors is kept in + ``reverse_list[x]``. An edge from distribution ``a`` to + distribution ``b`` means that ``a`` depends on ``b``. If any missing + dependencies are found, they are stored in ``missing``, which is a + dictionary that maps distributions to a list of requirements that were not + provided by any other distributions. + """ + + def __init__(self): + self.adjacency_list = {} + self.reverse_list = {} + self.missing = {} + + def add_distribution(self, distribution): + """Add the *distribution* to the graph. + + :type distribution: :class:`distutils2.database.InstalledDistribution` + or :class:`distutils2.database.EggInfoDistribution` + """ + self.adjacency_list[distribution] = [] + self.reverse_list[distribution] = [] + #self.missing[distribution] = [] + + def add_edge(self, x, y, label=None): + """Add an edge from distribution *x* to distribution *y* with the given + *label*. + + :type x: :class:`distutils2.database.InstalledDistribution` or + :class:`distutils2.database.EggInfoDistribution` + :type y: :class:`distutils2.database.InstalledDistribution` or + :class:`distutils2.database.EggInfoDistribution` + :type label: ``str`` or ``None`` + """ + self.adjacency_list[x].append((y, label)) + # multiple edges are allowed, so be careful + if x not in self.reverse_list[y]: + self.reverse_list[y].append(x) + + def add_missing(self, distribution, requirement): + """ + Add a missing *requirement* for the given *distribution*. + + :type distribution: :class:`distutils2.database.InstalledDistribution` + or :class:`distutils2.database.EggInfoDistribution` + :type requirement: ``str`` + """ + logger.debug('%s missing %r', distribution, requirement) + self.missing.setdefault(distribution, []).append(requirement) + + def _repr_dist(self, dist): + return '%s %s' % (dist.name, dist.version) + + def repr_node(self, dist, level=1): + """Prints only a subgraph""" + output = [self._repr_dist(dist)] + for other, label in self.adjacency_list[dist]: + dist = self._repr_dist(other) + if label is not None: + dist = '%s [%s]' % (dist, label) + output.append(' ' * level + str(dist)) + suboutput = self.repr_node(other, level + 1) + subs = suboutput.split('\n') + output.extend(subs[1:]) + return '\n'.join(output) + + def to_dot(self, f, skip_disconnected=True): + """Writes a DOT output for the graph to the provided file *f*. + + If *skip_disconnected* is set to ``True``, then all distributions + that are not dependent on any other distribution are skipped. + + :type f: has to support ``file``-like operations + :type skip_disconnected: ``bool`` + """ + disconnected = [] + + f.write("digraph dependencies {\n") + for dist, adjs in self.adjacency_list.items(): + if len(adjs) == 0 and not skip_disconnected: + disconnected.append(dist) + for other, label in adjs: + if not label is None: + f.write('"%s" -> "%s" [label="%s"]\n' % + (dist.name, other.name, label)) + else: + f.write('"%s" -> "%s"\n' % (dist.name, other.name)) + if not skip_disconnected and len(disconnected) > 0: + f.write('subgraph disconnected {\n') + f.write('label = "Disconnected"\n') + f.write('bgcolor = red\n') + + for dist in disconnected: + f.write('"%s"' % dist.name) + f.write('\n') + f.write('}\n') + f.write('}\n') + + def topological_sort(self): + """ + Perform a topological sort of the graph. + :return: A tuple, the first element of which is a topologically sorted + list of distributions, and the second element of which is a + list of distributions that cannot be sorted because they have + circular dependencies and so form a cycle. + """ + result = [] + # Make a shallow copy of the adjacency list + alist = {} + for k, v in self.adjacency_list.items(): + alist[k] = v[:] + while True: + # See what we can remove in this run + to_remove = [] + for k, v in list(alist.items())[:]: + if not v: + to_remove.append(k) + del alist[k] + if not to_remove: + # What's left in alist (if anything) is a cycle. + break + # Remove from the adjacency list of others + for k, v in alist.items(): + alist[k] = [(d, r) for d, r in v if d not in to_remove] + logger.debug('Moving to result: %s', + ['%s (%s)' % (d.name, d.version) for d in to_remove]) + result.extend(to_remove) + return result, list(alist.keys()) + + def __repr__(self): + """Representation of the graph""" + output = [] + for dist, adjs in self.adjacency_list.items(): + output.append(self.repr_node(dist)) + return '\n'.join(output) + + +def make_graph(dists, scheme='default'): + """Makes a dependency graph from the given distributions. + + :parameter dists: a list of distributions + :type dists: list of :class:`distutils2.database.InstalledDistribution` and + :class:`distutils2.database.EggInfoDistribution` instances + :rtype: a :class:`DependencyGraph` instance + """ + scheme = get_scheme(scheme) + graph = DependencyGraph() + provided = {} # maps names to lists of (version, dist) tuples + + # first, build the graph and find out what's provided + for dist in dists: + graph.add_distribution(dist) + + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Add to provided: %s, %s, %s', name, version, dist) + provided.setdefault(name, []).append((version, dist)) + + # now make the edges + for dist in dists: + requires = (dist.run_requires | dist.meta_requires | + dist.build_requires | dist.dev_requires) + for req in requires: + try: + matcher = scheme.matcher(req) + except UnsupportedVersionError: + # XXX compat-mode if cannot read the version + logger.warning('could not read version %r - using name only', + req) + name = req.split()[0] + matcher = scheme.matcher(name) + + name = matcher.key # case-insensitive + + matched = False + if name in provided: + for version, provider in provided[name]: + try: + match = matcher.match(version) + except UnsupportedVersionError: + match = False + + if match: + graph.add_edge(dist, provider, req) + matched = True + break + if not matched: + graph.add_missing(dist, req) + return graph + + +def get_dependent_dists(dists, dist): + """Recursively generate a list of distributions from *dists* that are + dependent on *dist*. + + :param dists: a list of distributions + :param dist: a distribution, member of *dists* for which we are interested + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + dep = [dist] # dependent distributions + todo = graph.reverse_list[dist] # list of nodes we should inspect + + while todo: + d = todo.pop() + dep.append(d) + for succ in graph.reverse_list[d]: + if succ not in dep: + todo.append(succ) + + dep.pop(0) # remove dist from dep, was there to prevent infinite loops + return dep + + +def get_required_dists(dists, dist): + """Recursively generate a list of distributions from *dists* that are + required by *dist*. + + :param dists: a list of distributions + :param dist: a distribution, member of *dists* for which we are interested + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + req = [] # required distributions + todo = graph.adjacency_list[dist] # list of nodes we should inspect + + while todo: + d = todo.pop()[0] + req.append(d) + for pred in graph.adjacency_list[d]: + if pred not in req: + todo.append(pred) + + return req + + +def make_dist(name, version, **kwargs): + """ + A convenience method for making a dist given just a name and version. + """ + summary = kwargs.pop('summary', 'Placeholder for summary') + md = Metadata(**kwargs) + md.name = name + md.version = version + md.summary = summary or 'Placeholder for summary' + return Distribution(md) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/index.py b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/index.py new file mode 100644 index 00000000..7a87cdcf --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/index.py @@ -0,0 +1,516 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import hashlib +import logging +import os +import shutil +import subprocess +import tempfile +try: + from threading import Thread +except ImportError: + from dummy_threading import Thread + +from . import DistlibException +from .compat import (HTTPBasicAuthHandler, Request, HTTPPasswordMgr, + urlparse, build_opener, string_types) +from .util import cached_property, zip_dir, ServerProxy + +logger = logging.getLogger(__name__) + +DEFAULT_INDEX = 'https://pypi.org/pypi' +DEFAULT_REALM = 'pypi' + +class PackageIndex(object): + """ + This class represents a package index compatible with PyPI, the Python + Package Index. + """ + + boundary = b'----------ThIs_Is_tHe_distlib_index_bouNdaRY_$' + + def __init__(self, url=None): + """ + Initialise an instance. + + :param url: The URL of the index. If not specified, the URL for PyPI is + used. + """ + self.url = url or DEFAULT_INDEX + self.read_configuration() + scheme, netloc, path, params, query, frag = urlparse(self.url) + if params or query or frag or scheme not in ('http', 'https'): + raise DistlibException('invalid repository: %s' % self.url) + self.password_handler = None + self.ssl_verifier = None + self.gpg = None + self.gpg_home = None + with open(os.devnull, 'w') as sink: + # Use gpg by default rather than gpg2, as gpg2 insists on + # prompting for passwords + for s in ('gpg', 'gpg2'): + try: + rc = subprocess.check_call([s, '--version'], stdout=sink, + stderr=sink) + if rc == 0: + self.gpg = s + break + except OSError: + pass + + def _get_pypirc_command(self): + """ + Get the distutils command for interacting with PyPI configurations. + :return: the command. + """ + from distutils.core import Distribution + from distutils.config import PyPIRCCommand + d = Distribution() + return PyPIRCCommand(d) + + def read_configuration(self): + """ + Read the PyPI access configuration as supported by distutils, getting + PyPI to do the actual work. This populates ``username``, ``password``, + ``realm`` and ``url`` attributes from the configuration. + """ + # get distutils to do the work + c = self._get_pypirc_command() + c.repository = self.url + cfg = c._read_pypirc() + self.username = cfg.get('username') + self.password = cfg.get('password') + self.realm = cfg.get('realm', 'pypi') + self.url = cfg.get('repository', self.url) + + def save_configuration(self): + """ + Save the PyPI access configuration. You must have set ``username`` and + ``password`` attributes before calling this method. + + Again, distutils is used to do the actual work. + """ + self.check_credentials() + # get distutils to do the work + c = self._get_pypirc_command() + c._store_pypirc(self.username, self.password) + + def check_credentials(self): + """ + Check that ``username`` and ``password`` have been set, and raise an + exception if not. + """ + if self.username is None or self.password is None: + raise DistlibException('username and password must be set') + pm = HTTPPasswordMgr() + _, netloc, _, _, _, _ = urlparse(self.url) + pm.add_password(self.realm, netloc, self.username, self.password) + self.password_handler = HTTPBasicAuthHandler(pm) + + def register(self, metadata): + """ + Register a distribution on PyPI, using the provided metadata. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the distribution to be + registered. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + metadata.validate() + d = metadata.todict() + d[':action'] = 'verify' + request = self.encode_request(d.items(), []) + response = self.send_request(request) + d[':action'] = 'submit' + request = self.encode_request(d.items(), []) + return self.send_request(request) + + def _reader(self, name, stream, outbuf): + """ + Thread runner for reading lines of from a subprocess into a buffer. + + :param name: The logical name of the stream (used for logging only). + :param stream: The stream to read from. This will typically a pipe + connected to the output stream of a subprocess. + :param outbuf: The list to append the read lines to. + """ + while True: + s = stream.readline() + if not s: + break + s = s.decode('utf-8').rstrip() + outbuf.append(s) + logger.debug('%s: %s' % (name, s)) + stream.close() + + def get_sign_command(self, filename, signer, sign_password, + keystore=None): + """ + Return a suitable command for signing a file. + + :param filename: The pathname to the file to be signed. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: The signing command as a list suitable to be + passed to :class:`subprocess.Popen`. + """ + cmd = [self.gpg, '--status-fd', '2', '--no-tty'] + if keystore is None: + keystore = self.gpg_home + if keystore: + cmd.extend(['--homedir', keystore]) + if sign_password is not None: + cmd.extend(['--batch', '--passphrase-fd', '0']) + td = tempfile.mkdtemp() + sf = os.path.join(td, os.path.basename(filename) + '.asc') + cmd.extend(['--detach-sign', '--armor', '--local-user', + signer, '--output', sf, filename]) + logger.debug('invoking: %s', ' '.join(cmd)) + return cmd, sf + + def run_command(self, cmd, input_data=None): + """ + Run a command in a child process , passing it any input data specified. + + :param cmd: The command to run. + :param input_data: If specified, this must be a byte string containing + data to be sent to the child process. + :return: A tuple consisting of the subprocess' exit code, a list of + lines read from the subprocess' ``stdout``, and a list of + lines read from the subprocess' ``stderr``. + """ + kwargs = { + 'stdout': subprocess.PIPE, + 'stderr': subprocess.PIPE, + } + if input_data is not None: + kwargs['stdin'] = subprocess.PIPE + stdout = [] + stderr = [] + p = subprocess.Popen(cmd, **kwargs) + # We don't use communicate() here because we may need to + # get clever with interacting with the command + t1 = Thread(target=self._reader, args=('stdout', p.stdout, stdout)) + t1.start() + t2 = Thread(target=self._reader, args=('stderr', p.stderr, stderr)) + t2.start() + if input_data is not None: + p.stdin.write(input_data) + p.stdin.close() + + p.wait() + t1.join() + t2.join() + return p.returncode, stdout, stderr + + def sign_file(self, filename, signer, sign_password, keystore=None): + """ + Sign a file. + + :param filename: The pathname to the file to be signed. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param keystore: The path to a directory which contains the keys + used in signing. If not specified, the instance's + ``gpg_home`` attribute is used instead. + :return: The absolute pathname of the file where the signature is + stored. + """ + cmd, sig_file = self.get_sign_command(filename, signer, sign_password, + keystore) + rc, stdout, stderr = self.run_command(cmd, + sign_password.encode('utf-8')) + if rc != 0: + raise DistlibException('sign command failed with error ' + 'code %s' % rc) + return sig_file + + def upload_file(self, metadata, filename, signer=None, sign_password=None, + filetype='sdist', pyversion='source', keystore=None): + """ + Upload a release file to the index. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the file to be uploaded. + :param filename: The pathname of the file to be uploaded. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param filetype: The type of the file being uploaded. This is the + distutils command which produced that file, e.g. + ``sdist`` or ``bdist_wheel``. + :param pyversion: The version of Python which the release relates + to. For code compatible with any Python, this would + be ``source``, otherwise it would be e.g. ``3.2``. + :param keystore: The path to a directory which contains the keys + used in signing. If not specified, the instance's + ``gpg_home`` attribute is used instead. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + if not os.path.exists(filename): + raise DistlibException('not found: %s' % filename) + metadata.validate() + d = metadata.todict() + sig_file = None + if signer: + if not self.gpg: + logger.warning('no signing program available - not signed') + else: + sig_file = self.sign_file(filename, signer, sign_password, + keystore) + with open(filename, 'rb') as f: + file_data = f.read() + md5_digest = hashlib.md5(file_data).hexdigest() + sha256_digest = hashlib.sha256(file_data).hexdigest() + d.update({ + ':action': 'file_upload', + 'protocol_version': '1', + 'filetype': filetype, + 'pyversion': pyversion, + 'md5_digest': md5_digest, + 'sha256_digest': sha256_digest, + }) + files = [('content', os.path.basename(filename), file_data)] + if sig_file: + with open(sig_file, 'rb') as f: + sig_data = f.read() + files.append(('gpg_signature', os.path.basename(sig_file), + sig_data)) + shutil.rmtree(os.path.dirname(sig_file)) + request = self.encode_request(d.items(), files) + return self.send_request(request) + + def upload_documentation(self, metadata, doc_dir): + """ + Upload documentation to the index. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the documentation to be + uploaded. + :param doc_dir: The pathname of the directory which contains the + documentation. This should be the directory that + contains the ``index.html`` for the documentation. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + if not os.path.isdir(doc_dir): + raise DistlibException('not a directory: %r' % doc_dir) + fn = os.path.join(doc_dir, 'index.html') + if not os.path.exists(fn): + raise DistlibException('not found: %r' % fn) + metadata.validate() + name, version = metadata.name, metadata.version + zip_data = zip_dir(doc_dir).getvalue() + fields = [(':action', 'doc_upload'), + ('name', name), ('version', version)] + files = [('content', name, zip_data)] + request = self.encode_request(fields, files) + return self.send_request(request) + + def get_verify_command(self, signature_filename, data_filename, + keystore=None): + """ + Return a suitable command for verifying a file. + + :param signature_filename: The pathname to the file containing the + signature. + :param data_filename: The pathname to the file containing the + signed data. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: The verifying command as a list suitable to be + passed to :class:`subprocess.Popen`. + """ + cmd = [self.gpg, '--status-fd', '2', '--no-tty'] + if keystore is None: + keystore = self.gpg_home + if keystore: + cmd.extend(['--homedir', keystore]) + cmd.extend(['--verify', signature_filename, data_filename]) + logger.debug('invoking: %s', ' '.join(cmd)) + return cmd + + def verify_signature(self, signature_filename, data_filename, + keystore=None): + """ + Verify a signature for a file. + + :param signature_filename: The pathname to the file containing the + signature. + :param data_filename: The pathname to the file containing the + signed data. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: True if the signature was verified, else False. + """ + if not self.gpg: + raise DistlibException('verification unavailable because gpg ' + 'unavailable') + cmd = self.get_verify_command(signature_filename, data_filename, + keystore) + rc, stdout, stderr = self.run_command(cmd) + if rc not in (0, 1): + raise DistlibException('verify command failed with error ' + 'code %s' % rc) + return rc == 0 + + def download_file(self, url, destfile, digest=None, reporthook=None): + """ + This is a convenience method for downloading a file from an URL. + Normally, this will be a file from the index, though currently + no check is made for this (i.e. a file can be downloaded from + anywhere). + + The method is just like the :func:`urlretrieve` function in the + standard library, except that it allows digest computation to be + done during download and checking that the downloaded data + matched any expected value. + + :param url: The URL of the file to be downloaded (assumed to be + available via an HTTP GET request). + :param destfile: The pathname where the downloaded file is to be + saved. + :param digest: If specified, this must be a (hasher, value) + tuple, where hasher is the algorithm used (e.g. + ``'md5'``) and ``value`` is the expected value. + :param reporthook: The same as for :func:`urlretrieve` in the + standard library. + """ + if digest is None: + digester = None + logger.debug('No digest specified') + else: + if isinstance(digest, (list, tuple)): + hasher, digest = digest + else: + hasher = 'md5' + digester = getattr(hashlib, hasher)() + logger.debug('Digest specified: %s' % digest) + # The following code is equivalent to urlretrieve. + # We need to do it this way so that we can compute the + # digest of the file as we go. + with open(destfile, 'wb') as dfp: + # addinfourl is not a context manager on 2.x + # so we have to use try/finally + sfp = self.send_request(Request(url)) + try: + headers = sfp.info() + blocksize = 8192 + size = -1 + read = 0 + blocknum = 0 + if "content-length" in headers: + size = int(headers["Content-Length"]) + if reporthook: + reporthook(blocknum, blocksize, size) + while True: + block = sfp.read(blocksize) + if not block: + break + read += len(block) + dfp.write(block) + if digester: + digester.update(block) + blocknum += 1 + if reporthook: + reporthook(blocknum, blocksize, size) + finally: + sfp.close() + + # check that we got the whole file, if we can + if size >= 0 and read < size: + raise DistlibException( + 'retrieval incomplete: got only %d out of %d bytes' + % (read, size)) + # if we have a digest, it must match. + if digester: + actual = digester.hexdigest() + if digest != actual: + raise DistlibException('%s digest mismatch for %s: expected ' + '%s, got %s' % (hasher, destfile, + digest, actual)) + logger.debug('Digest verified: %s', digest) + + def send_request(self, req): + """ + Send a standard library :class:`Request` to PyPI and return its + response. + + :param req: The request to send. + :return: The HTTP response from PyPI (a standard library HTTPResponse). + """ + handlers = [] + if self.password_handler: + handlers.append(self.password_handler) + if self.ssl_verifier: + handlers.append(self.ssl_verifier) + opener = build_opener(*handlers) + return opener.open(req) + + def encode_request(self, fields, files): + """ + Encode fields and files for posting to an HTTP server. + + :param fields: The fields to send as a list of (fieldname, value) + tuples. + :param files: The files to send as a list of (fieldname, filename, + file_bytes) tuple. + """ + # Adapted from packaging, which in turn was adapted from + # http://code.activestate.com/recipes/146306 + + parts = [] + boundary = self.boundary + for k, values in fields: + if not isinstance(values, (list, tuple)): + values = [values] + + for v in values: + parts.extend(( + b'--' + boundary, + ('Content-Disposition: form-data; name="%s"' % + k).encode('utf-8'), + b'', + v.encode('utf-8'))) + for key, filename, value in files: + parts.extend(( + b'--' + boundary, + ('Content-Disposition: form-data; name="%s"; filename="%s"' % + (key, filename)).encode('utf-8'), + b'', + value)) + + parts.extend((b'--' + boundary + b'--', b'')) + + body = b'\r\n'.join(parts) + ct = b'multipart/form-data; boundary=' + boundary + headers = { + 'Content-type': ct, + 'Content-length': str(len(body)) + } + return Request(self.url, body, headers) + + def search(self, terms, operator=None): + if isinstance(terms, string_types): + terms = {'name': terms} + rpc_proxy = ServerProxy(self.url, timeout=3.0) + try: + return rpc_proxy.search(terms, operator or 'and') + finally: + rpc_proxy('close')() diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/locators.py b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/locators.py new file mode 100644 index 00000000..12a1d063 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/locators.py @@ -0,0 +1,1302 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2015 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# + +import gzip +from io import BytesIO +import json +import logging +import os +import posixpath +import re +try: + import threading +except ImportError: # pragma: no cover + import dummy_threading as threading +import zlib + +from . import DistlibException +from .compat import (urljoin, urlparse, urlunparse, url2pathname, pathname2url, + queue, quote, unescape, string_types, build_opener, + HTTPRedirectHandler as BaseRedirectHandler, text_type, + Request, HTTPError, URLError) +from .database import Distribution, DistributionPath, make_dist +from .metadata import Metadata, MetadataInvalidError +from .util import (cached_property, parse_credentials, ensure_slash, + split_filename, get_project_data, parse_requirement, + parse_name_and_version, ServerProxy, normalize_name) +from .version import get_scheme, UnsupportedVersionError +from .wheel import Wheel, is_compatible + +logger = logging.getLogger(__name__) + +HASHER_HASH = re.compile(r'^(\w+)=([a-f0-9]+)') +CHARSET = re.compile(r';\s*charset\s*=\s*(.*)\s*$', re.I) +HTML_CONTENT_TYPE = re.compile('text/html|application/x(ht)?ml') +DEFAULT_INDEX = 'https://pypi.org/pypi' + +def get_all_distribution_names(url=None): + """ + Return all distribution names known by an index. + :param url: The URL of the index. + :return: A list of all known distribution names. + """ + if url is None: + url = DEFAULT_INDEX + client = ServerProxy(url, timeout=3.0) + try: + return client.list_packages() + finally: + client('close')() + +class RedirectHandler(BaseRedirectHandler): + """ + A class to work around a bug in some Python 3.2.x releases. + """ + # There's a bug in the base version for some 3.2.x + # (e.g. 3.2.2 on Ubuntu Oneiric). If a Location header + # returns e.g. /abc, it bails because it says the scheme '' + # is bogus, when actually it should use the request's + # URL for the scheme. See Python issue #13696. + def http_error_302(self, req, fp, code, msg, headers): + # Some servers (incorrectly) return multiple Location headers + # (so probably same goes for URI). Use first header. + newurl = None + for key in ('location', 'uri'): + if key in headers: + newurl = headers[key] + break + if newurl is None: # pragma: no cover + return + urlparts = urlparse(newurl) + if urlparts.scheme == '': + newurl = urljoin(req.get_full_url(), newurl) + if hasattr(headers, 'replace_header'): + headers.replace_header(key, newurl) + else: + headers[key] = newurl + return BaseRedirectHandler.http_error_302(self, req, fp, code, msg, + headers) + + http_error_301 = http_error_303 = http_error_307 = http_error_302 + +class Locator(object): + """ + A base class for locators - things that locate distributions. + """ + source_extensions = ('.tar.gz', '.tar.bz2', '.tar', '.zip', '.tgz', '.tbz') + binary_extensions = ('.egg', '.exe', '.whl') + excluded_extensions = ('.pdf',) + + # A list of tags indicating which wheels you want to match. The default + # value of None matches against the tags compatible with the running + # Python. If you want to match other values, set wheel_tags on a locator + # instance to a list of tuples (pyver, abi, arch) which you want to match. + wheel_tags = None + + downloadable_extensions = source_extensions + ('.whl',) + + def __init__(self, scheme='default'): + """ + Initialise an instance. + :param scheme: Because locators look for most recent versions, they + need to know the version scheme to use. This specifies + the current PEP-recommended scheme - use ``'legacy'`` + if you need to support existing distributions on PyPI. + """ + self._cache = {} + self.scheme = scheme + # Because of bugs in some of the handlers on some of the platforms, + # we use our own opener rather than just using urlopen. + self.opener = build_opener(RedirectHandler()) + # If get_project() is called from locate(), the matcher instance + # is set from the requirement passed to locate(). See issue #18 for + # why this can be useful to know. + self.matcher = None + self.errors = queue.Queue() + + def get_errors(self): + """ + Return any errors which have occurred. + """ + result = [] + while not self.errors.empty(): # pragma: no cover + try: + e = self.errors.get(False) + result.append(e) + except self.errors.Empty: + continue + self.errors.task_done() + return result + + def clear_errors(self): + """ + Clear any errors which may have been logged. + """ + # Just get the errors and throw them away + self.get_errors() + + def clear_cache(self): + self._cache.clear() + + def _get_scheme(self): + return self._scheme + + def _set_scheme(self, value): + self._scheme = value + + scheme = property(_get_scheme, _set_scheme) + + def _get_project(self, name): + """ + For a given project, get a dictionary mapping available versions to Distribution + instances. + + This should be implemented in subclasses. + + If called from a locate() request, self.matcher will be set to a + matcher for the requirement to satisfy, otherwise it will be None. + """ + raise NotImplementedError('Please implement in the subclass') + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Please implement in the subclass') + + def get_project(self, name): + """ + For a given project, get a dictionary mapping available versions to Distribution + instances. + + This calls _get_project to do all the work, and just implements a caching layer on top. + """ + if self._cache is None: # pragma: no cover + result = self._get_project(name) + elif name in self._cache: + result = self._cache[name] + else: + self.clear_errors() + result = self._get_project(name) + self._cache[name] = result + return result + + def score_url(self, url): + """ + Give an url a score which can be used to choose preferred URLs + for a given project release. + """ + t = urlparse(url) + basename = posixpath.basename(t.path) + compatible = True + is_wheel = basename.endswith('.whl') + is_downloadable = basename.endswith(self.downloadable_extensions) + if is_wheel: + compatible = is_compatible(Wheel(basename), self.wheel_tags) + return (t.scheme == 'https', 'pypi.org' in t.netloc, + is_downloadable, is_wheel, compatible, basename) + + def prefer_url(self, url1, url2): + """ + Choose one of two URLs where both are candidates for distribution + archives for the same version of a distribution (for example, + .tar.gz vs. zip). + + The current implementation favours https:// URLs over http://, archives + from PyPI over those from other locations, wheel compatibility (if a + wheel) and then the archive name. + """ + result = url2 + if url1: + s1 = self.score_url(url1) + s2 = self.score_url(url2) + if s1 > s2: + result = url1 + if result != url2: + logger.debug('Not replacing %r with %r', url1, url2) + else: + logger.debug('Replacing %r with %r', url1, url2) + return result + + def split_filename(self, filename, project_name): + """ + Attempt to split a filename in project name, version and Python version. + """ + return split_filename(filename, project_name) + + def convert_url_to_download_info(self, url, project_name): + """ + See if a URL is a candidate for a download URL for a project (the URL + has typically been scraped from an HTML page). + + If it is, a dictionary is returned with keys "name", "version", + "filename" and "url"; otherwise, None is returned. + """ + def same_project(name1, name2): + return normalize_name(name1) == normalize_name(name2) + + result = None + scheme, netloc, path, params, query, frag = urlparse(url) + if frag.lower().startswith('egg='): # pragma: no cover + logger.debug('%s: version hint in fragment: %r', + project_name, frag) + m = HASHER_HASH.match(frag) + if m: + algo, digest = m.groups() + else: + algo, digest = None, None + origpath = path + if path and path[-1] == '/': # pragma: no cover + path = path[:-1] + if path.endswith('.whl'): + try: + wheel = Wheel(path) + if not is_compatible(wheel, self.wheel_tags): + logger.debug('Wheel not compatible: %s', path) + else: + if project_name is None: + include = True + else: + include = same_project(wheel.name, project_name) + if include: + result = { + 'name': wheel.name, + 'version': wheel.version, + 'filename': wheel.filename, + 'url': urlunparse((scheme, netloc, origpath, + params, query, '')), + 'python-version': ', '.join( + ['.'.join(list(v[2:])) for v in wheel.pyver]), + } + except Exception as e: # pragma: no cover + logger.warning('invalid path for wheel: %s', path) + elif not path.endswith(self.downloadable_extensions): # pragma: no cover + logger.debug('Not downloadable: %s', path) + else: # downloadable extension + path = filename = posixpath.basename(path) + for ext in self.downloadable_extensions: + if path.endswith(ext): + path = path[:-len(ext)] + t = self.split_filename(path, project_name) + if not t: # pragma: no cover + logger.debug('No match for project/version: %s', path) + else: + name, version, pyver = t + if not project_name or same_project(project_name, name): + result = { + 'name': name, + 'version': version, + 'filename': filename, + 'url': urlunparse((scheme, netloc, origpath, + params, query, '')), + #'packagetype': 'sdist', + } + if pyver: # pragma: no cover + result['python-version'] = pyver + break + if result and algo: + result['%s_digest' % algo] = digest + return result + + def _get_digest(self, info): + """ + Get a digest from a dictionary by looking at a "digests" dictionary + or keys of the form 'algo_digest'. + + Returns a 2-tuple (algo, digest) if found, else None. Currently + looks only for SHA256, then MD5. + """ + result = None + if 'digests' in info: + digests = info['digests'] + for algo in ('sha256', 'md5'): + if algo in digests: + result = (algo, digests[algo]) + break + if not result: + for algo in ('sha256', 'md5'): + key = '%s_digest' % algo + if key in info: + result = (algo, info[key]) + break + return result + + def _update_version_data(self, result, info): + """ + Update a result dictionary (the final result from _get_project) with a + dictionary for a specific version, which typically holds information + gleaned from a filename or URL for an archive for the distribution. + """ + name = info.pop('name') + version = info.pop('version') + if version in result: + dist = result[version] + md = dist.metadata + else: + dist = make_dist(name, version, scheme=self.scheme) + md = dist.metadata + dist.digest = digest = self._get_digest(info) + url = info['url'] + result['digests'][url] = digest + if md.source_url != info['url']: + md.source_url = self.prefer_url(md.source_url, url) + result['urls'].setdefault(version, set()).add(url) + dist.locator = self + result[version] = dist + + def locate(self, requirement, prereleases=False): + """ + Find the most recent distribution which matches the given + requirement. + + :param requirement: A requirement of the form 'foo (1.0)' or perhaps + 'foo (>= 1.0, < 2.0, != 1.3)' + :param prereleases: If ``True``, allow pre-release versions + to be located. Otherwise, pre-release versions + are not returned. + :return: A :class:`Distribution` instance, or ``None`` if no such + distribution could be located. + """ + result = None + r = parse_requirement(requirement) + if r is None: # pragma: no cover + raise DistlibException('Not a valid requirement: %r' % requirement) + scheme = get_scheme(self.scheme) + self.matcher = matcher = scheme.matcher(r.requirement) + logger.debug('matcher: %s (%s)', matcher, type(matcher).__name__) + versions = self.get_project(r.name) + if len(versions) > 2: # urls and digests keys are present + # sometimes, versions are invalid + slist = [] + vcls = matcher.version_class + for k in versions: + if k in ('urls', 'digests'): + continue + try: + if not matcher.match(k): + logger.debug('%s did not match %r', matcher, k) + else: + if prereleases or not vcls(k).is_prerelease: + slist.append(k) + else: + logger.debug('skipping pre-release ' + 'version %s of %s', k, matcher.name) + except Exception: # pragma: no cover + logger.warning('error matching %s with %r', matcher, k) + pass # slist.append(k) + if len(slist) > 1: + slist = sorted(slist, key=scheme.key) + if slist: + logger.debug('sorted list: %s', slist) + version = slist[-1] + result = versions[version] + if result: + if r.extras: + result.extras = r.extras + result.download_urls = versions.get('urls', {}).get(version, set()) + d = {} + sd = versions.get('digests', {}) + for url in result.download_urls: + if url in sd: # pragma: no cover + d[url] = sd[url] + result.digests = d + self.matcher = None + return result + + +class PyPIRPCLocator(Locator): + """ + This locator uses XML-RPC to locate distributions. It therefore + cannot be used with simple mirrors (that only mirror file content). + """ + def __init__(self, url, **kwargs): + """ + Initialise an instance. + + :param url: The URL to use for XML-RPC. + :param kwargs: Passed to the superclass constructor. + """ + super(PyPIRPCLocator, self).__init__(**kwargs) + self.base_url = url + self.client = ServerProxy(url, timeout=3.0) + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + return set(self.client.list_packages()) + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + versions = self.client.package_releases(name, True) + for v in versions: + urls = self.client.release_urls(name, v) + data = self.client.release_data(name, v) + metadata = Metadata(scheme=self.scheme) + metadata.name = data['name'] + metadata.version = data['version'] + metadata.license = data.get('license') + metadata.keywords = data.get('keywords', []) + metadata.summary = data.get('summary') + dist = Distribution(metadata) + if urls: + info = urls[0] + metadata.source_url = info['url'] + dist.digest = self._get_digest(info) + dist.locator = self + result[v] = dist + for info in urls: + url = info['url'] + digest = self._get_digest(info) + result['urls'].setdefault(v, set()).add(url) + result['digests'][url] = digest + return result + +class PyPIJSONLocator(Locator): + """ + This locator uses PyPI's JSON interface. It's very limited in functionality + and probably not worth using. + """ + def __init__(self, url, **kwargs): + super(PyPIJSONLocator, self).__init__(**kwargs) + self.base_url = ensure_slash(url) + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Not available from this locator') + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + url = urljoin(self.base_url, '%s/json' % quote(name)) + try: + resp = self.opener.open(url) + data = resp.read().decode() # for now + d = json.loads(data) + md = Metadata(scheme=self.scheme) + data = d['info'] + md.name = data['name'] + md.version = data['version'] + md.license = data.get('license') + md.keywords = data.get('keywords', []) + md.summary = data.get('summary') + dist = Distribution(md) + dist.locator = self + urls = d['urls'] + result[md.version] = dist + for info in d['urls']: + url = info['url'] + dist.download_urls.add(url) + dist.digests[url] = self._get_digest(info) + result['urls'].setdefault(md.version, set()).add(url) + result['digests'][url] = self._get_digest(info) + # Now get other releases + for version, infos in d['releases'].items(): + if version == md.version: + continue # already done + omd = Metadata(scheme=self.scheme) + omd.name = md.name + omd.version = version + odist = Distribution(omd) + odist.locator = self + result[version] = odist + for info in infos: + url = info['url'] + odist.download_urls.add(url) + odist.digests[url] = self._get_digest(info) + result['urls'].setdefault(version, set()).add(url) + result['digests'][url] = self._get_digest(info) +# for info in urls: +# md.source_url = info['url'] +# dist.digest = self._get_digest(info) +# dist.locator = self +# for info in urls: +# url = info['url'] +# result['urls'].setdefault(md.version, set()).add(url) +# result['digests'][url] = self._get_digest(info) + except Exception as e: + self.errors.put(text_type(e)) + logger.exception('JSON fetch failed: %s', e) + return result + + +class Page(object): + """ + This class represents a scraped HTML page. + """ + # The following slightly hairy-looking regex just looks for the contents of + # an anchor link, which has an attribute "href" either immediately preceded + # or immediately followed by a "rel" attribute. The attribute values can be + # declared with double quotes, single quotes or no quotes - which leads to + # the length of the expression. + _href = re.compile(""" +(rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*))\\s+)? +href\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)) +(\\s+rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)))? +""", re.I | re.S | re.X) + _base = re.compile(r"""]+)""", re.I | re.S) + + def __init__(self, data, url): + """ + Initialise an instance with the Unicode page contents and the URL they + came from. + """ + self.data = data + self.base_url = self.url = url + m = self._base.search(self.data) + if m: + self.base_url = m.group(1) + + _clean_re = re.compile(r'[^a-z0-9$&+,/:;=?@.#%_\\|-]', re.I) + + @cached_property + def links(self): + """ + Return the URLs of all the links on a page together with information + about their "rel" attribute, for determining which ones to treat as + downloads and which ones to queue for further scraping. + """ + def clean(url): + "Tidy up an URL." + scheme, netloc, path, params, query, frag = urlparse(url) + return urlunparse((scheme, netloc, quote(path), + params, query, frag)) + + result = set() + for match in self._href.finditer(self.data): + d = match.groupdict('') + rel = (d['rel1'] or d['rel2'] or d['rel3'] or + d['rel4'] or d['rel5'] or d['rel6']) + url = d['url1'] or d['url2'] or d['url3'] + url = urljoin(self.base_url, url) + url = unescape(url) + url = self._clean_re.sub(lambda m: '%%%2x' % ord(m.group(0)), url) + result.add((url, rel)) + # We sort the result, hoping to bring the most recent versions + # to the front + result = sorted(result, key=lambda t: t[0], reverse=True) + return result + + +class SimpleScrapingLocator(Locator): + """ + A locator which scrapes HTML pages to locate downloads for a distribution. + This runs multiple threads to do the I/O; performance is at least as good + as pip's PackageFinder, which works in an analogous fashion. + """ + + # These are used to deal with various Content-Encoding schemes. + decoders = { + 'deflate': zlib.decompress, + 'gzip': lambda b: gzip.GzipFile(fileobj=BytesIO(d)).read(), + 'none': lambda b: b, + } + + def __init__(self, url, timeout=None, num_workers=10, **kwargs): + """ + Initialise an instance. + :param url: The root URL to use for scraping. + :param timeout: The timeout, in seconds, to be applied to requests. + This defaults to ``None`` (no timeout specified). + :param num_workers: The number of worker threads you want to do I/O, + This defaults to 10. + :param kwargs: Passed to the superclass. + """ + super(SimpleScrapingLocator, self).__init__(**kwargs) + self.base_url = ensure_slash(url) + self.timeout = timeout + self._page_cache = {} + self._seen = set() + self._to_fetch = queue.Queue() + self._bad_hosts = set() + self.skip_externals = False + self.num_workers = num_workers + self._lock = threading.RLock() + # See issue #45: we need to be resilient when the locator is used + # in a thread, e.g. with concurrent.futures. We can't use self._lock + # as it is for coordinating our internal threads - the ones created + # in _prepare_threads. + self._gplock = threading.RLock() + self.platform_check = False # See issue #112 + + def _prepare_threads(self): + """ + Threads are created only when get_project is called, and terminate + before it returns. They are there primarily to parallelise I/O (i.e. + fetching web pages). + """ + self._threads = [] + for i in range(self.num_workers): + t = threading.Thread(target=self._fetch) + t.setDaemon(True) + t.start() + self._threads.append(t) + + def _wait_threads(self): + """ + Tell all the threads to terminate (by sending a sentinel value) and + wait for them to do so. + """ + # Note that you need two loops, since you can't say which + # thread will get each sentinel + for t in self._threads: + self._to_fetch.put(None) # sentinel + for t in self._threads: + t.join() + self._threads = [] + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + with self._gplock: + self.result = result + self.project_name = name + url = urljoin(self.base_url, '%s/' % quote(name)) + self._seen.clear() + self._page_cache.clear() + self._prepare_threads() + try: + logger.debug('Queueing %s', url) + self._to_fetch.put(url) + self._to_fetch.join() + finally: + self._wait_threads() + del self.result + return result + + platform_dependent = re.compile(r'\b(linux_(i\d86|x86_64|arm\w+)|' + r'win(32|_amd64)|macosx_?\d+)\b', re.I) + + def _is_platform_dependent(self, url): + """ + Does an URL refer to a platform-specific download? + """ + return self.platform_dependent.search(url) + + def _process_download(self, url): + """ + See if an URL is a suitable download for a project. + + If it is, register information in the result dictionary (for + _get_project) about the specific version it's for. + + Note that the return value isn't actually used other than as a boolean + value. + """ + if self.platform_check and self._is_platform_dependent(url): + info = None + else: + info = self.convert_url_to_download_info(url, self.project_name) + logger.debug('process_download: %s -> %s', url, info) + if info: + with self._lock: # needed because self.result is shared + self._update_version_data(self.result, info) + return info + + def _should_queue(self, link, referrer, rel): + """ + Determine whether a link URL from a referring page and with a + particular "rel" attribute should be queued for scraping. + """ + scheme, netloc, path, _, _, _ = urlparse(link) + if path.endswith(self.source_extensions + self.binary_extensions + + self.excluded_extensions): + result = False + elif self.skip_externals and not link.startswith(self.base_url): + result = False + elif not referrer.startswith(self.base_url): + result = False + elif rel not in ('homepage', 'download'): + result = False + elif scheme not in ('http', 'https', 'ftp'): + result = False + elif self._is_platform_dependent(link): + result = False + else: + host = netloc.split(':', 1)[0] + if host.lower() == 'localhost': + result = False + else: + result = True + logger.debug('should_queue: %s (%s) from %s -> %s', link, rel, + referrer, result) + return result + + def _fetch(self): + """ + Get a URL to fetch from the work queue, get the HTML page, examine its + links for download candidates and candidates for further scraping. + + This is a handy method to run in a thread. + """ + while True: + url = self._to_fetch.get() + try: + if url: + page = self.get_page(url) + if page is None: # e.g. after an error + continue + for link, rel in page.links: + if link not in self._seen: + try: + self._seen.add(link) + if (not self._process_download(link) and + self._should_queue(link, url, rel)): + logger.debug('Queueing %s from %s', link, url) + self._to_fetch.put(link) + except MetadataInvalidError: # e.g. invalid versions + pass + except Exception as e: # pragma: no cover + self.errors.put(text_type(e)) + finally: + # always do this, to avoid hangs :-) + self._to_fetch.task_done() + if not url: + #logger.debug('Sentinel seen, quitting.') + break + + def get_page(self, url): + """ + Get the HTML for an URL, possibly from an in-memory cache. + + XXX TODO Note: this cache is never actually cleared. It's assumed that + the data won't get stale over the lifetime of a locator instance (not + necessarily true for the default_locator). + """ + # http://peak.telecommunity.com/DevCenter/EasyInstall#package-index-api + scheme, netloc, path, _, _, _ = urlparse(url) + if scheme == 'file' and os.path.isdir(url2pathname(path)): + url = urljoin(ensure_slash(url), 'index.html') + + if url in self._page_cache: + result = self._page_cache[url] + logger.debug('Returning %s from cache: %s', url, result) + else: + host = netloc.split(':', 1)[0] + result = None + if host in self._bad_hosts: + logger.debug('Skipping %s due to bad host %s', url, host) + else: + req = Request(url, headers={'Accept-encoding': 'identity'}) + try: + logger.debug('Fetching %s', url) + resp = self.opener.open(req, timeout=self.timeout) + logger.debug('Fetched %s', url) + headers = resp.info() + content_type = headers.get('Content-Type', '') + if HTML_CONTENT_TYPE.match(content_type): + final_url = resp.geturl() + data = resp.read() + encoding = headers.get('Content-Encoding') + if encoding: + decoder = self.decoders[encoding] # fail if not found + data = decoder(data) + encoding = 'utf-8' + m = CHARSET.search(content_type) + if m: + encoding = m.group(1) + try: + data = data.decode(encoding) + except UnicodeError: # pragma: no cover + data = data.decode('latin-1') # fallback + result = Page(data, final_url) + self._page_cache[final_url] = result + except HTTPError as e: + if e.code != 404: + logger.exception('Fetch failed: %s: %s', url, e) + except URLError as e: # pragma: no cover + logger.exception('Fetch failed: %s: %s', url, e) + with self._lock: + self._bad_hosts.add(host) + except Exception as e: # pragma: no cover + logger.exception('Fetch failed: %s: %s', url, e) + finally: + self._page_cache[url] = result # even if None (failure) + return result + + _distname_re = re.compile(']*>([^<]+)<') + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + page = self.get_page(self.base_url) + if not page: + raise DistlibException('Unable to get %s' % self.base_url) + for match in self._distname_re.finditer(page.data): + result.add(match.group(1)) + return result + +class DirectoryLocator(Locator): + """ + This class locates distributions in a directory tree. + """ + + def __init__(self, path, **kwargs): + """ + Initialise an instance. + :param path: The root of the directory tree to search. + :param kwargs: Passed to the superclass constructor, + except for: + * recursive - if True (the default), subdirectories are + recursed into. If False, only the top-level directory + is searched, + """ + self.recursive = kwargs.pop('recursive', True) + super(DirectoryLocator, self).__init__(**kwargs) + path = os.path.abspath(path) + if not os.path.isdir(path): # pragma: no cover + raise DistlibException('Not a directory: %r' % path) + self.base_dir = path + + def should_include(self, filename, parent): + """ + Should a filename be considered as a candidate for a distribution + archive? As well as the filename, the directory which contains it + is provided, though not used by the current implementation. + """ + return filename.endswith(self.downloadable_extensions) + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + for root, dirs, files in os.walk(self.base_dir): + for fn in files: + if self.should_include(fn, root): + fn = os.path.join(root, fn) + url = urlunparse(('file', '', + pathname2url(os.path.abspath(fn)), + '', '', '')) + info = self.convert_url_to_download_info(url, name) + if info: + self._update_version_data(result, info) + if not self.recursive: + break + return result + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + for root, dirs, files in os.walk(self.base_dir): + for fn in files: + if self.should_include(fn, root): + fn = os.path.join(root, fn) + url = urlunparse(('file', '', + pathname2url(os.path.abspath(fn)), + '', '', '')) + info = self.convert_url_to_download_info(url, None) + if info: + result.add(info['name']) + if not self.recursive: + break + return result + +class JSONLocator(Locator): + """ + This locator uses special extended metadata (not available on PyPI) and is + the basis of performant dependency resolution in distlib. Other locators + require archive downloads before dependencies can be determined! As you + might imagine, that can be slow. + """ + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Not available from this locator') + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + data = get_project_data(name) + if data: + for info in data.get('files', []): + if info['ptype'] != 'sdist' or info['pyversion'] != 'source': + continue + # We don't store summary in project metadata as it makes + # the data bigger for no benefit during dependency + # resolution + dist = make_dist(data['name'], info['version'], + summary=data.get('summary', + 'Placeholder for summary'), + scheme=self.scheme) + md = dist.metadata + md.source_url = info['url'] + # TODO SHA256 digest + if 'digest' in info and info['digest']: + dist.digest = ('md5', info['digest']) + md.dependencies = info.get('requirements', {}) + dist.exports = info.get('exports', {}) + result[dist.version] = dist + result['urls'].setdefault(dist.version, set()).add(info['url']) + return result + +class DistPathLocator(Locator): + """ + This locator finds installed distributions in a path. It can be useful for + adding to an :class:`AggregatingLocator`. + """ + def __init__(self, distpath, **kwargs): + """ + Initialise an instance. + + :param distpath: A :class:`DistributionPath` instance to search. + """ + super(DistPathLocator, self).__init__(**kwargs) + assert isinstance(distpath, DistributionPath) + self.distpath = distpath + + def _get_project(self, name): + dist = self.distpath.get_distribution(name) + if dist is None: + result = {'urls': {}, 'digests': {}} + else: + result = { + dist.version: dist, + 'urls': {dist.version: set([dist.source_url])}, + 'digests': {dist.version: set([None])} + } + return result + + +class AggregatingLocator(Locator): + """ + This class allows you to chain and/or merge a list of locators. + """ + def __init__(self, *locators, **kwargs): + """ + Initialise an instance. + + :param locators: The list of locators to search. + :param kwargs: Passed to the superclass constructor, + except for: + * merge - if False (the default), the first successful + search from any of the locators is returned. If True, + the results from all locators are merged (this can be + slow). + """ + self.merge = kwargs.pop('merge', False) + self.locators = locators + super(AggregatingLocator, self).__init__(**kwargs) + + def clear_cache(self): + super(AggregatingLocator, self).clear_cache() + for locator in self.locators: + locator.clear_cache() + + def _set_scheme(self, value): + self._scheme = value + for locator in self.locators: + locator.scheme = value + + scheme = property(Locator.scheme.fget, _set_scheme) + + def _get_project(self, name): + result = {} + for locator in self.locators: + d = locator.get_project(name) + if d: + if self.merge: + files = result.get('urls', {}) + digests = result.get('digests', {}) + # next line could overwrite result['urls'], result['digests'] + result.update(d) + df = result.get('urls') + if files and df: + for k, v in files.items(): + if k in df: + df[k] |= v + else: + df[k] = v + dd = result.get('digests') + if digests and dd: + dd.update(digests) + else: + # See issue #18. If any dists are found and we're looking + # for specific constraints, we only return something if + # a match is found. For example, if a DirectoryLocator + # returns just foo (1.0) while we're looking for + # foo (>= 2.0), we'll pretend there was nothing there so + # that subsequent locators can be queried. Otherwise we + # would just return foo (1.0) which would then lead to a + # failure to find foo (>= 2.0), because other locators + # weren't searched. Note that this only matters when + # merge=False. + if self.matcher is None: + found = True + else: + found = False + for k in d: + if self.matcher.match(k): + found = True + break + if found: + result = d + break + return result + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + for locator in self.locators: + try: + result |= locator.get_distribution_names() + except NotImplementedError: + pass + return result + + +# We use a legacy scheme simply because most of the dists on PyPI use legacy +# versions which don't conform to PEP 426 / PEP 440. +default_locator = AggregatingLocator( + JSONLocator(), + SimpleScrapingLocator('https://pypi.org/simple/', + timeout=3.0), + scheme='legacy') + +locate = default_locator.locate + +NAME_VERSION_RE = re.compile(r'(?P[\w-]+)\s*' + r'\(\s*(==\s*)?(?P[^)]+)\)$') + +class DependencyFinder(object): + """ + Locate dependencies for distributions. + """ + + def __init__(self, locator=None): + """ + Initialise an instance, using the specified locator + to locate distributions. + """ + self.locator = locator or default_locator + self.scheme = get_scheme(self.locator.scheme) + + def add_distribution(self, dist): + """ + Add a distribution to the finder. This will update internal information + about who provides what. + :param dist: The distribution to add. + """ + logger.debug('adding distribution %s', dist) + name = dist.key + self.dists_by_name[name] = dist + self.dists[(name, dist.version)] = dist + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Add to provided: %s, %s, %s', name, version, dist) + self.provided.setdefault(name, set()).add((version, dist)) + + def remove_distribution(self, dist): + """ + Remove a distribution from the finder. This will update internal + information about who provides what. + :param dist: The distribution to remove. + """ + logger.debug('removing distribution %s', dist) + name = dist.key + del self.dists_by_name[name] + del self.dists[(name, dist.version)] + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Remove from provided: %s, %s, %s', name, version, dist) + s = self.provided[name] + s.remove((version, dist)) + if not s: + del self.provided[name] + + def get_matcher(self, reqt): + """ + Get a version matcher for a requirement. + :param reqt: The requirement + :type reqt: str + :return: A version matcher (an instance of + :class:`distlib.version.Matcher`). + """ + try: + matcher = self.scheme.matcher(reqt) + except UnsupportedVersionError: # pragma: no cover + # XXX compat-mode if cannot read the version + name = reqt.split()[0] + matcher = self.scheme.matcher(name) + return matcher + + def find_providers(self, reqt): + """ + Find the distributions which can fulfill a requirement. + + :param reqt: The requirement. + :type reqt: str + :return: A set of distribution which can fulfill the requirement. + """ + matcher = self.get_matcher(reqt) + name = matcher.key # case-insensitive + result = set() + provided = self.provided + if name in provided: + for version, provider in provided[name]: + try: + match = matcher.match(version) + except UnsupportedVersionError: + match = False + + if match: + result.add(provider) + break + return result + + def try_to_replace(self, provider, other, problems): + """ + Attempt to replace one provider with another. This is typically used + when resolving dependencies from multiple sources, e.g. A requires + (B >= 1.0) while C requires (B >= 1.1). + + For successful replacement, ``provider`` must meet all the requirements + which ``other`` fulfills. + + :param provider: The provider we are trying to replace with. + :param other: The provider we're trying to replace. + :param problems: If False is returned, this will contain what + problems prevented replacement. This is currently + a tuple of the literal string 'cantreplace', + ``provider``, ``other`` and the set of requirements + that ``provider`` couldn't fulfill. + :return: True if we can replace ``other`` with ``provider``, else + False. + """ + rlist = self.reqts[other] + unmatched = set() + for s in rlist: + matcher = self.get_matcher(s) + if not matcher.match(provider.version): + unmatched.add(s) + if unmatched: + # can't replace other with provider + problems.add(('cantreplace', provider, other, + frozenset(unmatched))) + result = False + else: + # can replace other with provider + self.remove_distribution(other) + del self.reqts[other] + for s in rlist: + self.reqts.setdefault(provider, set()).add(s) + self.add_distribution(provider) + result = True + return result + + def find(self, requirement, meta_extras=None, prereleases=False): + """ + Find a distribution and all distributions it depends on. + + :param requirement: The requirement specifying the distribution to + find, or a Distribution instance. + :param meta_extras: A list of meta extras such as :test:, :build: and + so on. + :param prereleases: If ``True``, allow pre-release versions to be + returned - otherwise, don't return prereleases + unless they're all that's available. + + Return a set of :class:`Distribution` instances and a set of + problems. + + The distributions returned should be such that they have the + :attr:`required` attribute set to ``True`` if they were + from the ``requirement`` passed to ``find()``, and they have the + :attr:`build_time_dependency` attribute set to ``True`` unless they + are post-installation dependencies of the ``requirement``. + + The problems should be a tuple consisting of the string + ``'unsatisfied'`` and the requirement which couldn't be satisfied + by any distribution known to the locator. + """ + + self.provided = {} + self.dists = {} + self.dists_by_name = {} + self.reqts = {} + + meta_extras = set(meta_extras or []) + if ':*:' in meta_extras: + meta_extras.remove(':*:') + # :meta: and :run: are implicitly included + meta_extras |= set([':test:', ':build:', ':dev:']) + + if isinstance(requirement, Distribution): + dist = odist = requirement + logger.debug('passed %s as requirement', odist) + else: + dist = odist = self.locator.locate(requirement, + prereleases=prereleases) + if dist is None: + raise DistlibException('Unable to locate %r' % requirement) + logger.debug('located %s', odist) + dist.requested = True + problems = set() + todo = set([dist]) + install_dists = set([odist]) + while todo: + dist = todo.pop() + name = dist.key # case-insensitive + if name not in self.dists_by_name: + self.add_distribution(dist) + else: + #import pdb; pdb.set_trace() + other = self.dists_by_name[name] + if other != dist: + self.try_to_replace(dist, other, problems) + + ireqts = dist.run_requires | dist.meta_requires + sreqts = dist.build_requires + ereqts = set() + if meta_extras and dist in install_dists: + for key in ('test', 'build', 'dev'): + e = ':%s:' % key + if e in meta_extras: + ereqts |= getattr(dist, '%s_requires' % key) + all_reqts = ireqts | sreqts | ereqts + for r in all_reqts: + providers = self.find_providers(r) + if not providers: + logger.debug('No providers found for %r', r) + provider = self.locator.locate(r, prereleases=prereleases) + # If no provider is found and we didn't consider + # prereleases, consider them now. + if provider is None and not prereleases: + provider = self.locator.locate(r, prereleases=True) + if provider is None: + logger.debug('Cannot satisfy %r', r) + problems.add(('unsatisfied', r)) + else: + n, v = provider.key, provider.version + if (n, v) not in self.dists: + todo.add(provider) + providers.add(provider) + if r in ireqts and dist in install_dists: + install_dists.add(provider) + logger.debug('Adding %s to install_dists', + provider.name_and_version) + for p in providers: + name = p.key + if name not in self.dists_by_name: + self.reqts.setdefault(p, set()).add(r) + else: + other = self.dists_by_name[name] + if other != p: + # see if other can be replaced by p + self.try_to_replace(p, other, problems) + + dists = set(self.dists.values()) + for dist in dists: + dist.build_time_dependency = dist not in install_dists + if dist.build_time_dependency: + logger.debug('%s is a build-time dependency only.', + dist.name_and_version) + logger.debug('find done for %s', odist) + return dists, problems diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/manifest.py b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/manifest.py new file mode 100644 index 00000000..ca0fe442 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/manifest.py @@ -0,0 +1,393 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2013 Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +""" +Class representing the list of files in a distribution. + +Equivalent to distutils.filelist, but fixes some problems. +""" +import fnmatch +import logging +import os +import re +import sys + +from . import DistlibException +from .compat import fsdecode +from .util import convert_path + + +__all__ = ['Manifest'] + +logger = logging.getLogger(__name__) + +# a \ followed by some spaces + EOL +_COLLAPSE_PATTERN = re.compile('\\\\w*\n', re.M) +_COMMENTED_LINE = re.compile('#.*?(?=\n)|\n(?=$)', re.M | re.S) + +# +# Due to the different results returned by fnmatch.translate, we need +# to do slightly different processing for Python 2.7 and 3.2 ... this needed +# to be brought in for Python 3.6 onwards. +# +_PYTHON_VERSION = sys.version_info[:2] + +class Manifest(object): + """A list of files built by on exploring the filesystem and filtered by + applying various patterns to what we find there. + """ + + def __init__(self, base=None): + """ + Initialise an instance. + + :param base: The base directory to explore under. + """ + self.base = os.path.abspath(os.path.normpath(base or os.getcwd())) + self.prefix = self.base + os.sep + self.allfiles = None + self.files = set() + + # + # Public API + # + + def findall(self): + """Find all files under the base and set ``allfiles`` to the absolute + pathnames of files found. + """ + from stat import S_ISREG, S_ISDIR, S_ISLNK + + self.allfiles = allfiles = [] + root = self.base + stack = [root] + pop = stack.pop + push = stack.append + + while stack: + root = pop() + names = os.listdir(root) + + for name in names: + fullname = os.path.join(root, name) + + # Avoid excess stat calls -- just one will do, thank you! + stat = os.stat(fullname) + mode = stat.st_mode + if S_ISREG(mode): + allfiles.append(fsdecode(fullname)) + elif S_ISDIR(mode) and not S_ISLNK(mode): + push(fullname) + + def add(self, item): + """ + Add a file to the manifest. + + :param item: The pathname to add. This can be relative to the base. + """ + if not item.startswith(self.prefix): + item = os.path.join(self.base, item) + self.files.add(os.path.normpath(item)) + + def add_many(self, items): + """ + Add a list of files to the manifest. + + :param items: The pathnames to add. These can be relative to the base. + """ + for item in items: + self.add(item) + + def sorted(self, wantdirs=False): + """ + Return sorted files in directory order + """ + + def add_dir(dirs, d): + dirs.add(d) + logger.debug('add_dir added %s', d) + if d != self.base: + parent, _ = os.path.split(d) + assert parent not in ('', '/') + add_dir(dirs, parent) + + result = set(self.files) # make a copy! + if wantdirs: + dirs = set() + for f in result: + add_dir(dirs, os.path.dirname(f)) + result |= dirs + return [os.path.join(*path_tuple) for path_tuple in + sorted(os.path.split(path) for path in result)] + + def clear(self): + """Clear all collected files.""" + self.files = set() + self.allfiles = [] + + def process_directive(self, directive): + """ + Process a directive which either adds some files from ``allfiles`` to + ``files``, or removes some files from ``files``. + + :param directive: The directive to process. This should be in a format + compatible with distutils ``MANIFEST.in`` files: + + http://docs.python.org/distutils/sourcedist.html#commands + """ + # Parse the line: split it up, make sure the right number of words + # is there, and return the relevant words. 'action' is always + # defined: it's the first word of the line. Which of the other + # three are defined depends on the action; it'll be either + # patterns, (dir and patterns), or (dirpattern). + action, patterns, thedir, dirpattern = self._parse_directive(directive) + + # OK, now we know that the action is valid and we have the + # right number of words on the line for that action -- so we + # can proceed with minimal error-checking. + if action == 'include': + for pattern in patterns: + if not self._include_pattern(pattern, anchor=True): + logger.warning('no files found matching %r', pattern) + + elif action == 'exclude': + for pattern in patterns: + found = self._exclude_pattern(pattern, anchor=True) + #if not found: + # logger.warning('no previously-included files ' + # 'found matching %r', pattern) + + elif action == 'global-include': + for pattern in patterns: + if not self._include_pattern(pattern, anchor=False): + logger.warning('no files found matching %r ' + 'anywhere in distribution', pattern) + + elif action == 'global-exclude': + for pattern in patterns: + found = self._exclude_pattern(pattern, anchor=False) + #if not found: + # logger.warning('no previously-included files ' + # 'matching %r found anywhere in ' + # 'distribution', pattern) + + elif action == 'recursive-include': + for pattern in patterns: + if not self._include_pattern(pattern, prefix=thedir): + logger.warning('no files found matching %r ' + 'under directory %r', pattern, thedir) + + elif action == 'recursive-exclude': + for pattern in patterns: + found = self._exclude_pattern(pattern, prefix=thedir) + #if not found: + # logger.warning('no previously-included files ' + # 'matching %r found under directory %r', + # pattern, thedir) + + elif action == 'graft': + if not self._include_pattern(None, prefix=dirpattern): + logger.warning('no directories found matching %r', + dirpattern) + + elif action == 'prune': + if not self._exclude_pattern(None, prefix=dirpattern): + logger.warning('no previously-included directories found ' + 'matching %r', dirpattern) + else: # pragma: no cover + # This should never happen, as it should be caught in + # _parse_template_line + raise DistlibException( + 'invalid action %r' % action) + + # + # Private API + # + + def _parse_directive(self, directive): + """ + Validate a directive. + :param directive: The directive to validate. + :return: A tuple of action, patterns, thedir, dir_patterns + """ + words = directive.split() + if len(words) == 1 and words[0] not in ('include', 'exclude', + 'global-include', + 'global-exclude', + 'recursive-include', + 'recursive-exclude', + 'graft', 'prune'): + # no action given, let's use the default 'include' + words.insert(0, 'include') + + action = words[0] + patterns = thedir = dir_pattern = None + + if action in ('include', 'exclude', + 'global-include', 'global-exclude'): + if len(words) < 2: + raise DistlibException( + '%r expects ...' % action) + + patterns = [convert_path(word) for word in words[1:]] + + elif action in ('recursive-include', 'recursive-exclude'): + if len(words) < 3: + raise DistlibException( + '%r expects

...' % action) + + thedir = convert_path(words[1]) + patterns = [convert_path(word) for word in words[2:]] + + elif action in ('graft', 'prune'): + if len(words) != 2: + raise DistlibException( + '%r expects a single ' % action) + + dir_pattern = convert_path(words[1]) + + else: + raise DistlibException('unknown action %r' % action) + + return action, patterns, thedir, dir_pattern + + def _include_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Select strings (presumably filenames) from 'self.files' that + match 'pattern', a Unix-style wildcard (glob) pattern. + + Patterns are not quite the same as implemented by the 'fnmatch' + module: '*' and '?' match non-special characters, where "special" + is platform-dependent: slash on Unix; colon, slash, and backslash on + DOS/Windows; and colon on Mac OS. + + If 'anchor' is true (the default), then the pattern match is more + stringent: "*.py" will match "foo.py" but not "foo/bar.py". If + 'anchor' is false, both of these will match. + + If 'prefix' is supplied, then only filenames starting with 'prefix' + (itself a pattern) and ending with 'pattern', with anything in between + them, will match. 'anchor' is ignored in this case. + + If 'is_regex' is true, 'anchor' and 'prefix' are ignored, and + 'pattern' is assumed to be either a string containing a regex or a + regex object -- no translation is done, the regex is just compiled + and used as-is. + + Selected strings will be added to self.files. + + Return True if files are found. + """ + # XXX docstring lying about what the special chars are? + found = False + pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) + + # delayed loading of allfiles list + if self.allfiles is None: + self.findall() + + for name in self.allfiles: + if pattern_re.search(name): + self.files.add(name) + found = True + return found + + def _exclude_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Remove strings (presumably filenames) from 'files' that match + 'pattern'. + + Other parameters are the same as for 'include_pattern()', above. + The list 'self.files' is modified in place. Return True if files are + found. + + This API is public to allow e.g. exclusion of SCM subdirs, e.g. when + packaging source distributions + """ + found = False + pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) + for f in list(self.files): + if pattern_re.search(f): + self.files.remove(f) + found = True + return found + + def _translate_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Translate a shell-like wildcard pattern to a compiled regular + expression. + + Return the compiled regex. If 'is_regex' true, + then 'pattern' is directly compiled to a regex (if it's a string) + or just returned as-is (assumes it's a regex object). + """ + if is_regex: + if isinstance(pattern, str): + return re.compile(pattern) + else: + return pattern + + if _PYTHON_VERSION > (3, 2): + # ditch start and end characters + start, _, end = self._glob_to_re('_').partition('_') + + if pattern: + pattern_re = self._glob_to_re(pattern) + if _PYTHON_VERSION > (3, 2): + assert pattern_re.startswith(start) and pattern_re.endswith(end) + else: + pattern_re = '' + + base = re.escape(os.path.join(self.base, '')) + if prefix is not None: + # ditch end of pattern character + if _PYTHON_VERSION <= (3, 2): + empty_pattern = self._glob_to_re('') + prefix_re = self._glob_to_re(prefix)[:-len(empty_pattern)] + else: + prefix_re = self._glob_to_re(prefix) + assert prefix_re.startswith(start) and prefix_re.endswith(end) + prefix_re = prefix_re[len(start): len(prefix_re) - len(end)] + sep = os.sep + if os.sep == '\\': + sep = r'\\' + if _PYTHON_VERSION <= (3, 2): + pattern_re = '^' + base + sep.join((prefix_re, + '.*' + pattern_re)) + else: + pattern_re = pattern_re[len(start): len(pattern_re) - len(end)] + pattern_re = r'%s%s%s%s.*%s%s' % (start, base, prefix_re, sep, + pattern_re, end) + else: # no prefix -- respect anchor flag + if anchor: + if _PYTHON_VERSION <= (3, 2): + pattern_re = '^' + base + pattern_re + else: + pattern_re = r'%s%s%s' % (start, base, pattern_re[len(start):]) + + return re.compile(pattern_re) + + def _glob_to_re(self, pattern): + """Translate a shell-like glob pattern to a regular expression. + + Return a string containing the regex. Differs from + 'fnmatch.translate()' in that '*' does not match "special characters" + (which are platform-specific). + """ + pattern_re = fnmatch.translate(pattern) + + # '?' and '*' in the glob pattern become '.' and '.*' in the RE, which + # IMHO is wrong -- '?' and '*' aren't supposed to match slash in Unix, + # and by extension they shouldn't match such "special characters" under + # any OS. So change all non-escaped dots in the RE to match any + # character except the special characters (currently: just os.sep). + sep = os.sep + if os.sep == '\\': + # we're using a regex to manipulate a regex, so we need + # to escape the backslash twice + sep = r'\\\\' + escaped = r'\1[^%s]' % sep + pattern_re = re.sub(r'((? y, + '!=': lambda x, y: x != y, + '<': lambda x, y: x < y, + '<=': lambda x, y: x == y or x < y, + '>': lambda x, y: x > y, + '>=': lambda x, y: x == y or x > y, + 'and': lambda x, y: x and y, + 'or': lambda x, y: x or y, + 'in': lambda x, y: x in y, + 'not in': lambda x, y: x not in y, + } + + def evaluate(self, expr, context): + """ + Evaluate a marker expression returned by the :func:`parse_requirement` + function in the specified context. + """ + if isinstance(expr, string_types): + if expr[0] in '\'"': + result = expr[1:-1] + else: + if expr not in context: + raise SyntaxError('unknown variable: %s' % expr) + result = context[expr] + else: + assert isinstance(expr, dict) + op = expr['op'] + if op not in self.operations: + raise NotImplementedError('op not implemented: %s' % op) + elhs = expr['lhs'] + erhs = expr['rhs'] + if _is_literal(expr['lhs']) and _is_literal(expr['rhs']): + raise SyntaxError('invalid comparison: %s %s %s' % (elhs, op, erhs)) + + lhs = self.evaluate(elhs, context) + rhs = self.evaluate(erhs, context) + result = self.operations[op](lhs, rhs) + return result + +def default_context(): + def format_full_version(info): + version = '%s.%s.%s' % (info.major, info.minor, info.micro) + kind = info.releaselevel + if kind != 'final': + version += kind[0] + str(info.serial) + return version + + if hasattr(sys, 'implementation'): + implementation_version = format_full_version(sys.implementation.version) + implementation_name = sys.implementation.name + else: + implementation_version = '0' + implementation_name = '' + + result = { + 'implementation_name': implementation_name, + 'implementation_version': implementation_version, + 'os_name': os.name, + 'platform_machine': platform.machine(), + 'platform_python_implementation': platform.python_implementation(), + 'platform_release': platform.release(), + 'platform_system': platform.system(), + 'platform_version': platform.version(), + 'platform_in_venv': str(in_venv()), + 'python_full_version': platform.python_version(), + 'python_version': platform.python_version()[:3], + 'sys_platform': sys.platform, + } + return result + +DEFAULT_CONTEXT = default_context() +del default_context + +evaluator = Evaluator() + +def interpret(marker, execution_context=None): + """ + Interpret a marker and return a result depending on environment. + + :param marker: The marker to interpret. + :type marker: str + :param execution_context: The context used for name lookup. + :type execution_context: mapping + """ + try: + expr, rest = parse_marker(marker) + except Exception as e: + raise SyntaxError('Unable to interpret marker syntax: %s: %s' % (marker, e)) + if rest and rest[0] != '#': + raise SyntaxError('unexpected trailing data in marker: %s: %s' % (marker, rest)) + context = dict(DEFAULT_CONTEXT) + if execution_context: + context.update(execution_context) + return evaluator.evaluate(expr, context) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/metadata.py b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/metadata.py new file mode 100644 index 00000000..6d5e2360 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/metadata.py @@ -0,0 +1,1056 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Implementation of the Metadata for Python packages PEPs. + +Supports all metadata formats (1.0, 1.1, 1.2, 1.3/2.1 and withdrawn 2.0). +""" +from __future__ import unicode_literals + +import codecs +from email import message_from_file +import json +import logging +import re + + +from . import DistlibException, __version__ +from .compat import StringIO, string_types, text_type +from .markers import interpret +from .util import extract_by_key, get_extras +from .version import get_scheme, PEP440_VERSION_RE + +logger = logging.getLogger(__name__) + + +class MetadataMissingError(DistlibException): + """A required metadata is missing""" + + +class MetadataConflictError(DistlibException): + """Attempt to read or write metadata fields that are conflictual.""" + + +class MetadataUnrecognizedVersionError(DistlibException): + """Unknown metadata version number.""" + + +class MetadataInvalidError(DistlibException): + """A metadata value is invalid""" + +# public API of this module +__all__ = ['Metadata', 'PKG_INFO_ENCODING', 'PKG_INFO_PREFERRED_VERSION'] + +# Encoding used for the PKG-INFO files +PKG_INFO_ENCODING = 'utf-8' + +# preferred version. Hopefully will be changed +# to 1.2 once PEP 345 is supported everywhere +PKG_INFO_PREFERRED_VERSION = '1.1' + +_LINE_PREFIX_1_2 = re.compile('\n \\|') +_LINE_PREFIX_PRE_1_2 = re.compile('\n ') +_241_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'License') + +_314_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'License', 'Classifier', 'Download-URL', 'Obsoletes', + 'Provides', 'Requires') + +_314_MARKERS = ('Obsoletes', 'Provides', 'Requires', 'Classifier', + 'Download-URL') + +_345_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'Maintainer', 'Maintainer-email', 'License', + 'Classifier', 'Download-URL', 'Obsoletes-Dist', + 'Project-URL', 'Provides-Dist', 'Requires-Dist', + 'Requires-Python', 'Requires-External') + +_345_MARKERS = ('Provides-Dist', 'Requires-Dist', 'Requires-Python', + 'Obsoletes-Dist', 'Requires-External', 'Maintainer', + 'Maintainer-email', 'Project-URL') + +_426_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'Maintainer', 'Maintainer-email', 'License', + 'Classifier', 'Download-URL', 'Obsoletes-Dist', + 'Project-URL', 'Provides-Dist', 'Requires-Dist', + 'Requires-Python', 'Requires-External', 'Private-Version', + 'Obsoleted-By', 'Setup-Requires-Dist', 'Extension', + 'Provides-Extra') + +_426_MARKERS = ('Private-Version', 'Provides-Extra', 'Obsoleted-By', + 'Setup-Requires-Dist', 'Extension') + +# See issue #106: Sometimes 'Requires' and 'Provides' occur wrongly in +# the metadata. Include them in the tuple literal below to allow them +# (for now). +_566_FIELDS = _426_FIELDS + ('Description-Content-Type', + 'Requires', 'Provides') + +_566_MARKERS = ('Description-Content-Type',) + +_ALL_FIELDS = set() +_ALL_FIELDS.update(_241_FIELDS) +_ALL_FIELDS.update(_314_FIELDS) +_ALL_FIELDS.update(_345_FIELDS) +_ALL_FIELDS.update(_426_FIELDS) +_ALL_FIELDS.update(_566_FIELDS) + +EXTRA_RE = re.compile(r'''extra\s*==\s*("([^"]+)"|'([^']+)')''') + + +def _version2fieldlist(version): + if version == '1.0': + return _241_FIELDS + elif version == '1.1': + return _314_FIELDS + elif version == '1.2': + return _345_FIELDS + elif version in ('1.3', '2.1'): + return _345_FIELDS + _566_FIELDS + elif version == '2.0': + return _426_FIELDS + raise MetadataUnrecognizedVersionError(version) + + +def _best_version(fields): + """Detect the best version depending on the fields used.""" + def _has_marker(keys, markers): + for marker in markers: + if marker in keys: + return True + return False + + keys = [] + for key, value in fields.items(): + if value in ([], 'UNKNOWN', None): + continue + keys.append(key) + + possible_versions = ['1.0', '1.1', '1.2', '1.3', '2.0', '2.1'] + + # first let's try to see if a field is not part of one of the version + for key in keys: + if key not in _241_FIELDS and '1.0' in possible_versions: + possible_versions.remove('1.0') + logger.debug('Removed 1.0 due to %s', key) + if key not in _314_FIELDS and '1.1' in possible_versions: + possible_versions.remove('1.1') + logger.debug('Removed 1.1 due to %s', key) + if key not in _345_FIELDS and '1.2' in possible_versions: + possible_versions.remove('1.2') + logger.debug('Removed 1.2 due to %s', key) + if key not in _566_FIELDS and '1.3' in possible_versions: + possible_versions.remove('1.3') + logger.debug('Removed 1.3 due to %s', key) + if key not in _566_FIELDS and '2.1' in possible_versions: + if key != 'Description': # In 2.1, description allowed after headers + possible_versions.remove('2.1') + logger.debug('Removed 2.1 due to %s', key) + if key not in _426_FIELDS and '2.0' in possible_versions: + possible_versions.remove('2.0') + logger.debug('Removed 2.0 due to %s', key) + + # possible_version contains qualified versions + if len(possible_versions) == 1: + return possible_versions[0] # found ! + elif len(possible_versions) == 0: + logger.debug('Out of options - unknown metadata set: %s', fields) + raise MetadataConflictError('Unknown metadata set') + + # let's see if one unique marker is found + is_1_1 = '1.1' in possible_versions and _has_marker(keys, _314_MARKERS) + is_1_2 = '1.2' in possible_versions and _has_marker(keys, _345_MARKERS) + is_2_1 = '2.1' in possible_versions and _has_marker(keys, _566_MARKERS) + is_2_0 = '2.0' in possible_versions and _has_marker(keys, _426_MARKERS) + if int(is_1_1) + int(is_1_2) + int(is_2_1) + int(is_2_0) > 1: + raise MetadataConflictError('You used incompatible 1.1/1.2/2.0/2.1 fields') + + # we have the choice, 1.0, or 1.2, or 2.0 + # - 1.0 has a broken Summary field but works with all tools + # - 1.1 is to avoid + # - 1.2 fixes Summary but has little adoption + # - 2.0 adds more features and is very new + if not is_1_1 and not is_1_2 and not is_2_1 and not is_2_0: + # we couldn't find any specific marker + if PKG_INFO_PREFERRED_VERSION in possible_versions: + return PKG_INFO_PREFERRED_VERSION + if is_1_1: + return '1.1' + if is_1_2: + return '1.2' + if is_2_1: + return '2.1' + + return '2.0' + +# This follows the rules about transforming keys as described in +# https://www.python.org/dev/peps/pep-0566/#id17 +_ATTR2FIELD = { + name.lower().replace("-", "_"): name for name in _ALL_FIELDS +} +_FIELD2ATTR = {field: attr for attr, field in _ATTR2FIELD.items()} + +_PREDICATE_FIELDS = ('Requires-Dist', 'Obsoletes-Dist', 'Provides-Dist') +_VERSIONS_FIELDS = ('Requires-Python',) +_VERSION_FIELDS = ('Version',) +_LISTFIELDS = ('Platform', 'Classifier', 'Obsoletes', + 'Requires', 'Provides', 'Obsoletes-Dist', + 'Provides-Dist', 'Requires-Dist', 'Requires-External', + 'Project-URL', 'Supported-Platform', 'Setup-Requires-Dist', + 'Provides-Extra', 'Extension') +_LISTTUPLEFIELDS = ('Project-URL',) + +_ELEMENTSFIELD = ('Keywords',) + +_UNICODEFIELDS = ('Author', 'Maintainer', 'Summary', 'Description') + +_MISSING = object() + +_FILESAFE = re.compile('[^A-Za-z0-9.]+') + + +def _get_name_and_version(name, version, for_filename=False): + """Return the distribution name with version. + + If for_filename is true, return a filename-escaped form.""" + if for_filename: + # For both name and version any runs of non-alphanumeric or '.' + # characters are replaced with a single '-'. Additionally any + # spaces in the version string become '.' + name = _FILESAFE.sub('-', name) + version = _FILESAFE.sub('-', version.replace(' ', '.')) + return '%s-%s' % (name, version) + + +class LegacyMetadata(object): + """The legacy metadata of a release. + + Supports versions 1.0, 1.1, 1.2, 2.0 and 1.3/2.1 (auto-detected). You can + instantiate the class with one of these arguments (or none): + - *path*, the path to a metadata file + - *fileobj* give a file-like object with metadata as content + - *mapping* is a dict-like object + - *scheme* is a version scheme name + """ + # TODO document the mapping API and UNKNOWN default key + + def __init__(self, path=None, fileobj=None, mapping=None, + scheme='default'): + if [path, fileobj, mapping].count(None) < 2: + raise TypeError('path, fileobj and mapping are exclusive') + self._fields = {} + self.requires_files = [] + self._dependencies = None + self.scheme = scheme + if path is not None: + self.read(path) + elif fileobj is not None: + self.read_file(fileobj) + elif mapping is not None: + self.update(mapping) + self.set_metadata_version() + + def set_metadata_version(self): + self._fields['Metadata-Version'] = _best_version(self._fields) + + def _write_field(self, fileobj, name, value): + fileobj.write('%s: %s\n' % (name, value)) + + def __getitem__(self, name): + return self.get(name) + + def __setitem__(self, name, value): + return self.set(name, value) + + def __delitem__(self, name): + field_name = self._convert_name(name) + try: + del self._fields[field_name] + except KeyError: + raise KeyError(name) + + def __contains__(self, name): + return (name in self._fields or + self._convert_name(name) in self._fields) + + def _convert_name(self, name): + if name in _ALL_FIELDS: + return name + name = name.replace('-', '_').lower() + return _ATTR2FIELD.get(name, name) + + def _default_value(self, name): + if name in _LISTFIELDS or name in _ELEMENTSFIELD: + return [] + return 'UNKNOWN' + + def _remove_line_prefix(self, value): + if self.metadata_version in ('1.0', '1.1'): + return _LINE_PREFIX_PRE_1_2.sub('\n', value) + else: + return _LINE_PREFIX_1_2.sub('\n', value) + + def __getattr__(self, name): + if name in _ATTR2FIELD: + return self[name] + raise AttributeError(name) + + # + # Public API + # + +# dependencies = property(_get_dependencies, _set_dependencies) + + def get_fullname(self, filesafe=False): + """Return the distribution name with version. + + If filesafe is true, return a filename-escaped form.""" + return _get_name_and_version(self['Name'], self['Version'], filesafe) + + def is_field(self, name): + """return True if name is a valid metadata key""" + name = self._convert_name(name) + return name in _ALL_FIELDS + + def is_multi_field(self, name): + name = self._convert_name(name) + return name in _LISTFIELDS + + def read(self, filepath): + """Read the metadata values from a file path.""" + fp = codecs.open(filepath, 'r', encoding='utf-8') + try: + self.read_file(fp) + finally: + fp.close() + + def read_file(self, fileob): + """Read the metadata values from a file object.""" + msg = message_from_file(fileob) + self._fields['Metadata-Version'] = msg['metadata-version'] + + # When reading, get all the fields we can + for field in _ALL_FIELDS: + if field not in msg: + continue + if field in _LISTFIELDS: + # we can have multiple lines + values = msg.get_all(field) + if field in _LISTTUPLEFIELDS and values is not None: + values = [tuple(value.split(',')) for value in values] + self.set(field, values) + else: + # single line + value = msg[field] + if value is not None and value != 'UNKNOWN': + self.set(field, value) + + # PEP 566 specifies that the body be used for the description, if + # available + body = msg.get_payload() + self["Description"] = body if body else self["Description"] + # logger.debug('Attempting to set metadata for %s', self) + # self.set_metadata_version() + + def write(self, filepath, skip_unknown=False): + """Write the metadata fields to filepath.""" + fp = codecs.open(filepath, 'w', encoding='utf-8') + try: + self.write_file(fp, skip_unknown) + finally: + fp.close() + + def write_file(self, fileobject, skip_unknown=False): + """Write the PKG-INFO format data to a file object.""" + self.set_metadata_version() + + for field in _version2fieldlist(self['Metadata-Version']): + values = self.get(field) + if skip_unknown and values in ('UNKNOWN', [], ['UNKNOWN']): + continue + if field in _ELEMENTSFIELD: + self._write_field(fileobject, field, ','.join(values)) + continue + if field not in _LISTFIELDS: + if field == 'Description': + if self.metadata_version in ('1.0', '1.1'): + values = values.replace('\n', '\n ') + else: + values = values.replace('\n', '\n |') + values = [values] + + if field in _LISTTUPLEFIELDS: + values = [','.join(value) for value in values] + + for value in values: + self._write_field(fileobject, field, value) + + def update(self, other=None, **kwargs): + """Set metadata values from the given iterable `other` and kwargs. + + Behavior is like `dict.update`: If `other` has a ``keys`` method, + they are looped over and ``self[key]`` is assigned ``other[key]``. + Else, ``other`` is an iterable of ``(key, value)`` iterables. + + Keys that don't match a metadata field or that have an empty value are + dropped. + """ + def _set(key, value): + if key in _ATTR2FIELD and value: + self.set(self._convert_name(key), value) + + if not other: + # other is None or empty container + pass + elif hasattr(other, 'keys'): + for k in other.keys(): + _set(k, other[k]) + else: + for k, v in other: + _set(k, v) + + if kwargs: + for k, v in kwargs.items(): + _set(k, v) + + def set(self, name, value): + """Control then set a metadata field.""" + name = self._convert_name(name) + + if ((name in _ELEMENTSFIELD or name == 'Platform') and + not isinstance(value, (list, tuple))): + if isinstance(value, string_types): + value = [v.strip() for v in value.split(',')] + else: + value = [] + elif (name in _LISTFIELDS and + not isinstance(value, (list, tuple))): + if isinstance(value, string_types): + value = [value] + else: + value = [] + + if logger.isEnabledFor(logging.WARNING): + project_name = self['Name'] + + scheme = get_scheme(self.scheme) + if name in _PREDICATE_FIELDS and value is not None: + for v in value: + # check that the values are valid + if not scheme.is_valid_matcher(v.split(';')[0]): + logger.warning( + "'%s': '%s' is not valid (field '%s')", + project_name, v, name) + # FIXME this rejects UNKNOWN, is that right? + elif name in _VERSIONS_FIELDS and value is not None: + if not scheme.is_valid_constraint_list(value): + logger.warning("'%s': '%s' is not a valid version (field '%s')", + project_name, value, name) + elif name in _VERSION_FIELDS and value is not None: + if not scheme.is_valid_version(value): + logger.warning("'%s': '%s' is not a valid version (field '%s')", + project_name, value, name) + + if name in _UNICODEFIELDS: + if name == 'Description': + value = self._remove_line_prefix(value) + + self._fields[name] = value + + def get(self, name, default=_MISSING): + """Get a metadata field.""" + name = self._convert_name(name) + if name not in self._fields: + if default is _MISSING: + default = self._default_value(name) + return default + if name in _UNICODEFIELDS: + value = self._fields[name] + return value + elif name in _LISTFIELDS: + value = self._fields[name] + if value is None: + return [] + res = [] + for val in value: + if name not in _LISTTUPLEFIELDS: + res.append(val) + else: + # That's for Project-URL + res.append((val[0], val[1])) + return res + + elif name in _ELEMENTSFIELD: + value = self._fields[name] + if isinstance(value, string_types): + return value.split(',') + return self._fields[name] + + def check(self, strict=False): + """Check if the metadata is compliant. If strict is True then raise if + no Name or Version are provided""" + self.set_metadata_version() + + # XXX should check the versions (if the file was loaded) + missing, warnings = [], [] + + for attr in ('Name', 'Version'): # required by PEP 345 + if attr not in self: + missing.append(attr) + + if strict and missing != []: + msg = 'missing required metadata: %s' % ', '.join(missing) + raise MetadataMissingError(msg) + + for attr in ('Home-page', 'Author'): + if attr not in self: + missing.append(attr) + + # checking metadata 1.2 (XXX needs to check 1.1, 1.0) + if self['Metadata-Version'] != '1.2': + return missing, warnings + + scheme = get_scheme(self.scheme) + + def are_valid_constraints(value): + for v in value: + if not scheme.is_valid_matcher(v.split(';')[0]): + return False + return True + + for fields, controller in ((_PREDICATE_FIELDS, are_valid_constraints), + (_VERSIONS_FIELDS, + scheme.is_valid_constraint_list), + (_VERSION_FIELDS, + scheme.is_valid_version)): + for field in fields: + value = self.get(field, None) + if value is not None and not controller(value): + warnings.append("Wrong value for '%s': %s" % (field, value)) + + return missing, warnings + + def todict(self, skip_missing=False): + """Return fields as a dict. + + Field names will be converted to use the underscore-lowercase style + instead of hyphen-mixed case (i.e. home_page instead of Home-page). + This is as per https://www.python.org/dev/peps/pep-0566/#id17. + """ + self.set_metadata_version() + + fields = _version2fieldlist(self['Metadata-Version']) + + data = {} + + for field_name in fields: + if not skip_missing or field_name in self._fields: + key = _FIELD2ATTR[field_name] + if key != 'project_url': + data[key] = self[field_name] + else: + data[key] = [','.join(u) for u in self[field_name]] + + return data + + def add_requirements(self, requirements): + if self['Metadata-Version'] == '1.1': + # we can't have 1.1 metadata *and* Setuptools requires + for field in ('Obsoletes', 'Requires', 'Provides'): + if field in self: + del self[field] + self['Requires-Dist'] += requirements + + # Mapping API + # TODO could add iter* variants + + def keys(self): + return list(_version2fieldlist(self['Metadata-Version'])) + + def __iter__(self): + for key in self.keys(): + yield key + + def values(self): + return [self[key] for key in self.keys()] + + def items(self): + return [(key, self[key]) for key in self.keys()] + + def __repr__(self): + return '<%s %s %s>' % (self.__class__.__name__, self.name, + self.version) + + +METADATA_FILENAME = 'pydist.json' +WHEEL_METADATA_FILENAME = 'metadata.json' +LEGACY_METADATA_FILENAME = 'METADATA' + + +class Metadata(object): + """ + The metadata of a release. This implementation uses 2.0 (JSON) + metadata where possible. If not possible, it wraps a LegacyMetadata + instance which handles the key-value metadata format. + """ + + METADATA_VERSION_MATCHER = re.compile(r'^\d+(\.\d+)*$') + + NAME_MATCHER = re.compile('^[0-9A-Z]([0-9A-Z_.-]*[0-9A-Z])?$', re.I) + + VERSION_MATCHER = PEP440_VERSION_RE + + SUMMARY_MATCHER = re.compile('.{1,2047}') + + METADATA_VERSION = '2.0' + + GENERATOR = 'distlib (%s)' % __version__ + + MANDATORY_KEYS = { + 'name': (), + 'version': (), + 'summary': ('legacy',), + } + + INDEX_KEYS = ('name version license summary description author ' + 'author_email keywords platform home_page classifiers ' + 'download_url') + + DEPENDENCY_KEYS = ('extras run_requires test_requires build_requires ' + 'dev_requires provides meta_requires obsoleted_by ' + 'supports_environments') + + SYNTAX_VALIDATORS = { + 'metadata_version': (METADATA_VERSION_MATCHER, ()), + 'name': (NAME_MATCHER, ('legacy',)), + 'version': (VERSION_MATCHER, ('legacy',)), + 'summary': (SUMMARY_MATCHER, ('legacy',)), + } + + __slots__ = ('_legacy', '_data', 'scheme') + + def __init__(self, path=None, fileobj=None, mapping=None, + scheme='default'): + if [path, fileobj, mapping].count(None) < 2: + raise TypeError('path, fileobj and mapping are exclusive') + self._legacy = None + self._data = None + self.scheme = scheme + #import pdb; pdb.set_trace() + if mapping is not None: + try: + self._validate_mapping(mapping, scheme) + self._data = mapping + except MetadataUnrecognizedVersionError: + self._legacy = LegacyMetadata(mapping=mapping, scheme=scheme) + self.validate() + else: + data = None + if path: + with open(path, 'rb') as f: + data = f.read() + elif fileobj: + data = fileobj.read() + if data is None: + # Initialised with no args - to be added + self._data = { + 'metadata_version': self.METADATA_VERSION, + 'generator': self.GENERATOR, + } + else: + if not isinstance(data, text_type): + data = data.decode('utf-8') + try: + self._data = json.loads(data) + self._validate_mapping(self._data, scheme) + except ValueError: + # Note: MetadataUnrecognizedVersionError does not + # inherit from ValueError (it's a DistlibException, + # which should not inherit from ValueError). + # The ValueError comes from the json.load - if that + # succeeds and we get a validation error, we want + # that to propagate + self._legacy = LegacyMetadata(fileobj=StringIO(data), + scheme=scheme) + self.validate() + + common_keys = set(('name', 'version', 'license', 'keywords', 'summary')) + + none_list = (None, list) + none_dict = (None, dict) + + mapped_keys = { + 'run_requires': ('Requires-Dist', list), + 'build_requires': ('Setup-Requires-Dist', list), + 'dev_requires': none_list, + 'test_requires': none_list, + 'meta_requires': none_list, + 'extras': ('Provides-Extra', list), + 'modules': none_list, + 'namespaces': none_list, + 'exports': none_dict, + 'commands': none_dict, + 'classifiers': ('Classifier', list), + 'source_url': ('Download-URL', None), + 'metadata_version': ('Metadata-Version', None), + } + + del none_list, none_dict + + def __getattribute__(self, key): + common = object.__getattribute__(self, 'common_keys') + mapped = object.__getattribute__(self, 'mapped_keys') + if key in mapped: + lk, maker = mapped[key] + if self._legacy: + if lk is None: + result = None if maker is None else maker() + else: + result = self._legacy.get(lk) + else: + value = None if maker is None else maker() + if key not in ('commands', 'exports', 'modules', 'namespaces', + 'classifiers'): + result = self._data.get(key, value) + else: + # special cases for PEP 459 + sentinel = object() + result = sentinel + d = self._data.get('extensions') + if d: + if key == 'commands': + result = d.get('python.commands', value) + elif key == 'classifiers': + d = d.get('python.details') + if d: + result = d.get(key, value) + else: + d = d.get('python.exports') + if not d: + d = self._data.get('python.exports') + if d: + result = d.get(key, value) + if result is sentinel: + result = value + elif key not in common: + result = object.__getattribute__(self, key) + elif self._legacy: + result = self._legacy.get(key) + else: + result = self._data.get(key) + return result + + def _validate_value(self, key, value, scheme=None): + if key in self.SYNTAX_VALIDATORS: + pattern, exclusions = self.SYNTAX_VALIDATORS[key] + if (scheme or self.scheme) not in exclusions: + m = pattern.match(value) + if not m: + raise MetadataInvalidError("'%s' is an invalid value for " + "the '%s' property" % (value, + key)) + + def __setattr__(self, key, value): + self._validate_value(key, value) + common = object.__getattribute__(self, 'common_keys') + mapped = object.__getattribute__(self, 'mapped_keys') + if key in mapped: + lk, _ = mapped[key] + if self._legacy: + if lk is None: + raise NotImplementedError + self._legacy[lk] = value + elif key not in ('commands', 'exports', 'modules', 'namespaces', + 'classifiers'): + self._data[key] = value + else: + # special cases for PEP 459 + d = self._data.setdefault('extensions', {}) + if key == 'commands': + d['python.commands'] = value + elif key == 'classifiers': + d = d.setdefault('python.details', {}) + d[key] = value + else: + d = d.setdefault('python.exports', {}) + d[key] = value + elif key not in common: + object.__setattr__(self, key, value) + else: + if key == 'keywords': + if isinstance(value, string_types): + value = value.strip() + if value: + value = value.split() + else: + value = [] + if self._legacy: + self._legacy[key] = value + else: + self._data[key] = value + + @property + def name_and_version(self): + return _get_name_and_version(self.name, self.version, True) + + @property + def provides(self): + if self._legacy: + result = self._legacy['Provides-Dist'] + else: + result = self._data.setdefault('provides', []) + s = '%s (%s)' % (self.name, self.version) + if s not in result: + result.append(s) + return result + + @provides.setter + def provides(self, value): + if self._legacy: + self._legacy['Provides-Dist'] = value + else: + self._data['provides'] = value + + def get_requirements(self, reqts, extras=None, env=None): + """ + Base method to get dependencies, given a set of extras + to satisfy and an optional environment context. + :param reqts: A list of sometimes-wanted dependencies, + perhaps dependent on extras and environment. + :param extras: A list of optional components being requested. + :param env: An optional environment for marker evaluation. + """ + if self._legacy: + result = reqts + else: + result = [] + extras = get_extras(extras or [], self.extras) + for d in reqts: + if 'extra' not in d and 'environment' not in d: + # unconditional + include = True + else: + if 'extra' not in d: + # Not extra-dependent - only environment-dependent + include = True + else: + include = d.get('extra') in extras + if include: + # Not excluded because of extras, check environment + marker = d.get('environment') + if marker: + include = interpret(marker, env) + if include: + result.extend(d['requires']) + for key in ('build', 'dev', 'test'): + e = ':%s:' % key + if e in extras: + extras.remove(e) + # A recursive call, but it should terminate since 'test' + # has been removed from the extras + reqts = self._data.get('%s_requires' % key, []) + result.extend(self.get_requirements(reqts, extras=extras, + env=env)) + return result + + @property + def dictionary(self): + if self._legacy: + return self._from_legacy() + return self._data + + @property + def dependencies(self): + if self._legacy: + raise NotImplementedError + else: + return extract_by_key(self._data, self.DEPENDENCY_KEYS) + + @dependencies.setter + def dependencies(self, value): + if self._legacy: + raise NotImplementedError + else: + self._data.update(value) + + def _validate_mapping(self, mapping, scheme): + if mapping.get('metadata_version') != self.METADATA_VERSION: + raise MetadataUnrecognizedVersionError() + missing = [] + for key, exclusions in self.MANDATORY_KEYS.items(): + if key not in mapping: + if scheme not in exclusions: + missing.append(key) + if missing: + msg = 'Missing metadata items: %s' % ', '.join(missing) + raise MetadataMissingError(msg) + for k, v in mapping.items(): + self._validate_value(k, v, scheme) + + def validate(self): + if self._legacy: + missing, warnings = self._legacy.check(True) + if missing or warnings: + logger.warning('Metadata: missing: %s, warnings: %s', + missing, warnings) + else: + self._validate_mapping(self._data, self.scheme) + + def todict(self): + if self._legacy: + return self._legacy.todict(True) + else: + result = extract_by_key(self._data, self.INDEX_KEYS) + return result + + def _from_legacy(self): + assert self._legacy and not self._data + result = { + 'metadata_version': self.METADATA_VERSION, + 'generator': self.GENERATOR, + } + lmd = self._legacy.todict(True) # skip missing ones + for k in ('name', 'version', 'license', 'summary', 'description', + 'classifier'): + if k in lmd: + if k == 'classifier': + nk = 'classifiers' + else: + nk = k + result[nk] = lmd[k] + kw = lmd.get('Keywords', []) + if kw == ['']: + kw = [] + result['keywords'] = kw + keys = (('requires_dist', 'run_requires'), + ('setup_requires_dist', 'build_requires')) + for ok, nk in keys: + if ok in lmd and lmd[ok]: + result[nk] = [{'requires': lmd[ok]}] + result['provides'] = self.provides + author = {} + maintainer = {} + return result + + LEGACY_MAPPING = { + 'name': 'Name', + 'version': 'Version', + ('extensions', 'python.details', 'license'): 'License', + 'summary': 'Summary', + 'description': 'Description', + ('extensions', 'python.project', 'project_urls', 'Home'): 'Home-page', + ('extensions', 'python.project', 'contacts', 0, 'name'): 'Author', + ('extensions', 'python.project', 'contacts', 0, 'email'): 'Author-email', + 'source_url': 'Download-URL', + ('extensions', 'python.details', 'classifiers'): 'Classifier', + } + + def _to_legacy(self): + def process_entries(entries): + reqts = set() + for e in entries: + extra = e.get('extra') + env = e.get('environment') + rlist = e['requires'] + for r in rlist: + if not env and not extra: + reqts.add(r) + else: + marker = '' + if extra: + marker = 'extra == "%s"' % extra + if env: + if marker: + marker = '(%s) and %s' % (env, marker) + else: + marker = env + reqts.add(';'.join((r, marker))) + return reqts + + assert self._data and not self._legacy + result = LegacyMetadata() + nmd = self._data + # import pdb; pdb.set_trace() + for nk, ok in self.LEGACY_MAPPING.items(): + if not isinstance(nk, tuple): + if nk in nmd: + result[ok] = nmd[nk] + else: + d = nmd + found = True + for k in nk: + try: + d = d[k] + except (KeyError, IndexError): + found = False + break + if found: + result[ok] = d + r1 = process_entries(self.run_requires + self.meta_requires) + r2 = process_entries(self.build_requires + self.dev_requires) + if self.extras: + result['Provides-Extra'] = sorted(self.extras) + result['Requires-Dist'] = sorted(r1) + result['Setup-Requires-Dist'] = sorted(r2) + # TODO: any other fields wanted + return result + + def write(self, path=None, fileobj=None, legacy=False, skip_unknown=True): + if [path, fileobj].count(None) != 1: + raise ValueError('Exactly one of path and fileobj is needed') + self.validate() + if legacy: + if self._legacy: + legacy_md = self._legacy + else: + legacy_md = self._to_legacy() + if path: + legacy_md.write(path, skip_unknown=skip_unknown) + else: + legacy_md.write_file(fileobj, skip_unknown=skip_unknown) + else: + if self._legacy: + d = self._from_legacy() + else: + d = self._data + if fileobj: + json.dump(d, fileobj, ensure_ascii=True, indent=2, + sort_keys=True) + else: + with codecs.open(path, 'w', 'utf-8') as f: + json.dump(d, f, ensure_ascii=True, indent=2, + sort_keys=True) + + def add_requirements(self, requirements): + if self._legacy: + self._legacy.add_requirements(requirements) + else: + run_requires = self._data.setdefault('run_requires', []) + always = None + for entry in run_requires: + if 'environment' not in entry and 'extra' not in entry: + always = entry + break + if always is None: + always = { 'requires': requirements } + run_requires.insert(0, always) + else: + rset = set(always['requires']) | set(requirements) + always['requires'] = sorted(rset) + + def __repr__(self): + name = self.name or '(no name)' + version = self.version or 'no version' + return '<%s %s %s (%s)>' % (self.__class__.__name__, + self.metadata_version, name, version) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/resources.py b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/resources.py new file mode 100644 index 00000000..18840167 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/resources.py @@ -0,0 +1,355 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2017 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import unicode_literals + +import bisect +import io +import logging +import os +import pkgutil +import shutil +import sys +import types +import zipimport + +from . import DistlibException +from .util import cached_property, get_cache_base, path_to_cache_dir, Cache + +logger = logging.getLogger(__name__) + + +cache = None # created when needed + + +class ResourceCache(Cache): + def __init__(self, base=None): + if base is None: + # Use native string to avoid issues on 2.x: see Python #20140. + base = os.path.join(get_cache_base(), str('resource-cache')) + super(ResourceCache, self).__init__(base) + + def is_stale(self, resource, path): + """ + Is the cache stale for the given resource? + + :param resource: The :class:`Resource` being cached. + :param path: The path of the resource in the cache. + :return: True if the cache is stale. + """ + # Cache invalidation is a hard problem :-) + return True + + def get(self, resource): + """ + Get a resource into the cache, + + :param resource: A :class:`Resource` instance. + :return: The pathname of the resource in the cache. + """ + prefix, path = resource.finder.get_cache_info(resource) + if prefix is None: + result = path + else: + result = os.path.join(self.base, self.prefix_to_dir(prefix), path) + dirname = os.path.dirname(result) + if not os.path.isdir(dirname): + os.makedirs(dirname) + if not os.path.exists(result): + stale = True + else: + stale = self.is_stale(resource, path) + if stale: + # write the bytes of the resource to the cache location + with open(result, 'wb') as f: + f.write(resource.bytes) + return result + + +class ResourceBase(object): + def __init__(self, finder, name): + self.finder = finder + self.name = name + + +class Resource(ResourceBase): + """ + A class representing an in-package resource, such as a data file. This is + not normally instantiated by user code, but rather by a + :class:`ResourceFinder` which manages the resource. + """ + is_container = False # Backwards compatibility + + def as_stream(self): + """ + Get the resource as a stream. + + This is not a property to make it obvious that it returns a new stream + each time. + """ + return self.finder.get_stream(self) + + @cached_property + def file_path(self): + global cache + if cache is None: + cache = ResourceCache() + return cache.get(self) + + @cached_property + def bytes(self): + return self.finder.get_bytes(self) + + @cached_property + def size(self): + return self.finder.get_size(self) + + +class ResourceContainer(ResourceBase): + is_container = True # Backwards compatibility + + @cached_property + def resources(self): + return self.finder.get_resources(self) + + +class ResourceFinder(object): + """ + Resource finder for file system resources. + """ + + if sys.platform.startswith('java'): + skipped_extensions = ('.pyc', '.pyo', '.class') + else: + skipped_extensions = ('.pyc', '.pyo') + + def __init__(self, module): + self.module = module + self.loader = getattr(module, '__loader__', None) + self.base = os.path.dirname(getattr(module, '__file__', '')) + + def _adjust_path(self, path): + return os.path.realpath(path) + + def _make_path(self, resource_name): + # Issue #50: need to preserve type of path on Python 2.x + # like os.path._get_sep + if isinstance(resource_name, bytes): # should only happen on 2.x + sep = b'/' + else: + sep = '/' + parts = resource_name.split(sep) + parts.insert(0, self.base) + result = os.path.join(*parts) + return self._adjust_path(result) + + def _find(self, path): + return os.path.exists(path) + + def get_cache_info(self, resource): + return None, resource.path + + def find(self, resource_name): + path = self._make_path(resource_name) + if not self._find(path): + result = None + else: + if self._is_directory(path): + result = ResourceContainer(self, resource_name) + else: + result = Resource(self, resource_name) + result.path = path + return result + + def get_stream(self, resource): + return open(resource.path, 'rb') + + def get_bytes(self, resource): + with open(resource.path, 'rb') as f: + return f.read() + + def get_size(self, resource): + return os.path.getsize(resource.path) + + def get_resources(self, resource): + def allowed(f): + return (f != '__pycache__' and not + f.endswith(self.skipped_extensions)) + return set([f for f in os.listdir(resource.path) if allowed(f)]) + + def is_container(self, resource): + return self._is_directory(resource.path) + + _is_directory = staticmethod(os.path.isdir) + + def iterator(self, resource_name): + resource = self.find(resource_name) + if resource is not None: + todo = [resource] + while todo: + resource = todo.pop(0) + yield resource + if resource.is_container: + rname = resource.name + for name in resource.resources: + if not rname: + new_name = name + else: + new_name = '/'.join([rname, name]) + child = self.find(new_name) + if child.is_container: + todo.append(child) + else: + yield child + + +class ZipResourceFinder(ResourceFinder): + """ + Resource finder for resources in .zip files. + """ + def __init__(self, module): + super(ZipResourceFinder, self).__init__(module) + archive = self.loader.archive + self.prefix_len = 1 + len(archive) + # PyPy doesn't have a _files attr on zipimporter, and you can't set one + if hasattr(self.loader, '_files'): + self._files = self.loader._files + else: + self._files = zipimport._zip_directory_cache[archive] + self.index = sorted(self._files) + + def _adjust_path(self, path): + return path + + def _find(self, path): + path = path[self.prefix_len:] + if path in self._files: + result = True + else: + if path and path[-1] != os.sep: + path = path + os.sep + i = bisect.bisect(self.index, path) + try: + result = self.index[i].startswith(path) + except IndexError: + result = False + if not result: + logger.debug('_find failed: %r %r', path, self.loader.prefix) + else: + logger.debug('_find worked: %r %r', path, self.loader.prefix) + return result + + def get_cache_info(self, resource): + prefix = self.loader.archive + path = resource.path[1 + len(prefix):] + return prefix, path + + def get_bytes(self, resource): + return self.loader.get_data(resource.path) + + def get_stream(self, resource): + return io.BytesIO(self.get_bytes(resource)) + + def get_size(self, resource): + path = resource.path[self.prefix_len:] + return self._files[path][3] + + def get_resources(self, resource): + path = resource.path[self.prefix_len:] + if path and path[-1] != os.sep: + path += os.sep + plen = len(path) + result = set() + i = bisect.bisect(self.index, path) + while i < len(self.index): + if not self.index[i].startswith(path): + break + s = self.index[i][plen:] + result.add(s.split(os.sep, 1)[0]) # only immediate children + i += 1 + return result + + def _is_directory(self, path): + path = path[self.prefix_len:] + if path and path[-1] != os.sep: + path += os.sep + i = bisect.bisect(self.index, path) + try: + result = self.index[i].startswith(path) + except IndexError: + result = False + return result + +_finder_registry = { + type(None): ResourceFinder, + zipimport.zipimporter: ZipResourceFinder +} + +try: + # In Python 3.6, _frozen_importlib -> _frozen_importlib_external + try: + import _frozen_importlib_external as _fi + except ImportError: + import _frozen_importlib as _fi + _finder_registry[_fi.SourceFileLoader] = ResourceFinder + _finder_registry[_fi.FileFinder] = ResourceFinder + del _fi +except (ImportError, AttributeError): + pass + + +def register_finder(loader, finder_maker): + _finder_registry[type(loader)] = finder_maker + +_finder_cache = {} + + +def finder(package): + """ + Return a resource finder for a package. + :param package: The name of the package. + :return: A :class:`ResourceFinder` instance for the package. + """ + if package in _finder_cache: + result = _finder_cache[package] + else: + if package not in sys.modules: + __import__(package) + module = sys.modules[package] + path = getattr(module, '__path__', None) + if path is None: + raise DistlibException('You cannot get a finder for a module, ' + 'only for a package') + loader = getattr(module, '__loader__', None) + finder_maker = _finder_registry.get(type(loader)) + if finder_maker is None: + raise DistlibException('Unable to locate finder for %r' % package) + result = finder_maker(module) + _finder_cache[package] = result + return result + + +_dummy_module = types.ModuleType(str('__dummy__')) + + +def finder_for_path(path): + """ + Return a resource finder for a path, which should represent a container. + + :param path: The path. + :return: A :class:`ResourceFinder` instance for the path. + """ + result = None + # calls any path hooks, gets importer into cache + pkgutil.get_importer(path) + loader = sys.path_importer_cache.get(path) + finder = _finder_registry.get(type(loader)) + if finder: + module = _dummy_module + module.__file__ = os.path.join(path, '') + module.__loader__ = loader + result = finder(module) + return result diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/scripts.py b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/scripts.py new file mode 100644 index 00000000..03f8f21e --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/scripts.py @@ -0,0 +1,419 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2015 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from io import BytesIO +import logging +import os +import re +import struct +import sys + +from .compat import sysconfig, detect_encoding, ZipFile +from .resources import finder +from .util import (FileOperator, get_export_entry, convert_path, + get_executable, in_venv) + +logger = logging.getLogger(__name__) + +_DEFAULT_MANIFEST = ''' + + + + + + + + + + + + +'''.strip() + +# check if Python is called on the first line with this expression +FIRST_LINE_RE = re.compile(b'^#!.*pythonw?[0-9.]*([ \t].*)?$') +SCRIPT_TEMPLATE = r'''# -*- coding: utf-8 -*- +import re +import sys +from %(module)s import %(import_name)s +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(%(func)s()) +''' + + +def enquote_executable(executable): + if ' ' in executable: + # make sure we quote only the executable in case of env + # for example /usr/bin/env "/dir with spaces/bin/jython" + # instead of "/usr/bin/env /dir with spaces/bin/jython" + # otherwise whole + if executable.startswith('/usr/bin/env '): + env, _executable = executable.split(' ', 1) + if ' ' in _executable and not _executable.startswith('"'): + executable = '%s "%s"' % (env, _executable) + else: + if not executable.startswith('"'): + executable = '"%s"' % executable + return executable + +# Keep the old name around (for now), as there is at least one project using it! +_enquote_executable = enquote_executable + +class ScriptMaker(object): + """ + A class to copy or create scripts from source scripts or callable + specifications. + """ + script_template = SCRIPT_TEMPLATE + + executable = None # for shebangs + + def __init__(self, source_dir, target_dir, add_launchers=True, + dry_run=False, fileop=None): + self.source_dir = source_dir + self.target_dir = target_dir + self.add_launchers = add_launchers + self.force = False + self.clobber = False + # It only makes sense to set mode bits on POSIX. + self.set_mode = (os.name == 'posix') or (os.name == 'java' and + os._name == 'posix') + self.variants = set(('', 'X.Y')) + self._fileop = fileop or FileOperator(dry_run) + + self._is_nt = os.name == 'nt' or ( + os.name == 'java' and os._name == 'nt') + self.version_info = sys.version_info + + def _get_alternate_executable(self, executable, options): + if options.get('gui', False) and self._is_nt: # pragma: no cover + dn, fn = os.path.split(executable) + fn = fn.replace('python', 'pythonw') + executable = os.path.join(dn, fn) + return executable + + if sys.platform.startswith('java'): # pragma: no cover + def _is_shell(self, executable): + """ + Determine if the specified executable is a script + (contains a #! line) + """ + try: + with open(executable) as fp: + return fp.read(2) == '#!' + except (OSError, IOError): + logger.warning('Failed to open %s', executable) + return False + + def _fix_jython_executable(self, executable): + if self._is_shell(executable): + # Workaround for Jython is not needed on Linux systems. + import java + + if java.lang.System.getProperty('os.name') == 'Linux': + return executable + elif executable.lower().endswith('jython.exe'): + # Use wrapper exe for Jython on Windows + return executable + return '/usr/bin/env %s' % executable + + def _build_shebang(self, executable, post_interp): + """ + Build a shebang line. In the simple case (on Windows, or a shebang line + which is not too long or contains spaces) use a simple formulation for + the shebang. Otherwise, use /bin/sh as the executable, with a contrived + shebang which allows the script to run either under Python or sh, using + suitable quoting. Thanks to Harald Nordgren for his input. + + See also: http://www.in-ulm.de/~mascheck/various/shebang/#length + https://hg.mozilla.org/mozilla-central/file/tip/mach + """ + if os.name != 'posix': + simple_shebang = True + else: + # Add 3 for '#!' prefix and newline suffix. + shebang_length = len(executable) + len(post_interp) + 3 + if sys.platform == 'darwin': + max_shebang_length = 512 + else: + max_shebang_length = 127 + simple_shebang = ((b' ' not in executable) and + (shebang_length <= max_shebang_length)) + + if simple_shebang: + result = b'#!' + executable + post_interp + b'\n' + else: + result = b'#!/bin/sh\n' + result += b"'''exec' " + executable + post_interp + b' "$0" "$@"\n' + result += b"' '''" + return result + + def _get_shebang(self, encoding, post_interp=b'', options=None): + enquote = True + if self.executable: + executable = self.executable + enquote = False # assume this will be taken care of + elif not sysconfig.is_python_build(): + executable = get_executable() + elif in_venv(): # pragma: no cover + executable = os.path.join(sysconfig.get_path('scripts'), + 'python%s' % sysconfig.get_config_var('EXE')) + else: # pragma: no cover + executable = os.path.join( + sysconfig.get_config_var('BINDIR'), + 'python%s%s' % (sysconfig.get_config_var('VERSION'), + sysconfig.get_config_var('EXE'))) + if options: + executable = self._get_alternate_executable(executable, options) + + if sys.platform.startswith('java'): # pragma: no cover + executable = self._fix_jython_executable(executable) + + # Normalise case for Windows - COMMENTED OUT + # executable = os.path.normcase(executable) + # N.B. The normalising operation above has been commented out: See + # issue #124. Although paths in Windows are generally case-insensitive, + # they aren't always. For example, a path containing a ẞ (which is a + # LATIN CAPITAL LETTER SHARP S - U+1E9E) is normcased to ß (which is a + # LATIN SMALL LETTER SHARP S' - U+00DF). The two are not considered by + # Windows as equivalent in path names. + + # If the user didn't specify an executable, it may be necessary to + # cater for executable paths with spaces (not uncommon on Windows) + if enquote: + executable = enquote_executable(executable) + # Issue #51: don't use fsencode, since we later try to + # check that the shebang is decodable using utf-8. + executable = executable.encode('utf-8') + # in case of IronPython, play safe and enable frames support + if (sys.platform == 'cli' and '-X:Frames' not in post_interp + and '-X:FullFrames' not in post_interp): # pragma: no cover + post_interp += b' -X:Frames' + shebang = self._build_shebang(executable, post_interp) + # Python parser starts to read a script using UTF-8 until + # it gets a #coding:xxx cookie. The shebang has to be the + # first line of a file, the #coding:xxx cookie cannot be + # written before. So the shebang has to be decodable from + # UTF-8. + try: + shebang.decode('utf-8') + except UnicodeDecodeError: # pragma: no cover + raise ValueError( + 'The shebang (%r) is not decodable from utf-8' % shebang) + # If the script is encoded to a custom encoding (use a + # #coding:xxx cookie), the shebang has to be decodable from + # the script encoding too. + if encoding != 'utf-8': + try: + shebang.decode(encoding) + except UnicodeDecodeError: # pragma: no cover + raise ValueError( + 'The shebang (%r) is not decodable ' + 'from the script encoding (%r)' % (shebang, encoding)) + return shebang + + def _get_script_text(self, entry): + return self.script_template % dict(module=entry.prefix, + import_name=entry.suffix.split('.')[0], + func=entry.suffix) + + manifest = _DEFAULT_MANIFEST + + def get_manifest(self, exename): + base = os.path.basename(exename) + return self.manifest % base + + def _write_script(self, names, shebang, script_bytes, filenames, ext): + use_launcher = self.add_launchers and self._is_nt + linesep = os.linesep.encode('utf-8') + if not shebang.endswith(linesep): + shebang += linesep + if not use_launcher: + script_bytes = shebang + script_bytes + else: # pragma: no cover + if ext == 'py': + launcher = self._get_launcher('t') + else: + launcher = self._get_launcher('w') + stream = BytesIO() + with ZipFile(stream, 'w') as zf: + zf.writestr('__main__.py', script_bytes) + zip_data = stream.getvalue() + script_bytes = launcher + shebang + zip_data + for name in names: + outname = os.path.join(self.target_dir, name) + if use_launcher: # pragma: no cover + n, e = os.path.splitext(outname) + if e.startswith('.py'): + outname = n + outname = '%s.exe' % outname + try: + self._fileop.write_binary_file(outname, script_bytes) + except Exception: + # Failed writing an executable - it might be in use. + logger.warning('Failed to write executable - trying to ' + 'use .deleteme logic') + dfname = '%s.deleteme' % outname + if os.path.exists(dfname): + os.remove(dfname) # Not allowed to fail here + os.rename(outname, dfname) # nor here + self._fileop.write_binary_file(outname, script_bytes) + logger.debug('Able to replace executable using ' + '.deleteme logic') + try: + os.remove(dfname) + except Exception: + pass # still in use - ignore error + else: + if self._is_nt and not outname.endswith('.' + ext): # pragma: no cover + outname = '%s.%s' % (outname, ext) + if os.path.exists(outname) and not self.clobber: + logger.warning('Skipping existing file %s', outname) + continue + self._fileop.write_binary_file(outname, script_bytes) + if self.set_mode: + self._fileop.set_executable_mode([outname]) + filenames.append(outname) + + def _make_script(self, entry, filenames, options=None): + post_interp = b'' + if options: + args = options.get('interpreter_args', []) + if args: + args = ' %s' % ' '.join(args) + post_interp = args.encode('utf-8') + shebang = self._get_shebang('utf-8', post_interp, options=options) + script = self._get_script_text(entry).encode('utf-8') + name = entry.name + scriptnames = set() + if '' in self.variants: + scriptnames.add(name) + if 'X' in self.variants: + scriptnames.add('%s%s' % (name, self.version_info[0])) + if 'X.Y' in self.variants: + scriptnames.add('%s-%s.%s' % (name, self.version_info[0], + self.version_info[1])) + if options and options.get('gui', False): + ext = 'pyw' + else: + ext = 'py' + self._write_script(scriptnames, shebang, script, filenames, ext) + + def _copy_script(self, script, filenames): + adjust = False + script = os.path.join(self.source_dir, convert_path(script)) + outname = os.path.join(self.target_dir, os.path.basename(script)) + if not self.force and not self._fileop.newer(script, outname): + logger.debug('not copying %s (up-to-date)', script) + return + + # Always open the file, but ignore failures in dry-run mode -- + # that way, we'll get accurate feedback if we can read the + # script. + try: + f = open(script, 'rb') + except IOError: # pragma: no cover + if not self.dry_run: + raise + f = None + else: + first_line = f.readline() + if not first_line: # pragma: no cover + logger.warning('%s: %s is an empty file (skipping)', + self.get_command_name(), script) + return + + match = FIRST_LINE_RE.match(first_line.replace(b'\r\n', b'\n')) + if match: + adjust = True + post_interp = match.group(1) or b'' + + if not adjust: + if f: + f.close() + self._fileop.copy_file(script, outname) + if self.set_mode: + self._fileop.set_executable_mode([outname]) + filenames.append(outname) + else: + logger.info('copying and adjusting %s -> %s', script, + self.target_dir) + if not self._fileop.dry_run: + encoding, lines = detect_encoding(f.readline) + f.seek(0) + shebang = self._get_shebang(encoding, post_interp) + if b'pythonw' in first_line: # pragma: no cover + ext = 'pyw' + else: + ext = 'py' + n = os.path.basename(outname) + self._write_script([n], shebang, f.read(), filenames, ext) + if f: + f.close() + + @property + def dry_run(self): + return self._fileop.dry_run + + @dry_run.setter + def dry_run(self, value): + self._fileop.dry_run = value + + if os.name == 'nt' or (os.name == 'java' and os._name == 'nt'): # pragma: no cover + # Executable launcher support. + # Launchers are from https://bitbucket.org/vinay.sajip/simple_launcher/ + + def _get_launcher(self, kind): + if struct.calcsize('P') == 8: # 64-bit + bits = '64' + else: + bits = '32' + name = '%s%s.exe' % (kind, bits) + # Issue 31: don't hardcode an absolute package name, but + # determine it relative to the current package + distlib_package = __name__.rsplit('.', 1)[0] + resource = finder(distlib_package).find(name) + if not resource: + msg = ('Unable to find resource %s in package %s' % (name, + distlib_package)) + raise ValueError(msg) + return resource.bytes + + # Public API follows + + def make(self, specification, options=None): + """ + Make a script. + + :param specification: The specification, which is either a valid export + entry specification (to make a script from a + callable) or a filename (to make a script by + copying from a source location). + :param options: A dictionary of options controlling script generation. + :return: A list of all absolute pathnames written to. + """ + filenames = [] + entry = get_export_entry(specification) + if entry is None: + self._copy_script(specification, filenames) + else: + self._make_script(entry, filenames, options=options) + return filenames + + def make_multiple(self, specifications, options=None): + """ + Take a list of specifications and make scripts from them, + :param specifications: A list of specifications. + :return: A list of all absolute pathnames written to, + """ + filenames = [] + for specification in specifications: + filenames.extend(self.make(specification, options)) + return filenames diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/t32.exe b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/t32.exe new file mode 100644 index 0000000000000000000000000000000000000000..8932a18e4596952373a38c60b81b7116d4ef9ee8 GIT binary patch literal 96768 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 F{{j_Hb~FG0 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/t64.exe b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/t64.exe new file mode 100644 index 0000000000000000000000000000000000000000..325b8057c08cf7113d4fd889991fa5638d443793 GIT binary patch literal 105984 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

^h^N4aZyJe%k(7BL*-gn=9``8`j0CuR45%cHI z_uuQ8!-|TEvJ}r=zF@%uKc8U@W1eNxUymJ(e45Tb6KDNieQcKe?L-gR8zZj^wFmi= z{5sAxrfP3BOZz~T$3h=Gi%jFg1%D>!6t*l^`zH2G#1PiYtvOBSI#q&y?8qN57P^LA zq9U)rQU+*y!XEgsGMCJM7yWOS+9lW~^axz>9gyv{Pu^qsBg%ZkfzkaN`$zV#>=oFn zwANnf4&g*eu~pAMC~1dl8FZ-^aeQgZ7=osPU=58@oke z55pen;eU@Z`iL!`$;1-VA&$VF4gN7ttU>relx5d-_x=|95B47HeeiYJZ$$38(ddJH zcrW3>{OR2@KF^H}gAbdZDX=AzyZHSizB_(9`v&$-69)D4WBjSaY@YVD`kl8;nl#Cu z5h1U}Tp}-l|Nde9w|3Pc@Aps8-X~fh_EGq!b-~*$a&nv>05-_n;)z{t+vW|PpX{Oj zKE#i|Gsq9Jhpor%Fqiu6y5}jjnz?*$b)h|UO;3NGd-k|9?ZqeVXL!9~vaIO0E8bVb zejzv5ZG0}~1A7{a3!hob11v4ihxvzh!S5>3I?4E~N9+^m8@sHve^M+wb{f3t2VUsD z*C*C&;z_`=&t~mbE@mHC`k7cGl3rKU9U84p?fzGxTg1q z)-Ai@eQSs49?#VDZ(BQ5_sXt#*VAn)X1Lk5l>kvHP6SDZX>#ITM7@`jxR;sQ>OG+Pe$CuXbGOdj zGq+|zTtQMnhk{-O{R=KF7*}vZ!OVhr1xpLo6l^NkTCk^}W?@_*Z|>hH7&o`>+{q8j zm_Kv=-1+n7FPgt}{>u4l=C7T3KtbFEnHc+rVzeuEi5hE<2hHiD6S}>D5l co{tw5U0O7=?|={2,3}|[~!]=)\s*') +MARKER_OP = re.compile(r'^((<=?)|(>=?)|={2,3}|[~!]=|in|not\s+in)\s*') +OR = re.compile(r'^or\b\s*') +AND = re.compile(r'^and\b\s*') +NON_SPACE = re.compile(r'(\S+)\s*') +STRING_CHUNK = re.compile(r'([\s\w\.{}()*+#:;,/?!~`@$%^&=|<>\[\]-]+)') + + +def parse_marker(marker_string): + """ + Parse a marker string and return a dictionary containing a marker expression. + + The dictionary will contain keys "op", "lhs" and "rhs" for non-terminals in + the expression grammar, or strings. A string contained in quotes is to be + interpreted as a literal string, and a string not contained in quotes is a + variable (such as os_name). + """ + def marker_var(remaining): + # either identifier, or literal string + m = IDENTIFIER.match(remaining) + if m: + result = m.groups()[0] + remaining = remaining[m.end():] + elif not remaining: + raise SyntaxError('unexpected end of input') + else: + q = remaining[0] + if q not in '\'"': + raise SyntaxError('invalid expression: %s' % remaining) + oq = '\'"'.replace(q, '') + remaining = remaining[1:] + parts = [q] + while remaining: + # either a string chunk, or oq, or q to terminate + if remaining[0] == q: + break + elif remaining[0] == oq: + parts.append(oq) + remaining = remaining[1:] + else: + m = STRING_CHUNK.match(remaining) + if not m: + raise SyntaxError('error in string literal: %s' % remaining) + parts.append(m.groups()[0]) + remaining = remaining[m.end():] + else: + s = ''.join(parts) + raise SyntaxError('unterminated string: %s' % s) + parts.append(q) + result = ''.join(parts) + remaining = remaining[1:].lstrip() # skip past closing quote + return result, remaining + + def marker_expr(remaining): + if remaining and remaining[0] == '(': + result, remaining = marker(remaining[1:].lstrip()) + if remaining[0] != ')': + raise SyntaxError('unterminated parenthesis: %s' % remaining) + remaining = remaining[1:].lstrip() + else: + lhs, remaining = marker_var(remaining) + while remaining: + m = MARKER_OP.match(remaining) + if not m: + break + op = m.groups()[0] + remaining = remaining[m.end():] + rhs, remaining = marker_var(remaining) + lhs = {'op': op, 'lhs': lhs, 'rhs': rhs} + result = lhs + return result, remaining + + def marker_and(remaining): + lhs, remaining = marker_expr(remaining) + while remaining: + m = AND.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_expr(remaining) + lhs = {'op': 'and', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + def marker(remaining): + lhs, remaining = marker_and(remaining) + while remaining: + m = OR.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_and(remaining) + lhs = {'op': 'or', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + return marker(marker_string) + + +def parse_requirement(req): + """ + Parse a requirement passed in as a string. Return a Container + whose attributes contain the various parts of the requirement. + """ + remaining = req.strip() + if not remaining or remaining.startswith('#'): + return None + m = IDENTIFIER.match(remaining) + if not m: + raise SyntaxError('name expected: %s' % remaining) + distname = m.groups()[0] + remaining = remaining[m.end():] + extras = mark_expr = versions = uri = None + if remaining and remaining[0] == '[': + i = remaining.find(']', 1) + if i < 0: + raise SyntaxError('unterminated extra: %s' % remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + extras = [] + while s: + m = IDENTIFIER.match(s) + if not m: + raise SyntaxError('malformed extra: %s' % s) + extras.append(m.groups()[0]) + s = s[m.end():] + if not s: + break + if s[0] != ',': + raise SyntaxError('comma expected in extras: %s' % s) + s = s[1:].lstrip() + if not extras: + extras = None + if remaining: + if remaining[0] == '@': + # it's a URI + remaining = remaining[1:].lstrip() + m = NON_SPACE.match(remaining) + if not m: + raise SyntaxError('invalid URI: %s' % remaining) + uri = m.groups()[0] + t = urlparse(uri) + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not (t.scheme and t.netloc): + raise SyntaxError('Invalid URL: %s' % uri) + remaining = remaining[m.end():].lstrip() + else: + + def get_versions(ver_remaining): + """ + Return a list of operator, version tuples if any are + specified, else None. + """ + m = COMPARE_OP.match(ver_remaining) + versions = None + if m: + versions = [] + while True: + op = m.groups()[0] + ver_remaining = ver_remaining[m.end():] + m = VERSION_IDENTIFIER.match(ver_remaining) + if not m: + raise SyntaxError('invalid version: %s' % ver_remaining) + v = m.groups()[0] + versions.append((op, v)) + ver_remaining = ver_remaining[m.end():] + if not ver_remaining or ver_remaining[0] != ',': + break + ver_remaining = ver_remaining[1:].lstrip() + m = COMPARE_OP.match(ver_remaining) + if not m: + raise SyntaxError('invalid constraint: %s' % ver_remaining) + if not versions: + versions = None + return versions, ver_remaining + + if remaining[0] != '(': + versions, remaining = get_versions(remaining) + else: + i = remaining.find(')', 1) + if i < 0: + raise SyntaxError('unterminated parenthesis: %s' % remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + # As a special diversion from PEP 508, allow a version number + # a.b.c in parentheses as a synonym for ~= a.b.c (because this + # is allowed in earlier PEPs) + if COMPARE_OP.match(s): + versions, _ = get_versions(s) + else: + m = VERSION_IDENTIFIER.match(s) + if not m: + raise SyntaxError('invalid constraint: %s' % s) + v = m.groups()[0] + s = s[m.end():].lstrip() + if s: + raise SyntaxError('invalid constraint: %s' % s) + versions = [('~=', v)] + + if remaining: + if remaining[0] != ';': + raise SyntaxError('invalid requirement: %s' % remaining) + remaining = remaining[1:].lstrip() + + mark_expr, remaining = parse_marker(remaining) + + if remaining and remaining[0] != '#': + raise SyntaxError('unexpected trailing data: %s' % remaining) + + if not versions: + rs = distname + else: + rs = '%s %s' % (distname, ', '.join(['%s %s' % con for con in versions])) + return Container(name=distname, extras=extras, constraints=versions, + marker=mark_expr, url=uri, requirement=rs) + + +def get_resources_dests(resources_root, rules): + """Find destinations for resources files""" + + def get_rel_path(root, path): + # normalizes and returns a lstripped-/-separated path + root = root.replace(os.path.sep, '/') + path = path.replace(os.path.sep, '/') + assert path.startswith(root) + return path[len(root):].lstrip('/') + + destinations = {} + for base, suffix, dest in rules: + prefix = os.path.join(resources_root, base) + for abs_base in iglob(prefix): + abs_glob = os.path.join(abs_base, suffix) + for abs_path in iglob(abs_glob): + resource_file = get_rel_path(resources_root, abs_path) + if dest is None: # remove the entry if it was here + destinations.pop(resource_file, None) + else: + rel_path = get_rel_path(abs_base, abs_path) + rel_dest = dest.replace(os.path.sep, '/').rstrip('/') + destinations[resource_file] = rel_dest + '/' + rel_path + return destinations + + +def in_venv(): + if hasattr(sys, 'real_prefix'): + # virtualenv venvs + result = True + else: + # PEP 405 venvs + result = sys.prefix != getattr(sys, 'base_prefix', sys.prefix) + return result + + +def get_executable(): +# The __PYVENV_LAUNCHER__ dance is apparently no longer needed, as +# changes to the stub launcher mean that sys.executable always points +# to the stub on OS X +# if sys.platform == 'darwin' and ('__PYVENV_LAUNCHER__' +# in os.environ): +# result = os.environ['__PYVENV_LAUNCHER__'] +# else: +# result = sys.executable +# return result + result = os.path.normcase(sys.executable) + if not isinstance(result, text_type): + result = fsdecode(result) + return result + + +def proceed(prompt, allowed_chars, error_prompt=None, default=None): + p = prompt + while True: + s = raw_input(p) + p = prompt + if not s and default: + s = default + if s: + c = s[0].lower() + if c in allowed_chars: + break + if error_prompt: + p = '%c: %s\n%s' % (c, error_prompt, prompt) + return c + + +def extract_by_key(d, keys): + if isinstance(keys, string_types): + keys = keys.split() + result = {} + for key in keys: + if key in d: + result[key] = d[key] + return result + +def read_exports(stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + # Try to load as JSON, falling back on legacy format + data = stream.read() + stream = StringIO(data) + try: + jdata = json.load(stream) + result = jdata['extensions']['python.exports']['exports'] + for group, entries in result.items(): + for k, v in entries.items(): + s = '%s = %s' % (k, v) + entry = get_export_entry(s) + assert entry is not None + entries[k] = entry + return result + except Exception: + stream.seek(0, 0) + + def read_stream(cp, stream): + if hasattr(cp, 'read_file'): + cp.read_file(stream) + else: + cp.readfp(stream) + + cp = configparser.ConfigParser() + try: + read_stream(cp, stream) + except configparser.MissingSectionHeaderError: + stream.close() + data = textwrap.dedent(data) + stream = StringIO(data) + read_stream(cp, stream) + + result = {} + for key in cp.sections(): + result[key] = entries = {} + for name, value in cp.items(key): + s = '%s = %s' % (name, value) + entry = get_export_entry(s) + assert entry is not None + #entry.dist = self + entries[name] = entry + return result + + +def write_exports(exports, stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getwriter('utf-8')(stream) + cp = configparser.ConfigParser() + for k, v in exports.items(): + # TODO check k, v for valid values + cp.add_section(k) + for entry in v.values(): + if entry.suffix is None: + s = entry.prefix + else: + s = '%s:%s' % (entry.prefix, entry.suffix) + if entry.flags: + s = '%s [%s]' % (s, ', '.join(entry.flags)) + cp.set(k, entry.name, s) + cp.write(stream) + + +@contextlib.contextmanager +def tempdir(): + td = tempfile.mkdtemp() + try: + yield td + finally: + shutil.rmtree(td) + +@contextlib.contextmanager +def chdir(d): + cwd = os.getcwd() + try: + os.chdir(d) + yield + finally: + os.chdir(cwd) + + +@contextlib.contextmanager +def socket_timeout(seconds=15): + cto = socket.getdefaulttimeout() + try: + socket.setdefaulttimeout(seconds) + yield + finally: + socket.setdefaulttimeout(cto) + + +class cached_property(object): + def __init__(self, func): + self.func = func + #for attr in ('__name__', '__module__', '__doc__'): + # setattr(self, attr, getattr(func, attr, None)) + + def __get__(self, obj, cls=None): + if obj is None: + return self + value = self.func(obj) + object.__setattr__(obj, self.func.__name__, value) + #obj.__dict__[self.func.__name__] = value = self.func(obj) + return value + +def convert_path(pathname): + """Return 'pathname' as a name that will work on the native filesystem. + + The path is split on '/' and put back together again using the current + directory separator. Needed because filenames in the setup script are + always supplied in Unix style, and have to be converted to the local + convention before we can actually use them in the filesystem. Raises + ValueError on non-Unix-ish systems if 'pathname' either starts or + ends with a slash. + """ + if os.sep == '/': + return pathname + if not pathname: + return pathname + if pathname[0] == '/': + raise ValueError("path '%s' cannot be absolute" % pathname) + if pathname[-1] == '/': + raise ValueError("path '%s' cannot end with '/'" % pathname) + + paths = pathname.split('/') + while os.curdir in paths: + paths.remove(os.curdir) + if not paths: + return os.curdir + return os.path.join(*paths) + + +class FileOperator(object): + def __init__(self, dry_run=False): + self.dry_run = dry_run + self.ensured = set() + self._init_record() + + def _init_record(self): + self.record = False + self.files_written = set() + self.dirs_created = set() + + def record_as_written(self, path): + if self.record: + self.files_written.add(path) + + def newer(self, source, target): + """Tell if the target is newer than the source. + + Returns true if 'source' exists and is more recently modified than + 'target', or if 'source' exists and 'target' doesn't. + + Returns false if both exist and 'target' is the same age or younger + than 'source'. Raise PackagingFileError if 'source' does not exist. + + Note that this test is not very accurate: files created in the same + second will have the same "age". + """ + if not os.path.exists(source): + raise DistlibException("file '%r' does not exist" % + os.path.abspath(source)) + if not os.path.exists(target): + return True + + return os.stat(source).st_mtime > os.stat(target).st_mtime + + def copy_file(self, infile, outfile, check=True): + """Copy a file respecting dry-run and force flags. + """ + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying %s to %s', infile, outfile) + if not self.dry_run: + msg = None + if check: + if os.path.islink(outfile): + msg = '%s is a symlink' % outfile + elif os.path.exists(outfile) and not os.path.isfile(outfile): + msg = '%s is a non-regular file' % outfile + if msg: + raise ValueError(msg + ' which would be overwritten') + shutil.copyfile(infile, outfile) + self.record_as_written(outfile) + + def copy_stream(self, instream, outfile, encoding=None): + assert not os.path.isdir(outfile) + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying stream %s to %s', instream, outfile) + if not self.dry_run: + if encoding is None: + outstream = open(outfile, 'wb') + else: + outstream = codecs.open(outfile, 'w', encoding=encoding) + try: + shutil.copyfileobj(instream, outstream) + finally: + outstream.close() + self.record_as_written(outfile) + + def write_binary_file(self, path, data): + self.ensure_dir(os.path.dirname(path)) + if not self.dry_run: + if os.path.exists(path): + os.remove(path) + with open(path, 'wb') as f: + f.write(data) + self.record_as_written(path) + + def write_text_file(self, path, data, encoding): + self.write_binary_file(path, data.encode(encoding)) + + def set_mode(self, bits, mask, files): + if os.name == 'posix' or (os.name == 'java' and os._name == 'posix'): + # Set the executable bits (owner, group, and world) on + # all the files specified. + for f in files: + if self.dry_run: + logger.info("changing mode of %s", f) + else: + mode = (os.stat(f).st_mode | bits) & mask + logger.info("changing mode of %s to %o", f, mode) + os.chmod(f, mode) + + set_executable_mode = lambda s, f: s.set_mode(0o555, 0o7777, f) + + def ensure_dir(self, path): + path = os.path.abspath(path) + if path not in self.ensured and not os.path.exists(path): + self.ensured.add(path) + d, f = os.path.split(path) + self.ensure_dir(d) + logger.info('Creating %s' % path) + if not self.dry_run: + os.mkdir(path) + if self.record: + self.dirs_created.add(path) + + def byte_compile(self, path, optimize=False, force=False, prefix=None, hashed_invalidation=False): + dpath = cache_from_source(path, not optimize) + logger.info('Byte-compiling %s to %s', path, dpath) + if not self.dry_run: + if force or self.newer(path, dpath): + if not prefix: + diagpath = None + else: + assert path.startswith(prefix) + diagpath = path[len(prefix):] + compile_kwargs = {} + if hashed_invalidation and hasattr(py_compile, 'PycInvalidationMode'): + compile_kwargs['invalidation_mode'] = py_compile.PycInvalidationMode.CHECKED_HASH + py_compile.compile(path, dpath, diagpath, True, **compile_kwargs) # raise error + self.record_as_written(dpath) + return dpath + + def ensure_removed(self, path): + if os.path.exists(path): + if os.path.isdir(path) and not os.path.islink(path): + logger.debug('Removing directory tree at %s', path) + if not self.dry_run: + shutil.rmtree(path) + if self.record: + if path in self.dirs_created: + self.dirs_created.remove(path) + else: + if os.path.islink(path): + s = 'link' + else: + s = 'file' + logger.debug('Removing %s %s', s, path) + if not self.dry_run: + os.remove(path) + if self.record: + if path in self.files_written: + self.files_written.remove(path) + + def is_writable(self, path): + result = False + while not result: + if os.path.exists(path): + result = os.access(path, os.W_OK) + break + parent = os.path.dirname(path) + if parent == path: + break + path = parent + return result + + def commit(self): + """ + Commit recorded changes, turn off recording, return + changes. + """ + assert self.record + result = self.files_written, self.dirs_created + self._init_record() + return result + + def rollback(self): + if not self.dry_run: + for f in list(self.files_written): + if os.path.exists(f): + os.remove(f) + # dirs should all be empty now, except perhaps for + # __pycache__ subdirs + # reverse so that subdirs appear before their parents + dirs = sorted(self.dirs_created, reverse=True) + for d in dirs: + flist = os.listdir(d) + if flist: + assert flist == ['__pycache__'] + sd = os.path.join(d, flist[0]) + os.rmdir(sd) + os.rmdir(d) # should fail if non-empty + self._init_record() + +def resolve(module_name, dotted_path): + if module_name in sys.modules: + mod = sys.modules[module_name] + else: + mod = __import__(module_name) + if dotted_path is None: + result = mod + else: + parts = dotted_path.split('.') + result = getattr(mod, parts.pop(0)) + for p in parts: + result = getattr(result, p) + return result + + +class ExportEntry(object): + def __init__(self, name, prefix, suffix, flags): + self.name = name + self.prefix = prefix + self.suffix = suffix + self.flags = flags + + @cached_property + def value(self): + return resolve(self.prefix, self.suffix) + + def __repr__(self): # pragma: no cover + return '' % (self.name, self.prefix, + self.suffix, self.flags) + + def __eq__(self, other): + if not isinstance(other, ExportEntry): + result = False + else: + result = (self.name == other.name and + self.prefix == other.prefix and + self.suffix == other.suffix and + self.flags == other.flags) + return result + + __hash__ = object.__hash__ + + +ENTRY_RE = re.compile(r'''(?P(\w|[-.+])+) + \s*=\s*(?P(\w+)([:\.]\w+)*) + \s*(\[\s*(?P[\w-]+(=\w+)?(,\s*\w+(=\w+)?)*)\s*\])? + ''', re.VERBOSE) + +def get_export_entry(specification): + m = ENTRY_RE.search(specification) + if not m: + result = None + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + else: + d = m.groupdict() + name = d['name'] + path = d['callable'] + colons = path.count(':') + if colons == 0: + prefix, suffix = path, None + else: + if colons != 1: + raise DistlibException("Invalid specification " + "'%s'" % specification) + prefix, suffix = path.split(':') + flags = d['flags'] + if flags is None: + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + flags = [] + else: + flags = [f.strip() for f in flags.split(',')] + result = ExportEntry(name, prefix, suffix, flags) + return result + + +def get_cache_base(suffix=None): + """ + Return the default base location for distlib caches. If the directory does + not exist, it is created. Use the suffix provided for the base directory, + and default to '.distlib' if it isn't provided. + + On Windows, if LOCALAPPDATA is defined in the environment, then it is + assumed to be a directory, and will be the parent directory of the result. + On POSIX, and on Windows if LOCALAPPDATA is not defined, the user's home + directory - using os.expanduser('~') - will be the parent directory of + the result. + + The result is just the directory '.distlib' in the parent directory as + determined above, or with the name specified with ``suffix``. + """ + if suffix is None: + suffix = '.distlib' + if os.name == 'nt' and 'LOCALAPPDATA' in os.environ: + result = os.path.expandvars('$localappdata') + else: + # Assume posix, or old Windows + result = os.path.expanduser('~') + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if os.path.isdir(result): + usable = os.access(result, os.W_OK) + if not usable: + logger.warning('Directory exists but is not writable: %s', result) + else: + try: + os.makedirs(result) + usable = True + except OSError: + logger.warning('Unable to create %s', result, exc_info=True) + usable = False + if not usable: + result = tempfile.mkdtemp() + logger.warning('Default location unusable, using %s', result) + return os.path.join(result, suffix) + + +def path_to_cache_dir(path): + """ + Convert an absolute path to a directory name for use in a cache. + + The algorithm used is: + + #. On Windows, any ``':'`` in the drive is replaced with ``'---'``. + #. Any occurrence of ``os.sep`` is replaced with ``'--'``. + #. ``'.cache'`` is appended. + """ + d, p = os.path.splitdrive(os.path.abspath(path)) + if d: + d = d.replace(':', '---') + p = p.replace(os.sep, '--') + return d + p + '.cache' + + +def ensure_slash(s): + if not s.endswith('/'): + return s + '/' + return s + + +def parse_credentials(netloc): + username = password = None + if '@' in netloc: + prefix, netloc = netloc.rsplit('@', 1) + if ':' not in prefix: + username = prefix + else: + username, password = prefix.split(':', 1) + if username: + username = unquote(username) + if password: + password = unquote(password) + return username, password, netloc + + +def get_process_umask(): + result = os.umask(0o22) + os.umask(result) + return result + +def is_string_sequence(seq): + result = True + i = None + for i, s in enumerate(seq): + if not isinstance(s, string_types): + result = False + break + assert i is not None + return result + +PROJECT_NAME_AND_VERSION = re.compile('([a-z0-9_]+([.-][a-z_][a-z0-9_]*)*)-' + '([a-z0-9_.+-]+)', re.I) +PYTHON_VERSION = re.compile(r'-py(\d\.?\d?)') + + +def split_filename(filename, project_name=None): + """ + Extract name, version, python version from a filename (no extension) + + Return name, version, pyver or None + """ + result = None + pyver = None + filename = unquote(filename).replace(' ', '-') + m = PYTHON_VERSION.search(filename) + if m: + pyver = m.group(1) + filename = filename[:m.start()] + if project_name and len(filename) > len(project_name) + 1: + m = re.match(re.escape(project_name) + r'\b', filename) + if m: + n = m.end() + result = filename[:n], filename[n + 1:], pyver + if result is None: + m = PROJECT_NAME_AND_VERSION.match(filename) + if m: + result = m.group(1), m.group(3), pyver + return result + +# Allow spaces in name because of legacy dists like "Twisted Core" +NAME_VERSION_RE = re.compile(r'(?P[\w .-]+)\s*' + r'\(\s*(?P[^\s)]+)\)$') + +def parse_name_and_version(p): + """ + A utility method used to get name and version from a string. + + From e.g. a Provides-Dist value. + + :param p: A value in a form 'foo (1.0)' + :return: The name and version as a tuple. + """ + m = NAME_VERSION_RE.match(p) + if not m: + raise DistlibException('Ill-formed name/version string: \'%s\'' % p) + d = m.groupdict() + return d['name'].strip().lower(), d['ver'] + +def get_extras(requested, available): + result = set() + requested = set(requested or []) + available = set(available or []) + if '*' in requested: + requested.remove('*') + result |= available + for r in requested: + if r == '-': + result.add(r) + elif r.startswith('-'): + unwanted = r[1:] + if unwanted not in available: + logger.warning('undeclared extra: %s' % unwanted) + if unwanted in result: + result.remove(unwanted) + else: + if r not in available: + logger.warning('undeclared extra: %s' % r) + result.add(r) + return result +# +# Extended metadata functionality +# + +def _get_external_data(url): + result = {} + try: + # urlopen might fail if it runs into redirections, + # because of Python issue #13696. Fixed in locators + # using a custom redirect handler. + resp = urlopen(url) + headers = resp.info() + ct = headers.get('Content-Type') + if not ct.startswith('application/json'): + logger.debug('Unexpected response for JSON request: %s', ct) + else: + reader = codecs.getreader('utf-8')(resp) + #data = reader.read().decode('utf-8') + #result = json.loads(data) + result = json.load(reader) + except Exception as e: + logger.exception('Failed to get external data for %s: %s', url, e) + return result + +_external_data_base_url = 'https://www.red-dove.com/pypi/projects/' + +def get_project_data(name): + url = '%s/%s/project.json' % (name[0].upper(), name) + url = urljoin(_external_data_base_url, url) + result = _get_external_data(url) + return result + +def get_package_data(name, version): + url = '%s/%s/package-%s.json' % (name[0].upper(), name, version) + url = urljoin(_external_data_base_url, url) + return _get_external_data(url) + + +class Cache(object): + """ + A class implementing a cache for resources that need to live in the file system + e.g. shared libraries. This class was moved from resources to here because it + could be used by other modules, e.g. the wheel module. + """ + + def __init__(self, base): + """ + Initialise an instance. + + :param base: The base directory where the cache should be located. + """ + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if not os.path.isdir(base): # pragma: no cover + os.makedirs(base) + if (os.stat(base).st_mode & 0o77) != 0: + logger.warning('Directory \'%s\' is not private', base) + self.base = os.path.abspath(os.path.normpath(base)) + + def prefix_to_dir(self, prefix): + """ + Converts a resource prefix to a directory name in the cache. + """ + return path_to_cache_dir(prefix) + + def clear(self): + """ + Clear the cache. + """ + not_removed = [] + for fn in os.listdir(self.base): + fn = os.path.join(self.base, fn) + try: + if os.path.islink(fn) or os.path.isfile(fn): + os.remove(fn) + elif os.path.isdir(fn): + shutil.rmtree(fn) + except Exception: + not_removed.append(fn) + return not_removed + + +class EventMixin(object): + """ + A very simple publish/subscribe system. + """ + def __init__(self): + self._subscribers = {} + + def add(self, event, subscriber, append=True): + """ + Add a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be added (and called when the + event is published). + :param append: Whether to append or prepend the subscriber to an + existing subscriber list for the event. + """ + subs = self._subscribers + if event not in subs: + subs[event] = deque([subscriber]) + else: + sq = subs[event] + if append: + sq.append(subscriber) + else: + sq.appendleft(subscriber) + + def remove(self, event, subscriber): + """ + Remove a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be removed. + """ + subs = self._subscribers + if event not in subs: + raise ValueError('No subscribers: %r' % event) + subs[event].remove(subscriber) + + def get_subscribers(self, event): + """ + Return an iterator for the subscribers for an event. + :param event: The event to return subscribers for. + """ + return iter(self._subscribers.get(event, ())) + + def publish(self, event, *args, **kwargs): + """ + Publish a event and return a list of values returned by its + subscribers. + + :param event: The event to publish. + :param args: The positional arguments to pass to the event's + subscribers. + :param kwargs: The keyword arguments to pass to the event's + subscribers. + """ + result = [] + for subscriber in self.get_subscribers(event): + try: + value = subscriber(event, *args, **kwargs) + except Exception: + logger.exception('Exception during event publication') + value = None + result.append(value) + logger.debug('publish %s: args = %s, kwargs = %s, result = %s', + event, args, kwargs, result) + return result + +# +# Simple sequencing +# +class Sequencer(object): + def __init__(self): + self._preds = {} + self._succs = {} + self._nodes = set() # nodes with no preds/succs + + def add_node(self, node): + self._nodes.add(node) + + def remove_node(self, node, edges=False): + if node in self._nodes: + self._nodes.remove(node) + if edges: + for p in set(self._preds.get(node, ())): + self.remove(p, node) + for s in set(self._succs.get(node, ())): + self.remove(node, s) + # Remove empties + for k, v in list(self._preds.items()): + if not v: + del self._preds[k] + for k, v in list(self._succs.items()): + if not v: + del self._succs[k] + + def add(self, pred, succ): + assert pred != succ + self._preds.setdefault(succ, set()).add(pred) + self._succs.setdefault(pred, set()).add(succ) + + def remove(self, pred, succ): + assert pred != succ + try: + preds = self._preds[succ] + succs = self._succs[pred] + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of anything' % succ) + try: + preds.remove(pred) + succs.remove(succ) + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of %r' % (succ, pred)) + + def is_step(self, step): + return (step in self._preds or step in self._succs or + step in self._nodes) + + def get_steps(self, final): + if not self.is_step(final): + raise ValueError('Unknown: %r' % final) + result = [] + todo = [] + seen = set() + todo.append(final) + while todo: + step = todo.pop(0) + if step in seen: + # if a step was already seen, + # move it to the end (so it will appear earlier + # when reversed on return) ... but not for the + # final step, as that would be confusing for + # users + if step != final: + result.remove(step) + result.append(step) + else: + seen.add(step) + result.append(step) + preds = self._preds.get(step, ()) + todo.extend(preds) + return reversed(result) + + @property + def strong_connections(self): + #http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm + index_counter = [0] + stack = [] + lowlinks = {} + index = {} + result = [] + + graph = self._succs + + def strongconnect(node): + # set the depth index for this node to the smallest unused index + index[node] = index_counter[0] + lowlinks[node] = index_counter[0] + index_counter[0] += 1 + stack.append(node) + + # Consider successors + try: + successors = graph[node] + except Exception: + successors = [] + for successor in successors: + if successor not in lowlinks: + # Successor has not yet been visited + strongconnect(successor) + lowlinks[node] = min(lowlinks[node],lowlinks[successor]) + elif successor in stack: + # the successor is in the stack and hence in the current + # strongly connected component (SCC) + lowlinks[node] = min(lowlinks[node],index[successor]) + + # If `node` is a root node, pop the stack and generate an SCC + if lowlinks[node] == index[node]: + connected_component = [] + + while True: + successor = stack.pop() + connected_component.append(successor) + if successor == node: break + component = tuple(connected_component) + # storing the result + result.append(component) + + for node in graph: + if node not in lowlinks: + strongconnect(node) + + return result + + @property + def dot(self): + result = ['digraph G {'] + for succ in self._preds: + preds = self._preds[succ] + for pred in preds: + result.append(' %s -> %s;' % (pred, succ)) + for node in self._nodes: + result.append(' %s;' % node) + result.append('}') + return '\n'.join(result) + +# +# Unarchiving functionality for zip, tar, tgz, tbz, whl +# + +ARCHIVE_EXTENSIONS = ('.tar.gz', '.tar.bz2', '.tar', '.zip', + '.tgz', '.tbz', '.whl') + +def unarchive(archive_filename, dest_dir, format=None, check=True): + + def check_path(path): + if not isinstance(path, text_type): + path = path.decode('utf-8') + p = os.path.abspath(os.path.join(dest_dir, path)) + if not p.startswith(dest_dir) or p[plen] != os.sep: + raise ValueError('path outside destination: %r' % p) + + dest_dir = os.path.abspath(dest_dir) + plen = len(dest_dir) + archive = None + if format is None: + if archive_filename.endswith(('.zip', '.whl')): + format = 'zip' + elif archive_filename.endswith(('.tar.gz', '.tgz')): + format = 'tgz' + mode = 'r:gz' + elif archive_filename.endswith(('.tar.bz2', '.tbz')): + format = 'tbz' + mode = 'r:bz2' + elif archive_filename.endswith('.tar'): + format = 'tar' + mode = 'r' + else: # pragma: no cover + raise ValueError('Unknown format for %r' % archive_filename) + try: + if format == 'zip': + archive = ZipFile(archive_filename, 'r') + if check: + names = archive.namelist() + for name in names: + check_path(name) + else: + archive = tarfile.open(archive_filename, mode) + if check: + names = archive.getnames() + for name in names: + check_path(name) + if format != 'zip' and sys.version_info[0] < 3: + # See Python issue 17153. If the dest path contains Unicode, + # tarfile extraction fails on Python 2.x if a member path name + # contains non-ASCII characters - it leads to an implicit + # bytes -> unicode conversion using ASCII to decode. + for tarinfo in archive.getmembers(): + if not isinstance(tarinfo.name, text_type): + tarinfo.name = tarinfo.name.decode('utf-8') + archive.extractall(dest_dir) + + finally: + if archive: + archive.close() + + +def zip_dir(directory): + """zip a directory tree into a BytesIO object""" + result = io.BytesIO() + dlen = len(directory) + with ZipFile(result, "w") as zf: + for root, dirs, files in os.walk(directory): + for name in files: + full = os.path.join(root, name) + rel = root[dlen:] + dest = os.path.join(rel, name) + zf.write(full, dest) + return result + +# +# Simple progress bar +# + +UNITS = ('', 'K', 'M', 'G','T','P') + + +class Progress(object): + unknown = 'UNKNOWN' + + def __init__(self, minval=0, maxval=100): + assert maxval is None or maxval >= minval + self.min = self.cur = minval + self.max = maxval + self.started = None + self.elapsed = 0 + self.done = False + + def update(self, curval): + assert self.min <= curval + assert self.max is None or curval <= self.max + self.cur = curval + now = time.time() + if self.started is None: + self.started = now + else: + self.elapsed = now - self.started + + def increment(self, incr): + assert incr >= 0 + self.update(self.cur + incr) + + def start(self): + self.update(self.min) + return self + + def stop(self): + if self.max is not None: + self.update(self.max) + self.done = True + + @property + def maximum(self): + return self.unknown if self.max is None else self.max + + @property + def percentage(self): + if self.done: + result = '100 %' + elif self.max is None: + result = ' ?? %' + else: + v = 100.0 * (self.cur - self.min) / (self.max - self.min) + result = '%3d %%' % v + return result + + def format_duration(self, duration): + if (duration <= 0) and self.max is None or self.cur == self.min: + result = '??:??:??' + #elif duration < 1: + # result = '--:--:--' + else: + result = time.strftime('%H:%M:%S', time.gmtime(duration)) + return result + + @property + def ETA(self): + if self.done: + prefix = 'Done' + t = self.elapsed + #import pdb; pdb.set_trace() + else: + prefix = 'ETA ' + if self.max is None: + t = -1 + elif self.elapsed == 0 or (self.cur == self.min): + t = 0 + else: + #import pdb; pdb.set_trace() + t = float(self.max - self.min) + t /= self.cur - self.min + t = (t - 1) * self.elapsed + return '%s: %s' % (prefix, self.format_duration(t)) + + @property + def speed(self): + if self.elapsed == 0: + result = 0.0 + else: + result = (self.cur - self.min) / self.elapsed + for unit in UNITS: + if result < 1000: + break + result /= 1000.0 + return '%d %sB/s' % (result, unit) + +# +# Glob functionality +# + +RICH_GLOB = re.compile(r'\{([^}]*)\}') +_CHECK_RECURSIVE_GLOB = re.compile(r'[^/\\,{]\*\*|\*\*[^/\\,}]') +_CHECK_MISMATCH_SET = re.compile(r'^[^{]*\}|\{[^}]*$') + + +def iglob(path_glob): + """Extended globbing function that supports ** and {opt1,opt2,opt3}.""" + if _CHECK_RECURSIVE_GLOB.search(path_glob): + msg = """invalid glob %r: recursive glob "**" must be used alone""" + raise ValueError(msg % path_glob) + if _CHECK_MISMATCH_SET.search(path_glob): + msg = """invalid glob %r: mismatching set marker '{' or '}'""" + raise ValueError(msg % path_glob) + return _iglob(path_glob) + + +def _iglob(path_glob): + rich_path_glob = RICH_GLOB.split(path_glob, 1) + if len(rich_path_glob) > 1: + assert len(rich_path_glob) == 3, rich_path_glob + prefix, set, suffix = rich_path_glob + for item in set.split(','): + for path in _iglob(''.join((prefix, item, suffix))): + yield path + else: + if '**' not in path_glob: + for item in std_iglob(path_glob): + yield item + else: + prefix, radical = path_glob.split('**', 1) + if prefix == '': + prefix = '.' + if radical == '': + radical = '*' + else: + # we support both + radical = radical.lstrip('/') + radical = radical.lstrip('\\') + for path, dir, files in os.walk(prefix): + path = os.path.normpath(path) + for fn in _iglob(os.path.join(path, radical)): + yield fn + +if ssl: + from .compat import (HTTPSHandler as BaseHTTPSHandler, match_hostname, + CertificateError) + + +# +# HTTPSConnection which verifies certificates/matches domains +# + + class HTTPSConnection(httplib.HTTPSConnection): + ca_certs = None # set this to the path to the certs file (.pem) + check_domain = True # only used if ca_certs is not None + + # noinspection PyPropertyAccess + def connect(self): + sock = socket.create_connection((self.host, self.port), self.timeout) + if getattr(self, '_tunnel_host', False): + self.sock = sock + self._tunnel() + + if not hasattr(ssl, 'SSLContext'): + # For 2.x + if self.ca_certs: + cert_reqs = ssl.CERT_REQUIRED + else: + cert_reqs = ssl.CERT_NONE + self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file, + cert_reqs=cert_reqs, + ssl_version=ssl.PROTOCOL_SSLv23, + ca_certs=self.ca_certs) + else: # pragma: no cover + context = ssl.SSLContext(ssl.PROTOCOL_SSLv23) + if hasattr(ssl, 'OP_NO_SSLv2'): + context.options |= ssl.OP_NO_SSLv2 + if self.cert_file: + context.load_cert_chain(self.cert_file, self.key_file) + kwargs = {} + if self.ca_certs: + context.verify_mode = ssl.CERT_REQUIRED + context.load_verify_locations(cafile=self.ca_certs) + if getattr(ssl, 'HAS_SNI', False): + kwargs['server_hostname'] = self.host + self.sock = context.wrap_socket(sock, **kwargs) + if self.ca_certs and self.check_domain: + try: + match_hostname(self.sock.getpeercert(), self.host) + logger.debug('Host verified: %s', self.host) + except CertificateError: # pragma: no cover + self.sock.shutdown(socket.SHUT_RDWR) + self.sock.close() + raise + + class HTTPSHandler(BaseHTTPSHandler): + def __init__(self, ca_certs, check_domain=True): + BaseHTTPSHandler.__init__(self) + self.ca_certs = ca_certs + self.check_domain = check_domain + + def _conn_maker(self, *args, **kwargs): + """ + This is called to create a connection instance. Normally you'd + pass a connection class to do_open, but it doesn't actually check for + a class, and just expects a callable. As long as we behave just as a + constructor would have, we should be OK. If it ever changes so that + we *must* pass a class, we'll create an UnsafeHTTPSConnection class + which just sets check_domain to False in the class definition, and + choose which one to pass to do_open. + """ + result = HTTPSConnection(*args, **kwargs) + if self.ca_certs: + result.ca_certs = self.ca_certs + result.check_domain = self.check_domain + return result + + def https_open(self, req): + try: + return self.do_open(self._conn_maker, req) + except URLError as e: + if 'certificate verify failed' in str(e.reason): + raise CertificateError('Unable to verify server certificate ' + 'for %s' % req.host) + else: + raise + + # + # To prevent against mixing HTTP traffic with HTTPS (examples: A Man-In-The- + # Middle proxy using HTTP listens on port 443, or an index mistakenly serves + # HTML containing a http://xyz link when it should be https://xyz), + # you can use the following handler class, which does not allow HTTP traffic. + # + # It works by inheriting from HTTPHandler - so build_opener won't add a + # handler for HTTP itself. + # + class HTTPSOnlyHandler(HTTPSHandler, HTTPHandler): + def http_open(self, req): + raise URLError('Unexpected HTTP request on what should be a secure ' + 'connection: %s' % req) + +# +# XML-RPC with timeouts +# + +_ver_info = sys.version_info[:2] + +if _ver_info == (2, 6): + class HTTP(httplib.HTTP): + def __init__(self, host='', port=None, **kwargs): + if port == 0: # 0 means use port 0, not the default port + port = None + self._setup(self._connection_class(host, port, **kwargs)) + + + if ssl: + class HTTPS(httplib.HTTPS): + def __init__(self, host='', port=None, **kwargs): + if port == 0: # 0 means use port 0, not the default port + port = None + self._setup(self._connection_class(host, port, **kwargs)) + + +class Transport(xmlrpclib.Transport): + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.Transport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, x509 = self.get_host_info(host) + if _ver_info == (2, 6): + result = HTTP(h, timeout=self.timeout) + else: + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPConnection(h) + result = self._connection[1] + return result + +if ssl: + class SafeTransport(xmlrpclib.SafeTransport): + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.SafeTransport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, kwargs = self.get_host_info(host) + if not kwargs: + kwargs = {} + kwargs['timeout'] = self.timeout + if _ver_info == (2, 6): + result = HTTPS(host, None, **kwargs) + else: + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPSConnection(h, None, + **kwargs) + result = self._connection[1] + return result + + +class ServerProxy(xmlrpclib.ServerProxy): + def __init__(self, uri, **kwargs): + self.timeout = timeout = kwargs.pop('timeout', None) + # The above classes only come into play if a timeout + # is specified + if timeout is not None: + scheme, _ = splittype(uri) + use_datetime = kwargs.get('use_datetime', 0) + if scheme == 'https': + tcls = SafeTransport + else: + tcls = Transport + kwargs['transport'] = t = tcls(timeout, use_datetime=use_datetime) + self.transport = t + xmlrpclib.ServerProxy.__init__(self, uri, **kwargs) + +# +# CSV functionality. This is provided because on 2.x, the csv module can't +# handle Unicode. However, we need to deal with Unicode in e.g. RECORD files. +# + +def _csv_open(fn, mode, **kwargs): + if sys.version_info[0] < 3: + mode += 'b' + else: + kwargs['newline'] = '' + # Python 3 determines encoding from locale. Force 'utf-8' + # file encoding to match other forced utf-8 encoding + kwargs['encoding'] = 'utf-8' + return open(fn, mode, **kwargs) + + +class CSVBase(object): + defaults = { + 'delimiter': str(','), # The strs are used because we need native + 'quotechar': str('"'), # str in the csv API (2.x won't take + 'lineterminator': str('\n') # Unicode) + } + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.stream.close() + + +class CSVReader(CSVBase): + def __init__(self, **kwargs): + if 'stream' in kwargs: + stream = kwargs['stream'] + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + self.stream = stream + else: + self.stream = _csv_open(kwargs['path'], 'r') + self.reader = csv.reader(self.stream, **self.defaults) + + def __iter__(self): + return self + + def next(self): + result = next(self.reader) + if sys.version_info[0] < 3: + for i, item in enumerate(result): + if not isinstance(item, text_type): + result[i] = item.decode('utf-8') + return result + + __next__ = next + +class CSVWriter(CSVBase): + def __init__(self, fn, **kwargs): + self.stream = _csv_open(fn, 'w') + self.writer = csv.writer(self.stream, **self.defaults) + + def writerow(self, row): + if sys.version_info[0] < 3: + r = [] + for item in row: + if isinstance(item, text_type): + item = item.encode('utf-8') + r.append(item) + row = r + self.writer.writerow(row) + +# +# Configurator functionality +# + +class Configurator(BaseConfigurator): + + value_converters = dict(BaseConfigurator.value_converters) + value_converters['inc'] = 'inc_convert' + + def __init__(self, config, base=None): + super(Configurator, self).__init__(config) + self.base = base or os.getcwd() + + def configure_custom(self, config): + def convert(o): + if isinstance(o, (list, tuple)): + result = type(o)([convert(i) for i in o]) + elif isinstance(o, dict): + if '()' in o: + result = self.configure_custom(o) + else: + result = {} + for k in o: + result[k] = convert(o[k]) + else: + result = self.convert(o) + return result + + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + args = config.pop('[]', ()) + if args: + args = tuple([convert(o) for o in args]) + items = [(k, convert(config[k])) for k in config if valid_ident(k)] + kwargs = dict(items) + result = c(*args, **kwargs) + if props: + for n, v in props.items(): + setattr(result, n, convert(v)) + return result + + def __getitem__(self, key): + result = self.config[key] + if isinstance(result, dict) and '()' in result: + self.config[key] = result = self.configure_custom(result) + return result + + def inc_convert(self, value): + """Default converter for the inc:// protocol.""" + if not os.path.isabs(value): + value = os.path.join(self.base, value) + with codecs.open(value, 'r', encoding='utf-8') as f: + result = json.load(f) + return result + + +class SubprocessMixin(object): + """ + Mixin for running subprocesses and capturing their output + """ + def __init__(self, verbose=False, progress=None): + self.verbose = verbose + self.progress = progress + + def reader(self, stream, context): + """ + Read lines from a subprocess' output stream and either pass to a progress + callable (if specified) or write progress information to sys.stderr. + """ + progress = self.progress + verbose = self.verbose + while True: + s = stream.readline() + if not s: + break + if progress is not None: + progress(s, context) + else: + if not verbose: + sys.stderr.write('.') + else: + sys.stderr.write(s.decode('utf-8')) + sys.stderr.flush() + stream.close() + + def run_command(self, cmd, **kwargs): + p = subprocess.Popen(cmd, stdout=subprocess.PIPE, + stderr=subprocess.PIPE, **kwargs) + t1 = threading.Thread(target=self.reader, args=(p.stdout, 'stdout')) + t1.start() + t2 = threading.Thread(target=self.reader, args=(p.stderr, 'stderr')) + t2.start() + p.wait() + t1.join() + t2.join() + if self.progress is not None: + self.progress('done.', 'main') + elif self.verbose: + sys.stderr.write('done.\n') + return p + + +def normalize_name(name): + """Normalize a python package name a la PEP 503""" + # https://www.python.org/dev/peps/pep-0503/#normalized-names + return re.sub('[-_.]+', '-', name).lower() diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/version.py b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/version.py new file mode 100644 index 00000000..3eebe18e --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/version.py @@ -0,0 +1,736 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2017 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +""" +Implementation of a flexible versioning scheme providing support for PEP-440, +setuptools-compatible and semantic versioning. +""" + +import logging +import re + +from .compat import string_types +from .util import parse_requirement + +__all__ = ['NormalizedVersion', 'NormalizedMatcher', + 'LegacyVersion', 'LegacyMatcher', + 'SemanticVersion', 'SemanticMatcher', + 'UnsupportedVersionError', 'get_scheme'] + +logger = logging.getLogger(__name__) + + +class UnsupportedVersionError(ValueError): + """This is an unsupported version.""" + pass + + +class Version(object): + def __init__(self, s): + self._string = s = s.strip() + self._parts = parts = self.parse(s) + assert isinstance(parts, tuple) + assert len(parts) > 0 + + def parse(self, s): + raise NotImplementedError('please implement in a subclass') + + def _check_compatible(self, other): + if type(self) != type(other): + raise TypeError('cannot compare %r and %r' % (self, other)) + + def __eq__(self, other): + self._check_compatible(other) + return self._parts == other._parts + + def __ne__(self, other): + return not self.__eq__(other) + + def __lt__(self, other): + self._check_compatible(other) + return self._parts < other._parts + + def __gt__(self, other): + return not (self.__lt__(other) or self.__eq__(other)) + + def __le__(self, other): + return self.__lt__(other) or self.__eq__(other) + + def __ge__(self, other): + return self.__gt__(other) or self.__eq__(other) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + def __hash__(self): + return hash(self._parts) + + def __repr__(self): + return "%s('%s')" % (self.__class__.__name__, self._string) + + def __str__(self): + return self._string + + @property + def is_prerelease(self): + raise NotImplementedError('Please implement in subclasses.') + + +class Matcher(object): + version_class = None + + # value is either a callable or the name of a method + _operators = { + '<': lambda v, c, p: v < c, + '>': lambda v, c, p: v > c, + '<=': lambda v, c, p: v == c or v < c, + '>=': lambda v, c, p: v == c or v > c, + '==': lambda v, c, p: v == c, + '===': lambda v, c, p: v == c, + # by default, compatible => >=. + '~=': lambda v, c, p: v == c or v > c, + '!=': lambda v, c, p: v != c, + } + + # this is a method only to support alternative implementations + # via overriding + def parse_requirement(self, s): + return parse_requirement(s) + + def __init__(self, s): + if self.version_class is None: + raise ValueError('Please specify a version class') + self._string = s = s.strip() + r = self.parse_requirement(s) + if not r: + raise ValueError('Not valid: %r' % s) + self.name = r.name + self.key = self.name.lower() # for case-insensitive comparisons + clist = [] + if r.constraints: + # import pdb; pdb.set_trace() + for op, s in r.constraints: + if s.endswith('.*'): + if op not in ('==', '!='): + raise ValueError('\'.*\' not allowed for ' + '%r constraints' % op) + # Could be a partial version (e.g. for '2.*') which + # won't parse as a version, so keep it as a string + vn, prefix = s[:-2], True + # Just to check that vn is a valid version + self.version_class(vn) + else: + # Should parse as a version, so we can create an + # instance for the comparison + vn, prefix = self.version_class(s), False + clist.append((op, vn, prefix)) + self._parts = tuple(clist) + + def match(self, version): + """ + Check if the provided version matches the constraints. + + :param version: The version to match against this instance. + :type version: String or :class:`Version` instance. + """ + if isinstance(version, string_types): + version = self.version_class(version) + for operator, constraint, prefix in self._parts: + f = self._operators.get(operator) + if isinstance(f, string_types): + f = getattr(self, f) + if not f: + msg = ('%r not implemented ' + 'for %s' % (operator, self.__class__.__name__)) + raise NotImplementedError(msg) + if not f(version, constraint, prefix): + return False + return True + + @property + def exact_version(self): + result = None + if len(self._parts) == 1 and self._parts[0][0] in ('==', '==='): + result = self._parts[0][1] + return result + + def _check_compatible(self, other): + if type(self) != type(other) or self.name != other.name: + raise TypeError('cannot compare %s and %s' % (self, other)) + + def __eq__(self, other): + self._check_compatible(other) + return self.key == other.key and self._parts == other._parts + + def __ne__(self, other): + return not self.__eq__(other) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + def __hash__(self): + return hash(self.key) + hash(self._parts) + + def __repr__(self): + return "%s(%r)" % (self.__class__.__name__, self._string) + + def __str__(self): + return self._string + + +PEP440_VERSION_RE = re.compile(r'^v?(\d+!)?(\d+(\.\d+)*)((a|b|c|rc)(\d+))?' + r'(\.(post)(\d+))?(\.(dev)(\d+))?' + r'(\+([a-zA-Z\d]+(\.[a-zA-Z\d]+)?))?$') + + +def _pep_440_key(s): + s = s.strip() + m = PEP440_VERSION_RE.match(s) + if not m: + raise UnsupportedVersionError('Not a valid version: %s' % s) + groups = m.groups() + nums = tuple(int(v) for v in groups[1].split('.')) + while len(nums) > 1 and nums[-1] == 0: + nums = nums[:-1] + + if not groups[0]: + epoch = 0 + else: + epoch = int(groups[0]) + pre = groups[4:6] + post = groups[7:9] + dev = groups[10:12] + local = groups[13] + if pre == (None, None): + pre = () + else: + pre = pre[0], int(pre[1]) + if post == (None, None): + post = () + else: + post = post[0], int(post[1]) + if dev == (None, None): + dev = () + else: + dev = dev[0], int(dev[1]) + if local is None: + local = () + else: + parts = [] + for part in local.split('.'): + # to ensure that numeric compares as > lexicographic, avoid + # comparing them directly, but encode a tuple which ensures + # correct sorting + if part.isdigit(): + part = (1, int(part)) + else: + part = (0, part) + parts.append(part) + local = tuple(parts) + if not pre: + # either before pre-release, or final release and after + if not post and dev: + # before pre-release + pre = ('a', -1) # to sort before a0 + else: + pre = ('z',) # to sort after all pre-releases + # now look at the state of post and dev. + if not post: + post = ('_',) # sort before 'a' + if not dev: + dev = ('final',) + + #print('%s -> %s' % (s, m.groups())) + return epoch, nums, pre, post, dev, local + + +_normalized_key = _pep_440_key + + +class NormalizedVersion(Version): + """A rational version. + + Good: + 1.2 # equivalent to "1.2.0" + 1.2.0 + 1.2a1 + 1.2.3a2 + 1.2.3b1 + 1.2.3c1 + 1.2.3.4 + TODO: fill this out + + Bad: + 1 # minimum two numbers + 1.2a # release level must have a release serial + 1.2.3b + """ + def parse(self, s): + result = _normalized_key(s) + # _normalized_key loses trailing zeroes in the release + # clause, since that's needed to ensure that X.Y == X.Y.0 == X.Y.0.0 + # However, PEP 440 prefix matching needs it: for example, + # (~= 1.4.5.0) matches differently to (~= 1.4.5.0.0). + m = PEP440_VERSION_RE.match(s) # must succeed + groups = m.groups() + self._release_clause = tuple(int(v) for v in groups[1].split('.')) + return result + + PREREL_TAGS = set(['a', 'b', 'c', 'rc', 'dev']) + + @property + def is_prerelease(self): + return any(t[0] in self.PREREL_TAGS for t in self._parts if t) + + +def _match_prefix(x, y): + x = str(x) + y = str(y) + if x == y: + return True + if not x.startswith(y): + return False + n = len(y) + return x[n] == '.' + + +class NormalizedMatcher(Matcher): + version_class = NormalizedVersion + + # value is either a callable or the name of a method + _operators = { + '~=': '_match_compatible', + '<': '_match_lt', + '>': '_match_gt', + '<=': '_match_le', + '>=': '_match_ge', + '==': '_match_eq', + '===': '_match_arbitrary', + '!=': '_match_ne', + } + + def _adjust_local(self, version, constraint, prefix): + if prefix: + strip_local = '+' not in constraint and version._parts[-1] + else: + # both constraint and version are + # NormalizedVersion instances. + # If constraint does not have a local component, + # ensure the version doesn't, either. + strip_local = not constraint._parts[-1] and version._parts[-1] + if strip_local: + s = version._string.split('+', 1)[0] + version = self.version_class(s) + return version, constraint + + def _match_lt(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version >= constraint: + return False + release_clause = constraint._release_clause + pfx = '.'.join([str(i) for i in release_clause]) + return not _match_prefix(version, pfx) + + def _match_gt(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version <= constraint: + return False + release_clause = constraint._release_clause + pfx = '.'.join([str(i) for i in release_clause]) + return not _match_prefix(version, pfx) + + def _match_le(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + return version <= constraint + + def _match_ge(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + return version >= constraint + + def _match_eq(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if not prefix: + result = (version == constraint) + else: + result = _match_prefix(version, constraint) + return result + + def _match_arbitrary(self, version, constraint, prefix): + return str(version) == str(constraint) + + def _match_ne(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if not prefix: + result = (version != constraint) + else: + result = not _match_prefix(version, constraint) + return result + + def _match_compatible(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version == constraint: + return True + if version < constraint: + return False +# if not prefix: +# return True + release_clause = constraint._release_clause + if len(release_clause) > 1: + release_clause = release_clause[:-1] + pfx = '.'.join([str(i) for i in release_clause]) + return _match_prefix(version, pfx) + +_REPLACEMENTS = ( + (re.compile('[.+-]$'), ''), # remove trailing puncts + (re.compile(r'^[.](\d)'), r'0.\1'), # .N -> 0.N at start + (re.compile('^[.-]'), ''), # remove leading puncts + (re.compile(r'^\((.*)\)$'), r'\1'), # remove parentheses + (re.compile(r'^v(ersion)?\s*(\d+)'), r'\2'), # remove leading v(ersion) + (re.compile(r'^r(ev)?\s*(\d+)'), r'\2'), # remove leading v(ersion) + (re.compile('[.]{2,}'), '.'), # multiple runs of '.' + (re.compile(r'\b(alfa|apha)\b'), 'alpha'), # misspelt alpha + (re.compile(r'\b(pre-alpha|prealpha)\b'), + 'pre.alpha'), # standardise + (re.compile(r'\(beta\)$'), 'beta'), # remove parentheses +) + +_SUFFIX_REPLACEMENTS = ( + (re.compile('^[:~._+-]+'), ''), # remove leading puncts + (re.compile('[,*")([\\]]'), ''), # remove unwanted chars + (re.compile('[~:+_ -]'), '.'), # replace illegal chars + (re.compile('[.]{2,}'), '.'), # multiple runs of '.' + (re.compile(r'\.$'), ''), # trailing '.' +) + +_NUMERIC_PREFIX = re.compile(r'(\d+(\.\d+)*)') + + +def _suggest_semantic_version(s): + """ + Try to suggest a semantic form for a version for which + _suggest_normalized_version couldn't come up with anything. + """ + result = s.strip().lower() + for pat, repl in _REPLACEMENTS: + result = pat.sub(repl, result) + if not result: + result = '0.0.0' + + # Now look for numeric prefix, and separate it out from + # the rest. + #import pdb; pdb.set_trace() + m = _NUMERIC_PREFIX.match(result) + if not m: + prefix = '0.0.0' + suffix = result + else: + prefix = m.groups()[0].split('.') + prefix = [int(i) for i in prefix] + while len(prefix) < 3: + prefix.append(0) + if len(prefix) == 3: + suffix = result[m.end():] + else: + suffix = '.'.join([str(i) for i in prefix[3:]]) + result[m.end():] + prefix = prefix[:3] + prefix = '.'.join([str(i) for i in prefix]) + suffix = suffix.strip() + if suffix: + #import pdb; pdb.set_trace() + # massage the suffix. + for pat, repl in _SUFFIX_REPLACEMENTS: + suffix = pat.sub(repl, suffix) + + if not suffix: + result = prefix + else: + sep = '-' if 'dev' in suffix else '+' + result = prefix + sep + suffix + if not is_semver(result): + result = None + return result + + +def _suggest_normalized_version(s): + """Suggest a normalized version close to the given version string. + + If you have a version string that isn't rational (i.e. NormalizedVersion + doesn't like it) then you might be able to get an equivalent (or close) + rational version from this function. + + This does a number of simple normalizations to the given string, based + on observation of versions currently in use on PyPI. Given a dump of + those version during PyCon 2009, 4287 of them: + - 2312 (53.93%) match NormalizedVersion without change + with the automatic suggestion + - 3474 (81.04%) match when using this suggestion method + + @param s {str} An irrational version string. + @returns A rational version string, or None, if couldn't determine one. + """ + try: + _normalized_key(s) + return s # already rational + except UnsupportedVersionError: + pass + + rs = s.lower() + + # part of this could use maketrans + for orig, repl in (('-alpha', 'a'), ('-beta', 'b'), ('alpha', 'a'), + ('beta', 'b'), ('rc', 'c'), ('-final', ''), + ('-pre', 'c'), + ('-release', ''), ('.release', ''), ('-stable', ''), + ('+', '.'), ('_', '.'), (' ', ''), ('.final', ''), + ('final', '')): + rs = rs.replace(orig, repl) + + # if something ends with dev or pre, we add a 0 + rs = re.sub(r"pre$", r"pre0", rs) + rs = re.sub(r"dev$", r"dev0", rs) + + # if we have something like "b-2" or "a.2" at the end of the + # version, that is probably beta, alpha, etc + # let's remove the dash or dot + rs = re.sub(r"([abc]|rc)[\-\.](\d+)$", r"\1\2", rs) + + # 1.0-dev-r371 -> 1.0.dev371 + # 0.1-dev-r79 -> 0.1.dev79 + rs = re.sub(r"[\-\.](dev)[\-\.]?r?(\d+)$", r".\1\2", rs) + + # Clean: 2.0.a.3, 2.0.b1, 0.9.0~c1 + rs = re.sub(r"[.~]?([abc])\.?", r"\1", rs) + + # Clean: v0.3, v1.0 + if rs.startswith('v'): + rs = rs[1:] + + # Clean leading '0's on numbers. + #TODO: unintended side-effect on, e.g., "2003.05.09" + # PyPI stats: 77 (~2%) better + rs = re.sub(r"\b0+(\d+)(?!\d)", r"\1", rs) + + # Clean a/b/c with no version. E.g. "1.0a" -> "1.0a0". Setuptools infers + # zero. + # PyPI stats: 245 (7.56%) better + rs = re.sub(r"(\d+[abc])$", r"\g<1>0", rs) + + # the 'dev-rNNN' tag is a dev tag + rs = re.sub(r"\.?(dev-r|dev\.r)\.?(\d+)$", r".dev\2", rs) + + # clean the - when used as a pre delimiter + rs = re.sub(r"-(a|b|c)(\d+)$", r"\1\2", rs) + + # a terminal "dev" or "devel" can be changed into ".dev0" + rs = re.sub(r"[\.\-](dev|devel)$", r".dev0", rs) + + # a terminal "dev" can be changed into ".dev0" + rs = re.sub(r"(?![\.\-])dev$", r".dev0", rs) + + # a terminal "final" or "stable" can be removed + rs = re.sub(r"(final|stable)$", "", rs) + + # The 'r' and the '-' tags are post release tags + # 0.4a1.r10 -> 0.4a1.post10 + # 0.9.33-17222 -> 0.9.33.post17222 + # 0.9.33-r17222 -> 0.9.33.post17222 + rs = re.sub(r"\.?(r|-|-r)\.?(\d+)$", r".post\2", rs) + + # Clean 'r' instead of 'dev' usage: + # 0.9.33+r17222 -> 0.9.33.dev17222 + # 1.0dev123 -> 1.0.dev123 + # 1.0.git123 -> 1.0.dev123 + # 1.0.bzr123 -> 1.0.dev123 + # 0.1a0dev.123 -> 0.1a0.dev123 + # PyPI stats: ~150 (~4%) better + rs = re.sub(r"\.?(dev|git|bzr)\.?(\d+)$", r".dev\2", rs) + + # Clean '.pre' (normalized from '-pre' above) instead of 'c' usage: + # 0.2.pre1 -> 0.2c1 + # 0.2-c1 -> 0.2c1 + # 1.0preview123 -> 1.0c123 + # PyPI stats: ~21 (0.62%) better + rs = re.sub(r"\.?(pre|preview|-c)(\d+)$", r"c\g<2>", rs) + + # Tcl/Tk uses "px" for their post release markers + rs = re.sub(r"p(\d+)$", r".post\1", rs) + + try: + _normalized_key(rs) + except UnsupportedVersionError: + rs = None + return rs + +# +# Legacy version processing (distribute-compatible) +# + +_VERSION_PART = re.compile(r'([a-z]+|\d+|[\.-])', re.I) +_VERSION_REPLACE = { + 'pre': 'c', + 'preview': 'c', + '-': 'final-', + 'rc': 'c', + 'dev': '@', + '': None, + '.': None, +} + + +def _legacy_key(s): + def get_parts(s): + result = [] + for p in _VERSION_PART.split(s.lower()): + p = _VERSION_REPLACE.get(p, p) + if p: + if '0' <= p[:1] <= '9': + p = p.zfill(8) + else: + p = '*' + p + result.append(p) + result.append('*final') + return result + + result = [] + for p in get_parts(s): + if p.startswith('*'): + if p < '*final': + while result and result[-1] == '*final-': + result.pop() + while result and result[-1] == '00000000': + result.pop() + result.append(p) + return tuple(result) + + +class LegacyVersion(Version): + def parse(self, s): + return _legacy_key(s) + + @property + def is_prerelease(self): + result = False + for x in self._parts: + if (isinstance(x, string_types) and x.startswith('*') and + x < '*final'): + result = True + break + return result + + +class LegacyMatcher(Matcher): + version_class = LegacyVersion + + _operators = dict(Matcher._operators) + _operators['~='] = '_match_compatible' + + numeric_re = re.compile(r'^(\d+(\.\d+)*)') + + def _match_compatible(self, version, constraint, prefix): + if version < constraint: + return False + m = self.numeric_re.match(str(constraint)) + if not m: + logger.warning('Cannot compute compatible match for version %s ' + ' and constraint %s', version, constraint) + return True + s = m.groups()[0] + if '.' in s: + s = s.rsplit('.', 1)[0] + return _match_prefix(version, s) + +# +# Semantic versioning +# + +_SEMVER_RE = re.compile(r'^(\d+)\.(\d+)\.(\d+)' + r'(-[a-z0-9]+(\.[a-z0-9-]+)*)?' + r'(\+[a-z0-9]+(\.[a-z0-9-]+)*)?$', re.I) + + +def is_semver(s): + return _SEMVER_RE.match(s) + + +def _semantic_key(s): + def make_tuple(s, absent): + if s is None: + result = (absent,) + else: + parts = s[1:].split('.') + # We can't compare ints and strings on Python 3, so fudge it + # by zero-filling numeric values so simulate a numeric comparison + result = tuple([p.zfill(8) if p.isdigit() else p for p in parts]) + return result + + m = is_semver(s) + if not m: + raise UnsupportedVersionError(s) + groups = m.groups() + major, minor, patch = [int(i) for i in groups[:3]] + # choose the '|' and '*' so that versions sort correctly + pre, build = make_tuple(groups[3], '|'), make_tuple(groups[5], '*') + return (major, minor, patch), pre, build + + +class SemanticVersion(Version): + def parse(self, s): + return _semantic_key(s) + + @property + def is_prerelease(self): + return self._parts[1][0] != '|' + + +class SemanticMatcher(Matcher): + version_class = SemanticVersion + + +class VersionScheme(object): + def __init__(self, key, matcher, suggester=None): + self.key = key + self.matcher = matcher + self.suggester = suggester + + def is_valid_version(self, s): + try: + self.matcher.version_class(s) + result = True + except UnsupportedVersionError: + result = False + return result + + def is_valid_matcher(self, s): + try: + self.matcher(s) + result = True + except UnsupportedVersionError: + result = False + return result + + def is_valid_constraint_list(self, s): + """ + Used for processing some metadata fields + """ + return self.is_valid_matcher('dummy_name (%s)' % s) + + def suggest(self, s): + if self.suggester is None: + result = None + else: + result = self.suggester(s) + return result + +_SCHEMES = { + 'normalized': VersionScheme(_normalized_key, NormalizedMatcher, + _suggest_normalized_version), + 'legacy': VersionScheme(_legacy_key, LegacyMatcher, lambda self, s: s), + 'semantic': VersionScheme(_semantic_key, SemanticMatcher, + _suggest_semantic_version), +} + +_SCHEMES['default'] = _SCHEMES['normalized'] + + +def get_scheme(name): + if name not in _SCHEMES: + raise ValueError('unknown scheme name: %r' % name) + return _SCHEMES[name] diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/w32.exe b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/w32.exe new file mode 100644 index 0000000000000000000000000000000000000000..e6439e9e45897365d5ac6a85a46864c158a225fd GIT binary patch literal 90112 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�gPVRVBXt_FM7e4<}XM;HRH{62JZSn^<*L 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 OB+yBqlfeHwf&T)jA)JE% literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distlib/w64.exe b/venv/lib/python3.8/site-packages/pip/_vendor/distlib/w64.exe new file mode 100644 index 0000000000000000000000000000000000000000..46139dbf9400b7bc0b64e6756ce17b4eb5fd7436 GIT binary patch literal 99840 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..97b0ae8de78086ef87e69865e5a14160ebfeac92 GIT binary patch literal 91239 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0c1df672d8ebbe211995e9ab7f07060bacad6606 GIT binary patch literal 10789 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_ihatexml.py b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_ihatexml.py new file mode 100644 index 00000000..3ff803c1 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_ihatexml.py @@ -0,0 +1,289 @@ +from __future__ import absolute_import, division, unicode_literals + +import re +import warnings + +from .constants import DataLossWarning + +baseChar = """ +[#x0041-#x005A] | [#x0061-#x007A] | [#x00C0-#x00D6] | [#x00D8-#x00F6] | +[#x00F8-#x00FF] | [#x0100-#x0131] | [#x0134-#x013E] | [#x0141-#x0148] | +[#x014A-#x017E] | [#x0180-#x01C3] | [#x01CD-#x01F0] | [#x01F4-#x01F5] | +[#x01FA-#x0217] | [#x0250-#x02A8] | [#x02BB-#x02C1] | #x0386 | +[#x0388-#x038A] | #x038C | [#x038E-#x03A1] | [#x03A3-#x03CE] | +[#x03D0-#x03D6] | #x03DA | #x03DC | #x03DE | #x03E0 | [#x03E2-#x03F3] | +[#x0401-#x040C] | [#x040E-#x044F] | [#x0451-#x045C] | [#x045E-#x0481] | +[#x0490-#x04C4] | [#x04C7-#x04C8] | [#x04CB-#x04CC] | [#x04D0-#x04EB] | +[#x04EE-#x04F5] | [#x04F8-#x04F9] | [#x0531-#x0556] | #x0559 | +[#x0561-#x0586] | [#x05D0-#x05EA] | [#x05F0-#x05F2] | [#x0621-#x063A] | +[#x0641-#x064A] | [#x0671-#x06B7] | [#x06BA-#x06BE] | [#x06C0-#x06CE] | +[#x06D0-#x06D3] | #x06D5 | [#x06E5-#x06E6] | [#x0905-#x0939] | #x093D | +[#x0958-#x0961] | [#x0985-#x098C] | [#x098F-#x0990] | [#x0993-#x09A8] | +[#x09AA-#x09B0] | #x09B2 | [#x09B6-#x09B9] | [#x09DC-#x09DD] | +[#x09DF-#x09E1] | [#x09F0-#x09F1] | [#x0A05-#x0A0A] | [#x0A0F-#x0A10] | +[#x0A13-#x0A28] | [#x0A2A-#x0A30] | [#x0A32-#x0A33] | [#x0A35-#x0A36] | +[#x0A38-#x0A39] | [#x0A59-#x0A5C] | #x0A5E | [#x0A72-#x0A74] | +[#x0A85-#x0A8B] | #x0A8D | [#x0A8F-#x0A91] | [#x0A93-#x0AA8] | +[#x0AAA-#x0AB0] | [#x0AB2-#x0AB3] | [#x0AB5-#x0AB9] | #x0ABD | #x0AE0 | +[#x0B05-#x0B0C] | [#x0B0F-#x0B10] | [#x0B13-#x0B28] | [#x0B2A-#x0B30] | +[#x0B32-#x0B33] | [#x0B36-#x0B39] | #x0B3D | [#x0B5C-#x0B5D] | +[#x0B5F-#x0B61] | [#x0B85-#x0B8A] | [#x0B8E-#x0B90] | [#x0B92-#x0B95] | +[#x0B99-#x0B9A] | #x0B9C | [#x0B9E-#x0B9F] | [#x0BA3-#x0BA4] | +[#x0BA8-#x0BAA] | [#x0BAE-#x0BB5] | [#x0BB7-#x0BB9] | [#x0C05-#x0C0C] | +[#x0C0E-#x0C10] | [#x0C12-#x0C28] | [#x0C2A-#x0C33] | [#x0C35-#x0C39] | +[#x0C60-#x0C61] | [#x0C85-#x0C8C] | [#x0C8E-#x0C90] | [#x0C92-#x0CA8] | +[#x0CAA-#x0CB3] | [#x0CB5-#x0CB9] | #x0CDE | [#x0CE0-#x0CE1] | +[#x0D05-#x0D0C] | [#x0D0E-#x0D10] | [#x0D12-#x0D28] | [#x0D2A-#x0D39] | +[#x0D60-#x0D61] | [#x0E01-#x0E2E] | #x0E30 | [#x0E32-#x0E33] | +[#x0E40-#x0E45] | [#x0E81-#x0E82] | #x0E84 | [#x0E87-#x0E88] | #x0E8A | +#x0E8D | [#x0E94-#x0E97] | [#x0E99-#x0E9F] | [#x0EA1-#x0EA3] | #x0EA5 | +#x0EA7 | [#x0EAA-#x0EAB] | [#x0EAD-#x0EAE] | #x0EB0 | [#x0EB2-#x0EB3] | +#x0EBD | [#x0EC0-#x0EC4] | [#x0F40-#x0F47] | [#x0F49-#x0F69] | +[#x10A0-#x10C5] | [#x10D0-#x10F6] | #x1100 | [#x1102-#x1103] | +[#x1105-#x1107] | #x1109 | [#x110B-#x110C] | [#x110E-#x1112] | #x113C | +#x113E | #x1140 | #x114C | #x114E | #x1150 | [#x1154-#x1155] | #x1159 | +[#x115F-#x1161] | #x1163 | #x1165 | #x1167 | #x1169 | [#x116D-#x116E] | +[#x1172-#x1173] | #x1175 | #x119E | #x11A8 | #x11AB | [#x11AE-#x11AF] | +[#x11B7-#x11B8] | #x11BA | [#x11BC-#x11C2] | #x11EB | #x11F0 | #x11F9 | +[#x1E00-#x1E9B] | [#x1EA0-#x1EF9] | [#x1F00-#x1F15] | [#x1F18-#x1F1D] | +[#x1F20-#x1F45] | [#x1F48-#x1F4D] | [#x1F50-#x1F57] | #x1F59 | #x1F5B | +#x1F5D | [#x1F5F-#x1F7D] | [#x1F80-#x1FB4] | [#x1FB6-#x1FBC] | #x1FBE | +[#x1FC2-#x1FC4] | [#x1FC6-#x1FCC] | [#x1FD0-#x1FD3] | [#x1FD6-#x1FDB] | +[#x1FE0-#x1FEC] | [#x1FF2-#x1FF4] | [#x1FF6-#x1FFC] | #x2126 | +[#x212A-#x212B] | #x212E | [#x2180-#x2182] | [#x3041-#x3094] | +[#x30A1-#x30FA] | [#x3105-#x312C] | [#xAC00-#xD7A3]""" + +ideographic = """[#x4E00-#x9FA5] | #x3007 | [#x3021-#x3029]""" + +combiningCharacter = """ +[#x0300-#x0345] | [#x0360-#x0361] | [#x0483-#x0486] | [#x0591-#x05A1] | +[#x05A3-#x05B9] | [#x05BB-#x05BD] | #x05BF | [#x05C1-#x05C2] | #x05C4 | +[#x064B-#x0652] | #x0670 | [#x06D6-#x06DC] | [#x06DD-#x06DF] | +[#x06E0-#x06E4] | [#x06E7-#x06E8] | [#x06EA-#x06ED] | [#x0901-#x0903] | +#x093C | [#x093E-#x094C] | #x094D | [#x0951-#x0954] | [#x0962-#x0963] | +[#x0981-#x0983] | #x09BC | #x09BE | #x09BF | [#x09C0-#x09C4] | +[#x09C7-#x09C8] | [#x09CB-#x09CD] | #x09D7 | [#x09E2-#x09E3] | #x0A02 | +#x0A3C | #x0A3E | #x0A3F | [#x0A40-#x0A42] | [#x0A47-#x0A48] | +[#x0A4B-#x0A4D] | [#x0A70-#x0A71] | [#x0A81-#x0A83] | #x0ABC | +[#x0ABE-#x0AC5] | [#x0AC7-#x0AC9] | [#x0ACB-#x0ACD] | [#x0B01-#x0B03] | +#x0B3C | [#x0B3E-#x0B43] | [#x0B47-#x0B48] | [#x0B4B-#x0B4D] | +[#x0B56-#x0B57] | [#x0B82-#x0B83] | [#x0BBE-#x0BC2] | [#x0BC6-#x0BC8] | +[#x0BCA-#x0BCD] | #x0BD7 | [#x0C01-#x0C03] | [#x0C3E-#x0C44] | +[#x0C46-#x0C48] | [#x0C4A-#x0C4D] | [#x0C55-#x0C56] | [#x0C82-#x0C83] | +[#x0CBE-#x0CC4] | [#x0CC6-#x0CC8] | [#x0CCA-#x0CCD] | [#x0CD5-#x0CD6] | +[#x0D02-#x0D03] | [#x0D3E-#x0D43] | [#x0D46-#x0D48] | [#x0D4A-#x0D4D] | +#x0D57 | #x0E31 | [#x0E34-#x0E3A] | [#x0E47-#x0E4E] | #x0EB1 | +[#x0EB4-#x0EB9] | [#x0EBB-#x0EBC] | [#x0EC8-#x0ECD] | [#x0F18-#x0F19] | +#x0F35 | #x0F37 | #x0F39 | #x0F3E | #x0F3F | [#x0F71-#x0F84] | +[#x0F86-#x0F8B] | [#x0F90-#x0F95] | #x0F97 | [#x0F99-#x0FAD] | +[#x0FB1-#x0FB7] | #x0FB9 | [#x20D0-#x20DC] | #x20E1 | [#x302A-#x302F] | +#x3099 | #x309A""" + +digit = """ +[#x0030-#x0039] | [#x0660-#x0669] | [#x06F0-#x06F9] | [#x0966-#x096F] | +[#x09E6-#x09EF] | [#x0A66-#x0A6F] | [#x0AE6-#x0AEF] | [#x0B66-#x0B6F] | +[#x0BE7-#x0BEF] | [#x0C66-#x0C6F] | [#x0CE6-#x0CEF] | [#x0D66-#x0D6F] | +[#x0E50-#x0E59] | [#x0ED0-#x0ED9] | [#x0F20-#x0F29]""" + +extender = """ +#x00B7 | #x02D0 | #x02D1 | #x0387 | #x0640 | #x0E46 | #x0EC6 | #x3005 | +#[#x3031-#x3035] | [#x309D-#x309E] | [#x30FC-#x30FE]""" + +letter = " | ".join([baseChar, ideographic]) + +# Without the +name = " | ".join([letter, digit, ".", "-", "_", combiningCharacter, + extender]) +nameFirst = " | ".join([letter, "_"]) + +reChar = re.compile(r"#x([\d|A-F]{4,4})") +reCharRange = re.compile(r"\[#x([\d|A-F]{4,4})-#x([\d|A-F]{4,4})\]") + + +def charStringToList(chars): + charRanges = [item.strip() for item in chars.split(" | ")] + rv = [] + for item in charRanges: + foundMatch = False + for regexp in (reChar, reCharRange): + match = regexp.match(item) + if match is not None: + rv.append([hexToInt(item) for item in match.groups()]) + if len(rv[-1]) == 1: + rv[-1] = rv[-1] * 2 + foundMatch = True + break + if not foundMatch: + assert len(item) == 1 + + rv.append([ord(item)] * 2) + rv = normaliseCharList(rv) + return rv + + +def normaliseCharList(charList): + charList = sorted(charList) + for item in charList: + assert item[1] >= item[0] + rv = [] + i = 0 + while i < len(charList): + j = 1 + rv.append(charList[i]) + while i + j < len(charList) and charList[i + j][0] <= rv[-1][1] + 1: + rv[-1][1] = charList[i + j][1] + j += 1 + i += j + return rv + + +# We don't really support characters above the BMP :( +max_unicode = int("FFFF", 16) + + +def missingRanges(charList): + rv = [] + if charList[0] != 0: + rv.append([0, charList[0][0] - 1]) + for i, item in enumerate(charList[:-1]): + rv.append([item[1] + 1, charList[i + 1][0] - 1]) + if charList[-1][1] != max_unicode: + rv.append([charList[-1][1] + 1, max_unicode]) + return rv + + +def listToRegexpStr(charList): + rv = [] + for item in charList: + if item[0] == item[1]: + rv.append(escapeRegexp(chr(item[0]))) + else: + rv.append(escapeRegexp(chr(item[0])) + "-" + + escapeRegexp(chr(item[1]))) + return "[%s]" % "".join(rv) + + +def hexToInt(hex_str): + return int(hex_str, 16) + + +def escapeRegexp(string): + specialCharacters = (".", "^", "$", "*", "+", "?", "{", "}", + "[", "]", "|", "(", ")", "-") + for char in specialCharacters: + string = string.replace(char, "\\" + char) + + return string + +# output from the above +nonXmlNameBMPRegexp = re.compile('[\x00-,/:-@\\[-\\^`\\{-\xb6\xb8-\xbf\xd7\xf7\u0132-\u0133\u013f-\u0140\u0149\u017f\u01c4-\u01cc\u01f1-\u01f3\u01f6-\u01f9\u0218-\u024f\u02a9-\u02ba\u02c2-\u02cf\u02d2-\u02ff\u0346-\u035f\u0362-\u0385\u038b\u038d\u03a2\u03cf\u03d7-\u03d9\u03db\u03dd\u03df\u03e1\u03f4-\u0400\u040d\u0450\u045d\u0482\u0487-\u048f\u04c5-\u04c6\u04c9-\u04ca\u04cd-\u04cf\u04ec-\u04ed\u04f6-\u04f7\u04fa-\u0530\u0557-\u0558\u055a-\u0560\u0587-\u0590\u05a2\u05ba\u05be\u05c0\u05c3\u05c5-\u05cf\u05eb-\u05ef\u05f3-\u0620\u063b-\u063f\u0653-\u065f\u066a-\u066f\u06b8-\u06b9\u06bf\u06cf\u06d4\u06e9\u06ee-\u06ef\u06fa-\u0900\u0904\u093a-\u093b\u094e-\u0950\u0955-\u0957\u0964-\u0965\u0970-\u0980\u0984\u098d-\u098e\u0991-\u0992\u09a9\u09b1\u09b3-\u09b5\u09ba-\u09bb\u09bd\u09c5-\u09c6\u09c9-\u09ca\u09ce-\u09d6\u09d8-\u09db\u09de\u09e4-\u09e5\u09f2-\u0a01\u0a03-\u0a04\u0a0b-\u0a0e\u0a11-\u0a12\u0a29\u0a31\u0a34\u0a37\u0a3a-\u0a3b\u0a3d\u0a43-\u0a46\u0a49-\u0a4a\u0a4e-\u0a58\u0a5d\u0a5f-\u0a65\u0a75-\u0a80\u0a84\u0a8c\u0a8e\u0a92\u0aa9\u0ab1\u0ab4\u0aba-\u0abb\u0ac6\u0aca\u0ace-\u0adf\u0ae1-\u0ae5\u0af0-\u0b00\u0b04\u0b0d-\u0b0e\u0b11-\u0b12\u0b29\u0b31\u0b34-\u0b35\u0b3a-\u0b3b\u0b44-\u0b46\u0b49-\u0b4a\u0b4e-\u0b55\u0b58-\u0b5b\u0b5e\u0b62-\u0b65\u0b70-\u0b81\u0b84\u0b8b-\u0b8d\u0b91\u0b96-\u0b98\u0b9b\u0b9d\u0ba0-\u0ba2\u0ba5-\u0ba7\u0bab-\u0bad\u0bb6\u0bba-\u0bbd\u0bc3-\u0bc5\u0bc9\u0bce-\u0bd6\u0bd8-\u0be6\u0bf0-\u0c00\u0c04\u0c0d\u0c11\u0c29\u0c34\u0c3a-\u0c3d\u0c45\u0c49\u0c4e-\u0c54\u0c57-\u0c5f\u0c62-\u0c65\u0c70-\u0c81\u0c84\u0c8d\u0c91\u0ca9\u0cb4\u0cba-\u0cbd\u0cc5\u0cc9\u0cce-\u0cd4\u0cd7-\u0cdd\u0cdf\u0ce2-\u0ce5\u0cf0-\u0d01\u0d04\u0d0d\u0d11\u0d29\u0d3a-\u0d3d\u0d44-\u0d45\u0d49\u0d4e-\u0d56\u0d58-\u0d5f\u0d62-\u0d65\u0d70-\u0e00\u0e2f\u0e3b-\u0e3f\u0e4f\u0e5a-\u0e80\u0e83\u0e85-\u0e86\u0e89\u0e8b-\u0e8c\u0e8e-\u0e93\u0e98\u0ea0\u0ea4\u0ea6\u0ea8-\u0ea9\u0eac\u0eaf\u0eba\u0ebe-\u0ebf\u0ec5\u0ec7\u0ece-\u0ecf\u0eda-\u0f17\u0f1a-\u0f1f\u0f2a-\u0f34\u0f36\u0f38\u0f3a-\u0f3d\u0f48\u0f6a-\u0f70\u0f85\u0f8c-\u0f8f\u0f96\u0f98\u0fae-\u0fb0\u0fb8\u0fba-\u109f\u10c6-\u10cf\u10f7-\u10ff\u1101\u1104\u1108\u110a\u110d\u1113-\u113b\u113d\u113f\u1141-\u114b\u114d\u114f\u1151-\u1153\u1156-\u1158\u115a-\u115e\u1162\u1164\u1166\u1168\u116a-\u116c\u116f-\u1171\u1174\u1176-\u119d\u119f-\u11a7\u11a9-\u11aa\u11ac-\u11ad\u11b0-\u11b6\u11b9\u11bb\u11c3-\u11ea\u11ec-\u11ef\u11f1-\u11f8\u11fa-\u1dff\u1e9c-\u1e9f\u1efa-\u1eff\u1f16-\u1f17\u1f1e-\u1f1f\u1f46-\u1f47\u1f4e-\u1f4f\u1f58\u1f5a\u1f5c\u1f5e\u1f7e-\u1f7f\u1fb5\u1fbd\u1fbf-\u1fc1\u1fc5\u1fcd-\u1fcf\u1fd4-\u1fd5\u1fdc-\u1fdf\u1fed-\u1ff1\u1ff5\u1ffd-\u20cf\u20dd-\u20e0\u20e2-\u2125\u2127-\u2129\u212c-\u212d\u212f-\u217f\u2183-\u3004\u3006\u3008-\u3020\u3030\u3036-\u3040\u3095-\u3098\u309b-\u309c\u309f-\u30a0\u30fb\u30ff-\u3104\u312d-\u4dff\u9fa6-\uabff\ud7a4-\uffff]') # noqa + +nonXmlNameFirstBMPRegexp = re.compile('[\x00-@\\[-\\^`\\{-\xbf\xd7\xf7\u0132-\u0133\u013f-\u0140\u0149\u017f\u01c4-\u01cc\u01f1-\u01f3\u01f6-\u01f9\u0218-\u024f\u02a9-\u02ba\u02c2-\u0385\u0387\u038b\u038d\u03a2\u03cf\u03d7-\u03d9\u03db\u03dd\u03df\u03e1\u03f4-\u0400\u040d\u0450\u045d\u0482-\u048f\u04c5-\u04c6\u04c9-\u04ca\u04cd-\u04cf\u04ec-\u04ed\u04f6-\u04f7\u04fa-\u0530\u0557-\u0558\u055a-\u0560\u0587-\u05cf\u05eb-\u05ef\u05f3-\u0620\u063b-\u0640\u064b-\u0670\u06b8-\u06b9\u06bf\u06cf\u06d4\u06d6-\u06e4\u06e7-\u0904\u093a-\u093c\u093e-\u0957\u0962-\u0984\u098d-\u098e\u0991-\u0992\u09a9\u09b1\u09b3-\u09b5\u09ba-\u09db\u09de\u09e2-\u09ef\u09f2-\u0a04\u0a0b-\u0a0e\u0a11-\u0a12\u0a29\u0a31\u0a34\u0a37\u0a3a-\u0a58\u0a5d\u0a5f-\u0a71\u0a75-\u0a84\u0a8c\u0a8e\u0a92\u0aa9\u0ab1\u0ab4\u0aba-\u0abc\u0abe-\u0adf\u0ae1-\u0b04\u0b0d-\u0b0e\u0b11-\u0b12\u0b29\u0b31\u0b34-\u0b35\u0b3a-\u0b3c\u0b3e-\u0b5b\u0b5e\u0b62-\u0b84\u0b8b-\u0b8d\u0b91\u0b96-\u0b98\u0b9b\u0b9d\u0ba0-\u0ba2\u0ba5-\u0ba7\u0bab-\u0bad\u0bb6\u0bba-\u0c04\u0c0d\u0c11\u0c29\u0c34\u0c3a-\u0c5f\u0c62-\u0c84\u0c8d\u0c91\u0ca9\u0cb4\u0cba-\u0cdd\u0cdf\u0ce2-\u0d04\u0d0d\u0d11\u0d29\u0d3a-\u0d5f\u0d62-\u0e00\u0e2f\u0e31\u0e34-\u0e3f\u0e46-\u0e80\u0e83\u0e85-\u0e86\u0e89\u0e8b-\u0e8c\u0e8e-\u0e93\u0e98\u0ea0\u0ea4\u0ea6\u0ea8-\u0ea9\u0eac\u0eaf\u0eb1\u0eb4-\u0ebc\u0ebe-\u0ebf\u0ec5-\u0f3f\u0f48\u0f6a-\u109f\u10c6-\u10cf\u10f7-\u10ff\u1101\u1104\u1108\u110a\u110d\u1113-\u113b\u113d\u113f\u1141-\u114b\u114d\u114f\u1151-\u1153\u1156-\u1158\u115a-\u115e\u1162\u1164\u1166\u1168\u116a-\u116c\u116f-\u1171\u1174\u1176-\u119d\u119f-\u11a7\u11a9-\u11aa\u11ac-\u11ad\u11b0-\u11b6\u11b9\u11bb\u11c3-\u11ea\u11ec-\u11ef\u11f1-\u11f8\u11fa-\u1dff\u1e9c-\u1e9f\u1efa-\u1eff\u1f16-\u1f17\u1f1e-\u1f1f\u1f46-\u1f47\u1f4e-\u1f4f\u1f58\u1f5a\u1f5c\u1f5e\u1f7e-\u1f7f\u1fb5\u1fbd\u1fbf-\u1fc1\u1fc5\u1fcd-\u1fcf\u1fd4-\u1fd5\u1fdc-\u1fdf\u1fed-\u1ff1\u1ff5\u1ffd-\u2125\u2127-\u2129\u212c-\u212d\u212f-\u217f\u2183-\u3006\u3008-\u3020\u302a-\u3040\u3095-\u30a0\u30fb-\u3104\u312d-\u4dff\u9fa6-\uabff\ud7a4-\uffff]') # noqa + +# Simpler things +nonPubidCharRegexp = re.compile("[^\x20\x0D\x0Aa-zA-Z0-9\\-'()+,./:=?;!*#@$_%]") + + +class InfosetFilter(object): + replacementRegexp = re.compile(r"U[\dA-F]{5,5}") + + def __init__(self, + dropXmlnsLocalName=False, + dropXmlnsAttrNs=False, + preventDoubleDashComments=False, + preventDashAtCommentEnd=False, + replaceFormFeedCharacters=True, + preventSingleQuotePubid=False): + + self.dropXmlnsLocalName = dropXmlnsLocalName + self.dropXmlnsAttrNs = dropXmlnsAttrNs + + self.preventDoubleDashComments = preventDoubleDashComments + self.preventDashAtCommentEnd = preventDashAtCommentEnd + + self.replaceFormFeedCharacters = replaceFormFeedCharacters + + self.preventSingleQuotePubid = preventSingleQuotePubid + + self.replaceCache = {} + + def coerceAttribute(self, name, namespace=None): + if self.dropXmlnsLocalName and name.startswith("xmlns:"): + warnings.warn("Attributes cannot begin with xmlns", DataLossWarning) + return None + elif (self.dropXmlnsAttrNs and + namespace == "http://www.w3.org/2000/xmlns/"): + warnings.warn("Attributes cannot be in the xml namespace", DataLossWarning) + return None + else: + return self.toXmlName(name) + + def coerceElement(self, name): + return self.toXmlName(name) + + def coerceComment(self, data): + if self.preventDoubleDashComments: + while "--" in data: + warnings.warn("Comments cannot contain adjacent dashes", DataLossWarning) + data = data.replace("--", "- -") + if data.endswith("-"): + warnings.warn("Comments cannot end in a dash", DataLossWarning) + data += " " + return data + + def coerceCharacters(self, data): + if self.replaceFormFeedCharacters: + for _ in range(data.count("\x0C")): + warnings.warn("Text cannot contain U+000C", DataLossWarning) + data = data.replace("\x0C", " ") + # Other non-xml characters + return data + + def coercePubid(self, data): + dataOutput = data + for char in nonPubidCharRegexp.findall(data): + warnings.warn("Coercing non-XML pubid", DataLossWarning) + replacement = self.getReplacementCharacter(char) + dataOutput = dataOutput.replace(char, replacement) + if self.preventSingleQuotePubid and dataOutput.find("'") >= 0: + warnings.warn("Pubid cannot contain single quote", DataLossWarning) + dataOutput = dataOutput.replace("'", self.getReplacementCharacter("'")) + return dataOutput + + def toXmlName(self, name): + nameFirst = name[0] + nameRest = name[1:] + m = nonXmlNameFirstBMPRegexp.match(nameFirst) + if m: + warnings.warn("Coercing non-XML name: %s" % name, DataLossWarning) + nameFirstOutput = self.getReplacementCharacter(nameFirst) + else: + nameFirstOutput = nameFirst + + nameRestOutput = nameRest + replaceChars = set(nonXmlNameBMPRegexp.findall(nameRest)) + for char in replaceChars: + warnings.warn("Coercing non-XML name: %s" % name, DataLossWarning) + replacement = self.getReplacementCharacter(char) + nameRestOutput = nameRestOutput.replace(char, replacement) + return nameFirstOutput + nameRestOutput + + def getReplacementCharacter(self, char): + if char in self.replaceCache: + replacement = self.replaceCache[char] + else: + replacement = self.escapeChar(char) + return replacement + + def fromXmlName(self, name): + for item in set(self.replacementRegexp.findall(name)): + name = name.replace(item, self.unescapeChar(item)) + return name + + def escapeChar(self, char): + replacement = "U%05X" % ord(char) + self.replaceCache[char] = replacement + return replacement + + def unescapeChar(self, charcode): + return chr(int(charcode[1:], 16)) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_inputstream.py b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_inputstream.py new file mode 100644 index 00000000..e0bb3760 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_inputstream.py @@ -0,0 +1,918 @@ +from __future__ import absolute_import, division, unicode_literals + +from pip._vendor.six import text_type +from pip._vendor.six.moves import http_client, urllib + +import codecs +import re +from io import BytesIO, StringIO + +from pip._vendor import webencodings + +from .constants import EOF, spaceCharacters, asciiLetters, asciiUppercase +from .constants import _ReparseException +from . import _utils + +# Non-unicode versions of constants for use in the pre-parser +spaceCharactersBytes = frozenset([item.encode("ascii") for item in spaceCharacters]) +asciiLettersBytes = frozenset([item.encode("ascii") for item in asciiLetters]) +asciiUppercaseBytes = frozenset([item.encode("ascii") for item in asciiUppercase]) +spacesAngleBrackets = spaceCharactersBytes | frozenset([b">", b"<"]) + + +invalid_unicode_no_surrogate = "[\u0001-\u0008\u000B\u000E-\u001F\u007F-\u009F\uFDD0-\uFDEF\uFFFE\uFFFF\U0001FFFE\U0001FFFF\U0002FFFE\U0002FFFF\U0003FFFE\U0003FFFF\U0004FFFE\U0004FFFF\U0005FFFE\U0005FFFF\U0006FFFE\U0006FFFF\U0007FFFE\U0007FFFF\U0008FFFE\U0008FFFF\U0009FFFE\U0009FFFF\U000AFFFE\U000AFFFF\U000BFFFE\U000BFFFF\U000CFFFE\U000CFFFF\U000DFFFE\U000DFFFF\U000EFFFE\U000EFFFF\U000FFFFE\U000FFFFF\U0010FFFE\U0010FFFF]" # noqa + +if _utils.supports_lone_surrogates: + # Use one extra step of indirection and create surrogates with + # eval. Not using this indirection would introduce an illegal + # unicode literal on platforms not supporting such lone + # surrogates. + assert invalid_unicode_no_surrogate[-1] == "]" and invalid_unicode_no_surrogate.count("]") == 1 + invalid_unicode_re = re.compile(invalid_unicode_no_surrogate[:-1] + + eval('"\\uD800-\\uDFFF"') + # pylint:disable=eval-used + "]") +else: + invalid_unicode_re = re.compile(invalid_unicode_no_surrogate) + +non_bmp_invalid_codepoints = {0x1FFFE, 0x1FFFF, 0x2FFFE, 0x2FFFF, 0x3FFFE, + 0x3FFFF, 0x4FFFE, 0x4FFFF, 0x5FFFE, 0x5FFFF, + 0x6FFFE, 0x6FFFF, 0x7FFFE, 0x7FFFF, 0x8FFFE, + 0x8FFFF, 0x9FFFE, 0x9FFFF, 0xAFFFE, 0xAFFFF, + 0xBFFFE, 0xBFFFF, 0xCFFFE, 0xCFFFF, 0xDFFFE, + 0xDFFFF, 0xEFFFE, 0xEFFFF, 0xFFFFE, 0xFFFFF, + 0x10FFFE, 0x10FFFF} + +ascii_punctuation_re = re.compile("[\u0009-\u000D\u0020-\u002F\u003A-\u0040\u005C\u005B-\u0060\u007B-\u007E]") + +# Cache for charsUntil() +charsUntilRegEx = {} + + +class BufferedStream(object): + """Buffering for streams that do not have buffering of their own + + The buffer is implemented as a list of chunks on the assumption that + joining many strings will be slow since it is O(n**2) + """ + + def __init__(self, stream): + self.stream = stream + self.buffer = [] + self.position = [-1, 0] # chunk number, offset + + def tell(self): + pos = 0 + for chunk in self.buffer[:self.position[0]]: + pos += len(chunk) + pos += self.position[1] + return pos + + def seek(self, pos): + assert pos <= self._bufferedBytes() + offset = pos + i = 0 + while len(self.buffer[i]) < offset: + offset -= len(self.buffer[i]) + i += 1 + self.position = [i, offset] + + def read(self, bytes): + if not self.buffer: + return self._readStream(bytes) + elif (self.position[0] == len(self.buffer) and + self.position[1] == len(self.buffer[-1])): + return self._readStream(bytes) + else: + return self._readFromBuffer(bytes) + + def _bufferedBytes(self): + return sum([len(item) for item in self.buffer]) + + def _readStream(self, bytes): + data = self.stream.read(bytes) + self.buffer.append(data) + self.position[0] += 1 + self.position[1] = len(data) + return data + + def _readFromBuffer(self, bytes): + remainingBytes = bytes + rv = [] + bufferIndex = self.position[0] + bufferOffset = self.position[1] + while bufferIndex < len(self.buffer) and remainingBytes != 0: + assert remainingBytes > 0 + bufferedData = self.buffer[bufferIndex] + + if remainingBytes <= len(bufferedData) - bufferOffset: + bytesToRead = remainingBytes + self.position = [bufferIndex, bufferOffset + bytesToRead] + else: + bytesToRead = len(bufferedData) - bufferOffset + self.position = [bufferIndex, len(bufferedData)] + bufferIndex += 1 + rv.append(bufferedData[bufferOffset:bufferOffset + bytesToRead]) + remainingBytes -= bytesToRead + + bufferOffset = 0 + + if remainingBytes: + rv.append(self._readStream(remainingBytes)) + + return b"".join(rv) + + +def HTMLInputStream(source, **kwargs): + # Work around Python bug #20007: read(0) closes the connection. + # http://bugs.python.org/issue20007 + if (isinstance(source, http_client.HTTPResponse) or + # Also check for addinfourl wrapping HTTPResponse + (isinstance(source, urllib.response.addbase) and + isinstance(source.fp, http_client.HTTPResponse))): + isUnicode = False + elif hasattr(source, "read"): + isUnicode = isinstance(source.read(0), text_type) + else: + isUnicode = isinstance(source, text_type) + + if isUnicode: + encodings = [x for x in kwargs if x.endswith("_encoding")] + if encodings: + raise TypeError("Cannot set an encoding with a unicode input, set %r" % encodings) + + return HTMLUnicodeInputStream(source, **kwargs) + else: + return HTMLBinaryInputStream(source, **kwargs) + + +class HTMLUnicodeInputStream(object): + """Provides a unicode stream of characters to the HTMLTokenizer. + + This class takes care of character encoding and removing or replacing + incorrect byte-sequences and also provides column and line tracking. + + """ + + _defaultChunkSize = 10240 + + def __init__(self, source): + """Initialises the HTMLInputStream. + + HTMLInputStream(source, [encoding]) -> Normalized stream from source + for use by html5lib. + + source can be either a file-object, local filename or a string. + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element) + + """ + + if not _utils.supports_lone_surrogates: + # Such platforms will have already checked for such + # surrogate errors, so no need to do this checking. + self.reportCharacterErrors = None + elif len("\U0010FFFF") == 1: + self.reportCharacterErrors = self.characterErrorsUCS4 + else: + self.reportCharacterErrors = self.characterErrorsUCS2 + + # List of where new lines occur + self.newLines = [0] + + self.charEncoding = (lookupEncoding("utf-8"), "certain") + self.dataStream = self.openStream(source) + + self.reset() + + def reset(self): + self.chunk = "" + self.chunkSize = 0 + self.chunkOffset = 0 + self.errors = [] + + # number of (complete) lines in previous chunks + self.prevNumLines = 0 + # number of columns in the last line of the previous chunk + self.prevNumCols = 0 + + # Deal with CR LF and surrogates split over chunk boundaries + self._bufferedCharacter = None + + def openStream(self, source): + """Produces a file object from source. + + source can be either a file object, local filename or a string. + + """ + # Already a file object + if hasattr(source, 'read'): + stream = source + else: + stream = StringIO(source) + + return stream + + def _position(self, offset): + chunk = self.chunk + nLines = chunk.count('\n', 0, offset) + positionLine = self.prevNumLines + nLines + lastLinePos = chunk.rfind('\n', 0, offset) + if lastLinePos == -1: + positionColumn = self.prevNumCols + offset + else: + positionColumn = offset - (lastLinePos + 1) + return (positionLine, positionColumn) + + def position(self): + """Returns (line, col) of the current position in the stream.""" + line, col = self._position(self.chunkOffset) + return (line + 1, col) + + def char(self): + """ Read one character from the stream or queue if available. Return + EOF when EOF is reached. + """ + # Read a new chunk from the input stream if necessary + if self.chunkOffset >= self.chunkSize: + if not self.readChunk(): + return EOF + + chunkOffset = self.chunkOffset + char = self.chunk[chunkOffset] + self.chunkOffset = chunkOffset + 1 + + return char + + def readChunk(self, chunkSize=None): + if chunkSize is None: + chunkSize = self._defaultChunkSize + + self.prevNumLines, self.prevNumCols = self._position(self.chunkSize) + + self.chunk = "" + self.chunkSize = 0 + self.chunkOffset = 0 + + data = self.dataStream.read(chunkSize) + + # Deal with CR LF and surrogates broken across chunks + if self._bufferedCharacter: + data = self._bufferedCharacter + data + self._bufferedCharacter = None + elif not data: + # We have no more data, bye-bye stream + return False + + if len(data) > 1: + lastv = ord(data[-1]) + if lastv == 0x0D or 0xD800 <= lastv <= 0xDBFF: + self._bufferedCharacter = data[-1] + data = data[:-1] + + if self.reportCharacterErrors: + self.reportCharacterErrors(data) + + # Replace invalid characters + data = data.replace("\r\n", "\n") + data = data.replace("\r", "\n") + + self.chunk = data + self.chunkSize = len(data) + + return True + + def characterErrorsUCS4(self, data): + for _ in range(len(invalid_unicode_re.findall(data))): + self.errors.append("invalid-codepoint") + + def characterErrorsUCS2(self, data): + # Someone picked the wrong compile option + # You lose + skip = False + for match in invalid_unicode_re.finditer(data): + if skip: + continue + codepoint = ord(match.group()) + pos = match.start() + # Pretty sure there should be endianness issues here + if _utils.isSurrogatePair(data[pos:pos + 2]): + # We have a surrogate pair! + char_val = _utils.surrogatePairToCodepoint(data[pos:pos + 2]) + if char_val in non_bmp_invalid_codepoints: + self.errors.append("invalid-codepoint") + skip = True + elif (codepoint >= 0xD800 and codepoint <= 0xDFFF and + pos == len(data) - 1): + self.errors.append("invalid-codepoint") + else: + skip = False + self.errors.append("invalid-codepoint") + + def charsUntil(self, characters, opposite=False): + """ Returns a string of characters from the stream up to but not + including any character in 'characters' or EOF. 'characters' must be + a container that supports the 'in' method and iteration over its + characters. + """ + + # Use a cache of regexps to find the required characters + try: + chars = charsUntilRegEx[(characters, opposite)] + except KeyError: + if __debug__: + for c in characters: + assert(ord(c) < 128) + regex = "".join(["\\x%02x" % ord(c) for c in characters]) + if not opposite: + regex = "^%s" % regex + chars = charsUntilRegEx[(characters, opposite)] = re.compile("[%s]+" % regex) + + rv = [] + + while True: + # Find the longest matching prefix + m = chars.match(self.chunk, self.chunkOffset) + if m is None: + # If nothing matched, and it wasn't because we ran out of chunk, + # then stop + if self.chunkOffset != self.chunkSize: + break + else: + end = m.end() + # If not the whole chunk matched, return everything + # up to the part that didn't match + if end != self.chunkSize: + rv.append(self.chunk[self.chunkOffset:end]) + self.chunkOffset = end + break + # If the whole remainder of the chunk matched, + # use it all and read the next chunk + rv.append(self.chunk[self.chunkOffset:]) + if not self.readChunk(): + # Reached EOF + break + + r = "".join(rv) + return r + + def unget(self, char): + # Only one character is allowed to be ungotten at once - it must + # be consumed again before any further call to unget + if char is not EOF: + if self.chunkOffset == 0: + # unget is called quite rarely, so it's a good idea to do + # more work here if it saves a bit of work in the frequently + # called char and charsUntil. + # So, just prepend the ungotten character onto the current + # chunk: + self.chunk = char + self.chunk + self.chunkSize += 1 + else: + self.chunkOffset -= 1 + assert self.chunk[self.chunkOffset] == char + + +class HTMLBinaryInputStream(HTMLUnicodeInputStream): + """Provides a unicode stream of characters to the HTMLTokenizer. + + This class takes care of character encoding and removing or replacing + incorrect byte-sequences and also provides column and line tracking. + + """ + + def __init__(self, source, override_encoding=None, transport_encoding=None, + same_origin_parent_encoding=None, likely_encoding=None, + default_encoding="windows-1252", useChardet=True): + """Initialises the HTMLInputStream. + + HTMLInputStream(source, [encoding]) -> Normalized stream from source + for use by html5lib. + + source can be either a file-object, local filename or a string. + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element) + + """ + # Raw Stream - for unicode objects this will encode to utf-8 and set + # self.charEncoding as appropriate + self.rawStream = self.openStream(source) + + HTMLUnicodeInputStream.__init__(self, self.rawStream) + + # Encoding Information + # Number of bytes to use when looking for a meta element with + # encoding information + self.numBytesMeta = 1024 + # Number of bytes to use when using detecting encoding using chardet + self.numBytesChardet = 100 + # Things from args + self.override_encoding = override_encoding + self.transport_encoding = transport_encoding + self.same_origin_parent_encoding = same_origin_parent_encoding + self.likely_encoding = likely_encoding + self.default_encoding = default_encoding + + # Determine encoding + self.charEncoding = self.determineEncoding(useChardet) + assert self.charEncoding[0] is not None + + # Call superclass + self.reset() + + def reset(self): + self.dataStream = self.charEncoding[0].codec_info.streamreader(self.rawStream, 'replace') + HTMLUnicodeInputStream.reset(self) + + def openStream(self, source): + """Produces a file object from source. + + source can be either a file object, local filename or a string. + + """ + # Already a file object + if hasattr(source, 'read'): + stream = source + else: + stream = BytesIO(source) + + try: + stream.seek(stream.tell()) + except Exception: + stream = BufferedStream(stream) + + return stream + + def determineEncoding(self, chardet=True): + # BOMs take precedence over everything + # This will also read past the BOM if present + charEncoding = self.detectBOM(), "certain" + if charEncoding[0] is not None: + return charEncoding + + # If we've been overridden, we've been overridden + charEncoding = lookupEncoding(self.override_encoding), "certain" + if charEncoding[0] is not None: + return charEncoding + + # Now check the transport layer + charEncoding = lookupEncoding(self.transport_encoding), "certain" + if charEncoding[0] is not None: + return charEncoding + + # Look for meta elements with encoding information + charEncoding = self.detectEncodingMeta(), "tentative" + if charEncoding[0] is not None: + return charEncoding + + # Parent document encoding + charEncoding = lookupEncoding(self.same_origin_parent_encoding), "tentative" + if charEncoding[0] is not None and not charEncoding[0].name.startswith("utf-16"): + return charEncoding + + # "likely" encoding + charEncoding = lookupEncoding(self.likely_encoding), "tentative" + if charEncoding[0] is not None: + return charEncoding + + # Guess with chardet, if available + if chardet: + try: + from pip._vendor.chardet.universaldetector import UniversalDetector + except ImportError: + pass + else: + buffers = [] + detector = UniversalDetector() + while not detector.done: + buffer = self.rawStream.read(self.numBytesChardet) + assert isinstance(buffer, bytes) + if not buffer: + break + buffers.append(buffer) + detector.feed(buffer) + detector.close() + encoding = lookupEncoding(detector.result['encoding']) + self.rawStream.seek(0) + if encoding is not None: + return encoding, "tentative" + + # Try the default encoding + charEncoding = lookupEncoding(self.default_encoding), "tentative" + if charEncoding[0] is not None: + return charEncoding + + # Fallback to html5lib's default if even that hasn't worked + return lookupEncoding("windows-1252"), "tentative" + + def changeEncoding(self, newEncoding): + assert self.charEncoding[1] != "certain" + newEncoding = lookupEncoding(newEncoding) + if newEncoding is None: + return + if newEncoding.name in ("utf-16be", "utf-16le"): + newEncoding = lookupEncoding("utf-8") + assert newEncoding is not None + elif newEncoding == self.charEncoding[0]: + self.charEncoding = (self.charEncoding[0], "certain") + else: + self.rawStream.seek(0) + self.charEncoding = (newEncoding, "certain") + self.reset() + raise _ReparseException("Encoding changed from %s to %s" % (self.charEncoding[0], newEncoding)) + + def detectBOM(self): + """Attempts to detect at BOM at the start of the stream. If + an encoding can be determined from the BOM return the name of the + encoding otherwise return None""" + bomDict = { + codecs.BOM_UTF8: 'utf-8', + codecs.BOM_UTF16_LE: 'utf-16le', codecs.BOM_UTF16_BE: 'utf-16be', + codecs.BOM_UTF32_LE: 'utf-32le', codecs.BOM_UTF32_BE: 'utf-32be' + } + + # Go to beginning of file and read in 4 bytes + string = self.rawStream.read(4) + assert isinstance(string, bytes) + + # Try detecting the BOM using bytes from the string + encoding = bomDict.get(string[:3]) # UTF-8 + seek = 3 + if not encoding: + # Need to detect UTF-32 before UTF-16 + encoding = bomDict.get(string) # UTF-32 + seek = 4 + if not encoding: + encoding = bomDict.get(string[:2]) # UTF-16 + seek = 2 + + # Set the read position past the BOM if one was found, otherwise + # set it to the start of the stream + if encoding: + self.rawStream.seek(seek) + return lookupEncoding(encoding) + else: + self.rawStream.seek(0) + return None + + def detectEncodingMeta(self): + """Report the encoding declared by the meta element + """ + buffer = self.rawStream.read(self.numBytesMeta) + assert isinstance(buffer, bytes) + parser = EncodingParser(buffer) + self.rawStream.seek(0) + encoding = parser.getEncoding() + + if encoding is not None and encoding.name in ("utf-16be", "utf-16le"): + encoding = lookupEncoding("utf-8") + + return encoding + + +class EncodingBytes(bytes): + """String-like object with an associated position and various extra methods + If the position is ever greater than the string length then an exception is + raised""" + def __new__(self, value): + assert isinstance(value, bytes) + return bytes.__new__(self, value.lower()) + + def __init__(self, value): + # pylint:disable=unused-argument + self._position = -1 + + def __iter__(self): + return self + + def __next__(self): + p = self._position = self._position + 1 + if p >= len(self): + raise StopIteration + elif p < 0: + raise TypeError + return self[p:p + 1] + + def next(self): + # Py2 compat + return self.__next__() + + def previous(self): + p = self._position + if p >= len(self): + raise StopIteration + elif p < 0: + raise TypeError + self._position = p = p - 1 + return self[p:p + 1] + + def setPosition(self, position): + if self._position >= len(self): + raise StopIteration + self._position = position + + def getPosition(self): + if self._position >= len(self): + raise StopIteration + if self._position >= 0: + return self._position + else: + return None + + position = property(getPosition, setPosition) + + def getCurrentByte(self): + return self[self.position:self.position + 1] + + currentByte = property(getCurrentByte) + + def skip(self, chars=spaceCharactersBytes): + """Skip past a list of characters""" + p = self.position # use property for the error-checking + while p < len(self): + c = self[p:p + 1] + if c not in chars: + self._position = p + return c + p += 1 + self._position = p + return None + + def skipUntil(self, chars): + p = self.position + while p < len(self): + c = self[p:p + 1] + if c in chars: + self._position = p + return c + p += 1 + self._position = p + return None + + def matchBytes(self, bytes): + """Look for a sequence of bytes at the start of a string. If the bytes + are found return True and advance the position to the byte after the + match. Otherwise return False and leave the position alone""" + rv = self.startswith(bytes, self.position) + if rv: + self.position += len(bytes) + return rv + + def jumpTo(self, bytes): + """Look for the next sequence of bytes matching a given sequence. If + a match is found advance the position to the last byte of the match""" + try: + self._position = self.index(bytes, self.position) + len(bytes) - 1 + except ValueError: + raise StopIteration + return True + + +class EncodingParser(object): + """Mini parser for detecting character encoding from meta elements""" + + def __init__(self, data): + """string - the data to work on for encoding detection""" + self.data = EncodingBytes(data) + self.encoding = None + + def getEncoding(self): + if b"") + + def handleMeta(self): + if self.data.currentByte not in spaceCharactersBytes: + # if we have ") + + def getAttribute(self): + """Return a name,value pair for the next attribute in the stream, + if one is found, or None""" + data = self.data + # Step 1 (skip chars) + c = data.skip(spaceCharactersBytes | frozenset([b"/"])) + assert c is None or len(c) == 1 + # Step 2 + if c in (b">", None): + return None + # Step 3 + attrName = [] + attrValue = [] + # Step 4 attribute name + while True: + if c == b"=" and attrName: + break + elif c in spaceCharactersBytes: + # Step 6! + c = data.skip() + break + elif c in (b"/", b">"): + return b"".join(attrName), b"" + elif c in asciiUppercaseBytes: + attrName.append(c.lower()) + elif c is None: + return None + else: + attrName.append(c) + # Step 5 + c = next(data) + # Step 7 + if c != b"=": + data.previous() + return b"".join(attrName), b"" + # Step 8 + next(data) + # Step 9 + c = data.skip() + # Step 10 + if c in (b"'", b'"'): + # 10.1 + quoteChar = c + while True: + # 10.2 + c = next(data) + # 10.3 + if c == quoteChar: + next(data) + return b"".join(attrName), b"".join(attrValue) + # 10.4 + elif c in asciiUppercaseBytes: + attrValue.append(c.lower()) + # 10.5 + else: + attrValue.append(c) + elif c == b">": + return b"".join(attrName), b"" + elif c in asciiUppercaseBytes: + attrValue.append(c.lower()) + elif c is None: + return None + else: + attrValue.append(c) + # Step 11 + while True: + c = next(data) + if c in spacesAngleBrackets: + return b"".join(attrName), b"".join(attrValue) + elif c in asciiUppercaseBytes: + attrValue.append(c.lower()) + elif c is None: + return None + else: + attrValue.append(c) + + +class ContentAttrParser(object): + def __init__(self, data): + assert isinstance(data, bytes) + self.data = data + + def parse(self): + try: + # Check if the attr name is charset + # otherwise return + self.data.jumpTo(b"charset") + self.data.position += 1 + self.data.skip() + if not self.data.currentByte == b"=": + # If there is no = sign keep looking for attrs + return None + self.data.position += 1 + self.data.skip() + # Look for an encoding between matching quote marks + if self.data.currentByte in (b'"', b"'"): + quoteMark = self.data.currentByte + self.data.position += 1 + oldPosition = self.data.position + if self.data.jumpTo(quoteMark): + return self.data[oldPosition:self.data.position] + else: + return None + else: + # Unquoted value + oldPosition = self.data.position + try: + self.data.skipUntil(spaceCharactersBytes) + return self.data[oldPosition:self.data.position] + except StopIteration: + # Return the whole remaining value + return self.data[oldPosition:] + except StopIteration: + return None + + +def lookupEncoding(encoding): + """Return the python codec name corresponding to an encoding or None if the + string doesn't correspond to a valid encoding.""" + if isinstance(encoding, bytes): + try: + encoding = encoding.decode("ascii") + except UnicodeDecodeError: + return None + + if encoding is not None: + try: + return webencodings.lookup(encoding) + except AttributeError: + return None + else: + return None diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_tokenizer.py b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_tokenizer.py new file mode 100644 index 00000000..5f00253e --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_tokenizer.py @@ -0,0 +1,1735 @@ +from __future__ import absolute_import, division, unicode_literals + +from pip._vendor.six import unichr as chr + +from collections import deque, OrderedDict +from sys import version_info + +from .constants import spaceCharacters +from .constants import entities +from .constants import asciiLetters, asciiUpper2Lower +from .constants import digits, hexDigits, EOF +from .constants import tokenTypes, tagTokenTypes +from .constants import replacementCharacters + +from ._inputstream import HTMLInputStream + +from ._trie import Trie + +entitiesTrie = Trie(entities) + +if version_info >= (3, 7): + attributeMap = dict +else: + attributeMap = OrderedDict + + +class HTMLTokenizer(object): + """ This class takes care of tokenizing HTML. + + * self.currentToken + Holds the token that is currently being processed. + + * self.state + Holds a reference to the method to be invoked... XXX + + * self.stream + Points to HTMLInputStream object. + """ + + def __init__(self, stream, parser=None, **kwargs): + + self.stream = HTMLInputStream(stream, **kwargs) + self.parser = parser + + # Setup the initial tokenizer state + self.escapeFlag = False + self.lastFourChars = [] + self.state = self.dataState + self.escape = False + + # The current token being created + self.currentToken = None + super(HTMLTokenizer, self).__init__() + + def __iter__(self): + """ This is where the magic happens. + + We do our usually processing through the states and when we have a token + to return we yield the token which pauses processing until the next token + is requested. + """ + self.tokenQueue = deque([]) + # Start processing. When EOF is reached self.state will return False + # instead of True and the loop will terminate. + while self.state(): + while self.stream.errors: + yield {"type": tokenTypes["ParseError"], "data": self.stream.errors.pop(0)} + while self.tokenQueue: + yield self.tokenQueue.popleft() + + def consumeNumberEntity(self, isHex): + """This function returns either U+FFFD or the character based on the + decimal or hexadecimal representation. It also discards ";" if present. + If not present self.tokenQueue.append({"type": tokenTypes["ParseError"]}) is invoked. + """ + + allowed = digits + radix = 10 + if isHex: + allowed = hexDigits + radix = 16 + + charStack = [] + + # Consume all the characters that are in range while making sure we + # don't hit an EOF. + c = self.stream.char() + while c in allowed and c is not EOF: + charStack.append(c) + c = self.stream.char() + + # Convert the set of characters consumed to an int. + charAsInt = int("".join(charStack), radix) + + # Certain characters get replaced with others + if charAsInt in replacementCharacters: + char = replacementCharacters[charAsInt] + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "illegal-codepoint-for-numeric-entity", + "datavars": {"charAsInt": charAsInt}}) + elif ((0xD800 <= charAsInt <= 0xDFFF) or + (charAsInt > 0x10FFFF)): + char = "\uFFFD" + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "illegal-codepoint-for-numeric-entity", + "datavars": {"charAsInt": charAsInt}}) + else: + # Should speed up this check somehow (e.g. move the set to a constant) + if ((0x0001 <= charAsInt <= 0x0008) or + (0x000E <= charAsInt <= 0x001F) or + (0x007F <= charAsInt <= 0x009F) or + (0xFDD0 <= charAsInt <= 0xFDEF) or + charAsInt in frozenset([0x000B, 0xFFFE, 0xFFFF, 0x1FFFE, + 0x1FFFF, 0x2FFFE, 0x2FFFF, 0x3FFFE, + 0x3FFFF, 0x4FFFE, 0x4FFFF, 0x5FFFE, + 0x5FFFF, 0x6FFFE, 0x6FFFF, 0x7FFFE, + 0x7FFFF, 0x8FFFE, 0x8FFFF, 0x9FFFE, + 0x9FFFF, 0xAFFFE, 0xAFFFF, 0xBFFFE, + 0xBFFFF, 0xCFFFE, 0xCFFFF, 0xDFFFE, + 0xDFFFF, 0xEFFFE, 0xEFFFF, 0xFFFFE, + 0xFFFFF, 0x10FFFE, 0x10FFFF])): + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": + "illegal-codepoint-for-numeric-entity", + "datavars": {"charAsInt": charAsInt}}) + try: + # Try/except needed as UCS-2 Python builds' unichar only works + # within the BMP. + char = chr(charAsInt) + except ValueError: + v = charAsInt - 0x10000 + char = chr(0xD800 | (v >> 10)) + chr(0xDC00 | (v & 0x3FF)) + + # Discard the ; if present. Otherwise, put it back on the queue and + # invoke parseError on parser. + if c != ";": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "numeric-entity-without-semicolon"}) + self.stream.unget(c) + + return char + + def consumeEntity(self, allowedChar=None, fromAttribute=False): + # Initialise to the default output for when no entity is matched + output = "&" + + charStack = [self.stream.char()] + if (charStack[0] in spaceCharacters or charStack[0] in (EOF, "<", "&") or + (allowedChar is not None and allowedChar == charStack[0])): + self.stream.unget(charStack[0]) + + elif charStack[0] == "#": + # Read the next character to see if it's hex or decimal + hex = False + charStack.append(self.stream.char()) + if charStack[-1] in ("x", "X"): + hex = True + charStack.append(self.stream.char()) + + # charStack[-1] should be the first digit + if (hex and charStack[-1] in hexDigits) \ + or (not hex and charStack[-1] in digits): + # At least one digit found, so consume the whole number + self.stream.unget(charStack[-1]) + output = self.consumeNumberEntity(hex) + else: + # No digits found + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "expected-numeric-entity"}) + self.stream.unget(charStack.pop()) + output = "&" + "".join(charStack) + + else: + # At this point in the process might have named entity. Entities + # are stored in the global variable "entities". + # + # Consume characters and compare to these to a substring of the + # entity names in the list until the substring no longer matches. + while (charStack[-1] is not EOF): + if not entitiesTrie.has_keys_with_prefix("".join(charStack)): + break + charStack.append(self.stream.char()) + + # At this point we have a string that starts with some characters + # that may match an entity + # Try to find the longest entity the string will match to take care + # of ¬i for instance. + try: + entityName = entitiesTrie.longest_prefix("".join(charStack[:-1])) + entityLength = len(entityName) + except KeyError: + entityName = None + + if entityName is not None: + if entityName[-1] != ";": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "named-entity-without-semicolon"}) + if (entityName[-1] != ";" and fromAttribute and + (charStack[entityLength] in asciiLetters or + charStack[entityLength] in digits or + charStack[entityLength] == "=")): + self.stream.unget(charStack.pop()) + output = "&" + "".join(charStack) + else: + output = entities[entityName] + self.stream.unget(charStack.pop()) + output += "".join(charStack[entityLength:]) + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-named-entity"}) + self.stream.unget(charStack.pop()) + output = "&" + "".join(charStack) + + if fromAttribute: + self.currentToken["data"][-1][1] += output + else: + if output in spaceCharacters: + tokenType = "SpaceCharacters" + else: + tokenType = "Characters" + self.tokenQueue.append({"type": tokenTypes[tokenType], "data": output}) + + def processEntityInAttribute(self, allowedChar): + """This method replaces the need for "entityInAttributeValueState". + """ + self.consumeEntity(allowedChar=allowedChar, fromAttribute=True) + + def emitCurrentToken(self): + """This method is a generic handler for emitting the tags. It also sets + the state to "data" because that's what's needed after a token has been + emitted. + """ + token = self.currentToken + # Add token to the queue to be yielded + if (token["type"] in tagTokenTypes): + token["name"] = token["name"].translate(asciiUpper2Lower) + if token["type"] == tokenTypes["StartTag"]: + raw = token["data"] + data = attributeMap(raw) + if len(raw) > len(data): + # we had some duplicated attribute, fix so first wins + data.update(raw[::-1]) + token["data"] = data + + if token["type"] == tokenTypes["EndTag"]: + if token["data"]: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "attributes-in-end-tag"}) + if token["selfClosing"]: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "self-closing-flag-on-end-tag"}) + self.tokenQueue.append(token) + self.state = self.dataState + + # Below are the various tokenizer states worked out. + def dataState(self): + data = self.stream.char() + if data == "&": + self.state = self.entityDataState + elif data == "<": + self.state = self.tagOpenState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\u0000"}) + elif data is EOF: + # Tokenization ends. + return False + elif data in spaceCharacters: + # Directly after emitting a token you switch back to the "data + # state". At that point spaceCharacters are important so they are + # emitted separately. + self.tokenQueue.append({"type": tokenTypes["SpaceCharacters"], "data": + data + self.stream.charsUntil(spaceCharacters, True)}) + # No need to update lastFourChars here, since the first space will + # have already been appended to lastFourChars and will have broken + # any sequences + else: + chars = self.stream.charsUntil(("&", "<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def entityDataState(self): + self.consumeEntity() + self.state = self.dataState + return True + + def rcdataState(self): + data = self.stream.char() + if data == "&": + self.state = self.characterReferenceInRcdata + elif data == "<": + self.state = self.rcdataLessThanSignState + elif data == EOF: + # Tokenization ends. + return False + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data in spaceCharacters: + # Directly after emitting a token you switch back to the "data + # state". At that point spaceCharacters are important so they are + # emitted separately. + self.tokenQueue.append({"type": tokenTypes["SpaceCharacters"], "data": + data + self.stream.charsUntil(spaceCharacters, True)}) + # No need to update lastFourChars here, since the first space will + # have already been appended to lastFourChars and will have broken + # any sequences + else: + chars = self.stream.charsUntil(("&", "<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def characterReferenceInRcdata(self): + self.consumeEntity() + self.state = self.rcdataState + return True + + def rawtextState(self): + data = self.stream.char() + if data == "<": + self.state = self.rawtextLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data == EOF: + # Tokenization ends. + return False + else: + chars = self.stream.charsUntil(("<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def scriptDataState(self): + data = self.stream.char() + if data == "<": + self.state = self.scriptDataLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data == EOF: + # Tokenization ends. + return False + else: + chars = self.stream.charsUntil(("<", "\u0000")) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + chars}) + return True + + def plaintextState(self): + data = self.stream.char() + if data == EOF: + # Tokenization ends. + return False + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": + data + self.stream.charsUntil("\u0000")}) + return True + + def tagOpenState(self): + data = self.stream.char() + if data == "!": + self.state = self.markupDeclarationOpenState + elif data == "/": + self.state = self.closeTagOpenState + elif data in asciiLetters: + self.currentToken = {"type": tokenTypes["StartTag"], + "name": data, "data": [], + "selfClosing": False, + "selfClosingAcknowledged": False} + self.state = self.tagNameState + elif data == ">": + # XXX In theory it could be something besides a tag name. But + # do we really care? + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-tag-name-but-got-right-bracket"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<>"}) + self.state = self.dataState + elif data == "?": + # XXX In theory it could be something besides a tag name. But + # do we really care? + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-tag-name-but-got-question-mark"}) + self.stream.unget(data) + self.state = self.bogusCommentState + else: + # XXX + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-tag-name"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.stream.unget(data) + self.state = self.dataState + return True + + def closeTagOpenState(self): + data = self.stream.char() + if data in asciiLetters: + self.currentToken = {"type": tokenTypes["EndTag"], "name": data, + "data": [], "selfClosing": False} + self.state = self.tagNameState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-closing-tag-but-got-right-bracket"}) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-closing-tag-but-got-eof"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "": + self.emitCurrentToken() + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-tag-name"}) + self.state = self.dataState + elif data == "/": + self.state = self.selfClosingStartTagState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["name"] += "\uFFFD" + else: + self.currentToken["name"] += data + # (Don't use charsUntil here, because tag names are + # very short and it's faster to not do anything fancy) + return True + + def rcdataLessThanSignState(self): + data = self.stream.char() + if data == "/": + self.temporaryBuffer = "" + self.state = self.rcdataEndTagOpenState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.stream.unget(data) + self.state = self.rcdataState + return True + + def rcdataEndTagOpenState(self): + data = self.stream.char() + if data in asciiLetters: + self.temporaryBuffer += data + self.state = self.rcdataEndTagNameState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": ">"}) + self.state = self.scriptDataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + self.state = self.scriptDataEscapedState + elif data == EOF: + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.state = self.scriptDataEscapedState + return True + + def scriptDataEscapedLessThanSignState(self): + data = self.stream.char() + if data == "/": + self.temporaryBuffer = "" + self.state = self.scriptDataEscapedEndTagOpenState + elif data in asciiLetters: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<" + data}) + self.temporaryBuffer = data + self.state = self.scriptDataDoubleEscapeStartState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.stream.unget(data) + self.state = self.scriptDataEscapedState + return True + + def scriptDataEscapedEndTagOpenState(self): + data = self.stream.char() + if data in asciiLetters: + self.temporaryBuffer = data + self.state = self.scriptDataEscapedEndTagNameState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "" and appropriate: + self.currentToken = {"type": tokenTypes["EndTag"], + "name": self.temporaryBuffer, + "data": [], "selfClosing": False} + self.emitCurrentToken() + self.state = self.dataState + elif data in asciiLetters: + self.temporaryBuffer += data + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": ""))): + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + if self.temporaryBuffer.lower() == "script": + self.state = self.scriptDataDoubleEscapedState + else: + self.state = self.scriptDataEscapedState + elif data in asciiLetters: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.temporaryBuffer += data + else: + self.stream.unget(data) + self.state = self.scriptDataEscapedState + return True + + def scriptDataDoubleEscapedState(self): + data = self.stream.char() + if data == "-": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "-"}) + self.state = self.scriptDataDoubleEscapedDashState + elif data == "<": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.state = self.scriptDataDoubleEscapedLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-script-in-script"}) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + return True + + def scriptDataDoubleEscapedDashState(self): + data = self.stream.char() + if data == "-": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "-"}) + self.state = self.scriptDataDoubleEscapedDashDashState + elif data == "<": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.state = self.scriptDataDoubleEscapedLessThanSignState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + self.state = self.scriptDataDoubleEscapedState + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-script-in-script"}) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.state = self.scriptDataDoubleEscapedState + return True + + def scriptDataDoubleEscapedDashDashState(self): + data = self.stream.char() + if data == "-": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "-"}) + elif data == "<": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "<"}) + self.state = self.scriptDataDoubleEscapedLessThanSignState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": ">"}) + self.state = self.scriptDataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": "\uFFFD"}) + self.state = self.scriptDataDoubleEscapedState + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-script-in-script"}) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.state = self.scriptDataDoubleEscapedState + return True + + def scriptDataDoubleEscapedLessThanSignState(self): + data = self.stream.char() + if data == "/": + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": "/"}) + self.temporaryBuffer = "" + self.state = self.scriptDataDoubleEscapeEndState + else: + self.stream.unget(data) + self.state = self.scriptDataDoubleEscapedState + return True + + def scriptDataDoubleEscapeEndState(self): + data = self.stream.char() + if data in (spaceCharacters | frozenset(("/", ">"))): + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + if self.temporaryBuffer.lower() == "script": + self.state = self.scriptDataEscapedState + else: + self.state = self.scriptDataDoubleEscapedState + elif data in asciiLetters: + self.tokenQueue.append({"type": tokenTypes["Characters"], "data": data}) + self.temporaryBuffer += data + else: + self.stream.unget(data) + self.state = self.scriptDataDoubleEscapedState + return True + + def beforeAttributeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + self.stream.charsUntil(spaceCharacters, True) + elif data in asciiLetters: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data == ">": + self.emitCurrentToken() + elif data == "/": + self.state = self.selfClosingStartTagState + elif data in ("'", '"', "=", "<"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "invalid-character-in-attribute-name"}) + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"].append(["\uFFFD", ""]) + self.state = self.attributeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-attribute-name-but-got-eof"}) + self.state = self.dataState + else: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + return True + + def attributeNameState(self): + data = self.stream.char() + leavingThisState = True + emitToken = False + if data == "=": + self.state = self.beforeAttributeValueState + elif data in asciiLetters: + self.currentToken["data"][-1][0] += data +\ + self.stream.charsUntil(asciiLetters, True) + leavingThisState = False + elif data == ">": + # XXX If we emit here the attributes are converted to a dict + # without being checked and when the code below runs we error + # because data is a dict not a list + emitToken = True + elif data in spaceCharacters: + self.state = self.afterAttributeNameState + elif data == "/": + self.state = self.selfClosingStartTagState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][0] += "\uFFFD" + leavingThisState = False + elif data in ("'", '"', "<"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": + "invalid-character-in-attribute-name"}) + self.currentToken["data"][-1][0] += data + leavingThisState = False + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "eof-in-attribute-name"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][0] += data + leavingThisState = False + + if leavingThisState: + # Attributes are not dropped at this stage. That happens when the + # start tag token is emitted so values can still be safely appended + # to attributes, but we do want to report the parse error in time. + self.currentToken["data"][-1][0] = ( + self.currentToken["data"][-1][0].translate(asciiUpper2Lower)) + for name, _ in self.currentToken["data"][:-1]: + if self.currentToken["data"][-1][0] == name: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "duplicate-attribute"}) + break + # XXX Fix for above XXX + if emitToken: + self.emitCurrentToken() + return True + + def afterAttributeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + self.stream.charsUntil(spaceCharacters, True) + elif data == "=": + self.state = self.beforeAttributeValueState + elif data == ">": + self.emitCurrentToken() + elif data in asciiLetters: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data == "/": + self.state = self.selfClosingStartTagState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"].append(["\uFFFD", ""]) + self.state = self.attributeNameState + elif data in ("'", '"', "<"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "invalid-character-after-attribute-name"}) + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-end-of-tag-but-got-eof"}) + self.state = self.dataState + else: + self.currentToken["data"].append([data, ""]) + self.state = self.attributeNameState + return True + + def beforeAttributeValueState(self): + data = self.stream.char() + if data in spaceCharacters: + self.stream.charsUntil(spaceCharacters, True) + elif data == "\"": + self.state = self.attributeValueDoubleQuotedState + elif data == "&": + self.state = self.attributeValueUnQuotedState + self.stream.unget(data) + elif data == "'": + self.state = self.attributeValueSingleQuotedState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-attribute-value-but-got-right-bracket"}) + self.emitCurrentToken() + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + self.state = self.attributeValueUnQuotedState + elif data in ("=", "<", "`"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "equals-in-unquoted-attribute-value"}) + self.currentToken["data"][-1][1] += data + self.state = self.attributeValueUnQuotedState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-attribute-value-but-got-eof"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data + self.state = self.attributeValueUnQuotedState + return True + + def attributeValueDoubleQuotedState(self): + data = self.stream.char() + if data == "\"": + self.state = self.afterAttributeValueState + elif data == "&": + self.processEntityInAttribute('"') + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-attribute-value-double-quote"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data +\ + self.stream.charsUntil(("\"", "&", "\u0000")) + return True + + def attributeValueSingleQuotedState(self): + data = self.stream.char() + if data == "'": + self.state = self.afterAttributeValueState + elif data == "&": + self.processEntityInAttribute("'") + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-attribute-value-single-quote"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data +\ + self.stream.charsUntil(("'", "&", "\u0000")) + return True + + def attributeValueUnQuotedState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeAttributeNameState + elif data == "&": + self.processEntityInAttribute(">") + elif data == ">": + self.emitCurrentToken() + elif data in ('"', "'", "=", "<", "`"): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-character-in-unquoted-attribute-value"}) + self.currentToken["data"][-1][1] += data + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"][-1][1] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-attribute-value-no-quotes"}) + self.state = self.dataState + else: + self.currentToken["data"][-1][1] += data + self.stream.charsUntil( + frozenset(("&", ">", '"', "'", "=", "<", "`", "\u0000")) | spaceCharacters) + return True + + def afterAttributeValueState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeAttributeNameState + elif data == ">": + self.emitCurrentToken() + elif data == "/": + self.state = self.selfClosingStartTagState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-EOF-after-attribute-value"}) + self.stream.unget(data) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-character-after-attribute-value"}) + self.stream.unget(data) + self.state = self.beforeAttributeNameState + return True + + def selfClosingStartTagState(self): + data = self.stream.char() + if data == ">": + self.currentToken["selfClosing"] = True + self.emitCurrentToken() + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": + "unexpected-EOF-after-solidus-in-tag"}) + self.stream.unget(data) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-character-after-solidus-in-tag"}) + self.stream.unget(data) + self.state = self.beforeAttributeNameState + return True + + def bogusCommentState(self): + # Make a new comment token and give it as value all the characters + # until the first > or EOF (charsUntil checks for EOF automatically) + # and emit it. + data = self.stream.charsUntil(">") + data = data.replace("\u0000", "\uFFFD") + self.tokenQueue.append( + {"type": tokenTypes["Comment"], "data": data}) + + # Eat the character directly after the bogus comment which is either a + # ">" or an EOF. + self.stream.char() + self.state = self.dataState + return True + + def markupDeclarationOpenState(self): + charStack = [self.stream.char()] + if charStack[-1] == "-": + charStack.append(self.stream.char()) + if charStack[-1] == "-": + self.currentToken = {"type": tokenTypes["Comment"], "data": ""} + self.state = self.commentStartState + return True + elif charStack[-1] in ('d', 'D'): + matched = True + for expected in (('o', 'O'), ('c', 'C'), ('t', 'T'), + ('y', 'Y'), ('p', 'P'), ('e', 'E')): + charStack.append(self.stream.char()) + if charStack[-1] not in expected: + matched = False + break + if matched: + self.currentToken = {"type": tokenTypes["Doctype"], + "name": "", + "publicId": None, "systemId": None, + "correct": True} + self.state = self.doctypeState + return True + elif (charStack[-1] == "[" and + self.parser is not None and + self.parser.tree.openElements and + self.parser.tree.openElements[-1].namespace != self.parser.tree.defaultNamespace): + matched = True + for expected in ["C", "D", "A", "T", "A", "["]: + charStack.append(self.stream.char()) + if charStack[-1] != expected: + matched = False + break + if matched: + self.state = self.cdataSectionState + return True + + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-dashes-or-doctype"}) + + while charStack: + self.stream.unget(charStack.pop()) + self.state = self.bogusCommentState + return True + + def commentStartState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentStartDashState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "incorrect-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += data + self.state = self.commentState + return True + + def commentStartDashState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentEndState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "-\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "incorrect-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += "-" + data + self.state = self.commentState + return True + + def commentState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentEndDashState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "\uFFFD" + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "eof-in-comment"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += data + \ + self.stream.charsUntil(("-", "\u0000")) + return True + + def commentEndDashState(self): + data = self.stream.char() + if data == "-": + self.state = self.commentEndState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "-\uFFFD" + self.state = self.commentState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment-end-dash"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += "-" + data + self.state = self.commentState + return True + + def commentEndState(self): + data = self.stream.char() + if data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "--\uFFFD" + self.state = self.commentState + elif data == "!": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-bang-after-double-dash-in-comment"}) + self.state = self.commentEndBangState + elif data == "-": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-dash-after-double-dash-in-comment"}) + self.currentToken["data"] += data + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment-double-dash"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + # XXX + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-comment"}) + self.currentToken["data"] += "--" + data + self.state = self.commentState + return True + + def commentEndBangState(self): + data = self.stream.char() + if data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "-": + self.currentToken["data"] += "--!" + self.state = self.commentEndDashState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["data"] += "--!\uFFFD" + self.state = self.commentState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-comment-end-bang-state"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["data"] += "--!" + data + self.state = self.commentState + return True + + def doctypeState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeDoctypeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-doctype-name-but-got-eof"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "need-space-after-doctype"}) + self.stream.unget(data) + self.state = self.beforeDoctypeNameState + return True + + def beforeDoctypeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-doctype-name-but-got-right-bracket"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["name"] = "\uFFFD" + self.state = self.doctypeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-doctype-name-but-got-eof"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["name"] = data + self.state = self.doctypeNameState + return True + + def doctypeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + self.currentToken["name"] = self.currentToken["name"].translate(asciiUpper2Lower) + self.state = self.afterDoctypeNameState + elif data == ">": + self.currentToken["name"] = self.currentToken["name"].translate(asciiUpper2Lower) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["name"] += "\uFFFD" + self.state = self.doctypeNameState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype-name"}) + self.currentToken["correct"] = False + self.currentToken["name"] = self.currentToken["name"].translate(asciiUpper2Lower) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["name"] += data + return True + + def afterDoctypeNameState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.currentToken["correct"] = False + self.stream.unget(data) + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + if data in ("p", "P"): + matched = True + for expected in (("u", "U"), ("b", "B"), ("l", "L"), + ("i", "I"), ("c", "C")): + data = self.stream.char() + if data not in expected: + matched = False + break + if matched: + self.state = self.afterDoctypePublicKeywordState + return True + elif data in ("s", "S"): + matched = True + for expected in (("y", "Y"), ("s", "S"), ("t", "T"), + ("e", "E"), ("m", "M")): + data = self.stream.char() + if data not in expected: + matched = False + break + if matched: + self.state = self.afterDoctypeSystemKeywordState + return True + + # All the characters read before the current 'data' will be + # [a-zA-Z], so they're garbage in the bogus doctype and can be + # discarded; only the latest character might be '>' or EOF + # and needs to be ungetted + self.stream.unget(data) + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "expected-space-or-right-bracket-in-doctype", "datavars": + {"data": data}}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + + return True + + def afterDoctypePublicKeywordState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeDoctypePublicIdentifierState + elif data in ("'", '"'): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.stream.unget(data) + self.state = self.beforeDoctypePublicIdentifierState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.stream.unget(data) + self.state = self.beforeDoctypePublicIdentifierState + return True + + def beforeDoctypePublicIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == "\"": + self.currentToken["publicId"] = "" + self.state = self.doctypePublicIdentifierDoubleQuotedState + elif data == "'": + self.currentToken["publicId"] = "" + self.state = self.doctypePublicIdentifierSingleQuotedState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def doctypePublicIdentifierDoubleQuotedState(self): + data = self.stream.char() + if data == "\"": + self.state = self.afterDoctypePublicIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["publicId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["publicId"] += data + return True + + def doctypePublicIdentifierSingleQuotedState(self): + data = self.stream.char() + if data == "'": + self.state = self.afterDoctypePublicIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["publicId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["publicId"] += data + return True + + def afterDoctypePublicIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.betweenDoctypePublicAndSystemIdentifiersState + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == '"': + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierDoubleQuotedState + elif data == "'": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierSingleQuotedState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def betweenDoctypePublicAndSystemIdentifiersState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data == '"': + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierDoubleQuotedState + elif data == "'": + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierSingleQuotedState + elif data == EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def afterDoctypeSystemKeywordState(self): + data = self.stream.char() + if data in spaceCharacters: + self.state = self.beforeDoctypeSystemIdentifierState + elif data in ("'", '"'): + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.stream.unget(data) + self.state = self.beforeDoctypeSystemIdentifierState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.stream.unget(data) + self.state = self.beforeDoctypeSystemIdentifierState + return True + + def beforeDoctypeSystemIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == "\"": + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierDoubleQuotedState + elif data == "'": + self.currentToken["systemId"] = "" + self.state = self.doctypeSystemIdentifierSingleQuotedState + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.currentToken["correct"] = False + self.state = self.bogusDoctypeState + return True + + def doctypeSystemIdentifierDoubleQuotedState(self): + data = self.stream.char() + if data == "\"": + self.state = self.afterDoctypeSystemIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["systemId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["systemId"] += data + return True + + def doctypeSystemIdentifierSingleQuotedState(self): + data = self.stream.char() + if data == "'": + self.state = self.afterDoctypeSystemIdentifierState + elif data == "\u0000": + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + self.currentToken["systemId"] += "\uFFFD" + elif data == ">": + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-end-of-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.currentToken["systemId"] += data + return True + + def afterDoctypeSystemIdentifierState(self): + data = self.stream.char() + if data in spaceCharacters: + pass + elif data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "eof-in-doctype"}) + self.currentToken["correct"] = False + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + self.tokenQueue.append({"type": tokenTypes["ParseError"], "data": + "unexpected-char-in-doctype"}) + self.state = self.bogusDoctypeState + return True + + def bogusDoctypeState(self): + data = self.stream.char() + if data == ">": + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + elif data is EOF: + # XXX EMIT + self.stream.unget(data) + self.tokenQueue.append(self.currentToken) + self.state = self.dataState + else: + pass + return True + + def cdataSectionState(self): + data = [] + while True: + data.append(self.stream.charsUntil("]")) + data.append(self.stream.charsUntil(">")) + char = self.stream.char() + if char == EOF: + break + else: + assert char == ">" + if data[-1][-2:] == "]]": + data[-1] = data[-1][:-2] + break + else: + data.append(char) + + data = "".join(data) # pylint:disable=redefined-variable-type + # Deal with null here rather than in the parser + nullCount = data.count("\u0000") + if nullCount > 0: + for _ in range(nullCount): + self.tokenQueue.append({"type": tokenTypes["ParseError"], + "data": "invalid-codepoint"}) + data = data.replace("\u0000", "\uFFFD") + if data: + self.tokenQueue.append({"type": tokenTypes["Characters"], + "data": data}) + self.state = self.dataState + return True diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__init__.py b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__init__.py new file mode 100644 index 00000000..07bad5d3 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__init__.py @@ -0,0 +1,5 @@ +from __future__ import absolute_import, division, unicode_literals + +from .py import Trie + +__all__ = ["Trie"] diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8c6becf2df383b552fd20957519f0d8827885b1c GIT binary patch literal 316 zcmYjMJ5B>J5VgIZL=h1b9DsI_7FS3hAw)+<12o$Vo7hPP?6vXQK{){8EL_PgRjxpV zor)*Tn|YcUy_x6vd`1$^zCK@c%0F5B2TS5E#dw}b5J45uw4<7JOcz~2iD05orLMXv z)#aLYwWuCRQ}5F}X^MELebTNt^+!f)7ptxO|Q)GL?xUv%AAsoB;Gn0elme|2fd_J@?vji?$7e?U!#-v>zKO zRr|hv_1E@lm3thvauCMxjo0c@;evxt?i>II^Z*xj7pFJch@j+czHiLVr|gLR0o&A4 Ar2qf` literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c3bd2a8939ebf6511b5e376ff6b85da2f24250d GIT binary patch literal 1568 zcmZ`(L2n#26n^&1?#^yDX_SOQP>EI?5PQgOFGzr*2t)uOL@o&eMylM&*qaQQ*_qhh zwpmRsY^wCkFG!C4OTKdI58%Ry_q=Jfp=Cz)c?BB*L&0KJ@R%1t959%!;w;a@q7gS3`~u@%2&#G7(R&Q&^{cJ<>TfXS zzryz*0~ua|3{_(m#F1ST1qAI z%qpGarq5jKr=+T~@o`Gq7oYI<$9#zc1u>HlbIIaBE?vQhc?j(|lnvRugt#GFGQw|D zwq*yutt$v2ju2Sag@-y*(~rJBGFB(4?HwgX_0l{srZ*~e&*G}tPx(S{OeDN+<{|!A zu&jm|zvee^!CzofP9wc#gPPCS0eC!2^2?~^dq6Y&U_WIG4#{}~+d4M$A$BKF!=tqe zR}V*6?@&+@2GzN1?-*s% zvZ!`FwkCRR0*4MvA5hu`r|R4ccJeaCa_tV@823ZhFq2AYO*>pjW-dTisDRL@e5AWL zuUD}{+-)IzzJ<_BG`;+Kjf@OQ6!;2{Sj4C8H&NfJ2r1$l+VC-UHC)3D?7^dr3tsbU zOe7{TLb+o0&mzfv4GzESbB{q&jDDck@Z*uW01^8<&O1WnHck>Fh>4)Yi+Qr&!<9Ki z)@2=nxalFj%l7{vAEK8UC3M=<-5McU1d5VkGbY*lC@duMDH1`E*L(?{^Gzg(wp)uc z98V*X+p=gkV}GD6lH~iZNNAY$hEB%E$_2R^yXZ%C{;k%fzQdVi|7E76s326D8X0ZEhzi2?`%F`eJE&Uuf~ps) zv3@tAz&oS(1UDOhGhivEAG`yYH={^x7YQ*=3MGW=2vL-BlGC^=#MvatZ&zAE$TCG; zl2SEc_W<=4j@@!ZmaiFdhx!K3lAjdtebc1Z{x$Oh+Z Jm94O~;9r-!VSNAq literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bbbe63bf564f276ed8e6c12770ea7116ef47acbb GIT binary patch literal 2225 zcmb7F&2Jk;6rY*>@Y-<_w?t`!pcn)~2F2z=0V#?a3PnOyE=@UDpkd<~$D8b~otbf) zSnCT8;=e%6u~+__xpL}>J15?owbM9MLagOC^WMC9Z|3(t=IQEcjlkFZ?bo0G3JLiW znd_eq%meuA$3O%TG$k4B(u{Rk=5;-aGM4&T&<)(&OT(!?FGvor{0}VxBDh25F8E}yx;4a+n;T0F( z!j%Srz6+!vKQ*S*fGb01><2>0DZ`B~>3)mZ8bF$B6X!jt0?-B#Yky|x*-N5Uf&Y82 zW3o|al#I5=`6%w4NU{BVAZ5CJdUR~Q8hzQvwGMwKb1_t%fyvU()8w$j4Zz(QowrBl zwz_j9b9pvWyDNAo1i~kbOqv*yHs?v67|z=}>97aE+-+Z}PwwueY4b#$>t;6Arg*2k^x@+Db=^V(=}Oe_pt2SVs3jaW$6Xh@g@V_P86PdrVHk zCqz|&eM!{@4otlbgZ1E~H=Wlx?+tSkL!>x=3$(OLE;_k2cl&yEDHjl;CD)Jz=ZP7pJE(zCQ1Ai}mncwdLbNJnqJ|?S`^lMQ>Cm!4 zVgt9=(nQ@x{pGki*?S<@7z!+%8mrS9-DC|{LOyHI2FODAPpU2gSg}jUBkEVk3t$$7 zq}D`izqEmsugxN0K#0Lh0)K0@Nc)yCQD zW4alZiF?biO=;vJ8dW2&{MGKbwf)u#I_;0mSbwmfT-^M1EMF{w*UYD literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/_base.py b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/_base.py new file mode 100644 index 00000000..6b71975f --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/_base.py @@ -0,0 +1,40 @@ +from __future__ import absolute_import, division, unicode_literals + +try: + from collections.abc import Mapping +except ImportError: # Python 2.7 + from collections import Mapping + + +class Trie(Mapping): + """Abstract base class for tries""" + + def keys(self, prefix=None): + # pylint:disable=arguments-differ + keys = super(Trie, self).keys() + + if prefix is None: + return set(keys) + + return {x for x in keys if x.startswith(prefix)} + + def has_keys_with_prefix(self, prefix): + for key in self.keys(): + if key.startswith(prefix): + return True + + return False + + def longest_prefix(self, prefix): + if prefix in self: + return prefix + + for i in range(1, len(prefix) + 1): + if prefix[:-i] in self: + return prefix[:-i] + + raise KeyError(prefix) + + def longest_prefix_item(self, prefix): + lprefix = self.longest_prefix(prefix) + return (lprefix, self[lprefix]) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/py.py b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/py.py new file mode 100644 index 00000000..c178b219 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/py.py @@ -0,0 +1,67 @@ +from __future__ import absolute_import, division, unicode_literals +from pip._vendor.six import text_type + +from bisect import bisect_left + +from ._base import Trie as ABCTrie + + +class Trie(ABCTrie): + def __init__(self, data): + if not all(isinstance(x, text_type) for x in data.keys()): + raise TypeError("All keys must be strings") + + self._data = data + self._keys = sorted(data.keys()) + self._cachestr = "" + self._cachepoints = (0, len(data)) + + def __contains__(self, key): + return key in self._data + + def __len__(self): + return len(self._data) + + def __iter__(self): + return iter(self._data) + + def __getitem__(self, key): + return self._data[key] + + def keys(self, prefix=None): + if prefix is None or prefix == "" or not self._keys: + return set(self._keys) + + if prefix.startswith(self._cachestr): + lo, hi = self._cachepoints + start = i = bisect_left(self._keys, prefix, lo, hi) + else: + start = i = bisect_left(self._keys, prefix) + + keys = set() + if start == len(self._keys): + return keys + + while self._keys[i].startswith(prefix): + keys.add(self._keys[i]) + i += 1 + + self._cachestr = prefix + self._cachepoints = (start, i) + + return keys + + def has_keys_with_prefix(self, prefix): + if prefix in self._data: + return True + + if prefix.startswith(self._cachestr): + lo, hi = self._cachepoints + i = bisect_left(self._keys, prefix, lo, hi) + else: + i = bisect_left(self._keys, prefix) + + if i == len(self._keys): + return False + + return self._keys[i].startswith(prefix) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_utils.py b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_utils.py new file mode 100644 index 00000000..d7c4926a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_utils.py @@ -0,0 +1,159 @@ +from __future__ import absolute_import, division, unicode_literals + +from types import ModuleType + +try: + from collections.abc import Mapping +except ImportError: + from collections import Mapping + +from pip._vendor.six import text_type, PY3 + +if PY3: + import xml.etree.ElementTree as default_etree +else: + try: + import xml.etree.cElementTree as default_etree + except ImportError: + import xml.etree.ElementTree as default_etree + + +__all__ = ["default_etree", "MethodDispatcher", "isSurrogatePair", + "surrogatePairToCodepoint", "moduleFactoryFactory", + "supports_lone_surrogates"] + + +# Platforms not supporting lone surrogates (\uD800-\uDFFF) should be +# caught by the below test. In general this would be any platform +# using UTF-16 as its encoding of unicode strings, such as +# Jython. This is because UTF-16 itself is based on the use of such +# surrogates, and there is no mechanism to further escape such +# escapes. +try: + _x = eval('"\\uD800"') # pylint:disable=eval-used + if not isinstance(_x, text_type): + # We need this with u"" because of http://bugs.jython.org/issue2039 + _x = eval('u"\\uD800"') # pylint:disable=eval-used + assert isinstance(_x, text_type) +except Exception: + supports_lone_surrogates = False +else: + supports_lone_surrogates = True + + +class MethodDispatcher(dict): + """Dict with 2 special properties: + + On initiation, keys that are lists, sets or tuples are converted to + multiple keys so accessing any one of the items in the original + list-like object returns the matching value + + md = MethodDispatcher({("foo", "bar"):"baz"}) + md["foo"] == "baz" + + A default value which can be set through the default attribute. + """ + + def __init__(self, items=()): + _dictEntries = [] + for name, value in items: + if isinstance(name, (list, tuple, frozenset, set)): + for item in name: + _dictEntries.append((item, value)) + else: + _dictEntries.append((name, value)) + dict.__init__(self, _dictEntries) + assert len(self) == len(_dictEntries) + self.default = None + + def __getitem__(self, key): + return dict.get(self, key, self.default) + + def __get__(self, instance, owner=None): + return BoundMethodDispatcher(instance, self) + + +class BoundMethodDispatcher(Mapping): + """Wraps a MethodDispatcher, binding its return values to `instance`""" + def __init__(self, instance, dispatcher): + self.instance = instance + self.dispatcher = dispatcher + + def __getitem__(self, key): + # see https://docs.python.org/3/reference/datamodel.html#object.__get__ + # on a function, __get__ is used to bind a function to an instance as a bound method + return self.dispatcher[key].__get__(self.instance) + + def get(self, key, default): + if key in self.dispatcher: + return self[key] + else: + return default + + def __iter__(self): + return iter(self.dispatcher) + + def __len__(self): + return len(self.dispatcher) + + def __contains__(self, key): + return key in self.dispatcher + + +# Some utility functions to deal with weirdness around UCS2 vs UCS4 +# python builds + +def isSurrogatePair(data): + return (len(data) == 2 and + ord(data[0]) >= 0xD800 and ord(data[0]) <= 0xDBFF and + ord(data[1]) >= 0xDC00 and ord(data[1]) <= 0xDFFF) + + +def surrogatePairToCodepoint(data): + char_val = (0x10000 + (ord(data[0]) - 0xD800) * 0x400 + + (ord(data[1]) - 0xDC00)) + return char_val + +# Module Factory Factory (no, this isn't Java, I know) +# Here to stop this being duplicated all over the place. + + +def moduleFactoryFactory(factory): + moduleCache = {} + + def moduleFactory(baseModule, *args, **kwargs): + if isinstance(ModuleType.__name__, type("")): + name = "_%s_factory" % baseModule.__name__ + else: + name = b"_%s_factory" % baseModule.__name__ + + kwargs_tuple = tuple(kwargs.items()) + + try: + return moduleCache[name][args][kwargs_tuple] + except KeyError: + mod = ModuleType(name) + objs = factory(baseModule, *args, **kwargs) + mod.__dict__.update(objs) + if "name" not in moduleCache: + moduleCache[name] = {} + if "args" not in moduleCache[name]: + moduleCache[name][args] = {} + if "kwargs" not in moduleCache[name][args]: + moduleCache[name][args][kwargs_tuple] = {} + moduleCache[name][args][kwargs_tuple] = mod + return mod + + return moduleFactory + + +def memoize(func): + cache = {} + + def wrapped(*args, **kwargs): + key = (tuple(args), tuple(kwargs.items())) + if key not in cache: + cache[key] = func(*args, **kwargs) + return cache[key] + + return wrapped diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/constants.py b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/constants.py new file mode 100644 index 00000000..fe3e237c --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/constants.py @@ -0,0 +1,2946 @@ +from __future__ import absolute_import, division, unicode_literals + +import string + +EOF = None + +E = { + "null-character": + "Null character in input stream, replaced with U+FFFD.", + "invalid-codepoint": + "Invalid codepoint in stream.", + "incorrectly-placed-solidus": + "Solidus (/) incorrectly placed in tag.", + "incorrect-cr-newline-entity": + "Incorrect CR newline entity, replaced with LF.", + "illegal-windows-1252-entity": + "Entity used with illegal number (windows-1252 reference).", + "cant-convert-numeric-entity": + "Numeric entity couldn't be converted to character " + "(codepoint U+%(charAsInt)08x).", + "illegal-codepoint-for-numeric-entity": + "Numeric entity represents an illegal codepoint: " + "U+%(charAsInt)08x.", + "numeric-entity-without-semicolon": + "Numeric entity didn't end with ';'.", + "expected-numeric-entity-but-got-eof": + "Numeric entity expected. Got end of file instead.", + "expected-numeric-entity": + "Numeric entity expected but none found.", + "named-entity-without-semicolon": + "Named entity didn't end with ';'.", + "expected-named-entity": + "Named entity expected. Got none.", + "attributes-in-end-tag": + "End tag contains unexpected attributes.", + 'self-closing-flag-on-end-tag': + "End tag contains unexpected self-closing flag.", + "expected-tag-name-but-got-right-bracket": + "Expected tag name. Got '>' instead.", + "expected-tag-name-but-got-question-mark": + "Expected tag name. Got '?' instead. (HTML doesn't " + "support processing instructions.)", + "expected-tag-name": + "Expected tag name. Got something else instead", + "expected-closing-tag-but-got-right-bracket": + "Expected closing tag. Got '>' instead. Ignoring ''.", + "expected-closing-tag-but-got-eof": + "Expected closing tag. Unexpected end of file.", + "expected-closing-tag-but-got-char": + "Expected closing tag. Unexpected character '%(data)s' found.", + "eof-in-tag-name": + "Unexpected end of file in the tag name.", + "expected-attribute-name-but-got-eof": + "Unexpected end of file. Expected attribute name instead.", + "eof-in-attribute-name": + "Unexpected end of file in attribute name.", + "invalid-character-in-attribute-name": + "Invalid character in attribute name", + "duplicate-attribute": + "Dropped duplicate attribute on tag.", + "expected-end-of-tag-name-but-got-eof": + "Unexpected end of file. Expected = or end of tag.", + "expected-attribute-value-but-got-eof": + "Unexpected end of file. Expected attribute value.", + "expected-attribute-value-but-got-right-bracket": + "Expected attribute value. Got '>' instead.", + 'equals-in-unquoted-attribute-value': + "Unexpected = in unquoted attribute", + 'unexpected-character-in-unquoted-attribute-value': + "Unexpected character in unquoted attribute", + "invalid-character-after-attribute-name": + "Unexpected character after attribute name.", + "unexpected-character-after-attribute-value": + "Unexpected character after attribute value.", + "eof-in-attribute-value-double-quote": + "Unexpected end of file in attribute value (\").", + "eof-in-attribute-value-single-quote": + "Unexpected end of file in attribute value (').", + "eof-in-attribute-value-no-quotes": + "Unexpected end of file in attribute value.", + "unexpected-EOF-after-solidus-in-tag": + "Unexpected end of file in tag. Expected >", + "unexpected-character-after-solidus-in-tag": + "Unexpected character after / in tag. Expected >", + "expected-dashes-or-doctype": + "Expected '--' or 'DOCTYPE'. Not found.", + "unexpected-bang-after-double-dash-in-comment": + "Unexpected ! after -- in comment", + "unexpected-space-after-double-dash-in-comment": + "Unexpected space after -- in comment", + "incorrect-comment": + "Incorrect comment.", + "eof-in-comment": + "Unexpected end of file in comment.", + "eof-in-comment-end-dash": + "Unexpected end of file in comment (-)", + "unexpected-dash-after-double-dash-in-comment": + "Unexpected '-' after '--' found in comment.", + "eof-in-comment-double-dash": + "Unexpected end of file in comment (--).", + "eof-in-comment-end-space-state": + "Unexpected end of file in comment.", + "eof-in-comment-end-bang-state": + "Unexpected end of file in comment.", + "unexpected-char-in-comment": + "Unexpected character in comment found.", + "need-space-after-doctype": + "No space after literal string 'DOCTYPE'.", + "expected-doctype-name-but-got-right-bracket": + "Unexpected > character. Expected DOCTYPE name.", + "expected-doctype-name-but-got-eof": + "Unexpected end of file. Expected DOCTYPE name.", + "eof-in-doctype-name": + "Unexpected end of file in DOCTYPE name.", + "eof-in-doctype": + "Unexpected end of file in DOCTYPE.", + "expected-space-or-right-bracket-in-doctype": + "Expected space or '>'. Got '%(data)s'", + "unexpected-end-of-doctype": + "Unexpected end of DOCTYPE.", + "unexpected-char-in-doctype": + "Unexpected character in DOCTYPE.", + "eof-in-innerhtml": + "XXX innerHTML EOF", + "unexpected-doctype": + "Unexpected DOCTYPE. Ignored.", + "non-html-root": + "html needs to be the first start tag.", + "expected-doctype-but-got-eof": + "Unexpected End of file. Expected DOCTYPE.", + "unknown-doctype": + "Erroneous DOCTYPE.", + "expected-doctype-but-got-chars": + "Unexpected non-space characters. Expected DOCTYPE.", + "expected-doctype-but-got-start-tag": + "Unexpected start tag (%(name)s). Expected DOCTYPE.", + "expected-doctype-but-got-end-tag": + "Unexpected end tag (%(name)s). Expected DOCTYPE.", + "end-tag-after-implied-root": + "Unexpected end tag (%(name)s) after the (implied) root element.", + "expected-named-closing-tag-but-got-eof": + "Unexpected end of file. Expected end tag (%(name)s).", + "two-heads-are-not-better-than-one": + "Unexpected start tag head in existing head. Ignored.", + "unexpected-end-tag": + "Unexpected end tag (%(name)s). Ignored.", + "unexpected-start-tag-out-of-my-head": + "Unexpected start tag (%(name)s) that can be in head. Moved.", + "unexpected-start-tag": + "Unexpected start tag (%(name)s).", + "missing-end-tag": + "Missing end tag (%(name)s).", + "missing-end-tags": + "Missing end tags (%(name)s).", + "unexpected-start-tag-implies-end-tag": + "Unexpected start tag (%(startName)s) " + "implies end tag (%(endName)s).", + "unexpected-start-tag-treated-as": + "Unexpected start tag (%(originalName)s). Treated as %(newName)s.", + "deprecated-tag": + "Unexpected start tag %(name)s. Don't use it!", + "unexpected-start-tag-ignored": + "Unexpected start tag %(name)s. Ignored.", + "expected-one-end-tag-but-got-another": + "Unexpected end tag (%(gotName)s). " + "Missing end tag (%(expectedName)s).", + "end-tag-too-early": + "End tag (%(name)s) seen too early. Expected other end tag.", + "end-tag-too-early-named": + "Unexpected end tag (%(gotName)s). Expected end tag (%(expectedName)s).", + "end-tag-too-early-ignored": + "End tag (%(name)s) seen too early. Ignored.", + "adoption-agency-1.1": + "End tag (%(name)s) violates step 1, " + "paragraph 1 of the adoption agency algorithm.", + "adoption-agency-1.2": + "End tag (%(name)s) violates step 1, " + "paragraph 2 of the adoption agency algorithm.", + "adoption-agency-1.3": + "End tag (%(name)s) violates step 1, " + "paragraph 3 of the adoption agency algorithm.", + "adoption-agency-4.4": + "End tag (%(name)s) violates step 4, " + "paragraph 4 of the adoption agency algorithm.", + "unexpected-end-tag-treated-as": + "Unexpected end tag (%(originalName)s). Treated as %(newName)s.", + "no-end-tag": + "This element (%(name)s) has no end tag.", + "unexpected-implied-end-tag-in-table": + "Unexpected implied end tag (%(name)s) in the table phase.", + "unexpected-implied-end-tag-in-table-body": + "Unexpected implied end tag (%(name)s) in the table body phase.", + "unexpected-char-implies-table-voodoo": + "Unexpected non-space characters in " + "table context caused voodoo mode.", + "unexpected-hidden-input-in-table": + "Unexpected input with type hidden in table context.", + "unexpected-form-in-table": + "Unexpected form in table context.", + "unexpected-start-tag-implies-table-voodoo": + "Unexpected start tag (%(name)s) in " + "table context caused voodoo mode.", + "unexpected-end-tag-implies-table-voodoo": + "Unexpected end tag (%(name)s) in " + "table context caused voodoo mode.", + "unexpected-cell-in-table-body": + "Unexpected table cell start tag (%(name)s) " + "in the table body phase.", + "unexpected-cell-end-tag": + "Got table cell end tag (%(name)s) " + "while required end tags are missing.", + "unexpected-end-tag-in-table-body": + "Unexpected end tag (%(name)s) in the table body phase. Ignored.", + "unexpected-implied-end-tag-in-table-row": + "Unexpected implied end tag (%(name)s) in the table row phase.", + "unexpected-end-tag-in-table-row": + "Unexpected end tag (%(name)s) in the table row phase. Ignored.", + "unexpected-select-in-select": + "Unexpected select start tag in the select phase " + "treated as select end tag.", + "unexpected-input-in-select": + "Unexpected input start tag in the select phase.", + "unexpected-start-tag-in-select": + "Unexpected start tag token (%(name)s in the select phase. " + "Ignored.", + "unexpected-end-tag-in-select": + "Unexpected end tag (%(name)s) in the select phase. Ignored.", + "unexpected-table-element-start-tag-in-select-in-table": + "Unexpected table element start tag (%(name)s) in the select in table phase.", + "unexpected-table-element-end-tag-in-select-in-table": + "Unexpected table element end tag (%(name)s) in the select in table phase.", + "unexpected-char-after-body": + "Unexpected non-space characters in the after body phase.", + "unexpected-start-tag-after-body": + "Unexpected start tag token (%(name)s)" + " in the after body phase.", + "unexpected-end-tag-after-body": + "Unexpected end tag token (%(name)s)" + " in the after body phase.", + "unexpected-char-in-frameset": + "Unexpected characters in the frameset phase. Characters ignored.", + "unexpected-start-tag-in-frameset": + "Unexpected start tag token (%(name)s)" + " in the frameset phase. Ignored.", + "unexpected-frameset-in-frameset-innerhtml": + "Unexpected end tag token (frameset) " + "in the frameset phase (innerHTML).", + "unexpected-end-tag-in-frameset": + "Unexpected end tag token (%(name)s)" + " in the frameset phase. Ignored.", + "unexpected-char-after-frameset": + "Unexpected non-space characters in the " + "after frameset phase. Ignored.", + "unexpected-start-tag-after-frameset": + "Unexpected start tag (%(name)s)" + " in the after frameset phase. Ignored.", + "unexpected-end-tag-after-frameset": + "Unexpected end tag (%(name)s)" + " in the after frameset phase. Ignored.", + "unexpected-end-tag-after-body-innerhtml": + "Unexpected end tag after body(innerHtml)", + "expected-eof-but-got-char": + "Unexpected non-space characters. Expected end of file.", + "expected-eof-but-got-start-tag": + "Unexpected start tag (%(name)s)" + ". Expected end of file.", + "expected-eof-but-got-end-tag": + "Unexpected end tag (%(name)s)" + ". Expected end of file.", + "eof-in-table": + "Unexpected end of file. Expected table content.", + "eof-in-select": + "Unexpected end of file. Expected select content.", + "eof-in-frameset": + "Unexpected end of file. Expected frameset content.", + "eof-in-script-in-script": + "Unexpected end of file. Expected script content.", + "eof-in-foreign-lands": + "Unexpected end of file. Expected foreign content", + "non-void-element-with-trailing-solidus": + "Trailing solidus not allowed on element %(name)s", + "unexpected-html-element-in-foreign-content": + "Element %(name)s not allowed in a non-html context", + "unexpected-end-tag-before-html": + "Unexpected end tag (%(name)s) before html.", + "unexpected-inhead-noscript-tag": + "Element %(name)s not allowed in a inhead-noscript context", + "eof-in-head-noscript": + "Unexpected end of file. Expected inhead-noscript content", + "char-in-head-noscript": + "Unexpected non-space character. Expected inhead-noscript content", + "XXX-undefined-error": + "Undefined error (this sucks and should be fixed)", +} + +namespaces = { + "html": "http://www.w3.org/1999/xhtml", + "mathml": "http://www.w3.org/1998/Math/MathML", + "svg": "http://www.w3.org/2000/svg", + "xlink": "http://www.w3.org/1999/xlink", + "xml": "http://www.w3.org/XML/1998/namespace", + "xmlns": "http://www.w3.org/2000/xmlns/" +} + +scopingElements = frozenset([ + (namespaces["html"], "applet"), + (namespaces["html"], "caption"), + (namespaces["html"], "html"), + (namespaces["html"], "marquee"), + (namespaces["html"], "object"), + (namespaces["html"], "table"), + (namespaces["html"], "td"), + (namespaces["html"], "th"), + (namespaces["mathml"], "mi"), + (namespaces["mathml"], "mo"), + (namespaces["mathml"], "mn"), + (namespaces["mathml"], "ms"), + (namespaces["mathml"], "mtext"), + (namespaces["mathml"], "annotation-xml"), + (namespaces["svg"], "foreignObject"), + (namespaces["svg"], "desc"), + (namespaces["svg"], "title"), +]) + +formattingElements = frozenset([ + (namespaces["html"], "a"), + (namespaces["html"], "b"), + (namespaces["html"], "big"), + (namespaces["html"], "code"), + (namespaces["html"], "em"), + (namespaces["html"], "font"), + (namespaces["html"], "i"), + (namespaces["html"], "nobr"), + (namespaces["html"], "s"), + (namespaces["html"], "small"), + (namespaces["html"], "strike"), + (namespaces["html"], "strong"), + (namespaces["html"], "tt"), + (namespaces["html"], "u") +]) + +specialElements = frozenset([ + (namespaces["html"], "address"), + (namespaces["html"], "applet"), + (namespaces["html"], "area"), + (namespaces["html"], "article"), + (namespaces["html"], "aside"), + (namespaces["html"], "base"), + (namespaces["html"], "basefont"), + (namespaces["html"], "bgsound"), + (namespaces["html"], "blockquote"), + (namespaces["html"], "body"), + (namespaces["html"], "br"), + (namespaces["html"], "button"), + (namespaces["html"], "caption"), + (namespaces["html"], "center"), + (namespaces["html"], "col"), + (namespaces["html"], "colgroup"), + (namespaces["html"], "command"), + (namespaces["html"], "dd"), + (namespaces["html"], "details"), + (namespaces["html"], "dir"), + (namespaces["html"], "div"), + (namespaces["html"], "dl"), + (namespaces["html"], "dt"), + (namespaces["html"], "embed"), + (namespaces["html"], "fieldset"), + (namespaces["html"], "figure"), + (namespaces["html"], "footer"), + (namespaces["html"], "form"), + (namespaces["html"], "frame"), + (namespaces["html"], "frameset"), + (namespaces["html"], "h1"), + (namespaces["html"], "h2"), + (namespaces["html"], "h3"), + (namespaces["html"], "h4"), + (namespaces["html"], "h5"), + (namespaces["html"], "h6"), + (namespaces["html"], "head"), + (namespaces["html"], "header"), + (namespaces["html"], "hr"), + (namespaces["html"], "html"), + (namespaces["html"], "iframe"), + # Note that image is commented out in the spec as "this isn't an + # element that can end up on the stack, so it doesn't matter," + (namespaces["html"], "image"), + (namespaces["html"], "img"), + (namespaces["html"], "input"), + (namespaces["html"], "isindex"), + (namespaces["html"], "li"), + (namespaces["html"], "link"), + (namespaces["html"], "listing"), + (namespaces["html"], "marquee"), + (namespaces["html"], "menu"), + (namespaces["html"], "meta"), + (namespaces["html"], "nav"), + (namespaces["html"], "noembed"), + (namespaces["html"], "noframes"), + (namespaces["html"], "noscript"), + (namespaces["html"], "object"), + (namespaces["html"], "ol"), + (namespaces["html"], "p"), + (namespaces["html"], "param"), + (namespaces["html"], "plaintext"), + (namespaces["html"], "pre"), + (namespaces["html"], "script"), + (namespaces["html"], "section"), + (namespaces["html"], "select"), + (namespaces["html"], "style"), + (namespaces["html"], "table"), + (namespaces["html"], "tbody"), + (namespaces["html"], "td"), + (namespaces["html"], "textarea"), + (namespaces["html"], "tfoot"), + (namespaces["html"], "th"), + (namespaces["html"], "thead"), + (namespaces["html"], "title"), + (namespaces["html"], "tr"), + (namespaces["html"], "ul"), + (namespaces["html"], "wbr"), + (namespaces["html"], "xmp"), + (namespaces["svg"], "foreignObject") +]) + +htmlIntegrationPointElements = frozenset([ + (namespaces["mathml"], "annotation-xml"), + (namespaces["svg"], "foreignObject"), + (namespaces["svg"], "desc"), + (namespaces["svg"], "title") +]) + +mathmlTextIntegrationPointElements = frozenset([ + (namespaces["mathml"], "mi"), + (namespaces["mathml"], "mo"), + (namespaces["mathml"], "mn"), + (namespaces["mathml"], "ms"), + (namespaces["mathml"], "mtext") +]) + +adjustSVGAttributes = { + "attributename": "attributeName", + "attributetype": "attributeType", + "basefrequency": "baseFrequency", + "baseprofile": "baseProfile", + "calcmode": "calcMode", + "clippathunits": "clipPathUnits", + "contentscripttype": "contentScriptType", + "contentstyletype": "contentStyleType", + "diffuseconstant": "diffuseConstant", + "edgemode": "edgeMode", + "externalresourcesrequired": "externalResourcesRequired", + "filterres": "filterRes", + "filterunits": "filterUnits", + "glyphref": "glyphRef", + "gradienttransform": "gradientTransform", + "gradientunits": "gradientUnits", + "kernelmatrix": "kernelMatrix", + "kernelunitlength": "kernelUnitLength", + "keypoints": "keyPoints", + "keysplines": "keySplines", + "keytimes": "keyTimes", + "lengthadjust": "lengthAdjust", + "limitingconeangle": "limitingConeAngle", + "markerheight": "markerHeight", + "markerunits": "markerUnits", + "markerwidth": "markerWidth", + "maskcontentunits": "maskContentUnits", + "maskunits": "maskUnits", + "numoctaves": "numOctaves", + "pathlength": "pathLength", + "patterncontentunits": "patternContentUnits", + "patterntransform": "patternTransform", + "patternunits": "patternUnits", + "pointsatx": "pointsAtX", + "pointsaty": "pointsAtY", + "pointsatz": "pointsAtZ", + "preservealpha": "preserveAlpha", + "preserveaspectratio": "preserveAspectRatio", + "primitiveunits": "primitiveUnits", + "refx": "refX", + "refy": "refY", + "repeatcount": "repeatCount", + "repeatdur": "repeatDur", + "requiredextensions": "requiredExtensions", + "requiredfeatures": "requiredFeatures", + "specularconstant": "specularConstant", + "specularexponent": "specularExponent", + "spreadmethod": "spreadMethod", + "startoffset": "startOffset", + "stddeviation": "stdDeviation", + "stitchtiles": "stitchTiles", + "surfacescale": "surfaceScale", + "systemlanguage": "systemLanguage", + "tablevalues": "tableValues", + "targetx": "targetX", + "targety": "targetY", + "textlength": "textLength", + "viewbox": "viewBox", + "viewtarget": "viewTarget", + "xchannelselector": "xChannelSelector", + "ychannelselector": "yChannelSelector", + "zoomandpan": "zoomAndPan" +} + +adjustMathMLAttributes = {"definitionurl": "definitionURL"} + +adjustForeignAttributes = { + "xlink:actuate": ("xlink", "actuate", namespaces["xlink"]), + "xlink:arcrole": ("xlink", "arcrole", namespaces["xlink"]), + "xlink:href": ("xlink", "href", namespaces["xlink"]), + "xlink:role": ("xlink", "role", namespaces["xlink"]), + "xlink:show": ("xlink", "show", namespaces["xlink"]), + "xlink:title": ("xlink", "title", namespaces["xlink"]), + "xlink:type": ("xlink", "type", namespaces["xlink"]), + "xml:base": ("xml", "base", namespaces["xml"]), + "xml:lang": ("xml", "lang", namespaces["xml"]), + "xml:space": ("xml", "space", namespaces["xml"]), + "xmlns": (None, "xmlns", namespaces["xmlns"]), + "xmlns:xlink": ("xmlns", "xlink", namespaces["xmlns"]) +} + +unadjustForeignAttributes = {(ns, local): qname for qname, (prefix, local, ns) in + adjustForeignAttributes.items()} + +spaceCharacters = frozenset([ + "\t", + "\n", + "\u000C", + " ", + "\r" +]) + +tableInsertModeElements = frozenset([ + "table", + "tbody", + "tfoot", + "thead", + "tr" +]) + +asciiLowercase = frozenset(string.ascii_lowercase) +asciiUppercase = frozenset(string.ascii_uppercase) +asciiLetters = frozenset(string.ascii_letters) +digits = frozenset(string.digits) +hexDigits = frozenset(string.hexdigits) + +asciiUpper2Lower = {ord(c): ord(c.lower()) for c in string.ascii_uppercase} + +# Heading elements need to be ordered +headingElements = ( + "h1", + "h2", + "h3", + "h4", + "h5", + "h6" +) + +voidElements = frozenset([ + "base", + "command", + "event-source", + "link", + "meta", + "hr", + "br", + "img", + "embed", + "param", + "area", + "col", + "input", + "source", + "track" +]) + +cdataElements = frozenset(['title', 'textarea']) + +rcdataElements = frozenset([ + 'style', + 'script', + 'xmp', + 'iframe', + 'noembed', + 'noframes', + 'noscript' +]) + +booleanAttributes = { + "": frozenset(["irrelevant", "itemscope"]), + "style": frozenset(["scoped"]), + "img": frozenset(["ismap"]), + "audio": frozenset(["autoplay", "controls"]), + "video": frozenset(["autoplay", "controls"]), + "script": frozenset(["defer", "async"]), + "details": frozenset(["open"]), + "datagrid": frozenset(["multiple", "disabled"]), + "command": frozenset(["hidden", "disabled", "checked", "default"]), + "hr": frozenset(["noshade"]), + "menu": frozenset(["autosubmit"]), + "fieldset": frozenset(["disabled", "readonly"]), + "option": frozenset(["disabled", "readonly", "selected"]), + "optgroup": frozenset(["disabled", "readonly"]), + "button": frozenset(["disabled", "autofocus"]), + "input": frozenset(["disabled", "readonly", "required", "autofocus", "checked", "ismap"]), + "select": frozenset(["disabled", "readonly", "autofocus", "multiple"]), + "output": frozenset(["disabled", "readonly"]), + "iframe": frozenset(["seamless"]), +} + +# entitiesWindows1252 has to be _ordered_ and needs to have an index. It +# therefore can't be a frozenset. +entitiesWindows1252 = ( + 8364, # 0x80 0x20AC EURO SIGN + 65533, # 0x81 UNDEFINED + 8218, # 0x82 0x201A SINGLE LOW-9 QUOTATION MARK + 402, # 0x83 0x0192 LATIN SMALL LETTER F WITH HOOK + 8222, # 0x84 0x201E DOUBLE LOW-9 QUOTATION MARK + 8230, # 0x85 0x2026 HORIZONTAL ELLIPSIS + 8224, # 0x86 0x2020 DAGGER + 8225, # 0x87 0x2021 DOUBLE DAGGER + 710, # 0x88 0x02C6 MODIFIER LETTER CIRCUMFLEX ACCENT + 8240, # 0x89 0x2030 PER MILLE SIGN + 352, # 0x8A 0x0160 LATIN CAPITAL LETTER S WITH CARON + 8249, # 0x8B 0x2039 SINGLE LEFT-POINTING ANGLE QUOTATION MARK + 338, # 0x8C 0x0152 LATIN CAPITAL LIGATURE OE + 65533, # 0x8D UNDEFINED + 381, # 0x8E 0x017D LATIN CAPITAL LETTER Z WITH CARON + 65533, # 0x8F UNDEFINED + 65533, # 0x90 UNDEFINED + 8216, # 0x91 0x2018 LEFT SINGLE QUOTATION MARK + 8217, # 0x92 0x2019 RIGHT SINGLE QUOTATION MARK + 8220, # 0x93 0x201C LEFT DOUBLE QUOTATION MARK + 8221, # 0x94 0x201D RIGHT DOUBLE QUOTATION MARK + 8226, # 0x95 0x2022 BULLET + 8211, # 0x96 0x2013 EN DASH + 8212, # 0x97 0x2014 EM DASH + 732, # 0x98 0x02DC SMALL TILDE + 8482, # 0x99 0x2122 TRADE MARK SIGN + 353, # 0x9A 0x0161 LATIN SMALL LETTER S WITH CARON + 8250, # 0x9B 0x203A SINGLE RIGHT-POINTING ANGLE QUOTATION MARK + 339, # 0x9C 0x0153 LATIN SMALL LIGATURE OE + 65533, # 0x9D UNDEFINED + 382, # 0x9E 0x017E LATIN SMALL LETTER Z WITH CARON + 376 # 0x9F 0x0178 LATIN CAPITAL LETTER Y WITH DIAERESIS +) + +xmlEntities = frozenset(['lt;', 'gt;', 'amp;', 'apos;', 'quot;']) + +entities = { + "AElig": "\xc6", + "AElig;": "\xc6", + "AMP": "&", + "AMP;": "&", + "Aacute": "\xc1", + "Aacute;": "\xc1", + "Abreve;": "\u0102", + "Acirc": "\xc2", + "Acirc;": "\xc2", + "Acy;": "\u0410", + "Afr;": "\U0001d504", + "Agrave": "\xc0", + "Agrave;": "\xc0", + "Alpha;": "\u0391", + "Amacr;": "\u0100", + "And;": "\u2a53", + "Aogon;": "\u0104", + "Aopf;": "\U0001d538", + "ApplyFunction;": "\u2061", + "Aring": "\xc5", + "Aring;": "\xc5", + "Ascr;": "\U0001d49c", + "Assign;": "\u2254", + "Atilde": "\xc3", + "Atilde;": "\xc3", + "Auml": "\xc4", + "Auml;": "\xc4", + "Backslash;": "\u2216", + "Barv;": "\u2ae7", + "Barwed;": "\u2306", + "Bcy;": "\u0411", + "Because;": "\u2235", + "Bernoullis;": "\u212c", + "Beta;": "\u0392", + "Bfr;": "\U0001d505", + "Bopf;": "\U0001d539", + "Breve;": "\u02d8", + "Bscr;": "\u212c", + "Bumpeq;": "\u224e", + "CHcy;": "\u0427", + "COPY": "\xa9", + "COPY;": "\xa9", + "Cacute;": "\u0106", + "Cap;": "\u22d2", + "CapitalDifferentialD;": "\u2145", + "Cayleys;": "\u212d", + "Ccaron;": "\u010c", + "Ccedil": "\xc7", + "Ccedil;": "\xc7", + "Ccirc;": "\u0108", + "Cconint;": "\u2230", + "Cdot;": "\u010a", + "Cedilla;": "\xb8", + "CenterDot;": "\xb7", + "Cfr;": "\u212d", + "Chi;": "\u03a7", + "CircleDot;": "\u2299", + "CircleMinus;": "\u2296", + "CirclePlus;": "\u2295", + "CircleTimes;": "\u2297", + "ClockwiseContourIntegral;": "\u2232", + "CloseCurlyDoubleQuote;": "\u201d", + "CloseCurlyQuote;": "\u2019", + "Colon;": "\u2237", + "Colone;": "\u2a74", + "Congruent;": "\u2261", + "Conint;": "\u222f", + "ContourIntegral;": "\u222e", + "Copf;": "\u2102", + "Coproduct;": "\u2210", + "CounterClockwiseContourIntegral;": "\u2233", + "Cross;": "\u2a2f", + "Cscr;": "\U0001d49e", + "Cup;": "\u22d3", + "CupCap;": "\u224d", + "DD;": "\u2145", + "DDotrahd;": "\u2911", + "DJcy;": "\u0402", + "DScy;": "\u0405", + "DZcy;": "\u040f", + "Dagger;": "\u2021", + "Darr;": "\u21a1", + "Dashv;": "\u2ae4", + "Dcaron;": "\u010e", + "Dcy;": "\u0414", + "Del;": "\u2207", + "Delta;": "\u0394", + "Dfr;": "\U0001d507", + "DiacriticalAcute;": "\xb4", + "DiacriticalDot;": "\u02d9", + "DiacriticalDoubleAcute;": "\u02dd", + "DiacriticalGrave;": "`", + "DiacriticalTilde;": "\u02dc", + "Diamond;": "\u22c4", + "DifferentialD;": "\u2146", + "Dopf;": "\U0001d53b", + "Dot;": "\xa8", + "DotDot;": "\u20dc", + "DotEqual;": "\u2250", + "DoubleContourIntegral;": "\u222f", + "DoubleDot;": "\xa8", + "DoubleDownArrow;": "\u21d3", + "DoubleLeftArrow;": "\u21d0", + "DoubleLeftRightArrow;": "\u21d4", + "DoubleLeftTee;": "\u2ae4", + "DoubleLongLeftArrow;": "\u27f8", + "DoubleLongLeftRightArrow;": "\u27fa", + "DoubleLongRightArrow;": "\u27f9", + "DoubleRightArrow;": "\u21d2", + "DoubleRightTee;": "\u22a8", + "DoubleUpArrow;": "\u21d1", + "DoubleUpDownArrow;": "\u21d5", + "DoubleVerticalBar;": "\u2225", + "DownArrow;": "\u2193", + "DownArrowBar;": "\u2913", + "DownArrowUpArrow;": "\u21f5", + "DownBreve;": "\u0311", + "DownLeftRightVector;": "\u2950", + "DownLeftTeeVector;": "\u295e", + "DownLeftVector;": "\u21bd", + "DownLeftVectorBar;": "\u2956", + "DownRightTeeVector;": "\u295f", + "DownRightVector;": "\u21c1", + "DownRightVectorBar;": "\u2957", + "DownTee;": "\u22a4", + "DownTeeArrow;": "\u21a7", + "Downarrow;": "\u21d3", + "Dscr;": "\U0001d49f", + "Dstrok;": "\u0110", + "ENG;": "\u014a", + "ETH": "\xd0", + "ETH;": "\xd0", + "Eacute": "\xc9", + "Eacute;": "\xc9", + "Ecaron;": "\u011a", + "Ecirc": "\xca", + "Ecirc;": "\xca", + "Ecy;": "\u042d", + "Edot;": "\u0116", + "Efr;": "\U0001d508", + "Egrave": "\xc8", + "Egrave;": "\xc8", + "Element;": "\u2208", + "Emacr;": "\u0112", + "EmptySmallSquare;": "\u25fb", + "EmptyVerySmallSquare;": "\u25ab", + "Eogon;": "\u0118", + "Eopf;": "\U0001d53c", + "Epsilon;": "\u0395", + "Equal;": "\u2a75", + "EqualTilde;": "\u2242", + "Equilibrium;": "\u21cc", + "Escr;": "\u2130", + "Esim;": "\u2a73", + "Eta;": "\u0397", + "Euml": "\xcb", + "Euml;": "\xcb", + "Exists;": "\u2203", + "ExponentialE;": "\u2147", + "Fcy;": "\u0424", + "Ffr;": "\U0001d509", + "FilledSmallSquare;": "\u25fc", + "FilledVerySmallSquare;": "\u25aa", + "Fopf;": "\U0001d53d", + "ForAll;": "\u2200", + "Fouriertrf;": "\u2131", + "Fscr;": "\u2131", + "GJcy;": "\u0403", + "GT": ">", + "GT;": ">", + "Gamma;": "\u0393", + "Gammad;": "\u03dc", + "Gbreve;": "\u011e", + "Gcedil;": "\u0122", + "Gcirc;": "\u011c", + "Gcy;": "\u0413", + "Gdot;": "\u0120", + "Gfr;": "\U0001d50a", + "Gg;": "\u22d9", + "Gopf;": "\U0001d53e", + "GreaterEqual;": "\u2265", + "GreaterEqualLess;": "\u22db", + "GreaterFullEqual;": "\u2267", + "GreaterGreater;": "\u2aa2", + "GreaterLess;": "\u2277", + "GreaterSlantEqual;": "\u2a7e", + "GreaterTilde;": "\u2273", + "Gscr;": "\U0001d4a2", + "Gt;": "\u226b", + "HARDcy;": "\u042a", + "Hacek;": "\u02c7", + "Hat;": "^", + "Hcirc;": "\u0124", + "Hfr;": "\u210c", + "HilbertSpace;": "\u210b", + "Hopf;": "\u210d", + "HorizontalLine;": "\u2500", + "Hscr;": "\u210b", + "Hstrok;": "\u0126", + "HumpDownHump;": "\u224e", + "HumpEqual;": "\u224f", + "IEcy;": "\u0415", + "IJlig;": "\u0132", + "IOcy;": "\u0401", + "Iacute": "\xcd", + "Iacute;": "\xcd", + "Icirc": "\xce", + "Icirc;": "\xce", + "Icy;": "\u0418", + "Idot;": "\u0130", + "Ifr;": "\u2111", + "Igrave": "\xcc", + "Igrave;": "\xcc", + "Im;": "\u2111", + "Imacr;": "\u012a", + "ImaginaryI;": "\u2148", + "Implies;": "\u21d2", + "Int;": "\u222c", + "Integral;": "\u222b", + "Intersection;": "\u22c2", + "InvisibleComma;": "\u2063", + "InvisibleTimes;": "\u2062", + "Iogon;": "\u012e", + "Iopf;": "\U0001d540", + "Iota;": "\u0399", + "Iscr;": "\u2110", + "Itilde;": "\u0128", + "Iukcy;": "\u0406", + "Iuml": "\xcf", + "Iuml;": "\xcf", + "Jcirc;": "\u0134", + "Jcy;": "\u0419", + "Jfr;": "\U0001d50d", + "Jopf;": "\U0001d541", + "Jscr;": "\U0001d4a5", + "Jsercy;": "\u0408", + "Jukcy;": "\u0404", + "KHcy;": "\u0425", + "KJcy;": "\u040c", + "Kappa;": "\u039a", + "Kcedil;": "\u0136", + "Kcy;": "\u041a", + "Kfr;": "\U0001d50e", + "Kopf;": "\U0001d542", + "Kscr;": "\U0001d4a6", + "LJcy;": "\u0409", + "LT": "<", + "LT;": "<", + "Lacute;": "\u0139", + "Lambda;": "\u039b", + "Lang;": "\u27ea", + "Laplacetrf;": "\u2112", + "Larr;": "\u219e", + "Lcaron;": "\u013d", + "Lcedil;": "\u013b", + "Lcy;": "\u041b", + "LeftAngleBracket;": "\u27e8", + "LeftArrow;": "\u2190", + "LeftArrowBar;": "\u21e4", + "LeftArrowRightArrow;": "\u21c6", + "LeftCeiling;": "\u2308", + "LeftDoubleBracket;": "\u27e6", + "LeftDownTeeVector;": "\u2961", + "LeftDownVector;": "\u21c3", + "LeftDownVectorBar;": "\u2959", + "LeftFloor;": "\u230a", + "LeftRightArrow;": "\u2194", + "LeftRightVector;": "\u294e", + "LeftTee;": "\u22a3", + "LeftTeeArrow;": "\u21a4", + "LeftTeeVector;": "\u295a", + "LeftTriangle;": "\u22b2", + "LeftTriangleBar;": "\u29cf", + "LeftTriangleEqual;": "\u22b4", + "LeftUpDownVector;": "\u2951", + "LeftUpTeeVector;": "\u2960", + "LeftUpVector;": "\u21bf", + "LeftUpVectorBar;": "\u2958", + "LeftVector;": "\u21bc", + "LeftVectorBar;": "\u2952", + "Leftarrow;": "\u21d0", + "Leftrightarrow;": "\u21d4", + "LessEqualGreater;": "\u22da", + "LessFullEqual;": "\u2266", + "LessGreater;": "\u2276", + "LessLess;": "\u2aa1", + "LessSlantEqual;": "\u2a7d", + "LessTilde;": "\u2272", + "Lfr;": "\U0001d50f", + "Ll;": "\u22d8", + "Lleftarrow;": "\u21da", + "Lmidot;": "\u013f", + "LongLeftArrow;": "\u27f5", + "LongLeftRightArrow;": "\u27f7", + "LongRightArrow;": "\u27f6", + "Longleftarrow;": "\u27f8", + "Longleftrightarrow;": "\u27fa", + "Longrightarrow;": "\u27f9", + "Lopf;": "\U0001d543", + "LowerLeftArrow;": "\u2199", + "LowerRightArrow;": "\u2198", + "Lscr;": "\u2112", + "Lsh;": "\u21b0", + "Lstrok;": "\u0141", + "Lt;": "\u226a", + "Map;": "\u2905", + "Mcy;": "\u041c", + "MediumSpace;": "\u205f", + "Mellintrf;": "\u2133", + "Mfr;": "\U0001d510", + "MinusPlus;": "\u2213", + "Mopf;": "\U0001d544", + "Mscr;": "\u2133", + "Mu;": "\u039c", + "NJcy;": "\u040a", + "Nacute;": "\u0143", + "Ncaron;": "\u0147", + "Ncedil;": "\u0145", + "Ncy;": "\u041d", + "NegativeMediumSpace;": "\u200b", + "NegativeThickSpace;": "\u200b", + "NegativeThinSpace;": "\u200b", + "NegativeVeryThinSpace;": "\u200b", + "NestedGreaterGreater;": "\u226b", + "NestedLessLess;": "\u226a", + "NewLine;": "\n", + "Nfr;": "\U0001d511", + "NoBreak;": "\u2060", + "NonBreakingSpace;": "\xa0", + "Nopf;": "\u2115", + "Not;": "\u2aec", + "NotCongruent;": "\u2262", + "NotCupCap;": "\u226d", + "NotDoubleVerticalBar;": "\u2226", + "NotElement;": "\u2209", + "NotEqual;": "\u2260", + "NotEqualTilde;": "\u2242\u0338", + "NotExists;": "\u2204", + "NotGreater;": "\u226f", + "NotGreaterEqual;": "\u2271", + "NotGreaterFullEqual;": "\u2267\u0338", + "NotGreaterGreater;": "\u226b\u0338", + "NotGreaterLess;": "\u2279", + "NotGreaterSlantEqual;": "\u2a7e\u0338", + "NotGreaterTilde;": "\u2275", + "NotHumpDownHump;": "\u224e\u0338", + "NotHumpEqual;": "\u224f\u0338", + "NotLeftTriangle;": "\u22ea", + "NotLeftTriangleBar;": "\u29cf\u0338", + "NotLeftTriangleEqual;": "\u22ec", + "NotLess;": "\u226e", + "NotLessEqual;": "\u2270", + "NotLessGreater;": "\u2278", + "NotLessLess;": "\u226a\u0338", + "NotLessSlantEqual;": "\u2a7d\u0338", + "NotLessTilde;": "\u2274", + "NotNestedGreaterGreater;": "\u2aa2\u0338", + "NotNestedLessLess;": "\u2aa1\u0338", + "NotPrecedes;": "\u2280", + "NotPrecedesEqual;": "\u2aaf\u0338", + "NotPrecedesSlantEqual;": "\u22e0", + "NotReverseElement;": "\u220c", + "NotRightTriangle;": "\u22eb", + "NotRightTriangleBar;": "\u29d0\u0338", + "NotRightTriangleEqual;": "\u22ed", + "NotSquareSubset;": "\u228f\u0338", + "NotSquareSubsetEqual;": "\u22e2", + "NotSquareSuperset;": "\u2290\u0338", + "NotSquareSupersetEqual;": "\u22e3", + "NotSubset;": "\u2282\u20d2", + "NotSubsetEqual;": "\u2288", + "NotSucceeds;": "\u2281", + "NotSucceedsEqual;": "\u2ab0\u0338", + "NotSucceedsSlantEqual;": "\u22e1", + "NotSucceedsTilde;": "\u227f\u0338", + "NotSuperset;": "\u2283\u20d2", + "NotSupersetEqual;": "\u2289", + "NotTilde;": "\u2241", + "NotTildeEqual;": "\u2244", + "NotTildeFullEqual;": "\u2247", + "NotTildeTilde;": "\u2249", + "NotVerticalBar;": "\u2224", + "Nscr;": "\U0001d4a9", + "Ntilde": "\xd1", + "Ntilde;": "\xd1", + "Nu;": "\u039d", + "OElig;": "\u0152", + "Oacute": "\xd3", + "Oacute;": "\xd3", + "Ocirc": "\xd4", + "Ocirc;": "\xd4", + "Ocy;": "\u041e", + "Odblac;": "\u0150", + "Ofr;": "\U0001d512", + "Ograve": "\xd2", + "Ograve;": "\xd2", + "Omacr;": "\u014c", + "Omega;": "\u03a9", + "Omicron;": "\u039f", + "Oopf;": "\U0001d546", + "OpenCurlyDoubleQuote;": "\u201c", + "OpenCurlyQuote;": "\u2018", + "Or;": "\u2a54", + "Oscr;": "\U0001d4aa", + "Oslash": "\xd8", + "Oslash;": "\xd8", + "Otilde": "\xd5", + "Otilde;": "\xd5", + "Otimes;": "\u2a37", + "Ouml": "\xd6", + "Ouml;": "\xd6", + "OverBar;": "\u203e", + "OverBrace;": "\u23de", + "OverBracket;": "\u23b4", + "OverParenthesis;": "\u23dc", + "PartialD;": "\u2202", + "Pcy;": "\u041f", + "Pfr;": "\U0001d513", + "Phi;": "\u03a6", + "Pi;": "\u03a0", + "PlusMinus;": "\xb1", + "Poincareplane;": "\u210c", + "Popf;": "\u2119", + "Pr;": "\u2abb", + "Precedes;": "\u227a", + "PrecedesEqual;": "\u2aaf", + "PrecedesSlantEqual;": "\u227c", + "PrecedesTilde;": "\u227e", + "Prime;": "\u2033", + "Product;": "\u220f", + "Proportion;": "\u2237", + "Proportional;": "\u221d", + "Pscr;": "\U0001d4ab", + "Psi;": "\u03a8", + "QUOT": "\"", + "QUOT;": "\"", + "Qfr;": "\U0001d514", + "Qopf;": "\u211a", + "Qscr;": "\U0001d4ac", + "RBarr;": "\u2910", + "REG": "\xae", + "REG;": "\xae", + "Racute;": "\u0154", + "Rang;": "\u27eb", + "Rarr;": "\u21a0", + "Rarrtl;": "\u2916", + "Rcaron;": "\u0158", + "Rcedil;": "\u0156", + "Rcy;": "\u0420", + "Re;": "\u211c", + "ReverseElement;": "\u220b", + "ReverseEquilibrium;": "\u21cb", + "ReverseUpEquilibrium;": "\u296f", + "Rfr;": "\u211c", + "Rho;": "\u03a1", + "RightAngleBracket;": "\u27e9", + "RightArrow;": "\u2192", + "RightArrowBar;": "\u21e5", + "RightArrowLeftArrow;": "\u21c4", + "RightCeiling;": "\u2309", + "RightDoubleBracket;": "\u27e7", + "RightDownTeeVector;": "\u295d", + "RightDownVector;": "\u21c2", + "RightDownVectorBar;": "\u2955", + "RightFloor;": "\u230b", + "RightTee;": "\u22a2", + "RightTeeArrow;": "\u21a6", + "RightTeeVector;": "\u295b", + "RightTriangle;": "\u22b3", + "RightTriangleBar;": "\u29d0", + "RightTriangleEqual;": "\u22b5", + "RightUpDownVector;": "\u294f", + "RightUpTeeVector;": "\u295c", + "RightUpVector;": "\u21be", + "RightUpVectorBar;": "\u2954", + "RightVector;": "\u21c0", + "RightVectorBar;": "\u2953", + "Rightarrow;": "\u21d2", + "Ropf;": "\u211d", + "RoundImplies;": "\u2970", + "Rrightarrow;": "\u21db", + "Rscr;": "\u211b", + "Rsh;": "\u21b1", + "RuleDelayed;": "\u29f4", + "SHCHcy;": "\u0429", + "SHcy;": "\u0428", + "SOFTcy;": "\u042c", + "Sacute;": "\u015a", + "Sc;": "\u2abc", + "Scaron;": "\u0160", + "Scedil;": "\u015e", + "Scirc;": "\u015c", + "Scy;": "\u0421", + "Sfr;": "\U0001d516", + "ShortDownArrow;": "\u2193", + "ShortLeftArrow;": "\u2190", + "ShortRightArrow;": "\u2192", + "ShortUpArrow;": "\u2191", + "Sigma;": "\u03a3", + "SmallCircle;": "\u2218", + "Sopf;": "\U0001d54a", + "Sqrt;": "\u221a", + "Square;": "\u25a1", + "SquareIntersection;": "\u2293", + "SquareSubset;": "\u228f", + "SquareSubsetEqual;": "\u2291", + "SquareSuperset;": "\u2290", + "SquareSupersetEqual;": "\u2292", + "SquareUnion;": "\u2294", + "Sscr;": "\U0001d4ae", + "Star;": "\u22c6", + "Sub;": "\u22d0", + "Subset;": "\u22d0", + "SubsetEqual;": "\u2286", + "Succeeds;": "\u227b", + "SucceedsEqual;": "\u2ab0", + "SucceedsSlantEqual;": "\u227d", + "SucceedsTilde;": "\u227f", + "SuchThat;": "\u220b", + "Sum;": "\u2211", + "Sup;": "\u22d1", + "Superset;": "\u2283", + "SupersetEqual;": "\u2287", + "Supset;": "\u22d1", + "THORN": "\xde", + "THORN;": "\xde", + "TRADE;": "\u2122", + "TSHcy;": "\u040b", + "TScy;": "\u0426", + "Tab;": "\t", + "Tau;": "\u03a4", + "Tcaron;": "\u0164", + "Tcedil;": "\u0162", + "Tcy;": "\u0422", + "Tfr;": "\U0001d517", + "Therefore;": "\u2234", + "Theta;": "\u0398", + "ThickSpace;": "\u205f\u200a", + "ThinSpace;": "\u2009", + "Tilde;": "\u223c", + "TildeEqual;": "\u2243", + "TildeFullEqual;": "\u2245", + "TildeTilde;": "\u2248", + "Topf;": "\U0001d54b", + "TripleDot;": "\u20db", + "Tscr;": "\U0001d4af", + "Tstrok;": "\u0166", + "Uacute": "\xda", + "Uacute;": "\xda", + "Uarr;": "\u219f", + "Uarrocir;": "\u2949", + "Ubrcy;": "\u040e", + "Ubreve;": "\u016c", + "Ucirc": "\xdb", + "Ucirc;": "\xdb", + "Ucy;": "\u0423", + "Udblac;": "\u0170", + "Ufr;": "\U0001d518", + "Ugrave": "\xd9", + "Ugrave;": "\xd9", + "Umacr;": "\u016a", + "UnderBar;": "_", + "UnderBrace;": "\u23df", + "UnderBracket;": "\u23b5", + "UnderParenthesis;": "\u23dd", + "Union;": "\u22c3", + "UnionPlus;": "\u228e", + "Uogon;": "\u0172", + "Uopf;": "\U0001d54c", + "UpArrow;": "\u2191", + "UpArrowBar;": "\u2912", + "UpArrowDownArrow;": "\u21c5", + "UpDownArrow;": "\u2195", + "UpEquilibrium;": "\u296e", + "UpTee;": "\u22a5", + "UpTeeArrow;": "\u21a5", + "Uparrow;": "\u21d1", + "Updownarrow;": "\u21d5", + "UpperLeftArrow;": "\u2196", + "UpperRightArrow;": "\u2197", + "Upsi;": "\u03d2", + "Upsilon;": "\u03a5", + "Uring;": "\u016e", + "Uscr;": "\U0001d4b0", + "Utilde;": "\u0168", + "Uuml": "\xdc", + "Uuml;": "\xdc", + "VDash;": "\u22ab", + "Vbar;": "\u2aeb", + "Vcy;": "\u0412", + "Vdash;": "\u22a9", + "Vdashl;": "\u2ae6", + "Vee;": "\u22c1", + "Verbar;": "\u2016", + "Vert;": "\u2016", + "VerticalBar;": "\u2223", + "VerticalLine;": "|", + "VerticalSeparator;": "\u2758", + "VerticalTilde;": "\u2240", + "VeryThinSpace;": "\u200a", + "Vfr;": "\U0001d519", + "Vopf;": "\U0001d54d", + "Vscr;": "\U0001d4b1", + "Vvdash;": "\u22aa", + "Wcirc;": "\u0174", + "Wedge;": "\u22c0", + "Wfr;": "\U0001d51a", + "Wopf;": "\U0001d54e", + "Wscr;": "\U0001d4b2", + "Xfr;": "\U0001d51b", + "Xi;": "\u039e", + "Xopf;": "\U0001d54f", + "Xscr;": "\U0001d4b3", + "YAcy;": "\u042f", + "YIcy;": "\u0407", + "YUcy;": "\u042e", + "Yacute": "\xdd", + "Yacute;": "\xdd", + "Ycirc;": "\u0176", + "Ycy;": "\u042b", + "Yfr;": "\U0001d51c", + "Yopf;": "\U0001d550", + "Yscr;": "\U0001d4b4", + "Yuml;": "\u0178", + "ZHcy;": "\u0416", + "Zacute;": "\u0179", + "Zcaron;": "\u017d", + "Zcy;": "\u0417", + "Zdot;": "\u017b", + "ZeroWidthSpace;": "\u200b", + "Zeta;": "\u0396", + "Zfr;": "\u2128", + "Zopf;": "\u2124", + "Zscr;": "\U0001d4b5", + "aacute": "\xe1", + "aacute;": "\xe1", + "abreve;": "\u0103", + "ac;": "\u223e", + "acE;": "\u223e\u0333", + "acd;": "\u223f", + "acirc": "\xe2", + "acirc;": "\xe2", + "acute": "\xb4", + "acute;": "\xb4", + "acy;": "\u0430", + "aelig": "\xe6", + "aelig;": "\xe6", + "af;": "\u2061", + "afr;": "\U0001d51e", + "agrave": "\xe0", + "agrave;": "\xe0", + "alefsym;": "\u2135", + "aleph;": "\u2135", + "alpha;": "\u03b1", + "amacr;": "\u0101", + "amalg;": "\u2a3f", + "amp": "&", + "amp;": "&", + "and;": "\u2227", + "andand;": "\u2a55", + "andd;": "\u2a5c", + "andslope;": "\u2a58", + "andv;": "\u2a5a", + "ang;": "\u2220", + "ange;": "\u29a4", + "angle;": "\u2220", + "angmsd;": "\u2221", + "angmsdaa;": "\u29a8", + "angmsdab;": "\u29a9", + "angmsdac;": "\u29aa", + "angmsdad;": "\u29ab", + "angmsdae;": "\u29ac", + "angmsdaf;": "\u29ad", + "angmsdag;": "\u29ae", + "angmsdah;": "\u29af", + "angrt;": "\u221f", + "angrtvb;": "\u22be", + "angrtvbd;": "\u299d", + "angsph;": "\u2222", + "angst;": "\xc5", + "angzarr;": "\u237c", + "aogon;": "\u0105", + "aopf;": "\U0001d552", + "ap;": "\u2248", + "apE;": "\u2a70", + "apacir;": "\u2a6f", + "ape;": "\u224a", + "apid;": "\u224b", + "apos;": "'", + "approx;": "\u2248", + "approxeq;": "\u224a", + "aring": "\xe5", + "aring;": "\xe5", + "ascr;": "\U0001d4b6", + "ast;": "*", + "asymp;": "\u2248", + "asympeq;": "\u224d", + "atilde": "\xe3", + "atilde;": "\xe3", + "auml": "\xe4", + "auml;": "\xe4", + "awconint;": "\u2233", + "awint;": "\u2a11", + "bNot;": "\u2aed", + "backcong;": "\u224c", + "backepsilon;": "\u03f6", + "backprime;": "\u2035", + "backsim;": "\u223d", + "backsimeq;": "\u22cd", + "barvee;": "\u22bd", + "barwed;": "\u2305", + "barwedge;": "\u2305", + "bbrk;": "\u23b5", + "bbrktbrk;": "\u23b6", + "bcong;": "\u224c", + "bcy;": "\u0431", + "bdquo;": "\u201e", + "becaus;": "\u2235", + "because;": "\u2235", + "bemptyv;": "\u29b0", + "bepsi;": "\u03f6", + "bernou;": "\u212c", + "beta;": "\u03b2", + "beth;": "\u2136", + "between;": "\u226c", + "bfr;": "\U0001d51f", + "bigcap;": "\u22c2", + "bigcirc;": "\u25ef", + "bigcup;": "\u22c3", + "bigodot;": "\u2a00", + "bigoplus;": "\u2a01", + "bigotimes;": "\u2a02", + "bigsqcup;": "\u2a06", + "bigstar;": "\u2605", + "bigtriangledown;": "\u25bd", + "bigtriangleup;": "\u25b3", + "biguplus;": "\u2a04", + "bigvee;": "\u22c1", + "bigwedge;": "\u22c0", + "bkarow;": "\u290d", + "blacklozenge;": "\u29eb", + "blacksquare;": "\u25aa", + "blacktriangle;": "\u25b4", + "blacktriangledown;": "\u25be", + "blacktriangleleft;": "\u25c2", + "blacktriangleright;": "\u25b8", + "blank;": "\u2423", + "blk12;": "\u2592", + "blk14;": "\u2591", + "blk34;": "\u2593", + "block;": "\u2588", + "bne;": "=\u20e5", + "bnequiv;": "\u2261\u20e5", + "bnot;": "\u2310", + "bopf;": "\U0001d553", + "bot;": "\u22a5", + "bottom;": "\u22a5", + "bowtie;": "\u22c8", + "boxDL;": "\u2557", + "boxDR;": "\u2554", + "boxDl;": "\u2556", + "boxDr;": "\u2553", + "boxH;": "\u2550", + "boxHD;": "\u2566", + "boxHU;": "\u2569", + "boxHd;": "\u2564", + "boxHu;": "\u2567", + "boxUL;": "\u255d", + "boxUR;": "\u255a", + "boxUl;": "\u255c", + "boxUr;": "\u2559", + "boxV;": "\u2551", + "boxVH;": "\u256c", + "boxVL;": "\u2563", + "boxVR;": "\u2560", + "boxVh;": "\u256b", + "boxVl;": "\u2562", + "boxVr;": "\u255f", + "boxbox;": "\u29c9", + "boxdL;": "\u2555", + "boxdR;": "\u2552", + "boxdl;": "\u2510", + "boxdr;": "\u250c", + "boxh;": "\u2500", + "boxhD;": "\u2565", + "boxhU;": "\u2568", + "boxhd;": "\u252c", + "boxhu;": "\u2534", + "boxminus;": "\u229f", + "boxplus;": "\u229e", + "boxtimes;": "\u22a0", + "boxuL;": "\u255b", + "boxuR;": "\u2558", + "boxul;": "\u2518", + "boxur;": "\u2514", + "boxv;": "\u2502", + "boxvH;": "\u256a", + "boxvL;": "\u2561", + "boxvR;": "\u255e", + "boxvh;": "\u253c", + "boxvl;": "\u2524", + "boxvr;": "\u251c", + "bprime;": "\u2035", + "breve;": "\u02d8", + "brvbar": "\xa6", + "brvbar;": "\xa6", + "bscr;": "\U0001d4b7", + "bsemi;": "\u204f", + "bsim;": "\u223d", + "bsime;": "\u22cd", + "bsol;": "\\", + "bsolb;": "\u29c5", + "bsolhsub;": "\u27c8", + "bull;": "\u2022", + "bullet;": "\u2022", + "bump;": "\u224e", + "bumpE;": "\u2aae", + "bumpe;": "\u224f", + "bumpeq;": "\u224f", + "cacute;": "\u0107", + "cap;": "\u2229", + "capand;": "\u2a44", + "capbrcup;": "\u2a49", + "capcap;": "\u2a4b", + "capcup;": "\u2a47", + "capdot;": "\u2a40", + "caps;": "\u2229\ufe00", + "caret;": "\u2041", + "caron;": "\u02c7", + "ccaps;": "\u2a4d", + "ccaron;": "\u010d", + "ccedil": "\xe7", + "ccedil;": "\xe7", + "ccirc;": "\u0109", + "ccups;": "\u2a4c", + "ccupssm;": "\u2a50", + "cdot;": "\u010b", + "cedil": "\xb8", + "cedil;": "\xb8", + "cemptyv;": "\u29b2", + "cent": "\xa2", + "cent;": "\xa2", + "centerdot;": "\xb7", + "cfr;": "\U0001d520", + "chcy;": "\u0447", + "check;": "\u2713", + "checkmark;": "\u2713", + "chi;": "\u03c7", + "cir;": "\u25cb", + "cirE;": "\u29c3", + "circ;": "\u02c6", + "circeq;": "\u2257", + "circlearrowleft;": "\u21ba", + "circlearrowright;": "\u21bb", + "circledR;": "\xae", + "circledS;": "\u24c8", + "circledast;": "\u229b", + "circledcirc;": "\u229a", + "circleddash;": "\u229d", + "cire;": "\u2257", + "cirfnint;": "\u2a10", + "cirmid;": "\u2aef", + "cirscir;": "\u29c2", + "clubs;": "\u2663", + "clubsuit;": "\u2663", + "colon;": ":", + "colone;": "\u2254", + "coloneq;": "\u2254", + "comma;": ",", + "commat;": "@", + "comp;": "\u2201", + "compfn;": "\u2218", + "complement;": "\u2201", + "complexes;": "\u2102", + "cong;": "\u2245", + "congdot;": "\u2a6d", + "conint;": "\u222e", + "copf;": "\U0001d554", + "coprod;": "\u2210", + "copy": "\xa9", + "copy;": "\xa9", + "copysr;": "\u2117", + "crarr;": "\u21b5", + "cross;": "\u2717", + "cscr;": "\U0001d4b8", + "csub;": "\u2acf", + "csube;": "\u2ad1", + "csup;": "\u2ad0", + "csupe;": "\u2ad2", + "ctdot;": "\u22ef", + "cudarrl;": "\u2938", + "cudarrr;": "\u2935", + "cuepr;": "\u22de", + "cuesc;": "\u22df", + "cularr;": "\u21b6", + "cularrp;": "\u293d", + "cup;": "\u222a", + "cupbrcap;": "\u2a48", + "cupcap;": "\u2a46", + "cupcup;": "\u2a4a", + "cupdot;": "\u228d", + "cupor;": "\u2a45", + "cups;": "\u222a\ufe00", + "curarr;": "\u21b7", + "curarrm;": "\u293c", + "curlyeqprec;": "\u22de", + "curlyeqsucc;": "\u22df", + "curlyvee;": "\u22ce", + "curlywedge;": "\u22cf", + "curren": "\xa4", + "curren;": "\xa4", + "curvearrowleft;": "\u21b6", + "curvearrowright;": "\u21b7", + "cuvee;": "\u22ce", + "cuwed;": "\u22cf", + "cwconint;": "\u2232", + "cwint;": "\u2231", + "cylcty;": "\u232d", + "dArr;": "\u21d3", + "dHar;": "\u2965", + "dagger;": "\u2020", + "daleth;": "\u2138", + "darr;": "\u2193", + "dash;": "\u2010", + "dashv;": "\u22a3", + "dbkarow;": "\u290f", + "dblac;": "\u02dd", + "dcaron;": "\u010f", + "dcy;": "\u0434", + "dd;": "\u2146", + "ddagger;": "\u2021", + "ddarr;": "\u21ca", + "ddotseq;": "\u2a77", + "deg": "\xb0", + "deg;": "\xb0", + "delta;": "\u03b4", + "demptyv;": "\u29b1", + "dfisht;": "\u297f", + "dfr;": "\U0001d521", + "dharl;": "\u21c3", + "dharr;": "\u21c2", + "diam;": "\u22c4", + "diamond;": "\u22c4", + "diamondsuit;": "\u2666", + "diams;": "\u2666", + "die;": "\xa8", + "digamma;": "\u03dd", + "disin;": "\u22f2", + "div;": "\xf7", + "divide": "\xf7", + "divide;": "\xf7", + "divideontimes;": "\u22c7", + "divonx;": "\u22c7", + "djcy;": "\u0452", + "dlcorn;": "\u231e", + "dlcrop;": "\u230d", + "dollar;": "$", + "dopf;": "\U0001d555", + "dot;": "\u02d9", + "doteq;": "\u2250", + "doteqdot;": "\u2251", + "dotminus;": "\u2238", + "dotplus;": "\u2214", + "dotsquare;": "\u22a1", + "doublebarwedge;": "\u2306", + "downarrow;": "\u2193", + "downdownarrows;": "\u21ca", + "downharpoonleft;": "\u21c3", + "downharpoonright;": "\u21c2", + "drbkarow;": "\u2910", + "drcorn;": "\u231f", + "drcrop;": "\u230c", + "dscr;": "\U0001d4b9", + "dscy;": "\u0455", + "dsol;": "\u29f6", + "dstrok;": "\u0111", + "dtdot;": "\u22f1", + "dtri;": "\u25bf", + "dtrif;": "\u25be", + "duarr;": "\u21f5", + "duhar;": "\u296f", + "dwangle;": "\u29a6", + "dzcy;": "\u045f", + "dzigrarr;": "\u27ff", + "eDDot;": "\u2a77", + "eDot;": "\u2251", + "eacute": "\xe9", + "eacute;": "\xe9", + "easter;": "\u2a6e", + "ecaron;": "\u011b", + "ecir;": "\u2256", + "ecirc": "\xea", + "ecirc;": "\xea", + "ecolon;": "\u2255", + "ecy;": "\u044d", + "edot;": "\u0117", + "ee;": "\u2147", + "efDot;": "\u2252", + "efr;": "\U0001d522", + "eg;": "\u2a9a", + "egrave": "\xe8", + "egrave;": "\xe8", + "egs;": "\u2a96", + "egsdot;": "\u2a98", + "el;": "\u2a99", + "elinters;": "\u23e7", + "ell;": "\u2113", + "els;": "\u2a95", + "elsdot;": "\u2a97", + "emacr;": "\u0113", + "empty;": "\u2205", + "emptyset;": "\u2205", + "emptyv;": "\u2205", + "emsp13;": "\u2004", + "emsp14;": "\u2005", + "emsp;": "\u2003", + "eng;": "\u014b", + "ensp;": "\u2002", + "eogon;": "\u0119", + "eopf;": "\U0001d556", + "epar;": "\u22d5", + "eparsl;": "\u29e3", + "eplus;": "\u2a71", + "epsi;": "\u03b5", + "epsilon;": "\u03b5", + "epsiv;": "\u03f5", + "eqcirc;": "\u2256", + "eqcolon;": "\u2255", + "eqsim;": "\u2242", + "eqslantgtr;": "\u2a96", + "eqslantless;": "\u2a95", + "equals;": "=", + "equest;": "\u225f", + "equiv;": "\u2261", + "equivDD;": "\u2a78", + "eqvparsl;": "\u29e5", + "erDot;": "\u2253", + "erarr;": "\u2971", + "escr;": "\u212f", + "esdot;": "\u2250", + "esim;": "\u2242", + "eta;": "\u03b7", + "eth": "\xf0", + "eth;": "\xf0", + "euml": "\xeb", + "euml;": "\xeb", + "euro;": "\u20ac", + "excl;": "!", + "exist;": "\u2203", + "expectation;": "\u2130", + "exponentiale;": "\u2147", + "fallingdotseq;": "\u2252", + "fcy;": "\u0444", + "female;": "\u2640", + "ffilig;": "\ufb03", + "fflig;": "\ufb00", + "ffllig;": "\ufb04", + "ffr;": "\U0001d523", + "filig;": "\ufb01", + "fjlig;": "fj", + "flat;": "\u266d", + "fllig;": "\ufb02", + "fltns;": "\u25b1", + "fnof;": "\u0192", + "fopf;": "\U0001d557", + "forall;": "\u2200", + "fork;": "\u22d4", + "forkv;": "\u2ad9", + "fpartint;": "\u2a0d", + "frac12": "\xbd", + "frac12;": "\xbd", + "frac13;": "\u2153", + "frac14": "\xbc", + "frac14;": "\xbc", + "frac15;": "\u2155", + "frac16;": "\u2159", + "frac18;": "\u215b", + "frac23;": "\u2154", + "frac25;": "\u2156", + "frac34": "\xbe", + "frac34;": "\xbe", + "frac35;": "\u2157", + "frac38;": "\u215c", + "frac45;": "\u2158", + "frac56;": "\u215a", + "frac58;": "\u215d", + "frac78;": "\u215e", + "frasl;": "\u2044", + "frown;": "\u2322", + "fscr;": "\U0001d4bb", + "gE;": "\u2267", + "gEl;": "\u2a8c", + "gacute;": "\u01f5", + "gamma;": "\u03b3", + "gammad;": "\u03dd", + "gap;": "\u2a86", + "gbreve;": "\u011f", + "gcirc;": "\u011d", + "gcy;": "\u0433", + "gdot;": "\u0121", + "ge;": "\u2265", + "gel;": "\u22db", + "geq;": "\u2265", + "geqq;": "\u2267", + "geqslant;": "\u2a7e", + "ges;": "\u2a7e", + "gescc;": "\u2aa9", + "gesdot;": "\u2a80", + "gesdoto;": "\u2a82", + "gesdotol;": "\u2a84", + "gesl;": "\u22db\ufe00", + "gesles;": "\u2a94", + "gfr;": "\U0001d524", + "gg;": "\u226b", + "ggg;": "\u22d9", + "gimel;": "\u2137", + "gjcy;": "\u0453", + "gl;": "\u2277", + "glE;": "\u2a92", + "gla;": "\u2aa5", + "glj;": "\u2aa4", + "gnE;": "\u2269", + "gnap;": "\u2a8a", + "gnapprox;": "\u2a8a", + "gne;": "\u2a88", + "gneq;": "\u2a88", + "gneqq;": "\u2269", + "gnsim;": "\u22e7", + "gopf;": "\U0001d558", + "grave;": "`", + "gscr;": "\u210a", + "gsim;": "\u2273", + "gsime;": "\u2a8e", + "gsiml;": "\u2a90", + "gt": ">", + "gt;": ">", + "gtcc;": "\u2aa7", + "gtcir;": "\u2a7a", + "gtdot;": "\u22d7", + "gtlPar;": "\u2995", + "gtquest;": "\u2a7c", + "gtrapprox;": "\u2a86", + "gtrarr;": "\u2978", + "gtrdot;": "\u22d7", + "gtreqless;": "\u22db", + "gtreqqless;": "\u2a8c", + "gtrless;": "\u2277", + "gtrsim;": "\u2273", + "gvertneqq;": "\u2269\ufe00", + "gvnE;": "\u2269\ufe00", + "hArr;": "\u21d4", + "hairsp;": "\u200a", + "half;": "\xbd", + "hamilt;": "\u210b", + "hardcy;": "\u044a", + "harr;": "\u2194", + "harrcir;": "\u2948", + "harrw;": "\u21ad", + "hbar;": "\u210f", + "hcirc;": "\u0125", + "hearts;": "\u2665", + "heartsuit;": "\u2665", + "hellip;": "\u2026", + "hercon;": "\u22b9", + "hfr;": "\U0001d525", + "hksearow;": "\u2925", + "hkswarow;": "\u2926", + "hoarr;": "\u21ff", + "homtht;": "\u223b", + "hookleftarrow;": "\u21a9", + "hookrightarrow;": "\u21aa", + "hopf;": "\U0001d559", + "horbar;": "\u2015", + "hscr;": "\U0001d4bd", + "hslash;": "\u210f", + "hstrok;": "\u0127", + "hybull;": "\u2043", + "hyphen;": "\u2010", + "iacute": "\xed", + "iacute;": "\xed", + "ic;": "\u2063", + "icirc": "\xee", + "icirc;": "\xee", + "icy;": "\u0438", + "iecy;": "\u0435", + "iexcl": "\xa1", + "iexcl;": "\xa1", + "iff;": "\u21d4", + "ifr;": "\U0001d526", + "igrave": "\xec", + "igrave;": "\xec", + "ii;": "\u2148", + "iiiint;": "\u2a0c", + "iiint;": "\u222d", + "iinfin;": "\u29dc", + "iiota;": "\u2129", + "ijlig;": "\u0133", + "imacr;": "\u012b", + "image;": "\u2111", + "imagline;": "\u2110", + "imagpart;": "\u2111", + "imath;": "\u0131", + "imof;": "\u22b7", + "imped;": "\u01b5", + "in;": "\u2208", + "incare;": "\u2105", + "infin;": "\u221e", + "infintie;": "\u29dd", + "inodot;": "\u0131", + "int;": "\u222b", + "intcal;": "\u22ba", + "integers;": "\u2124", + "intercal;": "\u22ba", + "intlarhk;": "\u2a17", + "intprod;": "\u2a3c", + "iocy;": "\u0451", + "iogon;": "\u012f", + "iopf;": "\U0001d55a", + "iota;": "\u03b9", + "iprod;": "\u2a3c", + "iquest": "\xbf", + "iquest;": "\xbf", + "iscr;": "\U0001d4be", + "isin;": "\u2208", + "isinE;": "\u22f9", + "isindot;": "\u22f5", + "isins;": "\u22f4", + "isinsv;": "\u22f3", + "isinv;": "\u2208", + "it;": "\u2062", + "itilde;": "\u0129", + "iukcy;": "\u0456", + "iuml": "\xef", + "iuml;": "\xef", + "jcirc;": "\u0135", + "jcy;": "\u0439", + "jfr;": "\U0001d527", + "jmath;": "\u0237", + "jopf;": "\U0001d55b", + "jscr;": "\U0001d4bf", + "jsercy;": "\u0458", + "jukcy;": "\u0454", + "kappa;": "\u03ba", + "kappav;": "\u03f0", + "kcedil;": "\u0137", + "kcy;": "\u043a", + "kfr;": "\U0001d528", + "kgreen;": "\u0138", + "khcy;": "\u0445", + "kjcy;": "\u045c", + "kopf;": "\U0001d55c", + "kscr;": "\U0001d4c0", + "lAarr;": "\u21da", + "lArr;": "\u21d0", + "lAtail;": "\u291b", + "lBarr;": "\u290e", + "lE;": "\u2266", + "lEg;": "\u2a8b", + "lHar;": "\u2962", + "lacute;": "\u013a", + "laemptyv;": "\u29b4", + "lagran;": "\u2112", + "lambda;": "\u03bb", + "lang;": "\u27e8", + "langd;": "\u2991", + "langle;": "\u27e8", + "lap;": "\u2a85", + "laquo": "\xab", + "laquo;": "\xab", + "larr;": "\u2190", + "larrb;": "\u21e4", + "larrbfs;": "\u291f", + "larrfs;": "\u291d", + "larrhk;": "\u21a9", + "larrlp;": "\u21ab", + "larrpl;": "\u2939", + "larrsim;": "\u2973", + "larrtl;": "\u21a2", + "lat;": "\u2aab", + "latail;": "\u2919", + "late;": "\u2aad", + "lates;": "\u2aad\ufe00", + "lbarr;": "\u290c", + "lbbrk;": "\u2772", + "lbrace;": "{", + "lbrack;": "[", + "lbrke;": "\u298b", + "lbrksld;": "\u298f", + "lbrkslu;": "\u298d", + "lcaron;": "\u013e", + "lcedil;": "\u013c", + "lceil;": "\u2308", + "lcub;": "{", + "lcy;": "\u043b", + "ldca;": "\u2936", + "ldquo;": "\u201c", + "ldquor;": "\u201e", + "ldrdhar;": "\u2967", + "ldrushar;": "\u294b", + "ldsh;": "\u21b2", + "le;": "\u2264", + "leftarrow;": "\u2190", + "leftarrowtail;": "\u21a2", + "leftharpoondown;": "\u21bd", + "leftharpoonup;": "\u21bc", + "leftleftarrows;": "\u21c7", + "leftrightarrow;": "\u2194", + "leftrightarrows;": "\u21c6", + "leftrightharpoons;": "\u21cb", + "leftrightsquigarrow;": "\u21ad", + "leftthreetimes;": "\u22cb", + "leg;": "\u22da", + "leq;": "\u2264", + "leqq;": "\u2266", + "leqslant;": "\u2a7d", + "les;": "\u2a7d", + "lescc;": "\u2aa8", + "lesdot;": "\u2a7f", + "lesdoto;": "\u2a81", + "lesdotor;": "\u2a83", + "lesg;": "\u22da\ufe00", + "lesges;": "\u2a93", + "lessapprox;": "\u2a85", + "lessdot;": "\u22d6", + "lesseqgtr;": "\u22da", + "lesseqqgtr;": "\u2a8b", + "lessgtr;": "\u2276", + "lesssim;": "\u2272", + "lfisht;": "\u297c", + "lfloor;": "\u230a", + "lfr;": "\U0001d529", + "lg;": "\u2276", + "lgE;": "\u2a91", + "lhard;": "\u21bd", + "lharu;": "\u21bc", + "lharul;": "\u296a", + "lhblk;": "\u2584", + "ljcy;": "\u0459", + "ll;": "\u226a", + "llarr;": "\u21c7", + "llcorner;": "\u231e", + "llhard;": "\u296b", + "lltri;": "\u25fa", + "lmidot;": "\u0140", + "lmoust;": "\u23b0", + "lmoustache;": "\u23b0", + "lnE;": "\u2268", + "lnap;": "\u2a89", + "lnapprox;": "\u2a89", + "lne;": "\u2a87", + "lneq;": "\u2a87", + "lneqq;": "\u2268", + "lnsim;": "\u22e6", + "loang;": "\u27ec", + "loarr;": "\u21fd", + "lobrk;": "\u27e6", + "longleftarrow;": "\u27f5", + "longleftrightarrow;": "\u27f7", + "longmapsto;": "\u27fc", + "longrightarrow;": "\u27f6", + "looparrowleft;": "\u21ab", + "looparrowright;": "\u21ac", + "lopar;": "\u2985", + "lopf;": "\U0001d55d", + "loplus;": "\u2a2d", + "lotimes;": "\u2a34", + "lowast;": "\u2217", + "lowbar;": "_", + "loz;": "\u25ca", + "lozenge;": "\u25ca", + "lozf;": "\u29eb", + "lpar;": "(", + "lparlt;": "\u2993", + "lrarr;": "\u21c6", + "lrcorner;": "\u231f", + "lrhar;": "\u21cb", + "lrhard;": "\u296d", + "lrm;": "\u200e", + "lrtri;": "\u22bf", + "lsaquo;": "\u2039", + "lscr;": "\U0001d4c1", + "lsh;": "\u21b0", + "lsim;": "\u2272", + "lsime;": "\u2a8d", + "lsimg;": "\u2a8f", + "lsqb;": "[", + "lsquo;": "\u2018", + "lsquor;": "\u201a", + "lstrok;": "\u0142", + "lt": "<", + "lt;": "<", + "ltcc;": "\u2aa6", + "ltcir;": "\u2a79", + "ltdot;": "\u22d6", + "lthree;": "\u22cb", + "ltimes;": "\u22c9", + "ltlarr;": "\u2976", + "ltquest;": "\u2a7b", + "ltrPar;": "\u2996", + "ltri;": "\u25c3", + "ltrie;": "\u22b4", + "ltrif;": "\u25c2", + "lurdshar;": "\u294a", + "luruhar;": "\u2966", + "lvertneqq;": "\u2268\ufe00", + "lvnE;": "\u2268\ufe00", + "mDDot;": "\u223a", + "macr": "\xaf", + "macr;": "\xaf", + "male;": "\u2642", + "malt;": "\u2720", + "maltese;": "\u2720", + "map;": "\u21a6", + "mapsto;": "\u21a6", + "mapstodown;": "\u21a7", + "mapstoleft;": "\u21a4", + "mapstoup;": "\u21a5", + "marker;": "\u25ae", + "mcomma;": "\u2a29", + "mcy;": "\u043c", + "mdash;": "\u2014", + "measuredangle;": "\u2221", + "mfr;": "\U0001d52a", + "mho;": "\u2127", + "micro": "\xb5", + "micro;": "\xb5", + "mid;": "\u2223", + "midast;": "*", + "midcir;": "\u2af0", + "middot": "\xb7", + "middot;": "\xb7", + "minus;": "\u2212", + "minusb;": "\u229f", + "minusd;": "\u2238", + "minusdu;": "\u2a2a", + "mlcp;": "\u2adb", + "mldr;": "\u2026", + "mnplus;": "\u2213", + "models;": "\u22a7", + "mopf;": "\U0001d55e", + "mp;": "\u2213", + "mscr;": "\U0001d4c2", + "mstpos;": "\u223e", + "mu;": "\u03bc", + "multimap;": "\u22b8", + "mumap;": "\u22b8", + "nGg;": "\u22d9\u0338", + "nGt;": "\u226b\u20d2", + "nGtv;": "\u226b\u0338", + "nLeftarrow;": "\u21cd", + "nLeftrightarrow;": "\u21ce", + "nLl;": "\u22d8\u0338", + "nLt;": "\u226a\u20d2", + "nLtv;": "\u226a\u0338", + "nRightarrow;": "\u21cf", + "nVDash;": "\u22af", + "nVdash;": "\u22ae", + "nabla;": "\u2207", + "nacute;": "\u0144", + "nang;": "\u2220\u20d2", + "nap;": "\u2249", + "napE;": "\u2a70\u0338", + "napid;": "\u224b\u0338", + "napos;": "\u0149", + "napprox;": "\u2249", + "natur;": "\u266e", + "natural;": "\u266e", + "naturals;": "\u2115", + "nbsp": "\xa0", + "nbsp;": "\xa0", + "nbump;": "\u224e\u0338", + "nbumpe;": "\u224f\u0338", + "ncap;": "\u2a43", + "ncaron;": "\u0148", + "ncedil;": "\u0146", + "ncong;": "\u2247", + "ncongdot;": "\u2a6d\u0338", + "ncup;": "\u2a42", + "ncy;": "\u043d", + "ndash;": "\u2013", + "ne;": "\u2260", + "neArr;": "\u21d7", + "nearhk;": "\u2924", + "nearr;": "\u2197", + "nearrow;": "\u2197", + "nedot;": "\u2250\u0338", + "nequiv;": "\u2262", + "nesear;": "\u2928", + "nesim;": "\u2242\u0338", + "nexist;": "\u2204", + "nexists;": "\u2204", + "nfr;": "\U0001d52b", + "ngE;": "\u2267\u0338", + "nge;": "\u2271", + "ngeq;": "\u2271", + "ngeqq;": "\u2267\u0338", + "ngeqslant;": "\u2a7e\u0338", + "nges;": "\u2a7e\u0338", + "ngsim;": "\u2275", + "ngt;": "\u226f", + "ngtr;": "\u226f", + "nhArr;": "\u21ce", + "nharr;": "\u21ae", + "nhpar;": "\u2af2", + "ni;": "\u220b", + "nis;": "\u22fc", + "nisd;": "\u22fa", + "niv;": "\u220b", + "njcy;": "\u045a", + "nlArr;": "\u21cd", + "nlE;": "\u2266\u0338", + "nlarr;": "\u219a", + "nldr;": "\u2025", + "nle;": "\u2270", + "nleftarrow;": "\u219a", + "nleftrightarrow;": "\u21ae", + "nleq;": "\u2270", + "nleqq;": "\u2266\u0338", + "nleqslant;": "\u2a7d\u0338", + "nles;": "\u2a7d\u0338", + "nless;": "\u226e", + "nlsim;": "\u2274", + "nlt;": "\u226e", + "nltri;": "\u22ea", + "nltrie;": "\u22ec", + "nmid;": "\u2224", + "nopf;": "\U0001d55f", + "not": "\xac", + "not;": "\xac", + "notin;": "\u2209", + "notinE;": "\u22f9\u0338", + "notindot;": "\u22f5\u0338", + "notinva;": "\u2209", + "notinvb;": "\u22f7", + "notinvc;": "\u22f6", + "notni;": "\u220c", + "notniva;": "\u220c", + "notnivb;": "\u22fe", + "notnivc;": "\u22fd", + "npar;": "\u2226", + "nparallel;": "\u2226", + "nparsl;": "\u2afd\u20e5", + "npart;": "\u2202\u0338", + "npolint;": "\u2a14", + "npr;": "\u2280", + "nprcue;": "\u22e0", + "npre;": "\u2aaf\u0338", + "nprec;": "\u2280", + "npreceq;": "\u2aaf\u0338", + "nrArr;": "\u21cf", + "nrarr;": "\u219b", + "nrarrc;": "\u2933\u0338", + "nrarrw;": "\u219d\u0338", + "nrightarrow;": "\u219b", + "nrtri;": "\u22eb", + "nrtrie;": "\u22ed", + "nsc;": "\u2281", + "nsccue;": "\u22e1", + "nsce;": "\u2ab0\u0338", + "nscr;": "\U0001d4c3", + "nshortmid;": "\u2224", + "nshortparallel;": "\u2226", + "nsim;": "\u2241", + "nsime;": "\u2244", + "nsimeq;": "\u2244", + "nsmid;": "\u2224", + "nspar;": "\u2226", + "nsqsube;": "\u22e2", + "nsqsupe;": "\u22e3", + "nsub;": "\u2284", + "nsubE;": "\u2ac5\u0338", + "nsube;": "\u2288", + "nsubset;": "\u2282\u20d2", + "nsubseteq;": "\u2288", + "nsubseteqq;": "\u2ac5\u0338", + "nsucc;": "\u2281", + "nsucceq;": "\u2ab0\u0338", + "nsup;": "\u2285", + "nsupE;": "\u2ac6\u0338", + "nsupe;": "\u2289", + "nsupset;": "\u2283\u20d2", + "nsupseteq;": "\u2289", + "nsupseteqq;": "\u2ac6\u0338", + "ntgl;": "\u2279", + "ntilde": "\xf1", + "ntilde;": "\xf1", + "ntlg;": "\u2278", + "ntriangleleft;": "\u22ea", + "ntrianglelefteq;": "\u22ec", + "ntriangleright;": "\u22eb", + "ntrianglerighteq;": "\u22ed", + "nu;": "\u03bd", + "num;": "#", + "numero;": "\u2116", + "numsp;": "\u2007", + "nvDash;": "\u22ad", + "nvHarr;": "\u2904", + "nvap;": "\u224d\u20d2", + "nvdash;": "\u22ac", + "nvge;": "\u2265\u20d2", + "nvgt;": ">\u20d2", + "nvinfin;": "\u29de", + "nvlArr;": "\u2902", + "nvle;": "\u2264\u20d2", + "nvlt;": "<\u20d2", + "nvltrie;": "\u22b4\u20d2", + "nvrArr;": "\u2903", + "nvrtrie;": "\u22b5\u20d2", + "nvsim;": "\u223c\u20d2", + "nwArr;": "\u21d6", + "nwarhk;": "\u2923", + "nwarr;": "\u2196", + "nwarrow;": "\u2196", + "nwnear;": "\u2927", + "oS;": "\u24c8", + "oacute": "\xf3", + "oacute;": "\xf3", + "oast;": "\u229b", + "ocir;": "\u229a", + "ocirc": "\xf4", + "ocirc;": "\xf4", + "ocy;": "\u043e", + "odash;": "\u229d", + "odblac;": "\u0151", + "odiv;": "\u2a38", + "odot;": "\u2299", + "odsold;": "\u29bc", + "oelig;": "\u0153", + "ofcir;": "\u29bf", + "ofr;": "\U0001d52c", + "ogon;": "\u02db", + "ograve": "\xf2", + "ograve;": "\xf2", + "ogt;": "\u29c1", + "ohbar;": "\u29b5", + "ohm;": "\u03a9", + "oint;": "\u222e", + "olarr;": "\u21ba", + "olcir;": "\u29be", + "olcross;": "\u29bb", + "oline;": "\u203e", + "olt;": "\u29c0", + "omacr;": "\u014d", + "omega;": "\u03c9", + "omicron;": "\u03bf", + "omid;": "\u29b6", + "ominus;": "\u2296", + "oopf;": "\U0001d560", + "opar;": "\u29b7", + "operp;": "\u29b9", + "oplus;": "\u2295", + "or;": "\u2228", + "orarr;": "\u21bb", + "ord;": "\u2a5d", + "order;": "\u2134", + "orderof;": "\u2134", + "ordf": "\xaa", + "ordf;": "\xaa", + "ordm": "\xba", + "ordm;": "\xba", + "origof;": "\u22b6", + "oror;": "\u2a56", + "orslope;": "\u2a57", + "orv;": "\u2a5b", + "oscr;": "\u2134", + "oslash": "\xf8", + "oslash;": "\xf8", + "osol;": "\u2298", + "otilde": "\xf5", + "otilde;": "\xf5", + "otimes;": "\u2297", + "otimesas;": "\u2a36", + "ouml": "\xf6", + "ouml;": "\xf6", + "ovbar;": "\u233d", + "par;": "\u2225", + "para": "\xb6", + "para;": "\xb6", + "parallel;": "\u2225", + "parsim;": "\u2af3", + "parsl;": "\u2afd", + "part;": "\u2202", + "pcy;": "\u043f", + "percnt;": "%", + "period;": ".", + "permil;": "\u2030", + "perp;": "\u22a5", + "pertenk;": "\u2031", + "pfr;": "\U0001d52d", + "phi;": "\u03c6", + "phiv;": "\u03d5", + "phmmat;": "\u2133", + "phone;": "\u260e", + "pi;": "\u03c0", + "pitchfork;": "\u22d4", + "piv;": "\u03d6", + "planck;": "\u210f", + "planckh;": "\u210e", + "plankv;": "\u210f", + "plus;": "+", + "plusacir;": "\u2a23", + "plusb;": "\u229e", + "pluscir;": "\u2a22", + "plusdo;": "\u2214", + "plusdu;": "\u2a25", + "pluse;": "\u2a72", + "plusmn": "\xb1", + "plusmn;": "\xb1", + "plussim;": "\u2a26", + "plustwo;": "\u2a27", + "pm;": "\xb1", + "pointint;": "\u2a15", + "popf;": "\U0001d561", + "pound": "\xa3", + "pound;": "\xa3", + "pr;": "\u227a", + "prE;": "\u2ab3", + "prap;": "\u2ab7", + "prcue;": "\u227c", + "pre;": "\u2aaf", + "prec;": "\u227a", + "precapprox;": "\u2ab7", + "preccurlyeq;": "\u227c", + "preceq;": "\u2aaf", + "precnapprox;": "\u2ab9", + "precneqq;": "\u2ab5", + "precnsim;": "\u22e8", + "precsim;": "\u227e", + "prime;": "\u2032", + "primes;": "\u2119", + "prnE;": "\u2ab5", + "prnap;": "\u2ab9", + "prnsim;": "\u22e8", + "prod;": "\u220f", + "profalar;": "\u232e", + "profline;": "\u2312", + "profsurf;": "\u2313", + "prop;": "\u221d", + "propto;": "\u221d", + "prsim;": "\u227e", + "prurel;": "\u22b0", + "pscr;": "\U0001d4c5", + "psi;": "\u03c8", + "puncsp;": "\u2008", + "qfr;": "\U0001d52e", + "qint;": "\u2a0c", + "qopf;": "\U0001d562", + "qprime;": "\u2057", + "qscr;": "\U0001d4c6", + "quaternions;": "\u210d", + "quatint;": "\u2a16", + "quest;": "?", + "questeq;": "\u225f", + "quot": "\"", + "quot;": "\"", + "rAarr;": "\u21db", + "rArr;": "\u21d2", + "rAtail;": "\u291c", + "rBarr;": "\u290f", + "rHar;": "\u2964", + "race;": "\u223d\u0331", + "racute;": "\u0155", + "radic;": "\u221a", + "raemptyv;": "\u29b3", + "rang;": "\u27e9", + "rangd;": "\u2992", + "range;": "\u29a5", + "rangle;": "\u27e9", + "raquo": "\xbb", + "raquo;": "\xbb", + "rarr;": "\u2192", + "rarrap;": "\u2975", + "rarrb;": "\u21e5", + "rarrbfs;": "\u2920", + "rarrc;": "\u2933", + "rarrfs;": "\u291e", + "rarrhk;": "\u21aa", + "rarrlp;": "\u21ac", + "rarrpl;": "\u2945", + "rarrsim;": "\u2974", + "rarrtl;": "\u21a3", + "rarrw;": "\u219d", + "ratail;": "\u291a", + "ratio;": "\u2236", + "rationals;": "\u211a", + "rbarr;": "\u290d", + "rbbrk;": "\u2773", + "rbrace;": "}", + "rbrack;": "]", + "rbrke;": "\u298c", + "rbrksld;": "\u298e", + "rbrkslu;": "\u2990", + "rcaron;": "\u0159", + "rcedil;": "\u0157", + "rceil;": "\u2309", + "rcub;": "}", + "rcy;": "\u0440", + "rdca;": "\u2937", + "rdldhar;": "\u2969", + "rdquo;": "\u201d", + "rdquor;": "\u201d", + "rdsh;": "\u21b3", + "real;": "\u211c", + "realine;": "\u211b", + "realpart;": "\u211c", + "reals;": "\u211d", + "rect;": "\u25ad", + "reg": "\xae", + "reg;": "\xae", + "rfisht;": "\u297d", + "rfloor;": "\u230b", + "rfr;": "\U0001d52f", + "rhard;": "\u21c1", + "rharu;": "\u21c0", + "rharul;": "\u296c", + "rho;": "\u03c1", + "rhov;": "\u03f1", + "rightarrow;": "\u2192", + "rightarrowtail;": "\u21a3", + "rightharpoondown;": "\u21c1", + "rightharpoonup;": "\u21c0", + "rightleftarrows;": "\u21c4", + "rightleftharpoons;": "\u21cc", + "rightrightarrows;": "\u21c9", + "rightsquigarrow;": "\u219d", + "rightthreetimes;": "\u22cc", + "ring;": "\u02da", + "risingdotseq;": "\u2253", + "rlarr;": "\u21c4", + "rlhar;": "\u21cc", + "rlm;": "\u200f", + "rmoust;": "\u23b1", + "rmoustache;": "\u23b1", + "rnmid;": "\u2aee", + "roang;": "\u27ed", + "roarr;": "\u21fe", + "robrk;": "\u27e7", + "ropar;": "\u2986", + "ropf;": "\U0001d563", + "roplus;": "\u2a2e", + "rotimes;": "\u2a35", + "rpar;": ")", + "rpargt;": "\u2994", + "rppolint;": "\u2a12", + "rrarr;": "\u21c9", + "rsaquo;": "\u203a", + "rscr;": "\U0001d4c7", + "rsh;": "\u21b1", + "rsqb;": "]", + "rsquo;": "\u2019", + "rsquor;": "\u2019", + "rthree;": "\u22cc", + "rtimes;": "\u22ca", + "rtri;": "\u25b9", + "rtrie;": "\u22b5", + "rtrif;": "\u25b8", + "rtriltri;": "\u29ce", + "ruluhar;": "\u2968", + "rx;": "\u211e", + "sacute;": "\u015b", + "sbquo;": "\u201a", + "sc;": "\u227b", + "scE;": "\u2ab4", + "scap;": "\u2ab8", + "scaron;": "\u0161", + "sccue;": "\u227d", + "sce;": "\u2ab0", + "scedil;": "\u015f", + "scirc;": "\u015d", + "scnE;": "\u2ab6", + "scnap;": "\u2aba", + "scnsim;": "\u22e9", + "scpolint;": "\u2a13", + "scsim;": "\u227f", + "scy;": "\u0441", + "sdot;": "\u22c5", + "sdotb;": "\u22a1", + "sdote;": "\u2a66", + "seArr;": "\u21d8", + "searhk;": "\u2925", + "searr;": "\u2198", + "searrow;": "\u2198", + "sect": "\xa7", + "sect;": "\xa7", + "semi;": ";", + "seswar;": "\u2929", + "setminus;": "\u2216", + "setmn;": "\u2216", + "sext;": "\u2736", + "sfr;": "\U0001d530", + "sfrown;": "\u2322", + "sharp;": "\u266f", + "shchcy;": "\u0449", + "shcy;": "\u0448", + "shortmid;": "\u2223", + "shortparallel;": "\u2225", + "shy": "\xad", + "shy;": "\xad", + "sigma;": "\u03c3", + "sigmaf;": "\u03c2", + "sigmav;": "\u03c2", + "sim;": "\u223c", + "simdot;": "\u2a6a", + "sime;": "\u2243", + "simeq;": "\u2243", + "simg;": "\u2a9e", + "simgE;": "\u2aa0", + "siml;": "\u2a9d", + "simlE;": "\u2a9f", + "simne;": "\u2246", + "simplus;": "\u2a24", + "simrarr;": "\u2972", + "slarr;": "\u2190", + "smallsetminus;": "\u2216", + "smashp;": "\u2a33", + "smeparsl;": "\u29e4", + "smid;": "\u2223", + "smile;": "\u2323", + "smt;": "\u2aaa", + "smte;": "\u2aac", + "smtes;": "\u2aac\ufe00", + "softcy;": "\u044c", + "sol;": "/", + "solb;": "\u29c4", + "solbar;": "\u233f", + "sopf;": "\U0001d564", + "spades;": "\u2660", + "spadesuit;": "\u2660", + "spar;": "\u2225", + "sqcap;": "\u2293", + "sqcaps;": "\u2293\ufe00", + "sqcup;": "\u2294", + "sqcups;": "\u2294\ufe00", + "sqsub;": "\u228f", + "sqsube;": "\u2291", + "sqsubset;": "\u228f", + "sqsubseteq;": "\u2291", + "sqsup;": "\u2290", + "sqsupe;": "\u2292", + "sqsupset;": "\u2290", + "sqsupseteq;": "\u2292", + "squ;": "\u25a1", + "square;": "\u25a1", + "squarf;": "\u25aa", + "squf;": "\u25aa", + "srarr;": "\u2192", + "sscr;": "\U0001d4c8", + "ssetmn;": "\u2216", + "ssmile;": "\u2323", + "sstarf;": "\u22c6", + "star;": "\u2606", + "starf;": "\u2605", + "straightepsilon;": "\u03f5", + "straightphi;": "\u03d5", + "strns;": "\xaf", + "sub;": "\u2282", + "subE;": "\u2ac5", + "subdot;": "\u2abd", + "sube;": "\u2286", + "subedot;": "\u2ac3", + "submult;": "\u2ac1", + "subnE;": "\u2acb", + "subne;": "\u228a", + "subplus;": "\u2abf", + "subrarr;": "\u2979", + "subset;": "\u2282", + "subseteq;": "\u2286", + "subseteqq;": "\u2ac5", + "subsetneq;": "\u228a", + "subsetneqq;": "\u2acb", + "subsim;": "\u2ac7", + "subsub;": "\u2ad5", + "subsup;": "\u2ad3", + "succ;": "\u227b", + "succapprox;": "\u2ab8", + "succcurlyeq;": "\u227d", + "succeq;": "\u2ab0", + "succnapprox;": "\u2aba", + "succneqq;": "\u2ab6", + "succnsim;": "\u22e9", + "succsim;": "\u227f", + "sum;": "\u2211", + "sung;": "\u266a", + "sup1": "\xb9", + "sup1;": "\xb9", + "sup2": "\xb2", + "sup2;": "\xb2", + "sup3": "\xb3", + "sup3;": "\xb3", + "sup;": "\u2283", + "supE;": "\u2ac6", + "supdot;": "\u2abe", + "supdsub;": "\u2ad8", + "supe;": "\u2287", + "supedot;": "\u2ac4", + "suphsol;": "\u27c9", + "suphsub;": "\u2ad7", + "suplarr;": "\u297b", + "supmult;": "\u2ac2", + "supnE;": "\u2acc", + "supne;": "\u228b", + "supplus;": "\u2ac0", + "supset;": "\u2283", + "supseteq;": "\u2287", + "supseteqq;": "\u2ac6", + "supsetneq;": "\u228b", + "supsetneqq;": "\u2acc", + "supsim;": "\u2ac8", + "supsub;": "\u2ad4", + "supsup;": "\u2ad6", + "swArr;": "\u21d9", + "swarhk;": "\u2926", + "swarr;": "\u2199", + "swarrow;": "\u2199", + "swnwar;": "\u292a", + "szlig": "\xdf", + "szlig;": "\xdf", + "target;": "\u2316", + "tau;": "\u03c4", + "tbrk;": "\u23b4", + "tcaron;": "\u0165", + "tcedil;": "\u0163", + "tcy;": "\u0442", + "tdot;": "\u20db", + "telrec;": "\u2315", + "tfr;": "\U0001d531", + "there4;": "\u2234", + "therefore;": "\u2234", + "theta;": "\u03b8", + "thetasym;": "\u03d1", + "thetav;": "\u03d1", + "thickapprox;": "\u2248", + "thicksim;": "\u223c", + "thinsp;": "\u2009", + "thkap;": "\u2248", + "thksim;": "\u223c", + "thorn": "\xfe", + "thorn;": "\xfe", + "tilde;": "\u02dc", + "times": "\xd7", + "times;": "\xd7", + "timesb;": "\u22a0", + "timesbar;": "\u2a31", + "timesd;": "\u2a30", + "tint;": "\u222d", + "toea;": "\u2928", + "top;": "\u22a4", + "topbot;": "\u2336", + "topcir;": "\u2af1", + "topf;": "\U0001d565", + "topfork;": "\u2ada", + "tosa;": "\u2929", + "tprime;": "\u2034", + "trade;": "\u2122", + "triangle;": "\u25b5", + "triangledown;": "\u25bf", + "triangleleft;": "\u25c3", + "trianglelefteq;": "\u22b4", + "triangleq;": "\u225c", + "triangleright;": "\u25b9", + "trianglerighteq;": "\u22b5", + "tridot;": "\u25ec", + "trie;": "\u225c", + "triminus;": "\u2a3a", + "triplus;": "\u2a39", + "trisb;": "\u29cd", + "tritime;": "\u2a3b", + "trpezium;": "\u23e2", + "tscr;": "\U0001d4c9", + "tscy;": "\u0446", + "tshcy;": "\u045b", + "tstrok;": "\u0167", + "twixt;": "\u226c", + "twoheadleftarrow;": "\u219e", + "twoheadrightarrow;": "\u21a0", + "uArr;": "\u21d1", + "uHar;": "\u2963", + "uacute": "\xfa", + "uacute;": "\xfa", + "uarr;": "\u2191", + "ubrcy;": "\u045e", + "ubreve;": "\u016d", + "ucirc": "\xfb", + "ucirc;": "\xfb", + "ucy;": "\u0443", + "udarr;": "\u21c5", + "udblac;": "\u0171", + "udhar;": "\u296e", + "ufisht;": "\u297e", + "ufr;": "\U0001d532", + "ugrave": "\xf9", + "ugrave;": "\xf9", + "uharl;": "\u21bf", + "uharr;": "\u21be", + "uhblk;": "\u2580", + "ulcorn;": "\u231c", + "ulcorner;": "\u231c", + "ulcrop;": "\u230f", + "ultri;": "\u25f8", + "umacr;": "\u016b", + "uml": "\xa8", + "uml;": "\xa8", + "uogon;": "\u0173", + "uopf;": "\U0001d566", + "uparrow;": "\u2191", + "updownarrow;": "\u2195", + "upharpoonleft;": "\u21bf", + "upharpoonright;": "\u21be", + "uplus;": "\u228e", + "upsi;": "\u03c5", + "upsih;": "\u03d2", + "upsilon;": "\u03c5", + "upuparrows;": "\u21c8", + "urcorn;": "\u231d", + "urcorner;": "\u231d", + "urcrop;": "\u230e", + "uring;": "\u016f", + "urtri;": "\u25f9", + "uscr;": "\U0001d4ca", + "utdot;": "\u22f0", + "utilde;": "\u0169", + "utri;": "\u25b5", + "utrif;": "\u25b4", + "uuarr;": "\u21c8", + "uuml": "\xfc", + "uuml;": "\xfc", + "uwangle;": "\u29a7", + "vArr;": "\u21d5", + "vBar;": "\u2ae8", + "vBarv;": "\u2ae9", + "vDash;": "\u22a8", + "vangrt;": "\u299c", + "varepsilon;": "\u03f5", + "varkappa;": "\u03f0", + "varnothing;": "\u2205", + "varphi;": "\u03d5", + "varpi;": "\u03d6", + "varpropto;": "\u221d", + "varr;": "\u2195", + "varrho;": "\u03f1", + "varsigma;": "\u03c2", + "varsubsetneq;": "\u228a\ufe00", + "varsubsetneqq;": "\u2acb\ufe00", + "varsupsetneq;": "\u228b\ufe00", + "varsupsetneqq;": "\u2acc\ufe00", + "vartheta;": "\u03d1", + "vartriangleleft;": "\u22b2", + "vartriangleright;": "\u22b3", + "vcy;": "\u0432", + "vdash;": "\u22a2", + "vee;": "\u2228", + "veebar;": "\u22bb", + "veeeq;": "\u225a", + "vellip;": "\u22ee", + "verbar;": "|", + "vert;": "|", + "vfr;": "\U0001d533", + "vltri;": "\u22b2", + "vnsub;": "\u2282\u20d2", + "vnsup;": "\u2283\u20d2", + "vopf;": "\U0001d567", + "vprop;": "\u221d", + "vrtri;": "\u22b3", + "vscr;": "\U0001d4cb", + "vsubnE;": "\u2acb\ufe00", + "vsubne;": "\u228a\ufe00", + "vsupnE;": "\u2acc\ufe00", + "vsupne;": "\u228b\ufe00", + "vzigzag;": "\u299a", + "wcirc;": "\u0175", + "wedbar;": "\u2a5f", + "wedge;": "\u2227", + "wedgeq;": "\u2259", + "weierp;": "\u2118", + "wfr;": "\U0001d534", + "wopf;": "\U0001d568", + "wp;": "\u2118", + "wr;": "\u2240", + "wreath;": "\u2240", + "wscr;": "\U0001d4cc", + "xcap;": "\u22c2", + "xcirc;": "\u25ef", + "xcup;": "\u22c3", + "xdtri;": "\u25bd", + "xfr;": "\U0001d535", + "xhArr;": "\u27fa", + "xharr;": "\u27f7", + "xi;": "\u03be", + "xlArr;": "\u27f8", + "xlarr;": "\u27f5", + "xmap;": "\u27fc", + "xnis;": "\u22fb", + "xodot;": "\u2a00", + "xopf;": "\U0001d569", + "xoplus;": "\u2a01", + "xotime;": "\u2a02", + "xrArr;": "\u27f9", + "xrarr;": "\u27f6", + "xscr;": "\U0001d4cd", + "xsqcup;": "\u2a06", + "xuplus;": "\u2a04", + "xutri;": "\u25b3", + "xvee;": "\u22c1", + "xwedge;": "\u22c0", + "yacute": "\xfd", + "yacute;": "\xfd", + "yacy;": "\u044f", + "ycirc;": "\u0177", + "ycy;": "\u044b", + "yen": "\xa5", + "yen;": "\xa5", + "yfr;": "\U0001d536", + "yicy;": "\u0457", + "yopf;": "\U0001d56a", + "yscr;": "\U0001d4ce", + "yucy;": "\u044e", + "yuml": "\xff", + "yuml;": "\xff", + "zacute;": "\u017a", + "zcaron;": "\u017e", + "zcy;": "\u0437", + "zdot;": "\u017c", + "zeetrf;": "\u2128", + "zeta;": "\u03b6", + "zfr;": "\U0001d537", + "zhcy;": "\u0436", + "zigrarr;": "\u21dd", + "zopf;": "\U0001d56b", + "zscr;": "\U0001d4cf", + "zwj;": "\u200d", + "zwnj;": "\u200c", +} + +replacementCharacters = { + 0x0: "\uFFFD", + 0x0d: "\u000D", + 0x80: "\u20AC", + 0x81: "\u0081", + 0x82: "\u201A", + 0x83: "\u0192", + 0x84: "\u201E", + 0x85: "\u2026", + 0x86: "\u2020", + 0x87: "\u2021", + 0x88: "\u02C6", + 0x89: "\u2030", + 0x8A: "\u0160", + 0x8B: "\u2039", + 0x8C: "\u0152", + 0x8D: "\u008D", + 0x8E: "\u017D", + 0x8F: "\u008F", + 0x90: "\u0090", + 0x91: "\u2018", + 0x92: "\u2019", + 0x93: "\u201C", + 0x94: "\u201D", + 0x95: "\u2022", + 0x96: "\u2013", + 0x97: "\u2014", + 0x98: "\u02DC", + 0x99: "\u2122", + 0x9A: "\u0161", + 0x9B: "\u203A", + 0x9C: "\u0153", + 0x9D: "\u009D", + 0x9E: "\u017E", + 0x9F: "\u0178", +} + +tokenTypes = { + "Doctype": 0, + "Characters": 1, + "SpaceCharacters": 2, + "StartTag": 3, + "EndTag": 4, + "EmptyTag": 5, + "Comment": 6, + "ParseError": 7 +} + +tagTokenTypes = frozenset([tokenTypes["StartTag"], tokenTypes["EndTag"], + tokenTypes["EmptyTag"]]) + + +prefixes = {v: k for k, v in namespaces.items()} +prefixes["http://www.w3.org/1998/Math/MathML"] = "math" + + +class DataLossWarning(UserWarning): + """Raised when the current tree is unable to represent the input data""" + pass + + +class _ReparseException(Exception): + pass diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__init__.py b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b5a6daa50d806ddca9e91d57ce562272c3f33e1e GIT binary patch literal 164 zcmWIL<>g`k0)_V01Q7igL?8o3AjbiSi&=m~3PUi1CZpd00mDJr8&H zthLtqlps!=xh6;cQeQdcC%^@&+BPu~t*M%>etciOW`5Y+9Wxx_m!Idq#f<$y#_f@y z@esv6L8X}Dn$%pFQ;8nb!+ePIR1IFTJo}odp~_w|l|gzk zdJ*R%HG0aX<2Q)Mrm?>(7q->CgQBXt);OQ3YF*i?ZTw!}RAsB6(3JxtwSB|s4)@7I zTEO?tH%5U0^|&fsNqaYg<`@n80>yraYKxxV3)0ktmtmGPm6pgIGcCrNFR?>+QVHY5v zaw{-mK0j(3n9l_P3yZML@qu^-0Sk}b#|v%UNkg|$&Re`(%H9Thb061LwOnG{jT3Iu zf&Ez6R-6M~Yt~>~0Q#53wd6k3o!eZKiDhN1JGgS*P^vsLDZYLWxs@1>8KD`}U(aT) z?q*%p?e`6abP8(!dFq^iv~sDR~Mu{=^dkE!{v$r6=d8B;&_ zDzILB^yr550<3sT8)^p{YD}H|Ps337Bt&hWqjKzozrsd&%^$O$o?P-R4-FKZ4$QYM ze!(sym*5(<(5v({a|4z98sW*k=h0<+nQW77w2cqh*(dnMQ-^HJe`K7UO%x+fk9ZEbs%VVE?Nj0KbqNJ19-ZAE8Iy3`x$Lyl=Sy9lJP!wiJ=78D|luvQ7wjp(x zgv5eg`qZ_j(D;;sw?3hc^yyma9^Tg0>=5$1sNP4h@1SCQk5BjjCHnhLH0BwF3n)mT=ySCeb9$ GcK!j5%1Vs@ literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..37aca85ef01a0d1b086af54d3cccc276db608210 GIT binary patch literal 834 zcmZuvO>fjN5VhlMHnd%}LYxr?4&<=S2?->GDj~|Pmlc;>Og8qmUYw8GPAkyfwiUmn zf5}%)`~^9k; zl56FpDYdQe&e$S2oWQcr!AVk3L5fIF5#5l22_|CLV=)m4>=Q8s+|(zhN<+H}?>-pD zxZc6CIPQjS2#0AFO(nC)$5!fN5UYxy^Uea`P|Io}^~c)Xi@mp;o9`tz z2b^E_r5-W{+n5=;BXsykBZp%f)EIwUi#nw=Who2a5CR&nde<9hY*1c<(;BSyNxNLj X%7xNV%YZP*`DWns7T+ew`Goxf2VAkq literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..382ea2e00581f2c87fc9260b5e139c89b15f9c90 GIT binary patch literal 1840 zcmZt{O>Y}TbY}L`j?Ayfa6{{^$%2t3%r?i8dG(wdHZJG_nY^gzgk_bBUs)~KOTR- zg3w>;u)It-+=VSZ1V9nRF-owH6XKJ^@C}S8p+;;bmTzHnA5oK9PZ714HMD;)e4E-2 zQOkJ=vZ!U0YvGB=;)!HIl;jzgrAwn}B%&-Wo0Bx^W|ReSBpDB5@e(T;T$(4LU|pqP zc@a3=g)KY)4EdNMpHS=@%AKdkH!DYct8$>U??o}_J-huN9kQ+z-tqBX!er=m2O$?s z-ahQ?e{t}jbN|lqu_wd67o{@u1}vmr*7IoAog^%kT?4FLE`_V??86q@03;gX3sRs0 z&k05aV1Yp~#81xTK4+n1!VA61k$T-*tXm=Pdm@|gF1zK)0bAgn%tkErgapCl4Q`e~ zrlPc8@n4=m!h=YzcsnhV+u#>>0F-VJL}?_0pmZ-K;6+Tq;$CT2_IV8$e?`0jpMQ?p zGRfO{l`bNxP@>EZULIbD(k@ zEOLA^Kjki{R$HjdA@>?STdNXs^U}SpdiTqvYEy;Kg)ROB3dJ*ApdnP^$eocsni&!g z$%Rp%IX*z=`0;NuvoI;Sfo4`=QDa2-=WsS}pbK*jbqVKBsXfEzIHf>$M&umx&z3k` z;P{)?W;Wc_LCTt=1N8WtN8}NiIWu=wD;%(0<3Eq5<7we)tt%k&yYi}%DV)OXkv&8k zGpK{{E5%1wfoEFOH2*b)1JwqK&0o>AN^Yd^rqXkLp^2_lTGB6V&yBAU^rJ&vx~{ZD`1Rcewdm$^qUqq(cqi>a^cxFJ|I3foZB+2WrdxBYq_nkX zZ_`~U-d_siiuW9kpQ+gCb$BaGZEfWb;BX3ajv*sEg{gFocPN7Hc(>!bIcI@tw$hZR zIV;_VGUW0o?3ZR5Cag3S&3B@-Vsa0YT%KyOs;_&cNkbWy&Z5qa&gugx^IbNcMANfI zH%le-?yl0@A{}6>F3z?j`%dc0{p9r+cwe*(ehsRPHx<|f05W_FzNLMbQZU*gOAM-5 z{aT(0sadyFwdcXT6L}py|jdcA>r3`)AX`Q zN=rx4q18)E&jW4Qe{T?qK!q6S5Q9ZPfzDk`WlTWFG95x`O~ZJ?bWc}c6-;q8uQp(d zZvh}|;yO0TI(FgL#4f4hCNc3goJ`!n>i})MiEYvZ+$P&Vv;TDgx&RwMH9=wjNwn3IVTxX)wveh(FenML6L6Bs05-YqB1mj5iQo5%@NSHRU@23JFytJzbct4Dg9+S1*t+`6NlSdXhs(lGu5 D*5=UP literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8a44fa22c0428344955d95d951703e15ccf10e57 GIT binary patch literal 2598 zcmZuzOK%)S5bmDG?(Exf948JT8bu(oD6u6ZP%sFAVh05wUz|i}lxRGj?zP7|k9Bvi z6R&nJI1rA$fH>L`LW;x>K%7v11E&#(2u`_j8DYcG498a;v$G;o8}e8A1Pn$_xKBn3TSR^29m!pkTLRV z8YEoyf{@F+zL!O8HRcIV6<%%W{hQl?2tv>&a}pwk>4Cn$A>W3D6OS_D8H{=+D?cF} ziq=1_cotgzn0WRRViB(d);M|TRuqHM!Pe&yyymKH?y9WIQ&%d%gT(D*!sS9_LRPCT zjN2VIQf?>sgV{7(vvAK z0;7ncLvmmo8AEzZDH$3=;+u>DR%7t(O@O30JnR;z3zZ0KIS^Z}%=#ka%i4&7e#w^q zoEChy9|`U!feN>ybjw%4mRxopZgX&gaKY|0Q=q^dA9N=NT|9WIY^`nOw(R%7OAW9f zcYHreBjx+~xmP{`xnoHlck)t!QOv-tr;s7OAI5={zWUGJxm6s>lw7aFAoVLJrLb*G9$=Qfq;X%%RDQZt0MUTd-ro zjs;%}zV^^!r0d8vWezQ69T-5_UsBk$yQcJz28pdD+gf64i5g1`R$3sc1oyr!?uqX} zPnne$NY@ZQ!A+-Ig0IP(t|5QMGie>T%7iOu@!OE>RA8k?)uA=CJ4TUGsQsvROjgK) zjr+!ZV`Po&QK`UuNM&h)TGJ=EftwrS)5w8;L!;B!fqQ2xEor-+Be(nfkfwhDnrhcL zGz5C?6@G%dgQ+(MTC4UINWK|soxJ(ImQLRMu{aAc_~q0?!2MqM2q{(rE&nK+)mdX` zM|7SXQ1I6k^v$6uZh&{{$7EC&{U_HIFGsPc){#g1$5Q)jv)$%EpX>`#(%F zN7EP`gUv2LvDeaPQ_^SpC4-$EOVO%v)=jXd_u!>Djl=+%&faO;wEgF_{EC)iUQXGb z&VzTgx7a+RLv!NYp>dB;vOB{F6t44YxrK!v%Dl6#0-^2%Te-8E^wd65m6Ot+TS$sJ z{Q7c>1uDob{AG&;*bokP~}qc}C;FM~|q())!J&sFKX-nmFGQx_=Y=FNFyx?pQ}wdtL98Ji5|3VP4? zlZ^Far0c%F+YjQgr0n}F3w>XA0c}Cv826Zv$1w;_jXVoh32i9`2QyHXU~#BrH)}dz zYwae!)#za=an$iF;;RakQk`k+R36+ eKQV7$N7$$&BAYYn;N}^aRr6m!^Q;j7 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..25ae5988a36bda1cb27d6d8036b74fe781850ec9 GIT binary patch literal 2727 zcmZ`*&2QX96rUM;z0PLy(KP*tRKyBFVSzNXv{frrs8T=pkcbco2(1dnyW>rqwb#zr z8=7cyfg&yl<$ySFqPJG!+!JRG{R0phAudQrMf?R768zrS4vSR0n(_F}@4b2R=J($0 zdowc)hNtz#=O5o{Gxi&OOg=U~uA*fZ(McwG#A4pzvFM1{>R6mfA+5-cYn>WruQO@O z+8riqL2b+V%<4GOS!3<`Bj~cWrRV%^mPDgG@WMDvRIXha?u1#G4E6kI81@nwcu|-K z%8#-~oOHOhyM7k*$iUR_%h~HRD_Jos8Jy#* z*tL@-Bh?Gqwzjh%>UXA673_q`C_DS_@SLt0_wF+_4F?{-y^_c2N*boiqhadz27z4u zWHSh&v$p%4dY zEwSthkQ`%s39%Ymcdcw|EGTl@E|4`KB@m)SSa-$5e2FtrbXK*U@1}uv*K%Lw>;8te zrJwuS9{O>hof|_5S=&-G@J=5IGq2jemyv>=n-n2r?V6e*s9T+cqQrr@;C8NNF*Juz zbWH>FJfgDaE#NCVj*jsK#EpLQe+yyW+!cFsWgIJfk9bu*6iFicHMHzkbYn|3#}>sd zos|?nj`%sMh3Hs=`Wm7pZA9rU6D>!brwqin4w;6YyM!Dah&47m0CEb_+eXt-A5m&x zJPnyDkxjBl7KUA*XE5_^Y4__AF-x{cb9fbqIkQS((&02*w zM=A>@H5XP*Ftttmyf1Y9S`x>>5a+Q5P6yXEedYHM)(nWim-mI5Lr}DPBTn;Ooanlu zaH}IEw7ZGiy=ee#0Y3LsnC7~c<+~Ah(MzHYm5fqtVT4p7F!=B+Y1WYYzQn7aB)Jy3 zGUr-RppFzF7O7*j6rJpo2%wH);%PKfIvJnmu7xwVUF46;XSwT`k=+!?rkY#5t$E%6 zJ8a%W+dEluW0H)9pFInftA_}4ND>+$^vxplh9p#q3X)h8ByrR`I7CXRE5JIGaC8)q zfh_4;c(Z}K#t!)Kd+573wl7P3RNzTw2uC!!Q|f(M>CtgQH-#=y>IcZ1uyL={oiVz_ zS`R86;E6^cmHHDh^6lpmKR1E@eF8rZJScU*Rjbgzi1v>Cki6Q@0Z&g=TEkzU1KI(( z4w+@NFO`(Unvk!S7LE)o(0c*&z6YJ72Kmk5I(dm&EaPy@=pJAm5yXmLRV$M1VILNb z8^psy3lB;Q(46q}$4YN_4mu~ys(&5o{88#aKB4ot(lKdtvPdKF`6RfZPEki(R7>b^ z6N@O+E-IeM0QEf0P#&4QF&Tt}5fapwQoW3co0_NUDbhWq>pp}*mSLdsu!mf#`5CSX z-RMS1Z?HW|a-;?a0uNk_~OiP*Jx7qmg#|VGzkI$hAW`7AS4^6BTQ*c^2&) z+N)^i(Jr7})D9&iP+}8E6oiqshCWOsky?gZ+Co{@b^KGHYaEH|cj1>9McOIqdRwSB zX@f7)9SIhVb-EIm5ozQSZL=r@wz&(`3k3S#{9nZE2WZ(X zbcgxhzzr%EP4+kGCZKzu4q3gFVXjec7)--%pjI?2st}E7$Z-EI(AX*G4Q_$&9e+ZV zz?HSycD3tyRH{5rH#{#+~%?-^ZzriwM(8TYc0ueR&7RDYC@6qZs{mlPE%MO8{OMT!RbB-7fxQaJe<{n^S$ JWl=P(e*k-ni^~82 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eee82d3ed532855eb8ad6d5cd08da6b67654de3c GIT binary patch literal 16873 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 Tp}4(RD!!;#%$M}9>y>{8vi;(6 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1747e515c3898708502bcfaf02861574d85c0ab7 GIT binary patch literal 1332 zcmZ8h&2HQ_5GE-~E3J3Ei^552AO&=24vX5^Q`W5y97r3`>((J%?bGj z7dHp!$YYqM0wIW?ij*{=B}-W8B_2f`Q#|3q6I}UakOZLfMW8xmn1p4NM6m8$bY=7> zO(MxJ)pB;i%_d5gva-evOq1nu z=P=V*4t~awQ~&3C=J{ti9(i;8mw+wMN|I1P5+-QkNiLZ14w&?1a8B=#bDDGn7e0g^ ziU7jzxZvAD!S1I|c50=v#z+&tID|Oc!(;g}myL~!DsHsgimiNUGcB{NIIBc#a$Nu@ zuLAbK#)VflIdZ%j7$Hs!-TVPU&@*buoL;acr1=~2{I@fH2M`OM;U>{mMELcHRCfV=185h} zH=~itcqj;DWo=hu@Q&M84KSJlXZu5T;CPjlQu_!6lS-g!F#VuN9BcTN z#;$u^xsk5}aMEk&8Kx<=L7KW-ZI1V}G*X|)>$>OfE0MOi8F9yrR5KSsep^%L+xkdW zdL8!ri|D)Xdi&kjmd&^+n(ajeAstDv{o+tcwS9arw_i06W{8c`6IqE`j}L9BK3B#5 zc-B_mjIV2czj>u^!;V9kCI&$$r$ZXT!`?C4d&gLp^=OxEwC^E19jsdD{uQy^QG_fp zS-`TJre!S_3cq`4dc4Tgd!&=5qRv4b&2)V#D(qP(t*&ES5oNJePF x=XFuJPF|Nyp``v4t&v~5`;7>&&>Gph@X;!#Un4_`` tag into head of document""" + def __init__(self, source, encoding): + """Creates a Filter + + :arg source: the source token stream + + :arg encoding: the encoding to set + + """ + base.Filter.__init__(self, source) + self.encoding = encoding + + def __iter__(self): + state = "pre_head" + meta_found = (self.encoding is None) + pending = [] + + for token in base.Filter.__iter__(self): + type = token["type"] + if type == "StartTag": + if token["name"].lower() == "head": + state = "in_head" + + elif type == "EmptyTag": + if token["name"].lower() == "meta": + # replace charset with actual encoding + has_http_equiv_content_type = False + for (namespace, name), value in token["data"].items(): + if namespace is not None: + continue + elif name.lower() == 'charset': + token["data"][(namespace, name)] = self.encoding + meta_found = True + break + elif name == 'http-equiv' and value.lower() == 'content-type': + has_http_equiv_content_type = True + else: + if has_http_equiv_content_type and (None, "content") in token["data"]: + token["data"][(None, "content")] = 'text/html; charset=%s' % self.encoding + meta_found = True + + elif token["name"].lower() == "head" and not meta_found: + # insert meta into empty head + yield {"type": "StartTag", "name": "head", + "data": token["data"]} + yield {"type": "EmptyTag", "name": "meta", + "data": {(None, "charset"): self.encoding}} + yield {"type": "EndTag", "name": "head"} + meta_found = True + continue + + elif type == "EndTag": + if token["name"].lower() == "head" and pending: + # insert meta into head (if necessary) and flush pending queue + yield pending.pop(0) + if not meta_found: + yield {"type": "EmptyTag", "name": "meta", + "data": {(None, "charset"): self.encoding}} + while pending: + yield pending.pop(0) + meta_found = True + state = "post_head" + + if state == "in_head": + pending.append(token) + else: + yield token diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/lint.py b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/lint.py new file mode 100644 index 00000000..fcc07eec --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/lint.py @@ -0,0 +1,93 @@ +from __future__ import absolute_import, division, unicode_literals + +from pip._vendor.six import text_type + +from . import base +from ..constants import namespaces, voidElements + +from ..constants import spaceCharacters +spaceCharacters = "".join(spaceCharacters) + + +class Filter(base.Filter): + """Lints the token stream for errors + + If it finds any errors, it'll raise an ``AssertionError``. + + """ + def __init__(self, source, require_matching_tags=True): + """Creates a Filter + + :arg source: the source token stream + + :arg require_matching_tags: whether or not to require matching tags + + """ + super(Filter, self).__init__(source) + self.require_matching_tags = require_matching_tags + + def __iter__(self): + open_elements = [] + for token in base.Filter.__iter__(self): + type = token["type"] + if type in ("StartTag", "EmptyTag"): + namespace = token["namespace"] + name = token["name"] + assert namespace is None or isinstance(namespace, text_type) + assert namespace != "" + assert isinstance(name, text_type) + assert name != "" + assert isinstance(token["data"], dict) + if (not namespace or namespace == namespaces["html"]) and name in voidElements: + assert type == "EmptyTag" + else: + assert type == "StartTag" + if type == "StartTag" and self.require_matching_tags: + open_elements.append((namespace, name)) + for (namespace, name), value in token["data"].items(): + assert namespace is None or isinstance(namespace, text_type) + assert namespace != "" + assert isinstance(name, text_type) + assert name != "" + assert isinstance(value, text_type) + + elif type == "EndTag": + namespace = token["namespace"] + name = token["name"] + assert namespace is None or isinstance(namespace, text_type) + assert namespace != "" + assert isinstance(name, text_type) + assert name != "" + if (not namespace or namespace == namespaces["html"]) and name in voidElements: + assert False, "Void element reported as EndTag token: %(tag)s" % {"tag": name} + elif self.require_matching_tags: + start = open_elements.pop() + assert start == (namespace, name) + + elif type == "Comment": + data = token["data"] + assert isinstance(data, text_type) + + elif type in ("Characters", "SpaceCharacters"): + data = token["data"] + assert isinstance(data, text_type) + assert data != "" + if type == "SpaceCharacters": + assert data.strip(spaceCharacters) == "" + + elif type == "Doctype": + name = token["name"] + assert name is None or isinstance(name, text_type) + assert token["publicId"] is None or isinstance(name, text_type) + assert token["systemId"] is None or isinstance(name, text_type) + + elif type == "Entity": + assert isinstance(token["name"], text_type) + + elif type == "SerializerError": + assert isinstance(token["data"], text_type) + + else: + assert False, "Unknown token type: %(type)s" % {"type": type} + + yield token diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/optionaltags.py b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/optionaltags.py new file mode 100644 index 00000000..4a865012 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/optionaltags.py @@ -0,0 +1,207 @@ +from __future__ import absolute_import, division, unicode_literals + +from . import base + + +class Filter(base.Filter): + """Removes optional tags from the token stream""" + def slider(self): + previous1 = previous2 = None + for token in self.source: + if previous1 is not None: + yield previous2, previous1, token + previous2 = previous1 + previous1 = token + if previous1 is not None: + yield previous2, previous1, None + + def __iter__(self): + for previous, token, next in self.slider(): + type = token["type"] + if type == "StartTag": + if (token["data"] or + not self.is_optional_start(token["name"], previous, next)): + yield token + elif type == "EndTag": + if not self.is_optional_end(token["name"], next): + yield token + else: + yield token + + def is_optional_start(self, tagname, previous, next): + type = next and next["type"] or None + if tagname in 'html': + # An html element's start tag may be omitted if the first thing + # inside the html element is not a space character or a comment. + return type not in ("Comment", "SpaceCharacters") + elif tagname == 'head': + # A head element's start tag may be omitted if the first thing + # inside the head element is an element. + # XXX: we also omit the start tag if the head element is empty + if type in ("StartTag", "EmptyTag"): + return True + elif type == "EndTag": + return next["name"] == "head" + elif tagname == 'body': + # A body element's start tag may be omitted if the first thing + # inside the body element is not a space character or a comment, + # except if the first thing inside the body element is a script + # or style element and the node immediately preceding the body + # element is a head element whose end tag has been omitted. + if type in ("Comment", "SpaceCharacters"): + return False + elif type == "StartTag": + # XXX: we do not look at the preceding event, so we never omit + # the body element's start tag if it's followed by a script or + # a style element. + return next["name"] not in ('script', 'style') + else: + return True + elif tagname == 'colgroup': + # A colgroup element's start tag may be omitted if the first thing + # inside the colgroup element is a col element, and if the element + # is not immediately preceded by another colgroup element whose + # end tag has been omitted. + if type in ("StartTag", "EmptyTag"): + # XXX: we do not look at the preceding event, so instead we never + # omit the colgroup element's end tag when it is immediately + # followed by another colgroup element. See is_optional_end. + return next["name"] == "col" + else: + return False + elif tagname == 'tbody': + # A tbody element's start tag may be omitted if the first thing + # inside the tbody element is a tr element, and if the element is + # not immediately preceded by a tbody, thead, or tfoot element + # whose end tag has been omitted. + if type == "StartTag": + # omit the thead and tfoot elements' end tag when they are + # immediately followed by a tbody element. See is_optional_end. + if previous and previous['type'] == 'EndTag' and \ + previous['name'] in ('tbody', 'thead', 'tfoot'): + return False + return next["name"] == 'tr' + else: + return False + return False + + def is_optional_end(self, tagname, next): + type = next and next["type"] or None + if tagname in ('html', 'head', 'body'): + # An html element's end tag may be omitted if the html element + # is not immediately followed by a space character or a comment. + return type not in ("Comment", "SpaceCharacters") + elif tagname in ('li', 'optgroup', 'tr'): + # A li element's end tag may be omitted if the li element is + # immediately followed by another li element or if there is + # no more content in the parent element. + # An optgroup element's end tag may be omitted if the optgroup + # element is immediately followed by another optgroup element, + # or if there is no more content in the parent element. + # A tr element's end tag may be omitted if the tr element is + # immediately followed by another tr element, or if there is + # no more content in the parent element. + if type == "StartTag": + return next["name"] == tagname + else: + return type == "EndTag" or type is None + elif tagname in ('dt', 'dd'): + # A dt element's end tag may be omitted if the dt element is + # immediately followed by another dt element or a dd element. + # A dd element's end tag may be omitted if the dd element is + # immediately followed by another dd element or a dt element, + # or if there is no more content in the parent element. + if type == "StartTag": + return next["name"] in ('dt', 'dd') + elif tagname == 'dd': + return type == "EndTag" or type is None + else: + return False + elif tagname == 'p': + # A p element's end tag may be omitted if the p element is + # immediately followed by an address, article, aside, + # blockquote, datagrid, dialog, dir, div, dl, fieldset, + # footer, form, h1, h2, h3, h4, h5, h6, header, hr, menu, + # nav, ol, p, pre, section, table, or ul, element, or if + # there is no more content in the parent element. + if type in ("StartTag", "EmptyTag"): + return next["name"] in ('address', 'article', 'aside', + 'blockquote', 'datagrid', 'dialog', + 'dir', 'div', 'dl', 'fieldset', 'footer', + 'form', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', + 'header', 'hr', 'menu', 'nav', 'ol', + 'p', 'pre', 'section', 'table', 'ul') + else: + return type == "EndTag" or type is None + elif tagname == 'option': + # An option element's end tag may be omitted if the option + # element is immediately followed by another option element, + # or if it is immediately followed by an optgroup + # element, or if there is no more content in the parent + # element. + if type == "StartTag": + return next["name"] in ('option', 'optgroup') + else: + return type == "EndTag" or type is None + elif tagname in ('rt', 'rp'): + # An rt element's end tag may be omitted if the rt element is + # immediately followed by an rt or rp element, or if there is + # no more content in the parent element. + # An rp element's end tag may be omitted if the rp element is + # immediately followed by an rt or rp element, or if there is + # no more content in the parent element. + if type == "StartTag": + return next["name"] in ('rt', 'rp') + else: + return type == "EndTag" or type is None + elif tagname == 'colgroup': + # A colgroup element's end tag may be omitted if the colgroup + # element is not immediately followed by a space character or + # a comment. + if type in ("Comment", "SpaceCharacters"): + return False + elif type == "StartTag": + # XXX: we also look for an immediately following colgroup + # element. See is_optional_start. + return next["name"] != 'colgroup' + else: + return True + elif tagname in ('thead', 'tbody'): + # A thead element's end tag may be omitted if the thead element + # is immediately followed by a tbody or tfoot element. + # A tbody element's end tag may be omitted if the tbody element + # is immediately followed by a tbody or tfoot element, or if + # there is no more content in the parent element. + # A tfoot element's end tag may be omitted if the tfoot element + # is immediately followed by a tbody element, or if there is no + # more content in the parent element. + # XXX: we never omit the end tag when the following element is + # a tbody. See is_optional_start. + if type == "StartTag": + return next["name"] in ['tbody', 'tfoot'] + elif tagname == 'tbody': + return type == "EndTag" or type is None + else: + return False + elif tagname == 'tfoot': + # A tfoot element's end tag may be omitted if the tfoot element + # is immediately followed by a tbody element, or if there is no + # more content in the parent element. + # XXX: we never omit the end tag when the following element is + # a tbody. See is_optional_start. + if type == "StartTag": + return next["name"] == 'tbody' + else: + return type == "EndTag" or type is None + elif tagname in ('td', 'th'): + # A td element's end tag may be omitted if the td element is + # immediately followed by a td or th element, or if there is + # no more content in the parent element. + # A th element's end tag may be omitted if the th element is + # immediately followed by a td or th element, or if there is + # no more content in the parent element. + if type == "StartTag": + return next["name"] in ('td', 'th') + else: + return type == "EndTag" or type is None + return False diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/sanitizer.py b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/sanitizer.py new file mode 100644 index 00000000..aa7431d1 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/sanitizer.py @@ -0,0 +1,916 @@ +"""Deprecated from html5lib 1.1. + +See `here `_ for +information about its deprecation; `Bleach `_ +is recommended as a replacement. Please let us know in the aforementioned issue +if Bleach is unsuitable for your needs. + +""" +from __future__ import absolute_import, division, unicode_literals + +import re +import warnings +from xml.sax.saxutils import escape, unescape + +from pip._vendor.six.moves import urllib_parse as urlparse + +from . import base +from ..constants import namespaces, prefixes + +__all__ = ["Filter"] + + +_deprecation_msg = ( + "html5lib's sanitizer is deprecated; see " + + "https://github.com/html5lib/html5lib-python/issues/443 and please let " + + "us know if Bleach is unsuitable for your needs" +) + +warnings.warn(_deprecation_msg, DeprecationWarning) + +allowed_elements = frozenset(( + (namespaces['html'], 'a'), + (namespaces['html'], 'abbr'), + (namespaces['html'], 'acronym'), + (namespaces['html'], 'address'), + (namespaces['html'], 'area'), + (namespaces['html'], 'article'), + (namespaces['html'], 'aside'), + (namespaces['html'], 'audio'), + (namespaces['html'], 'b'), + (namespaces['html'], 'big'), + (namespaces['html'], 'blockquote'), + (namespaces['html'], 'br'), + (namespaces['html'], 'button'), + (namespaces['html'], 'canvas'), + (namespaces['html'], 'caption'), + (namespaces['html'], 'center'), + (namespaces['html'], 'cite'), + (namespaces['html'], 'code'), + (namespaces['html'], 'col'), + (namespaces['html'], 'colgroup'), + (namespaces['html'], 'command'), + (namespaces['html'], 'datagrid'), + (namespaces['html'], 'datalist'), + (namespaces['html'], 'dd'), + (namespaces['html'], 'del'), + (namespaces['html'], 'details'), + (namespaces['html'], 'dfn'), + (namespaces['html'], 'dialog'), + (namespaces['html'], 'dir'), + (namespaces['html'], 'div'), + (namespaces['html'], 'dl'), + (namespaces['html'], 'dt'), + (namespaces['html'], 'em'), + (namespaces['html'], 'event-source'), + (namespaces['html'], 'fieldset'), + (namespaces['html'], 'figcaption'), + (namespaces['html'], 'figure'), + (namespaces['html'], 'footer'), + (namespaces['html'], 'font'), + (namespaces['html'], 'form'), + (namespaces['html'], 'header'), + (namespaces['html'], 'h1'), + (namespaces['html'], 'h2'), + (namespaces['html'], 'h3'), + (namespaces['html'], 'h4'), + (namespaces['html'], 'h5'), + (namespaces['html'], 'h6'), + (namespaces['html'], 'hr'), + (namespaces['html'], 'i'), + (namespaces['html'], 'img'), + (namespaces['html'], 'input'), + (namespaces['html'], 'ins'), + (namespaces['html'], 'keygen'), + (namespaces['html'], 'kbd'), + (namespaces['html'], 'label'), + (namespaces['html'], 'legend'), + (namespaces['html'], 'li'), + (namespaces['html'], 'm'), + (namespaces['html'], 'map'), + (namespaces['html'], 'menu'), + (namespaces['html'], 'meter'), + (namespaces['html'], 'multicol'), + (namespaces['html'], 'nav'), + (namespaces['html'], 'nextid'), + (namespaces['html'], 'ol'), + (namespaces['html'], 'output'), + (namespaces['html'], 'optgroup'), + (namespaces['html'], 'option'), + (namespaces['html'], 'p'), + (namespaces['html'], 'pre'), + (namespaces['html'], 'progress'), + (namespaces['html'], 'q'), + (namespaces['html'], 's'), + (namespaces['html'], 'samp'), + (namespaces['html'], 'section'), + (namespaces['html'], 'select'), + (namespaces['html'], 'small'), + (namespaces['html'], 'sound'), + (namespaces['html'], 'source'), + (namespaces['html'], 'spacer'), + (namespaces['html'], 'span'), + (namespaces['html'], 'strike'), + (namespaces['html'], 'strong'), + (namespaces['html'], 'sub'), + (namespaces['html'], 'sup'), + (namespaces['html'], 'table'), + (namespaces['html'], 'tbody'), + (namespaces['html'], 'td'), + (namespaces['html'], 'textarea'), + (namespaces['html'], 'time'), + (namespaces['html'], 'tfoot'), + (namespaces['html'], 'th'), + (namespaces['html'], 'thead'), + (namespaces['html'], 'tr'), + (namespaces['html'], 'tt'), + (namespaces['html'], 'u'), + (namespaces['html'], 'ul'), + (namespaces['html'], 'var'), + (namespaces['html'], 'video'), + (namespaces['mathml'], 'maction'), + (namespaces['mathml'], 'math'), + (namespaces['mathml'], 'merror'), + (namespaces['mathml'], 'mfrac'), + (namespaces['mathml'], 'mi'), + (namespaces['mathml'], 'mmultiscripts'), + (namespaces['mathml'], 'mn'), + (namespaces['mathml'], 'mo'), + (namespaces['mathml'], 'mover'), + (namespaces['mathml'], 'mpadded'), + (namespaces['mathml'], 'mphantom'), + (namespaces['mathml'], 'mprescripts'), + (namespaces['mathml'], 'mroot'), + (namespaces['mathml'], 'mrow'), + (namespaces['mathml'], 'mspace'), + (namespaces['mathml'], 'msqrt'), + (namespaces['mathml'], 'mstyle'), + (namespaces['mathml'], 'msub'), + (namespaces['mathml'], 'msubsup'), + (namespaces['mathml'], 'msup'), + (namespaces['mathml'], 'mtable'), + (namespaces['mathml'], 'mtd'), + (namespaces['mathml'], 'mtext'), + (namespaces['mathml'], 'mtr'), + (namespaces['mathml'], 'munder'), + (namespaces['mathml'], 'munderover'), + (namespaces['mathml'], 'none'), + (namespaces['svg'], 'a'), + (namespaces['svg'], 'animate'), + (namespaces['svg'], 'animateColor'), + (namespaces['svg'], 'animateMotion'), + (namespaces['svg'], 'animateTransform'), + (namespaces['svg'], 'clipPath'), + (namespaces['svg'], 'circle'), + (namespaces['svg'], 'defs'), + (namespaces['svg'], 'desc'), + (namespaces['svg'], 'ellipse'), + (namespaces['svg'], 'font-face'), + (namespaces['svg'], 'font-face-name'), + (namespaces['svg'], 'font-face-src'), + (namespaces['svg'], 'g'), + (namespaces['svg'], 'glyph'), + (namespaces['svg'], 'hkern'), + (namespaces['svg'], 'linearGradient'), + (namespaces['svg'], 'line'), + (namespaces['svg'], 'marker'), + (namespaces['svg'], 'metadata'), + (namespaces['svg'], 'missing-glyph'), + (namespaces['svg'], 'mpath'), + (namespaces['svg'], 'path'), + (namespaces['svg'], 'polygon'), + (namespaces['svg'], 'polyline'), + (namespaces['svg'], 'radialGradient'), + (namespaces['svg'], 'rect'), + (namespaces['svg'], 'set'), + (namespaces['svg'], 'stop'), + (namespaces['svg'], 'svg'), + (namespaces['svg'], 'switch'), + (namespaces['svg'], 'text'), + (namespaces['svg'], 'title'), + (namespaces['svg'], 'tspan'), + (namespaces['svg'], 'use'), +)) + +allowed_attributes = frozenset(( + # HTML attributes + (None, 'abbr'), + (None, 'accept'), + (None, 'accept-charset'), + (None, 'accesskey'), + (None, 'action'), + (None, 'align'), + (None, 'alt'), + (None, 'autocomplete'), + (None, 'autofocus'), + (None, 'axis'), + (None, 'background'), + (None, 'balance'), + (None, 'bgcolor'), + (None, 'bgproperties'), + (None, 'border'), + (None, 'bordercolor'), + (None, 'bordercolordark'), + (None, 'bordercolorlight'), + (None, 'bottompadding'), + (None, 'cellpadding'), + (None, 'cellspacing'), + (None, 'ch'), + (None, 'challenge'), + (None, 'char'), + (None, 'charoff'), + (None, 'choff'), + (None, 'charset'), + (None, 'checked'), + (None, 'cite'), + (None, 'class'), + (None, 'clear'), + (None, 'color'), + (None, 'cols'), + (None, 'colspan'), + (None, 'compact'), + (None, 'contenteditable'), + (None, 'controls'), + (None, 'coords'), + (None, 'data'), + (None, 'datafld'), + (None, 'datapagesize'), + (None, 'datasrc'), + (None, 'datetime'), + (None, 'default'), + (None, 'delay'), + (None, 'dir'), + (None, 'disabled'), + (None, 'draggable'), + (None, 'dynsrc'), + (None, 'enctype'), + (None, 'end'), + (None, 'face'), + (None, 'for'), + (None, 'form'), + (None, 'frame'), + (None, 'galleryimg'), + (None, 'gutter'), + (None, 'headers'), + (None, 'height'), + (None, 'hidefocus'), + (None, 'hidden'), + (None, 'high'), + (None, 'href'), + (None, 'hreflang'), + (None, 'hspace'), + (None, 'icon'), + (None, 'id'), + (None, 'inputmode'), + (None, 'ismap'), + (None, 'keytype'), + (None, 'label'), + (None, 'leftspacing'), + (None, 'lang'), + (None, 'list'), + (None, 'longdesc'), + (None, 'loop'), + (None, 'loopcount'), + (None, 'loopend'), + (None, 'loopstart'), + (None, 'low'), + (None, 'lowsrc'), + (None, 'max'), + (None, 'maxlength'), + (None, 'media'), + (None, 'method'), + (None, 'min'), + (None, 'multiple'), + (None, 'name'), + (None, 'nohref'), + (None, 'noshade'), + (None, 'nowrap'), + (None, 'open'), + (None, 'optimum'), + (None, 'pattern'), + (None, 'ping'), + (None, 'point-size'), + (None, 'poster'), + (None, 'pqg'), + (None, 'preload'), + (None, 'prompt'), + (None, 'radiogroup'), + (None, 'readonly'), + (None, 'rel'), + (None, 'repeat-max'), + (None, 'repeat-min'), + (None, 'replace'), + (None, 'required'), + (None, 'rev'), + (None, 'rightspacing'), + (None, 'rows'), + (None, 'rowspan'), + (None, 'rules'), + (None, 'scope'), + (None, 'selected'), + (None, 'shape'), + (None, 'size'), + (None, 'span'), + (None, 'src'), + (None, 'start'), + (None, 'step'), + (None, 'style'), + (None, 'summary'), + (None, 'suppress'), + (None, 'tabindex'), + (None, 'target'), + (None, 'template'), + (None, 'title'), + (None, 'toppadding'), + (None, 'type'), + (None, 'unselectable'), + (None, 'usemap'), + (None, 'urn'), + (None, 'valign'), + (None, 'value'), + (None, 'variable'), + (None, 'volume'), + (None, 'vspace'), + (None, 'vrml'), + (None, 'width'), + (None, 'wrap'), + (namespaces['xml'], 'lang'), + # MathML attributes + (None, 'actiontype'), + (None, 'align'), + (None, 'columnalign'), + (None, 'columnalign'), + (None, 'columnalign'), + (None, 'columnlines'), + (None, 'columnspacing'), + (None, 'columnspan'), + (None, 'depth'), + (None, 'display'), + (None, 'displaystyle'), + (None, 'equalcolumns'), + (None, 'equalrows'), + (None, 'fence'), + (None, 'fontstyle'), + (None, 'fontweight'), + (None, 'frame'), + (None, 'height'), + (None, 'linethickness'), + (None, 'lspace'), + (None, 'mathbackground'), + (None, 'mathcolor'), + (None, 'mathvariant'), + (None, 'mathvariant'), + (None, 'maxsize'), + (None, 'minsize'), + (None, 'other'), + (None, 'rowalign'), + (None, 'rowalign'), + (None, 'rowalign'), + (None, 'rowlines'), + (None, 'rowspacing'), + (None, 'rowspan'), + (None, 'rspace'), + (None, 'scriptlevel'), + (None, 'selection'), + (None, 'separator'), + (None, 'stretchy'), + (None, 'width'), + (None, 'width'), + (namespaces['xlink'], 'href'), + (namespaces['xlink'], 'show'), + (namespaces['xlink'], 'type'), + # SVG attributes + (None, 'accent-height'), + (None, 'accumulate'), + (None, 'additive'), + (None, 'alphabetic'), + (None, 'arabic-form'), + (None, 'ascent'), + (None, 'attributeName'), + (None, 'attributeType'), + (None, 'baseProfile'), + (None, 'bbox'), + (None, 'begin'), + (None, 'by'), + (None, 'calcMode'), + (None, 'cap-height'), + (None, 'class'), + (None, 'clip-path'), + (None, 'color'), + (None, 'color-rendering'), + (None, 'content'), + (None, 'cx'), + (None, 'cy'), + (None, 'd'), + (None, 'dx'), + (None, 'dy'), + (None, 'descent'), + (None, 'display'), + (None, 'dur'), + (None, 'end'), + (None, 'fill'), + (None, 'fill-opacity'), + (None, 'fill-rule'), + (None, 'font-family'), + (None, 'font-size'), + (None, 'font-stretch'), + (None, 'font-style'), + (None, 'font-variant'), + (None, 'font-weight'), + (None, 'from'), + (None, 'fx'), + (None, 'fy'), + (None, 'g1'), + (None, 'g2'), + (None, 'glyph-name'), + (None, 'gradientUnits'), + (None, 'hanging'), + (None, 'height'), + (None, 'horiz-adv-x'), + (None, 'horiz-origin-x'), + (None, 'id'), + (None, 'ideographic'), + (None, 'k'), + (None, 'keyPoints'), + (None, 'keySplines'), + (None, 'keyTimes'), + (None, 'lang'), + (None, 'marker-end'), + (None, 'marker-mid'), + (None, 'marker-start'), + (None, 'markerHeight'), + (None, 'markerUnits'), + (None, 'markerWidth'), + (None, 'mathematical'), + (None, 'max'), + (None, 'min'), + (None, 'name'), + (None, 'offset'), + (None, 'opacity'), + (None, 'orient'), + (None, 'origin'), + (None, 'overline-position'), + (None, 'overline-thickness'), + (None, 'panose-1'), + (None, 'path'), + (None, 'pathLength'), + (None, 'points'), + (None, 'preserveAspectRatio'), + (None, 'r'), + (None, 'refX'), + (None, 'refY'), + (None, 'repeatCount'), + (None, 'repeatDur'), + (None, 'requiredExtensions'), + (None, 'requiredFeatures'), + (None, 'restart'), + (None, 'rotate'), + (None, 'rx'), + (None, 'ry'), + (None, 'slope'), + (None, 'stemh'), + (None, 'stemv'), + (None, 'stop-color'), + (None, 'stop-opacity'), + (None, 'strikethrough-position'), + (None, 'strikethrough-thickness'), + (None, 'stroke'), + (None, 'stroke-dasharray'), + (None, 'stroke-dashoffset'), + (None, 'stroke-linecap'), + (None, 'stroke-linejoin'), + (None, 'stroke-miterlimit'), + (None, 'stroke-opacity'), + (None, 'stroke-width'), + (None, 'systemLanguage'), + (None, 'target'), + (None, 'text-anchor'), + (None, 'to'), + (None, 'transform'), + (None, 'type'), + (None, 'u1'), + (None, 'u2'), + (None, 'underline-position'), + (None, 'underline-thickness'), + (None, 'unicode'), + (None, 'unicode-range'), + (None, 'units-per-em'), + (None, 'values'), + (None, 'version'), + (None, 'viewBox'), + (None, 'visibility'), + (None, 'width'), + (None, 'widths'), + (None, 'x'), + (None, 'x-height'), + (None, 'x1'), + (None, 'x2'), + (namespaces['xlink'], 'actuate'), + (namespaces['xlink'], 'arcrole'), + (namespaces['xlink'], 'href'), + (namespaces['xlink'], 'role'), + (namespaces['xlink'], 'show'), + (namespaces['xlink'], 'title'), + (namespaces['xlink'], 'type'), + (namespaces['xml'], 'base'), + (namespaces['xml'], 'lang'), + (namespaces['xml'], 'space'), + (None, 'y'), + (None, 'y1'), + (None, 'y2'), + (None, 'zoomAndPan'), +)) + +attr_val_is_uri = frozenset(( + (None, 'href'), + (None, 'src'), + (None, 'cite'), + (None, 'action'), + (None, 'longdesc'), + (None, 'poster'), + (None, 'background'), + (None, 'datasrc'), + (None, 'dynsrc'), + (None, 'lowsrc'), + (None, 'ping'), + (namespaces['xlink'], 'href'), + (namespaces['xml'], 'base'), +)) + +svg_attr_val_allows_ref = frozenset(( + (None, 'clip-path'), + (None, 'color-profile'), + (None, 'cursor'), + (None, 'fill'), + (None, 'filter'), + (None, 'marker'), + (None, 'marker-start'), + (None, 'marker-mid'), + (None, 'marker-end'), + (None, 'mask'), + (None, 'stroke'), +)) + +svg_allow_local_href = frozenset(( + (None, 'altGlyph'), + (None, 'animate'), + (None, 'animateColor'), + (None, 'animateMotion'), + (None, 'animateTransform'), + (None, 'cursor'), + (None, 'feImage'), + (None, 'filter'), + (None, 'linearGradient'), + (None, 'pattern'), + (None, 'radialGradient'), + (None, 'textpath'), + (None, 'tref'), + (None, 'set'), + (None, 'use') +)) + +allowed_css_properties = frozenset(( + 'azimuth', + 'background-color', + 'border-bottom-color', + 'border-collapse', + 'border-color', + 'border-left-color', + 'border-right-color', + 'border-top-color', + 'clear', + 'color', + 'cursor', + 'direction', + 'display', + 'elevation', + 'float', + 'font', + 'font-family', + 'font-size', + 'font-style', + 'font-variant', + 'font-weight', + 'height', + 'letter-spacing', + 'line-height', + 'overflow', + 'pause', + 'pause-after', + 'pause-before', + 'pitch', + 'pitch-range', + 'richness', + 'speak', + 'speak-header', + 'speak-numeral', + 'speak-punctuation', + 'speech-rate', + 'stress', + 'text-align', + 'text-decoration', + 'text-indent', + 'unicode-bidi', + 'vertical-align', + 'voice-family', + 'volume', + 'white-space', + 'width', +)) + +allowed_css_keywords = frozenset(( + 'auto', + 'aqua', + 'black', + 'block', + 'blue', + 'bold', + 'both', + 'bottom', + 'brown', + 'center', + 'collapse', + 'dashed', + 'dotted', + 'fuchsia', + 'gray', + 'green', + '!important', + 'italic', + 'left', + 'lime', + 'maroon', + 'medium', + 'none', + 'navy', + 'normal', + 'nowrap', + 'olive', + 'pointer', + 'purple', + 'red', + 'right', + 'solid', + 'silver', + 'teal', + 'top', + 'transparent', + 'underline', + 'white', + 'yellow', +)) + +allowed_svg_properties = frozenset(( + 'fill', + 'fill-opacity', + 'fill-rule', + 'stroke', + 'stroke-width', + 'stroke-linecap', + 'stroke-linejoin', + 'stroke-opacity', +)) + +allowed_protocols = frozenset(( + 'ed2k', + 'ftp', + 'http', + 'https', + 'irc', + 'mailto', + 'news', + 'gopher', + 'nntp', + 'telnet', + 'webcal', + 'xmpp', + 'callto', + 'feed', + 'urn', + 'aim', + 'rsync', + 'tag', + 'ssh', + 'sftp', + 'rtsp', + 'afs', + 'data', +)) + +allowed_content_types = frozenset(( + 'image/png', + 'image/jpeg', + 'image/gif', + 'image/webp', + 'image/bmp', + 'text/plain', +)) + + +data_content_type = re.compile(r''' + ^ + # Match a content type / + (?P[-a-zA-Z0-9.]+/[-a-zA-Z0-9.]+) + # Match any character set and encoding + (?:(?:;charset=(?:[-a-zA-Z0-9]+)(?:;(?:base64))?) + |(?:;(?:base64))?(?:;charset=(?:[-a-zA-Z0-9]+))?) + # Assume the rest is data + ,.* + $ + ''', + re.VERBOSE) + + +class Filter(base.Filter): + """Sanitizes token stream of XHTML+MathML+SVG and of inline style attributes""" + def __init__(self, + source, + allowed_elements=allowed_elements, + allowed_attributes=allowed_attributes, + allowed_css_properties=allowed_css_properties, + allowed_css_keywords=allowed_css_keywords, + allowed_svg_properties=allowed_svg_properties, + allowed_protocols=allowed_protocols, + allowed_content_types=allowed_content_types, + attr_val_is_uri=attr_val_is_uri, + svg_attr_val_allows_ref=svg_attr_val_allows_ref, + svg_allow_local_href=svg_allow_local_href): + """Creates a Filter + + :arg allowed_elements: set of elements to allow--everything else will + be escaped + + :arg allowed_attributes: set of attributes to allow in + elements--everything else will be stripped + + :arg allowed_css_properties: set of CSS properties to allow--everything + else will be stripped + + :arg allowed_css_keywords: set of CSS keywords to allow--everything + else will be stripped + + :arg allowed_svg_properties: set of SVG properties to allow--everything + else will be removed + + :arg allowed_protocols: set of allowed protocols for URIs + + :arg allowed_content_types: set of allowed content types for ``data`` URIs. + + :arg attr_val_is_uri: set of attributes that have URI values--values + that have a scheme not listed in ``allowed_protocols`` are removed + + :arg svg_attr_val_allows_ref: set of SVG attributes that can have + references + + :arg svg_allow_local_href: set of SVG elements that can have local + hrefs--these are removed + + """ + super(Filter, self).__init__(source) + + warnings.warn(_deprecation_msg, DeprecationWarning) + + self.allowed_elements = allowed_elements + self.allowed_attributes = allowed_attributes + self.allowed_css_properties = allowed_css_properties + self.allowed_css_keywords = allowed_css_keywords + self.allowed_svg_properties = allowed_svg_properties + self.allowed_protocols = allowed_protocols + self.allowed_content_types = allowed_content_types + self.attr_val_is_uri = attr_val_is_uri + self.svg_attr_val_allows_ref = svg_attr_val_allows_ref + self.svg_allow_local_href = svg_allow_local_href + + def __iter__(self): + for token in base.Filter.__iter__(self): + token = self.sanitize_token(token) + if token: + yield token + + # Sanitize the +html+, escaping all elements not in ALLOWED_ELEMENTS, and + # stripping out all attributes not in ALLOWED_ATTRIBUTES. Style attributes + # are parsed, and a restricted set, specified by ALLOWED_CSS_PROPERTIES and + # ALLOWED_CSS_KEYWORDS, are allowed through. attributes in ATTR_VAL_IS_URI + # are scanned, and only URI schemes specified in ALLOWED_PROTOCOLS are + # allowed. + # + # sanitize_html('') + # => <script> do_nasty_stuff() </script> + # sanitize_html('Click here for $100') + # => Click here for $100 + def sanitize_token(self, token): + + # accommodate filters which use token_type differently + token_type = token["type"] + if token_type in ("StartTag", "EndTag", "EmptyTag"): + name = token["name"] + namespace = token["namespace"] + if ((namespace, name) in self.allowed_elements or + (namespace is None and + (namespaces["html"], name) in self.allowed_elements)): + return self.allowed_token(token) + else: + return self.disallowed_token(token) + elif token_type == "Comment": + pass + else: + return token + + def allowed_token(self, token): + if "data" in token: + attrs = token["data"] + attr_names = set(attrs.keys()) + + # Remove forbidden attributes + for to_remove in (attr_names - self.allowed_attributes): + del token["data"][to_remove] + attr_names.remove(to_remove) + + # Remove attributes with disallowed URL values + for attr in (attr_names & self.attr_val_is_uri): + assert attr in attrs + # I don't have a clue where this regexp comes from or why it matches those + # characters, nor why we call unescape. I just know it's always been here. + # Should you be worried by this comment in a sanitizer? Yes. On the other hand, all + # this will do is remove *more* than it otherwise would. + val_unescaped = re.sub("[`\x00-\x20\x7f-\xa0\\s]+", '', + unescape(attrs[attr])).lower() + # remove replacement characters from unescaped characters + val_unescaped = val_unescaped.replace("\ufffd", "") + try: + uri = urlparse.urlparse(val_unescaped) + except ValueError: + uri = None + del attrs[attr] + if uri and uri.scheme: + if uri.scheme not in self.allowed_protocols: + del attrs[attr] + if uri.scheme == 'data': + m = data_content_type.match(uri.path) + if not m: + del attrs[attr] + elif m.group('content_type') not in self.allowed_content_types: + del attrs[attr] + + for attr in self.svg_attr_val_allows_ref: + if attr in attrs: + attrs[attr] = re.sub(r'url\s*\(\s*[^#\s][^)]+?\)', + ' ', + unescape(attrs[attr])) + if (token["name"] in self.svg_allow_local_href and + (namespaces['xlink'], 'href') in attrs and re.search(r'^\s*[^#\s].*', + attrs[(namespaces['xlink'], 'href')])): + del attrs[(namespaces['xlink'], 'href')] + if (None, 'style') in attrs: + attrs[(None, 'style')] = self.sanitize_css(attrs[(None, 'style')]) + token["data"] = attrs + return token + + def disallowed_token(self, token): + token_type = token["type"] + if token_type == "EndTag": + token["data"] = "" % token["name"] + elif token["data"]: + assert token_type in ("StartTag", "EmptyTag") + attrs = [] + for (ns, name), v in token["data"].items(): + attrs.append(' %s="%s"' % (name if ns is None else "%s:%s" % (prefixes[ns], name), escape(v))) + token["data"] = "<%s%s>" % (token["name"], ''.join(attrs)) + else: + token["data"] = "<%s>" % token["name"] + if token.get("selfClosing"): + token["data"] = token["data"][:-1] + "/>" + + token["type"] = "Characters" + + del token["name"] + return token + + def sanitize_css(self, style): + # disallow urls + style = re.compile(r'url\s*\(\s*[^\s)]+?\s*\)\s*').sub(' ', style) + + # gauntlet + if not re.match(r"""^([:,;#%.\sa-zA-Z0-9!]|\w-\w|'[\s\w]+'|"[\s\w]+"|\([\d,\s]+\))*$""", style): + return '' + if not re.match(r"^\s*([-\w]+\s*:[^:;]*(;\s*|$))*$", style): + return '' + + clean = [] + for prop, value in re.findall(r"([-\w]+)\s*:\s*([^:;]*)", style): + if not value: + continue + if prop.lower() in self.allowed_css_properties: + clean.append(prop + ': ' + value + ';') + elif prop.split('-')[0].lower() in ['background', 'border', 'margin', + 'padding']: + for keyword in value.split(): + if keyword not in self.allowed_css_keywords and \ + not re.match(r"^(#[0-9a-fA-F]+|rgb\(\d+%?,\d*%?,?\d*%?\)?|\d{0,2}\.?\d{0,2}(cm|em|ex|in|mm|pc|pt|px|%|,|\))?)$", keyword): # noqa + break + else: + clean.append(prop + ': ' + value + ';') + elif prop.lower() in self.allowed_svg_properties: + clean.append(prop + ': ' + value + ';') + + return ' '.join(clean) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/whitespace.py b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/whitespace.py new file mode 100644 index 00000000..0d12584b --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/whitespace.py @@ -0,0 +1,38 @@ +from __future__ import absolute_import, division, unicode_literals + +import re + +from . import base +from ..constants import rcdataElements, spaceCharacters +spaceCharacters = "".join(spaceCharacters) + +SPACES_REGEX = re.compile("[%s]+" % spaceCharacters) + + +class Filter(base.Filter): + """Collapses whitespace except in pre, textarea, and script elements""" + spacePreserveElements = frozenset(["pre", "textarea"] + list(rcdataElements)) + + def __iter__(self): + preserve = 0 + for token in base.Filter.__iter__(self): + type = token["type"] + if type == "StartTag" \ + and (preserve or token["name"] in self.spacePreserveElements): + preserve += 1 + + elif type == "EndTag" and preserve: + preserve -= 1 + + elif not preserve and type == "SpaceCharacters" and token["data"]: + # Test on token["data"] above to not introduce spaces where there were not + token["data"] = " " + + elif not preserve and type == "Characters": + token["data"] = collapse_spaces(token["data"]) + + yield token + + +def collapse_spaces(text): + return SPACES_REGEX.sub(' ', text) diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/html5parser.py b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/html5parser.py new file mode 100644 index 00000000..d06784f3 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/html5parser.py @@ -0,0 +1,2795 @@ +from __future__ import absolute_import, division, unicode_literals +from pip._vendor.six import with_metaclass, viewkeys + +import types + +from . import _inputstream +from . import _tokenizer + +from . import treebuilders +from .treebuilders.base import Marker + +from . import _utils +from .constants import ( + spaceCharacters, asciiUpper2Lower, + specialElements, headingElements, cdataElements, rcdataElements, + tokenTypes, tagTokenTypes, + namespaces, + htmlIntegrationPointElements, mathmlTextIntegrationPointElements, + adjustForeignAttributes as adjustForeignAttributesMap, + adjustMathMLAttributes, adjustSVGAttributes, + E, + _ReparseException +) + + +def parse(doc, treebuilder="etree", namespaceHTMLElements=True, **kwargs): + """Parse an HTML document as a string or file-like object into a tree + + :arg doc: the document to parse as a string or file-like object + + :arg treebuilder: the treebuilder to use when parsing + + :arg namespaceHTMLElements: whether or not to namespace HTML elements + + :returns: parsed tree + + Example: + + >>> from html5lib.html5parser import parse + >>> parse('

This is a doc

') + + + """ + tb = treebuilders.getTreeBuilder(treebuilder) + p = HTMLParser(tb, namespaceHTMLElements=namespaceHTMLElements) + return p.parse(doc, **kwargs) + + +def parseFragment(doc, container="div", treebuilder="etree", namespaceHTMLElements=True, **kwargs): + """Parse an HTML fragment as a string or file-like object into a tree + + :arg doc: the fragment to parse as a string or file-like object + + :arg container: the container context to parse the fragment in + + :arg treebuilder: the treebuilder to use when parsing + + :arg namespaceHTMLElements: whether or not to namespace HTML elements + + :returns: parsed tree + + Example: + + >>> from html5lib.html5libparser import parseFragment + >>> parseFragment('this is a fragment') + + + """ + tb = treebuilders.getTreeBuilder(treebuilder) + p = HTMLParser(tb, namespaceHTMLElements=namespaceHTMLElements) + return p.parseFragment(doc, container=container, **kwargs) + + +def method_decorator_metaclass(function): + class Decorated(type): + def __new__(meta, classname, bases, classDict): + for attributeName, attribute in classDict.items(): + if isinstance(attribute, types.FunctionType): + attribute = function(attribute) + + classDict[attributeName] = attribute + return type.__new__(meta, classname, bases, classDict) + return Decorated + + +class HTMLParser(object): + """HTML parser + + Generates a tree structure from a stream of (possibly malformed) HTML. + + """ + + def __init__(self, tree=None, strict=False, namespaceHTMLElements=True, debug=False): + """ + :arg tree: a treebuilder class controlling the type of tree that will be + returned. Built in treebuilders can be accessed through + html5lib.treebuilders.getTreeBuilder(treeType) + + :arg strict: raise an exception when a parse error is encountered + + :arg namespaceHTMLElements: whether or not to namespace HTML elements + + :arg debug: whether or not to enable debug mode which logs things + + Example: + + >>> from html5lib.html5parser import HTMLParser + >>> parser = HTMLParser() # generates parser with etree builder + >>> parser = HTMLParser('lxml', strict=True) # generates parser with lxml builder which is strict + + """ + + # Raise an exception on the first error encountered + self.strict = strict + + if tree is None: + tree = treebuilders.getTreeBuilder("etree") + self.tree = tree(namespaceHTMLElements) + self.errors = [] + + self.phases = {name: cls(self, self.tree) for name, cls in + getPhases(debug).items()} + + def _parse(self, stream, innerHTML=False, container="div", scripting=False, **kwargs): + + self.innerHTMLMode = innerHTML + self.container = container + self.scripting = scripting + self.tokenizer = _tokenizer.HTMLTokenizer(stream, parser=self, **kwargs) + self.reset() + + try: + self.mainLoop() + except _ReparseException: + self.reset() + self.mainLoop() + + def reset(self): + self.tree.reset() + self.firstStartTag = False + self.errors = [] + self.log = [] # only used with debug mode + # "quirks" / "limited quirks" / "no quirks" + self.compatMode = "no quirks" + + if self.innerHTMLMode: + self.innerHTML = self.container.lower() + + if self.innerHTML in cdataElements: + self.tokenizer.state = self.tokenizer.rcdataState + elif self.innerHTML in rcdataElements: + self.tokenizer.state = self.tokenizer.rawtextState + elif self.innerHTML == 'plaintext': + self.tokenizer.state = self.tokenizer.plaintextState + else: + # state already is data state + # self.tokenizer.state = self.tokenizer.dataState + pass + self.phase = self.phases["beforeHtml"] + self.phase.insertHtmlElement() + self.resetInsertionMode() + else: + self.innerHTML = False # pylint:disable=redefined-variable-type + self.phase = self.phases["initial"] + + self.lastPhase = None + + self.beforeRCDataPhase = None + + self.framesetOK = True + + @property + def documentEncoding(self): + """Name of the character encoding that was used to decode the input stream, or + :obj:`None` if that is not determined yet + + """ + if not hasattr(self, 'tokenizer'): + return None + return self.tokenizer.stream.charEncoding[0].name + + def isHTMLIntegrationPoint(self, element): + if (element.name == "annotation-xml" and + element.namespace == namespaces["mathml"]): + return ("encoding" in element.attributes and + element.attributes["encoding"].translate( + asciiUpper2Lower) in + ("text/html", "application/xhtml+xml")) + else: + return (element.namespace, element.name) in htmlIntegrationPointElements + + def isMathMLTextIntegrationPoint(self, element): + return (element.namespace, element.name) in mathmlTextIntegrationPointElements + + def mainLoop(self): + CharactersToken = tokenTypes["Characters"] + SpaceCharactersToken = tokenTypes["SpaceCharacters"] + StartTagToken = tokenTypes["StartTag"] + EndTagToken = tokenTypes["EndTag"] + CommentToken = tokenTypes["Comment"] + DoctypeToken = tokenTypes["Doctype"] + ParseErrorToken = tokenTypes["ParseError"] + + for token in self.tokenizer: + prev_token = None + new_token = token + while new_token is not None: + prev_token = new_token + currentNode = self.tree.openElements[-1] if self.tree.openElements else None + currentNodeNamespace = currentNode.namespace if currentNode else None + currentNodeName = currentNode.name if currentNode else None + + type = new_token["type"] + + if type == ParseErrorToken: + self.parseError(new_token["data"], new_token.get("datavars", {})) + new_token = None + else: + if (len(self.tree.openElements) == 0 or + currentNodeNamespace == self.tree.defaultNamespace or + (self.isMathMLTextIntegrationPoint(currentNode) and + ((type == StartTagToken and + token["name"] not in frozenset(["mglyph", "malignmark"])) or + type in (CharactersToken, SpaceCharactersToken))) or + (currentNodeNamespace == namespaces["mathml"] and + currentNodeName == "annotation-xml" and + type == StartTagToken and + token["name"] == "svg") or + (self.isHTMLIntegrationPoint(currentNode) and + type in (StartTagToken, CharactersToken, SpaceCharactersToken))): + phase = self.phase + else: + phase = self.phases["inForeignContent"] + + if type == CharactersToken: + new_token = phase.processCharacters(new_token) + elif type == SpaceCharactersToken: + new_token = phase.processSpaceCharacters(new_token) + elif type == StartTagToken: + new_token = phase.processStartTag(new_token) + elif type == EndTagToken: + new_token = phase.processEndTag(new_token) + elif type == CommentToken: + new_token = phase.processComment(new_token) + elif type == DoctypeToken: + new_token = phase.processDoctype(new_token) + + if (type == StartTagToken and prev_token["selfClosing"] and + not prev_token["selfClosingAcknowledged"]): + self.parseError("non-void-element-with-trailing-solidus", + {"name": prev_token["name"]}) + + # When the loop finishes it's EOF + reprocess = True + phases = [] + while reprocess: + phases.append(self.phase) + reprocess = self.phase.processEOF() + if reprocess: + assert self.phase not in phases + + def parse(self, stream, *args, **kwargs): + """Parse a HTML document into a well-formed tree + + :arg stream: a file-like object or string containing the HTML to be parsed + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element). + + :arg scripting: treat noscript elements as if JavaScript was turned on + + :returns: parsed tree + + Example: + + >>> from html5lib.html5parser import HTMLParser + >>> parser = HTMLParser() + >>> parser.parse('

This is a doc

') + + + """ + self._parse(stream, False, None, *args, **kwargs) + return self.tree.getDocument() + + def parseFragment(self, stream, *args, **kwargs): + """Parse a HTML fragment into a well-formed tree fragment + + :arg container: name of the element we're setting the innerHTML + property if set to None, default to 'div' + + :arg stream: a file-like object or string containing the HTML to be parsed + + The optional encoding parameter must be a string that indicates + the encoding. If specified, that encoding will be used, + regardless of any BOM or later declaration (such as in a meta + element) + + :arg scripting: treat noscript elements as if JavaScript was turned on + + :returns: parsed tree + + Example: + + >>> from html5lib.html5libparser import HTMLParser + >>> parser = HTMLParser() + >>> parser.parseFragment('this is a fragment') + + + """ + self._parse(stream, True, *args, **kwargs) + return self.tree.getFragment() + + def parseError(self, errorcode="XXX-undefined-error", datavars=None): + # XXX The idea is to make errorcode mandatory. + if datavars is None: + datavars = {} + self.errors.append((self.tokenizer.stream.position(), errorcode, datavars)) + if self.strict: + raise ParseError(E[errorcode] % datavars) + + def adjustMathMLAttributes(self, token): + adjust_attributes(token, adjustMathMLAttributes) + + def adjustSVGAttributes(self, token): + adjust_attributes(token, adjustSVGAttributes) + + def adjustForeignAttributes(self, token): + adjust_attributes(token, adjustForeignAttributesMap) + + def reparseTokenNormal(self, token): + # pylint:disable=unused-argument + self.parser.phase() + + def resetInsertionMode(self): + # The name of this method is mostly historical. (It's also used in the + # specification.) + last = False + newModes = { + "select": "inSelect", + "td": "inCell", + "th": "inCell", + "tr": "inRow", + "tbody": "inTableBody", + "thead": "inTableBody", + "tfoot": "inTableBody", + "caption": "inCaption", + "colgroup": "inColumnGroup", + "table": "inTable", + "head": "inBody", + "body": "inBody", + "frameset": "inFrameset", + "html": "beforeHead" + } + for node in self.tree.openElements[::-1]: + nodeName = node.name + new_phase = None + if node == self.tree.openElements[0]: + assert self.innerHTML + last = True + nodeName = self.innerHTML + # Check for conditions that should only happen in the innerHTML + # case + if nodeName in ("select", "colgroup", "head", "html"): + assert self.innerHTML + + if not last and node.namespace != self.tree.defaultNamespace: + continue + + if nodeName in newModes: + new_phase = self.phases[newModes[nodeName]] + break + elif last: + new_phase = self.phases["inBody"] + break + + self.phase = new_phase + + def parseRCDataRawtext(self, token, contentType): + # Generic RCDATA/RAWTEXT Parsing algorithm + assert contentType in ("RAWTEXT", "RCDATA") + + self.tree.insertElement(token) + + if contentType == "RAWTEXT": + self.tokenizer.state = self.tokenizer.rawtextState + else: + self.tokenizer.state = self.tokenizer.rcdataState + + self.originalPhase = self.phase + + self.phase = self.phases["text"] + + +@_utils.memoize +def getPhases(debug): + def log(function): + """Logger that records which phase processes each token""" + type_names = {value: key for key, value in tokenTypes.items()} + + def wrapped(self, *args, **kwargs): + if function.__name__.startswith("process") and len(args) > 0: + token = args[0] + info = {"type": type_names[token['type']]} + if token['type'] in tagTokenTypes: + info["name"] = token['name'] + + self.parser.log.append((self.parser.tokenizer.state.__name__, + self.parser.phase.__class__.__name__, + self.__class__.__name__, + function.__name__, + info)) + return function(self, *args, **kwargs) + else: + return function(self, *args, **kwargs) + return wrapped + + def getMetaclass(use_metaclass, metaclass_func): + if use_metaclass: + return method_decorator_metaclass(metaclass_func) + else: + return type + + # pylint:disable=unused-argument + class Phase(with_metaclass(getMetaclass(debug, log))): + """Base class for helper object that implements each phase of processing + """ + __slots__ = ("parser", "tree", "__startTagCache", "__endTagCache") + + def __init__(self, parser, tree): + self.parser = parser + self.tree = tree + self.__startTagCache = {} + self.__endTagCache = {} + + def processEOF(self): + raise NotImplementedError + + def processComment(self, token): + # For most phases the following is correct. Where it's not it will be + # overridden. + self.tree.insertComment(token, self.tree.openElements[-1]) + + def processDoctype(self, token): + self.parser.parseError("unexpected-doctype") + + def processCharacters(self, token): + self.tree.insertText(token["data"]) + + def processSpaceCharacters(self, token): + self.tree.insertText(token["data"]) + + def processStartTag(self, token): + # Note the caching is done here rather than BoundMethodDispatcher as doing it there + # requires a circular reference to the Phase, and this ends up with a significant + # (CPython 2.7, 3.8) GC cost when parsing many short inputs + name = token["name"] + # In Py2, using `in` is quicker in general than try/except KeyError + # In Py3, `in` is quicker when there are few cache hits (typically short inputs) + if name in self.__startTagCache: + func = self.__startTagCache[name] + else: + func = self.__startTagCache[name] = self.startTagHandler[name] + # bound the cache size in case we get loads of unknown tags + while len(self.__startTagCache) > len(self.startTagHandler) * 1.1: + # this makes the eviction policy random on Py < 3.7 and FIFO >= 3.7 + self.__startTagCache.pop(next(iter(self.__startTagCache))) + return func(token) + + def startTagHtml(self, token): + if not self.parser.firstStartTag and token["name"] == "html": + self.parser.parseError("non-html-root") + # XXX Need a check here to see if the first start tag token emitted is + # this token... If it's not, invoke self.parser.parseError(). + for attr, value in token["data"].items(): + if attr not in self.tree.openElements[0].attributes: + self.tree.openElements[0].attributes[attr] = value + self.parser.firstStartTag = False + + def processEndTag(self, token): + # Note the caching is done here rather than BoundMethodDispatcher as doing it there + # requires a circular reference to the Phase, and this ends up with a significant + # (CPython 2.7, 3.8) GC cost when parsing many short inputs + name = token["name"] + # In Py2, using `in` is quicker in general than try/except KeyError + # In Py3, `in` is quicker when there are few cache hits (typically short inputs) + if name in self.__endTagCache: + func = self.__endTagCache[name] + else: + func = self.__endTagCache[name] = self.endTagHandler[name] + # bound the cache size in case we get loads of unknown tags + while len(self.__endTagCache) > len(self.endTagHandler) * 1.1: + # this makes the eviction policy random on Py < 3.7 and FIFO >= 3.7 + self.__endTagCache.pop(next(iter(self.__endTagCache))) + return func(token) + + class InitialPhase(Phase): + __slots__ = tuple() + + def processSpaceCharacters(self, token): + pass + + def processComment(self, token): + self.tree.insertComment(token, self.tree.document) + + def processDoctype(self, token): + name = token["name"] + publicId = token["publicId"] + systemId = token["systemId"] + correct = token["correct"] + + if (name != "html" or publicId is not None or + systemId is not None and systemId != "about:legacy-compat"): + self.parser.parseError("unknown-doctype") + + if publicId is None: + publicId = "" + + self.tree.insertDoctype(token) + + if publicId != "": + publicId = publicId.translate(asciiUpper2Lower) + + if (not correct or token["name"] != "html" or + publicId.startswith( + ("+//silmaril//dtd html pro v0r11 19970101//", + "-//advasoft ltd//dtd html 3.0 aswedit + extensions//", + "-//as//dtd html 3.0 aswedit + extensions//", + "-//ietf//dtd html 2.0 level 1//", + "-//ietf//dtd html 2.0 level 2//", + "-//ietf//dtd html 2.0 strict level 1//", + "-//ietf//dtd html 2.0 strict level 2//", + "-//ietf//dtd html 2.0 strict//", + "-//ietf//dtd html 2.0//", + "-//ietf//dtd html 2.1e//", + "-//ietf//dtd html 3.0//", + "-//ietf//dtd html 3.2 final//", + "-//ietf//dtd html 3.2//", + "-//ietf//dtd html 3//", + "-//ietf//dtd html level 0//", + "-//ietf//dtd html level 1//", + "-//ietf//dtd html level 2//", + "-//ietf//dtd html level 3//", + "-//ietf//dtd html strict level 0//", + "-//ietf//dtd html strict level 1//", + "-//ietf//dtd html strict level 2//", + "-//ietf//dtd html strict level 3//", + "-//ietf//dtd html strict//", + "-//ietf//dtd html//", + "-//metrius//dtd metrius presentational//", + "-//microsoft//dtd internet explorer 2.0 html strict//", + "-//microsoft//dtd internet explorer 2.0 html//", + "-//microsoft//dtd internet explorer 2.0 tables//", + "-//microsoft//dtd internet explorer 3.0 html strict//", + "-//microsoft//dtd internet explorer 3.0 html//", + "-//microsoft//dtd internet explorer 3.0 tables//", + "-//netscape comm. corp.//dtd html//", + "-//netscape comm. corp.//dtd strict html//", + "-//o'reilly and associates//dtd html 2.0//", + "-//o'reilly and associates//dtd html extended 1.0//", + "-//o'reilly and associates//dtd html extended relaxed 1.0//", + "-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//", + "-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//", + "-//spyglass//dtd html 2.0 extended//", + "-//sq//dtd html 2.0 hotmetal + extensions//", + "-//sun microsystems corp.//dtd hotjava html//", + "-//sun microsystems corp.//dtd hotjava strict html//", + "-//w3c//dtd html 3 1995-03-24//", + "-//w3c//dtd html 3.2 draft//", + "-//w3c//dtd html 3.2 final//", + "-//w3c//dtd html 3.2//", + "-//w3c//dtd html 3.2s draft//", + "-//w3c//dtd html 4.0 frameset//", + "-//w3c//dtd html 4.0 transitional//", + "-//w3c//dtd html experimental 19960712//", + "-//w3c//dtd html experimental 970421//", + "-//w3c//dtd w3 html//", + "-//w3o//dtd w3 html 3.0//", + "-//webtechs//dtd mozilla html 2.0//", + "-//webtechs//dtd mozilla html//")) or + publicId in ("-//w3o//dtd w3 html strict 3.0//en//", + "-/w3c/dtd html 4.0 transitional/en", + "html") or + publicId.startswith( + ("-//w3c//dtd html 4.01 frameset//", + "-//w3c//dtd html 4.01 transitional//")) and + systemId is None or + systemId and systemId.lower() == "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd"): + self.parser.compatMode = "quirks" + elif (publicId.startswith( + ("-//w3c//dtd xhtml 1.0 frameset//", + "-//w3c//dtd xhtml 1.0 transitional//")) or + publicId.startswith( + ("-//w3c//dtd html 4.01 frameset//", + "-//w3c//dtd html 4.01 transitional//")) and + systemId is not None): + self.parser.compatMode = "limited quirks" + + self.parser.phase = self.parser.phases["beforeHtml"] + + def anythingElse(self): + self.parser.compatMode = "quirks" + self.parser.phase = self.parser.phases["beforeHtml"] + + def processCharacters(self, token): + self.parser.parseError("expected-doctype-but-got-chars") + self.anythingElse() + return token + + def processStartTag(self, token): + self.parser.parseError("expected-doctype-but-got-start-tag", + {"name": token["name"]}) + self.anythingElse() + return token + + def processEndTag(self, token): + self.parser.parseError("expected-doctype-but-got-end-tag", + {"name": token["name"]}) + self.anythingElse() + return token + + def processEOF(self): + self.parser.parseError("expected-doctype-but-got-eof") + self.anythingElse() + return True + + class BeforeHtmlPhase(Phase): + __slots__ = tuple() + + # helper methods + def insertHtmlElement(self): + self.tree.insertRoot(impliedTagToken("html", "StartTag")) + self.parser.phase = self.parser.phases["beforeHead"] + + # other + def processEOF(self): + self.insertHtmlElement() + return True + + def processComment(self, token): + self.tree.insertComment(token, self.tree.document) + + def processSpaceCharacters(self, token): + pass + + def processCharacters(self, token): + self.insertHtmlElement() + return token + + def processStartTag(self, token): + if token["name"] == "html": + self.parser.firstStartTag = True + self.insertHtmlElement() + return token + + def processEndTag(self, token): + if token["name"] not in ("head", "body", "html", "br"): + self.parser.parseError("unexpected-end-tag-before-html", + {"name": token["name"]}) + else: + self.insertHtmlElement() + return token + + class BeforeHeadPhase(Phase): + __slots__ = tuple() + + def processEOF(self): + self.startTagHead(impliedTagToken("head", "StartTag")) + return True + + def processSpaceCharacters(self, token): + pass + + def processCharacters(self, token): + self.startTagHead(impliedTagToken("head", "StartTag")) + return token + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagHead(self, token): + self.tree.insertElement(token) + self.tree.headPointer = self.tree.openElements[-1] + self.parser.phase = self.parser.phases["inHead"] + + def startTagOther(self, token): + self.startTagHead(impliedTagToken("head", "StartTag")) + return token + + def endTagImplyHead(self, token): + self.startTagHead(impliedTagToken("head", "StartTag")) + return token + + def endTagOther(self, token): + self.parser.parseError("end-tag-after-implied-root", + {"name": token["name"]}) + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + ("head", startTagHead) + ]) + startTagHandler.default = startTagOther + + endTagHandler = _utils.MethodDispatcher([ + (("head", "body", "html", "br"), endTagImplyHead) + ]) + endTagHandler.default = endTagOther + + class InHeadPhase(Phase): + __slots__ = tuple() + + # the real thing + def processEOF(self): + self.anythingElse() + return True + + def processCharacters(self, token): + self.anythingElse() + return token + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagHead(self, token): + self.parser.parseError("two-heads-are-not-better-than-one") + + def startTagBaseLinkCommand(self, token): + self.tree.insertElement(token) + self.tree.openElements.pop() + token["selfClosingAcknowledged"] = True + + def startTagMeta(self, token): + self.tree.insertElement(token) + self.tree.openElements.pop() + token["selfClosingAcknowledged"] = True + + attributes = token["data"] + if self.parser.tokenizer.stream.charEncoding[1] == "tentative": + if "charset" in attributes: + self.parser.tokenizer.stream.changeEncoding(attributes["charset"]) + elif ("content" in attributes and + "http-equiv" in attributes and + attributes["http-equiv"].lower() == "content-type"): + # Encoding it as UTF-8 here is a hack, as really we should pass + # the abstract Unicode string, and just use the + # ContentAttrParser on that, but using UTF-8 allows all chars + # to be encoded and as a ASCII-superset works. + data = _inputstream.EncodingBytes(attributes["content"].encode("utf-8")) + parser = _inputstream.ContentAttrParser(data) + codec = parser.parse() + self.parser.tokenizer.stream.changeEncoding(codec) + + def startTagTitle(self, token): + self.parser.parseRCDataRawtext(token, "RCDATA") + + def startTagNoFramesStyle(self, token): + # Need to decide whether to implement the scripting-disabled case + self.parser.parseRCDataRawtext(token, "RAWTEXT") + + def startTagNoscript(self, token): + if self.parser.scripting: + self.parser.parseRCDataRawtext(token, "RAWTEXT") + else: + self.tree.insertElement(token) + self.parser.phase = self.parser.phases["inHeadNoscript"] + + def startTagScript(self, token): + self.tree.insertElement(token) + self.parser.tokenizer.state = self.parser.tokenizer.scriptDataState + self.parser.originalPhase = self.parser.phase + self.parser.phase = self.parser.phases["text"] + + def startTagOther(self, token): + self.anythingElse() + return token + + def endTagHead(self, token): + node = self.parser.tree.openElements.pop() + assert node.name == "head", "Expected head got %s" % node.name + self.parser.phase = self.parser.phases["afterHead"] + + def endTagHtmlBodyBr(self, token): + self.anythingElse() + return token + + def endTagOther(self, token): + self.parser.parseError("unexpected-end-tag", {"name": token["name"]}) + + def anythingElse(self): + self.endTagHead(impliedTagToken("head")) + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + ("title", startTagTitle), + (("noframes", "style"), startTagNoFramesStyle), + ("noscript", startTagNoscript), + ("script", startTagScript), + (("base", "basefont", "bgsound", "command", "link"), + startTagBaseLinkCommand), + ("meta", startTagMeta), + ("head", startTagHead) + ]) + startTagHandler.default = startTagOther + + endTagHandler = _utils.MethodDispatcher([ + ("head", endTagHead), + (("br", "html", "body"), endTagHtmlBodyBr) + ]) + endTagHandler.default = endTagOther + + class InHeadNoscriptPhase(Phase): + __slots__ = tuple() + + def processEOF(self): + self.parser.parseError("eof-in-head-noscript") + self.anythingElse() + return True + + def processComment(self, token): + return self.parser.phases["inHead"].processComment(token) + + def processCharacters(self, token): + self.parser.parseError("char-in-head-noscript") + self.anythingElse() + return token + + def processSpaceCharacters(self, token): + return self.parser.phases["inHead"].processSpaceCharacters(token) + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagBaseLinkCommand(self, token): + return self.parser.phases["inHead"].processStartTag(token) + + def startTagHeadNoscript(self, token): + self.parser.parseError("unexpected-start-tag", {"name": token["name"]}) + + def startTagOther(self, token): + self.parser.parseError("unexpected-inhead-noscript-tag", {"name": token["name"]}) + self.anythingElse() + return token + + def endTagNoscript(self, token): + node = self.parser.tree.openElements.pop() + assert node.name == "noscript", "Expected noscript got %s" % node.name + self.parser.phase = self.parser.phases["inHead"] + + def endTagBr(self, token): + self.parser.parseError("unexpected-inhead-noscript-tag", {"name": token["name"]}) + self.anythingElse() + return token + + def endTagOther(self, token): + self.parser.parseError("unexpected-end-tag", {"name": token["name"]}) + + def anythingElse(self): + # Caller must raise parse error first! + self.endTagNoscript(impliedTagToken("noscript")) + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + (("basefont", "bgsound", "link", "meta", "noframes", "style"), startTagBaseLinkCommand), + (("head", "noscript"), startTagHeadNoscript), + ]) + startTagHandler.default = startTagOther + + endTagHandler = _utils.MethodDispatcher([ + ("noscript", endTagNoscript), + ("br", endTagBr), + ]) + endTagHandler.default = endTagOther + + class AfterHeadPhase(Phase): + __slots__ = tuple() + + def processEOF(self): + self.anythingElse() + return True + + def processCharacters(self, token): + self.anythingElse() + return token + + def startTagHtml(self, token): + return self.parser.phases["inBody"].processStartTag(token) + + def startTagBody(self, token): + self.parser.framesetOK = False + self.tree.insertElement(token) + self.parser.phase = self.parser.phases["inBody"] + + def startTagFrameset(self, token): + self.tree.insertElement(token) + self.parser.phase = self.parser.phases["inFrameset"] + + def startTagFromHead(self, token): + self.parser.parseError("unexpected-start-tag-out-of-my-head", + {"name": token["name"]}) + self.tree.openElements.append(self.tree.headPointer) + self.parser.phases["inHead"].processStartTag(token) + for node in self.tree.openElements[::-1]: + if node.name == "head": + self.tree.openElements.remove(node) + break + + def startTagHead(self, token): + self.parser.parseError("unexpected-start-tag", {"name": token["name"]}) + + def startTagOther(self, token): + self.anythingElse() + return token + + def endTagHtmlBodyBr(self, token): + self.anythingElse() + return token + + def endTagOther(self, token): + self.parser.parseError("unexpected-end-tag", {"name": token["name"]}) + + def anythingElse(self): + self.tree.insertElement(impliedTagToken("body", "StartTag")) + self.parser.phase = self.parser.phases["inBody"] + self.parser.framesetOK = True + + startTagHandler = _utils.MethodDispatcher([ + ("html", startTagHtml), + ("body", startTagBody), + ("frameset", startTagFrameset), + (("base", "basefont", "bgsound", "link", "meta", "noframes", "script", + "style", "title"), + startTagFromHead), + ("head", startTagHead) + ]) + startTagHandler.default = startTagOther + endTagHandler = _utils.MethodDispatcher([(("body", "html", "br"), + endTagHtmlBodyBr)]) + endTagHandler.default = endTagOther + + class InBodyPhase(Phase): + # http://www.whatwg.org/specs/web-apps/current-work/#parsing-main-inbody + # the really-really-really-very crazy mode + __slots__ = ("processSpaceCharacters",) + + def __init__(self, *args, **kwargs): + super(InBodyPhase, self).__init__(*args, **kwargs) + # Set this to the default handler + self.processSpaceCharacters = self.processSpaceCharactersNonPre + + def isMatchingFormattingElement(self, node1, node2): + return (node1.name == node2.name and + node1.namespace == node2.namespace and + node1.attributes == node2.attributes) + + # helper + def addFormattingElement(self, token): + self.tree.insertElement(token) + element = self.tree.openElements[-1] + + matchingElements = [] + for node in self.tree.activeFormattingElements[::-1]: + if node is Marker: + break + elif self.isMatchingFormattingElement(node, element): + matchingElements.append(node) + + assert len(matchingElements) <= 3 + if len(matchingElements) == 3: + self.tree.activeFormattingElements.remove(matchingElements[-1]) + self.tree.activeFormattingElements.append(element) + + # the real deal + def processEOF(self): + allowed_elements = frozenset(("dd", "dt", "li", "p", "tbody", "td", + "tfoot", "th", "thead", "tr", "body", + "html")) + for node in self.tree.openElements[::-1]: + if node.name not in allowed_elements: + self.parser.parseError("expected-closing-tag-but-got-eof") + break + # Stop parsing + + def processSpaceCharactersDropNewline(self, token): + # Sometimes (start of
, , and 

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[^-]+) +-(?P\d+[^-]*) +(-(?P\d+[^-]*))? +-(?P\w+\d+(\.\w+\d+)*) +-(?P\w+) +-(?P\w+(\.\w+)*) +\.whl$ +''', re.IGNORECASE | re.VERBOSE) + +NAME_VERSION_RE = re.compile(r''' +(?P[^-]+) +-(?P\d+[^-]*) +(-(?P\d+[^-]*))?$ +''', re.IGNORECASE | re.VERBOSE) + +SHEBANG_RE = re.compile(br'\s*#![^\r\n]*') +SHEBANG_DETAIL_RE = re.compile(br'^(\s*#!("[^"]+"|\S+))\s+(.*)$') +SHEBANG_PYTHON = b'#!python' +SHEBANG_PYTHONW = b'#!pythonw' + +if os.sep == '/': + to_posix = lambda o: o +else: + to_posix = lambda o: o.replace(os.sep, '/') + + +class Mounter(object): + def __init__(self): + self.impure_wheels = {} + self.libs = {} + + def add(self, pathname, extensions): + self.impure_wheels[pathname] = extensions + self.libs.update(extensions) + + def remove(self, pathname): + extensions = self.impure_wheels.pop(pathname) + for k, v in extensions: + if k in self.libs: + del self.libs[k] + + def find_module(self, fullname, path=None): + if fullname in self.libs: + result = self + else: + result = None + return result + + def load_module(self, fullname): + if fullname in sys.modules: + result = sys.modules[fullname] + else: + if fullname not in self.libs: + raise ImportError('unable to find extension for %s' % fullname) + result = imp.load_dynamic(fullname, self.libs[fullname]) + result.__loader__ = self + parts = fullname.rsplit('.', 1) + if len(parts) > 1: + result.__package__ = parts[0] + return result + +_hook = Mounter() + + +class Wheel(object): + """ + Class to build and install from Wheel files (PEP 427). + """ + + wheel_version = (1, 1) + hash_kind = 'sha256' + + def __init__(self, filename=None, sign=False, verify=False): + """ + Initialise an instance using a (valid) filename. + """ + self.sign = sign + self.should_verify = verify + self.buildver = '' + self.pyver = [PYVER] + self.abi = ['none'] + self.arch = ['any'] + self.dirname = os.getcwd() + if filename is None: + self.name = 'dummy' + self.version = '0.1' + self._filename = self.filename + else: + m = NAME_VERSION_RE.match(filename) + if m: + info = m.groupdict('') + self.name = info['nm'] + # Reinstate the local version separator + self.version = info['vn'].replace('_', '-') + self.buildver = info['bn'] + self._filename = self.filename + else: + dirname, filename = os.path.split(filename) + m = FILENAME_RE.match(filename) + if not m: + raise DistlibException('Invalid name or ' + 'filename: %r' % filename) + if dirname: + self.dirname = os.path.abspath(dirname) + self._filename = filename + info = m.groupdict('') + self.name = info['nm'] + self.version = info['vn'] + self.buildver = info['bn'] + self.pyver = info['py'].split('.') + self.abi = info['bi'].split('.') + self.arch = info['ar'].split('.') + + @property + def filename(self): + """ + Build and return a filename from the various components. + """ + if self.buildver: + buildver = '-' + self.buildver + else: + buildver = '' + pyver = '.'.join(self.pyver) + abi = '.'.join(self.abi) + arch = '.'.join(self.arch) + # replace - with _ as a local version separator + version = self.version.replace('-', '_') + return '%s-%s%s-%s-%s-%s.whl' % (self.name, version, buildver, + pyver, abi, arch) + + @property + def exists(self): + path = os.path.join(self.dirname, self.filename) + return os.path.isfile(path) + + @property + def tags(self): + for pyver in self.pyver: + for abi in self.abi: + for arch in self.arch: + yield pyver, abi, arch + + @cached_property + def metadata(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + wrapper = codecs.getreader('utf-8') + with ZipFile(pathname, 'r') as zf: + wheel_metadata = self.get_wheel_metadata(zf) + wv = wheel_metadata['Wheel-Version'].split('.', 1) + file_version = tuple([int(i) for i in wv]) + # if file_version < (1, 1): + # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME, + # LEGACY_METADATA_FILENAME] + # else: + # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME] + fns = [WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME] + result = None + for fn in fns: + try: + metadata_filename = posixpath.join(info_dir, fn) + with zf.open(metadata_filename) as bf: + wf = wrapper(bf) + result = Metadata(fileobj=wf) + if result: + break + except KeyError: + pass + if not result: + raise ValueError('Invalid wheel, because metadata is ' + 'missing: looked in %s' % ', '.join(fns)) + return result + + def get_wheel_metadata(self, zf): + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + metadata_filename = posixpath.join(info_dir, 'WHEEL') + with zf.open(metadata_filename) as bf: + wf = codecs.getreader('utf-8')(bf) + message = message_from_file(wf) + return dict(message) + + @cached_property + def info(self): + pathname = os.path.join(self.dirname, self.filename) + with ZipFile(pathname, 'r') as zf: + result = self.get_wheel_metadata(zf) + return result + + def process_shebang(self, data): + m = SHEBANG_RE.match(data) + if m: + end = m.end() + shebang, data_after_shebang = data[:end], data[end:] + # Preserve any arguments after the interpreter + if b'pythonw' in shebang.lower(): + shebang_python = SHEBANG_PYTHONW + else: + shebang_python = SHEBANG_PYTHON + m = SHEBANG_DETAIL_RE.match(shebang) + if m: + args = b' ' + m.groups()[-1] + else: + args = b'' + shebang = shebang_python + args + data = shebang + data_after_shebang + else: + cr = data.find(b'\r') + lf = data.find(b'\n') + if cr < 0 or cr > lf: + term = b'\n' + else: + if data[cr:cr + 2] == b'\r\n': + term = b'\r\n' + else: + term = b'\r' + data = SHEBANG_PYTHON + term + data + return data + + def get_hash(self, data, hash_kind=None): + if hash_kind is None: + hash_kind = self.hash_kind + try: + hasher = getattr(hashlib, hash_kind) + except AttributeError: + raise DistlibException('Unsupported hash algorithm: %r' % hash_kind) + result = hasher(data).digest() + result = base64.urlsafe_b64encode(result).rstrip(b'=').decode('ascii') + return hash_kind, result + + def write_record(self, records, record_path, base): + records = list(records) # make a copy, as mutated + p = to_posix(os.path.relpath(record_path, base)) + records.append((p, '', '')) + with CSVWriter(record_path) as writer: + for row in records: + writer.writerow(row) + + def write_records(self, info, libdir, archive_paths): + records = [] + distinfo, info_dir = info + hasher = getattr(hashlib, self.hash_kind) + for ap, p in archive_paths: + with open(p, 'rb') as f: + data = f.read() + digest = '%s=%s' % self.get_hash(data) + size = os.path.getsize(p) + records.append((ap, digest, size)) + + p = os.path.join(distinfo, 'RECORD') + self.write_record(records, p, libdir) + ap = to_posix(os.path.join(info_dir, 'RECORD')) + archive_paths.append((ap, p)) + + def build_zip(self, pathname, archive_paths): + with ZipFile(pathname, 'w', zipfile.ZIP_DEFLATED) as zf: + for ap, p in archive_paths: + logger.debug('Wrote %s to %s in wheel', p, ap) + zf.write(p, ap) + + def build(self, paths, tags=None, wheel_version=None): + """ + Build a wheel from files in specified paths, and use any specified tags + when determining the name of the wheel. + """ + if tags is None: + tags = {} + + libkey = list(filter(lambda o: o in paths, ('purelib', 'platlib')))[0] + if libkey == 'platlib': + is_pure = 'false' + default_pyver = [IMPVER] + default_abi = [ABI] + default_arch = [ARCH] + else: + is_pure = 'true' + default_pyver = [PYVER] + default_abi = ['none'] + default_arch = ['any'] + + self.pyver = tags.get('pyver', default_pyver) + self.abi = tags.get('abi', default_abi) + self.arch = tags.get('arch', default_arch) + + libdir = paths[libkey] + + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + archive_paths = [] + + # First, stuff which is not in site-packages + for key in ('data', 'headers', 'scripts'): + if key not in paths: + continue + path = paths[key] + if os.path.isdir(path): + for root, dirs, files in os.walk(path): + for fn in files: + p = fsdecode(os.path.join(root, fn)) + rp = os.path.relpath(p, path) + ap = to_posix(os.path.join(data_dir, key, rp)) + archive_paths.append((ap, p)) + if key == 'scripts' and not p.endswith('.exe'): + with open(p, 'rb') as f: + data = f.read() + data = self.process_shebang(data) + with open(p, 'wb') as f: + f.write(data) + + # Now, stuff which is in site-packages, other than the + # distinfo stuff. + path = libdir + distinfo = None + for root, dirs, files in os.walk(path): + if root == path: + # At the top level only, save distinfo for later + # and skip it for now + for i, dn in enumerate(dirs): + dn = fsdecode(dn) + if dn.endswith('.dist-info'): + distinfo = os.path.join(root, dn) + del dirs[i] + break + assert distinfo, '.dist-info directory expected, not found' + + for fn in files: + # comment out next suite to leave .pyc files in + if fsdecode(fn).endswith(('.pyc', '.pyo')): + continue + p = os.path.join(root, fn) + rp = to_posix(os.path.relpath(p, path)) + archive_paths.append((rp, p)) + + # Now distinfo. Assumed to be flat, i.e. os.listdir is enough. + files = os.listdir(distinfo) + for fn in files: + if fn not in ('RECORD', 'INSTALLER', 'SHARED', 'WHEEL'): + p = fsdecode(os.path.join(distinfo, fn)) + ap = to_posix(os.path.join(info_dir, fn)) + archive_paths.append((ap, p)) + + wheel_metadata = [ + 'Wheel-Version: %d.%d' % (wheel_version or self.wheel_version), + 'Generator: distlib %s' % __version__, + 'Root-Is-Purelib: %s' % is_pure, + ] + for pyver, abi, arch in self.tags: + wheel_metadata.append('Tag: %s-%s-%s' % (pyver, abi, arch)) + p = os.path.join(distinfo, 'WHEEL') + with open(p, 'w') as f: + f.write('\n'.join(wheel_metadata)) + ap = to_posix(os.path.join(info_dir, 'WHEEL')) + archive_paths.append((ap, p)) + + # sort the entries by archive path. Not needed by any spec, but it + # keeps the archive listing and RECORD tidier than they would otherwise + # be. Use the number of path segments to keep directory entries together, + # and keep the dist-info stuff at the end. + def sorter(t): + ap = t[0] + n = ap.count('/') + if '.dist-info' in ap: + n += 10000 + return (n, ap) + archive_paths = sorted(archive_paths, key=sorter) + + # Now, at last, RECORD. + # Paths in here are archive paths - nothing else makes sense. + self.write_records((distinfo, info_dir), libdir, archive_paths) + # Now, ready to build the zip file + pathname = os.path.join(self.dirname, self.filename) + self.build_zip(pathname, archive_paths) + return pathname + + def skip_entry(self, arcname): + """ + Determine whether an archive entry should be skipped when verifying + or installing. + """ + # The signature file won't be in RECORD, + # and we don't currently don't do anything with it + # We also skip directories, as they won't be in RECORD + # either. See: + # + # https://github.com/pypa/wheel/issues/294 + # https://github.com/pypa/wheel/issues/287 + # https://github.com/pypa/wheel/pull/289 + # + return arcname.endswith(('/', '/RECORD.jws')) + + def install(self, paths, maker, **kwargs): + """ + Install a wheel to the specified paths. If kwarg ``warner`` is + specified, it should be a callable, which will be called with two + tuples indicating the wheel version of this software and the wheel + version in the file, if there is a discrepancy in the versions. + This can be used to issue any warnings to raise any exceptions. + If kwarg ``lib_only`` is True, only the purelib/platlib files are + installed, and the headers, scripts, data and dist-info metadata are + not written. If kwarg ``bytecode_hashed_invalidation`` is True, written + bytecode will try to use file-hash based invalidation (PEP-552) on + supported interpreter versions (CPython 2.7+). + + The return value is a :class:`InstalledDistribution` instance unless + ``options.lib_only`` is True, in which case the return value is ``None``. + """ + + dry_run = maker.dry_run + warner = kwargs.get('warner') + lib_only = kwargs.get('lib_only', False) + bc_hashed_invalidation = kwargs.get('bytecode_hashed_invalidation', False) + + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) + wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') + record_name = posixpath.join(info_dir, 'RECORD') + + wrapper = codecs.getreader('utf-8') + + with ZipFile(pathname, 'r') as zf: + with zf.open(wheel_metadata_name) as bwf: + wf = wrapper(bwf) + message = message_from_file(wf) + wv = message['Wheel-Version'].split('.', 1) + file_version = tuple([int(i) for i in wv]) + if (file_version != self.wheel_version) and warner: + warner(self.wheel_version, file_version) + + if message['Root-Is-Purelib'] == 'true': + libdir = paths['purelib'] + else: + libdir = paths['platlib'] + + records = {} + with zf.open(record_name) as bf: + with CSVReader(stream=bf) as reader: + for row in reader: + p = row[0] + records[p] = row + + data_pfx = posixpath.join(data_dir, '') + info_pfx = posixpath.join(info_dir, '') + script_pfx = posixpath.join(data_dir, 'scripts', '') + + # make a new instance rather than a copy of maker's, + # as we mutate it + fileop = FileOperator(dry_run=dry_run) + fileop.record = True # so we can rollback if needed + + bc = not sys.dont_write_bytecode # Double negatives. Lovely! + + outfiles = [] # for RECORD writing + + # for script copying/shebang processing + workdir = tempfile.mkdtemp() + # set target dir later + # we default add_launchers to False, as the + # Python Launcher should be used instead + maker.source_dir = workdir + maker.target_dir = None + try: + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + if self.skip_entry(u_arcname): + continue + row = records[u_arcname] + if row[2] and str(zinfo.file_size) != row[2]: + raise DistlibException('size mismatch for ' + '%s' % u_arcname) + if row[1]: + kind, value = row[1].split('=', 1) + with zf.open(arcname) as bf: + data = bf.read() + _, digest = self.get_hash(data, kind) + if digest != value: + raise DistlibException('digest mismatch for ' + '%s' % arcname) + + if lib_only and u_arcname.startswith((info_pfx, data_pfx)): + logger.debug('lib_only: skipping %s', u_arcname) + continue + is_script = (u_arcname.startswith(script_pfx) + and not u_arcname.endswith('.exe')) + + if u_arcname.startswith(data_pfx): + _, where, rp = u_arcname.split('/', 2) + outfile = os.path.join(paths[where], convert_path(rp)) + else: + # meant for site-packages. + if u_arcname in (wheel_metadata_name, record_name): + continue + outfile = os.path.join(libdir, convert_path(u_arcname)) + if not is_script: + with zf.open(arcname) as bf: + fileop.copy_stream(bf, outfile) + outfiles.append(outfile) + # Double check the digest of the written file + if not dry_run and row[1]: + with open(outfile, 'rb') as bf: + data = bf.read() + _, newdigest = self.get_hash(data, kind) + if newdigest != digest: + raise DistlibException('digest mismatch ' + 'on write for ' + '%s' % outfile) + if bc and outfile.endswith('.py'): + try: + pyc = fileop.byte_compile(outfile, + hashed_invalidation=bc_hashed_invalidation) + outfiles.append(pyc) + except Exception: + # Don't give up if byte-compilation fails, + # but log it and perhaps warn the user + logger.warning('Byte-compilation failed', + exc_info=True) + else: + fn = os.path.basename(convert_path(arcname)) + workname = os.path.join(workdir, fn) + with zf.open(arcname) as bf: + fileop.copy_stream(bf, workname) + + dn, fn = os.path.split(outfile) + maker.target_dir = dn + filenames = maker.make(fn) + fileop.set_executable_mode(filenames) + outfiles.extend(filenames) + + if lib_only: + logger.debug('lib_only: returning None') + dist = None + else: + # Generate scripts + + # Try to get pydist.json so we can see if there are + # any commands to generate. If this fails (e.g. because + # of a legacy wheel), log a warning but don't give up. + commands = None + file_version = self.info['Wheel-Version'] + if file_version == '1.0': + # Use legacy info + ep = posixpath.join(info_dir, 'entry_points.txt') + try: + with zf.open(ep) as bwf: + epdata = read_exports(bwf) + commands = {} + for key in ('console', 'gui'): + k = '%s_scripts' % key + if k in epdata: + commands['wrap_%s' % key] = d = {} + for v in epdata[k].values(): + s = '%s:%s' % (v.prefix, v.suffix) + if v.flags: + s += ' [%s]' % ','.join(v.flags) + d[v.name] = s + except Exception: + logger.warning('Unable to read legacy script ' + 'metadata, so cannot generate ' + 'scripts') + else: + try: + with zf.open(metadata_name) as bwf: + wf = wrapper(bwf) + commands = json.load(wf).get('extensions') + if commands: + commands = commands.get('python.commands') + except Exception: + logger.warning('Unable to read JSON metadata, so ' + 'cannot generate scripts') + if commands: + console_scripts = commands.get('wrap_console', {}) + gui_scripts = commands.get('wrap_gui', {}) + if console_scripts or gui_scripts: + script_dir = paths.get('scripts', '') + if not os.path.isdir(script_dir): + raise ValueError('Valid script path not ' + 'specified') + maker.target_dir = script_dir + for k, v in console_scripts.items(): + script = '%s = %s' % (k, v) + filenames = maker.make(script) + fileop.set_executable_mode(filenames) + + if gui_scripts: + options = {'gui': True } + for k, v in gui_scripts.items(): + script = '%s = %s' % (k, v) + filenames = maker.make(script, options) + fileop.set_executable_mode(filenames) + + p = os.path.join(libdir, info_dir) + dist = InstalledDistribution(p) + + # Write SHARED + paths = dict(paths) # don't change passed in dict + del paths['purelib'] + del paths['platlib'] + paths['lib'] = libdir + p = dist.write_shared_locations(paths, dry_run) + if p: + outfiles.append(p) + + # Write RECORD + dist.write_installed_files(outfiles, paths['prefix'], + dry_run) + return dist + except Exception: # pragma: no cover + logger.exception('installation failed.') + fileop.rollback() + raise + finally: + shutil.rmtree(workdir) + + def _get_dylib_cache(self): + global cache + if cache is None: + # Use native string to avoid issues on 2.x: see Python #20140. + base = os.path.join(get_cache_base(), str('dylib-cache'), + '%s.%s' % sys.version_info[:2]) + cache = Cache(base) + return cache + + def _get_extensions(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + arcname = posixpath.join(info_dir, 'EXTENSIONS') + wrapper = codecs.getreader('utf-8') + result = [] + with ZipFile(pathname, 'r') as zf: + try: + with zf.open(arcname) as bf: + wf = wrapper(bf) + extensions = json.load(wf) + cache = self._get_dylib_cache() + prefix = cache.prefix_to_dir(pathname) + cache_base = os.path.join(cache.base, prefix) + if not os.path.isdir(cache_base): + os.makedirs(cache_base) + for name, relpath in extensions.items(): + dest = os.path.join(cache_base, convert_path(relpath)) + if not os.path.exists(dest): + extract = True + else: + file_time = os.stat(dest).st_mtime + file_time = datetime.datetime.fromtimestamp(file_time) + info = zf.getinfo(relpath) + wheel_time = datetime.datetime(*info.date_time) + extract = wheel_time > file_time + if extract: + zf.extract(relpath, cache_base) + result.append((name, dest)) + except KeyError: + pass + return result + + def is_compatible(self): + """ + Determine if a wheel is compatible with the running system. + """ + return is_compatible(self) + + def is_mountable(self): + """ + Determine if a wheel is asserted as mountable by its metadata. + """ + return True # for now - metadata details TBD + + def mount(self, append=False): + pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) + if not self.is_compatible(): + msg = 'Wheel %s not compatible with this Python.' % pathname + raise DistlibException(msg) + if not self.is_mountable(): + msg = 'Wheel %s is marked as not mountable.' % pathname + raise DistlibException(msg) + if pathname in sys.path: + logger.debug('%s already in path', pathname) + else: + if append: + sys.path.append(pathname) + else: + sys.path.insert(0, pathname) + extensions = self._get_extensions() + if extensions: + if _hook not in sys.meta_path: + sys.meta_path.append(_hook) + _hook.add(pathname, extensions) + + def unmount(self): + pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) + if pathname not in sys.path: + logger.debug('%s not in path', pathname) + else: + sys.path.remove(pathname) + if pathname in _hook.impure_wheels: + _hook.remove(pathname) + if not _hook.impure_wheels: + if _hook in sys.meta_path: + sys.meta_path.remove(_hook) + + def verify(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) + wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') + record_name = posixpath.join(info_dir, 'RECORD') + + wrapper = codecs.getreader('utf-8') + + with ZipFile(pathname, 'r') as zf: + with zf.open(wheel_metadata_name) as bwf: + wf = wrapper(bwf) + message = message_from_file(wf) + wv = message['Wheel-Version'].split('.', 1) + file_version = tuple([int(i) for i in wv]) + # TODO version verification + + records = {} + with zf.open(record_name) as bf: + with CSVReader(stream=bf) as reader: + for row in reader: + p = row[0] + records[p] = row + + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + # See issue #115: some wheels have .. in their entries, but + # in the filename ... e.g. __main__..py ! So the check is + # updated to look for .. in the directory portions + p = u_arcname.split('/') + if '..' in p: + raise DistlibException('invalid entry in ' + 'wheel: %r' % u_arcname) + + if self.skip_entry(u_arcname): + continue + row = records[u_arcname] + if row[2] and str(zinfo.file_size) != row[2]: + raise DistlibException('size mismatch for ' + '%s' % u_arcname) + if row[1]: + kind, value = row[1].split('=', 1) + with zf.open(arcname) as bf: + data = bf.read() + _, digest = self.get_hash(data, kind) + if digest != value: + raise DistlibException('digest mismatch for ' + '%s' % arcname) + + def update(self, modifier, dest_dir=None, **kwargs): + """ + Update the contents of a wheel in a generic way. The modifier should + be a callable which expects a dictionary argument: its keys are + archive-entry paths, and its values are absolute filesystem paths + where the contents the corresponding archive entries can be found. The + modifier is free to change the contents of the files pointed to, add + new entries and remove entries, before returning. This method will + extract the entire contents of the wheel to a temporary location, call + the modifier, and then use the passed (and possibly updated) + dictionary to write a new wheel. If ``dest_dir`` is specified, the new + wheel is written there -- otherwise, the original wheel is overwritten. + + The modifier should return True if it updated the wheel, else False. + This method returns the same value the modifier returns. + """ + + def get_version(path_map, info_dir): + version = path = None + key = '%s/%s' % (info_dir, LEGACY_METADATA_FILENAME) + if key not in path_map: + key = '%s/PKG-INFO' % info_dir + if key in path_map: + path = path_map[key] + version = Metadata(path=path).version + return version, path + + def update_version(version, path): + updated = None + try: + v = NormalizedVersion(version) + i = version.find('-') + if i < 0: + updated = '%s+1' % version + else: + parts = [int(s) for s in version[i + 1:].split('.')] + parts[-1] += 1 + updated = '%s+%s' % (version[:i], + '.'.join(str(i) for i in parts)) + except UnsupportedVersionError: + logger.debug('Cannot update non-compliant (PEP-440) ' + 'version %r', version) + if updated: + md = Metadata(path=path) + md.version = updated + legacy = path.endswith(LEGACY_METADATA_FILENAME) + md.write(path=path, legacy=legacy) + logger.debug('Version updated from %r to %r', version, + updated) + + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + record_name = posixpath.join(info_dir, 'RECORD') + with tempdir() as workdir: + with ZipFile(pathname, 'r') as zf: + path_map = {} + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + if u_arcname == record_name: + continue + if '..' in u_arcname: + raise DistlibException('invalid entry in ' + 'wheel: %r' % u_arcname) + zf.extract(zinfo, workdir) + path = os.path.join(workdir, convert_path(u_arcname)) + path_map[u_arcname] = path + + # Remember the version. + original_version, _ = get_version(path_map, info_dir) + # Files extracted. Call the modifier. + modified = modifier(path_map, **kwargs) + if modified: + # Something changed - need to build a new wheel. + current_version, path = get_version(path_map, info_dir) + if current_version and (current_version == original_version): + # Add or update local version to signify changes. + update_version(current_version, path) + # Decide where the new wheel goes. + if dest_dir is None: + fd, newpath = tempfile.mkstemp(suffix='.whl', + prefix='wheel-update-', + dir=workdir) + os.close(fd) + else: + if not os.path.isdir(dest_dir): + raise DistlibException('Not a directory: %r' % dest_dir) + newpath = os.path.join(dest_dir, self.filename) + archive_paths = list(path_map.items()) + distinfo = os.path.join(workdir, info_dir) + info = distinfo, info_dir + self.write_records(info, workdir, archive_paths) + self.build_zip(newpath, archive_paths) + if dest_dir is None: + shutil.copyfile(newpath, pathname) + return modified + +def compatible_tags(): + """ + Return (pyver, abi, arch) tuples compatible with this Python. + """ + versions = [VER_SUFFIX] + major = VER_SUFFIX[0] + for minor in range(sys.version_info[1] - 1, - 1, -1): + versions.append(''.join([major, str(minor)])) + + abis = [] + for suffix, _, _ in imp.get_suffixes(): + if suffix.startswith('.abi'): + abis.append(suffix.split('.', 2)[1]) + abis.sort() + if ABI != 'none': + abis.insert(0, ABI) + abis.append('none') + result = [] + + arches = [ARCH] + if sys.platform == 'darwin': + m = re.match(r'(\w+)_(\d+)_(\d+)_(\w+)$', ARCH) + if m: + name, major, minor, arch = m.groups() + minor = int(minor) + matches = [arch] + if arch in ('i386', 'ppc'): + matches.append('fat') + if arch in ('i386', 'ppc', 'x86_64'): + matches.append('fat3') + if arch in ('ppc64', 'x86_64'): + matches.append('fat64') + if arch in ('i386', 'x86_64'): + matches.append('intel') + if arch in ('i386', 'x86_64', 'intel', 'ppc', 'ppc64'): + matches.append('universal') + while minor >= 0: + for match in matches: + s = '%s_%s_%s_%s' % (name, major, minor, match) + if s != ARCH: # already there + arches.append(s) + minor -= 1 + + # Most specific - our Python version, ABI and arch + for abi in abis: + for arch in arches: + result.append((''.join((IMP_PREFIX, versions[0])), abi, arch)) + + # where no ABI / arch dependency, but IMP_PREFIX dependency + for i, version in enumerate(versions): + result.append((''.join((IMP_PREFIX, version)), 'none', 'any')) + if i == 0: + result.append((''.join((IMP_PREFIX, version[0])), 'none', 'any')) + + # no IMP_PREFIX, ABI or arch dependency + for i, version in enumerate(versions): + result.append((''.join(('py', version)), 'none', 'any')) + if i == 0: + result.append((''.join(('py', version[0])), 'none', 'any')) + return set(result) + + +COMPATIBLE_TAGS = compatible_tags() + +del compatible_tags + + +def is_compatible(wheel, tags=None): + if not isinstance(wheel, Wheel): + wheel = Wheel(wheel) # assume it's a filename + result = False + if tags is None: + tags = COMPATIBLE_TAGS + for ver, abi, arch in tags: + if ver in wheel.pyver and abi in wheel.abi and arch in wheel.arch: + result = True + break + return result diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/distro.py b/venv/lib/python3.8/site-packages/pip/_vendor/distro.py new file mode 100644 index 00000000..0611b62a --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/distro.py @@ -0,0 +1,1230 @@ +# Copyright 2015,2016,2017 Nir Cohen +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +The ``distro`` package (``distro`` stands for Linux Distribution) provides +information about the Linux distribution it runs on, such as a reliable +machine-readable distro ID, or version information. + +It is the recommended replacement for Python's original +:py:func:`platform.linux_distribution` function, but it provides much more +functionality. An alternative implementation became necessary because Python +3.5 deprecated this function, and Python 3.8 will remove it altogether. +Its predecessor function :py:func:`platform.dist` was already +deprecated since Python 2.6 and will also be removed in Python 3.8. +Still, there are many cases in which access to OS distribution information +is needed. See `Python issue 1322 `_ for +more information. +""" + +import os +import re +import sys +import json +import shlex +import logging +import argparse +import subprocess + + +_UNIXCONFDIR = os.environ.get('UNIXCONFDIR', '/etc') +_OS_RELEASE_BASENAME = 'os-release' + +#: Translation table for normalizing the "ID" attribute defined in os-release +#: files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as defined in the os-release file, translated to lower case, +#: with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_OS_ID = { + 'ol': 'oracle', # Oracle Linux +} + +#: Translation table for normalizing the "Distributor ID" attribute returned by +#: the lsb_release command, for use by the :func:`distro.id` method. +#: +#: * Key: Value as returned by the lsb_release command, translated to lower +#: case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_LSB_ID = { + 'enterpriseenterpriseas': 'oracle', # Oracle Enterprise Linux 4 + 'enterpriseenterpriseserver': 'oracle', # Oracle Linux 5 + 'redhatenterpriseworkstation': 'rhel', # RHEL 6, 7 Workstation + 'redhatenterpriseserver': 'rhel', # RHEL 6, 7 Server + 'redhatenterprisecomputenode': 'rhel', # RHEL 6 ComputeNode +} + +#: Translation table for normalizing the distro ID derived from the file name +#: of distro release files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as derived from the file name of a distro release file, +#: translated to lower case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_DISTRO_ID = { + 'redhat': 'rhel', # RHEL 6.x, 7.x +} + +# Pattern for content of distro release file (reversed) +_DISTRO_RELEASE_CONTENT_REVERSED_PATTERN = re.compile( + r'(?:[^)]*\)(.*)\()? *(?:STL )?([\d.+\-a-z]*\d) *(?:esaeler *)?(.+)') + +# Pattern for base file name of distro release file +_DISTRO_RELEASE_BASENAME_PATTERN = re.compile( + r'(\w+)[-_](release|version)$') + +# Base file names to be ignored when searching for distro release file +_DISTRO_RELEASE_IGNORE_BASENAMES = ( + 'debian_version', + 'lsb-release', + 'oem-release', + _OS_RELEASE_BASENAME, + 'system-release', + 'plesk-release', +) + + +def linux_distribution(full_distribution_name=True): + """ + Return information about the current OS distribution as a tuple + ``(id_name, version, codename)`` with items as follows: + + * ``id_name``: If *full_distribution_name* is false, the result of + :func:`distro.id`. Otherwise, the result of :func:`distro.name`. + + * ``version``: The result of :func:`distro.version`. + + * ``codename``: The result of :func:`distro.codename`. + + The interface of this function is compatible with the original + :py:func:`platform.linux_distribution` function, supporting a subset of + its parameters. + + The data it returns may not exactly be the same, because it uses more data + sources than the original function, and that may lead to different data if + the OS distribution is not consistent across multiple data sources it + provides (there are indeed such distributions ...). + + Another reason for differences is the fact that the :func:`distro.id` + method normalizes the distro ID string to a reliable machine-readable value + for a number of popular OS distributions. + """ + return _distro.linux_distribution(full_distribution_name) + + +def id(): + """ + Return the distro ID of the current distribution, as a + machine-readable string. + + For a number of OS distributions, the returned distro ID value is + *reliable*, in the sense that it is documented and that it does not change + across releases of the distribution. + + This package maintains the following reliable distro ID values: + + ============== ========================================= + Distro ID Distribution + ============== ========================================= + "ubuntu" Ubuntu + "debian" Debian + "rhel" RedHat Enterprise Linux + "centos" CentOS + "fedora" Fedora + "sles" SUSE Linux Enterprise Server + "opensuse" openSUSE + "amazon" Amazon Linux + "arch" Arch Linux + "cloudlinux" CloudLinux OS + "exherbo" Exherbo Linux + "gentoo" GenToo Linux + "ibm_powerkvm" IBM PowerKVM + "kvmibm" KVM for IBM z Systems + "linuxmint" Linux Mint + "mageia" Mageia + "mandriva" Mandriva Linux + "parallels" Parallels + "pidora" Pidora + "raspbian" Raspbian + "oracle" Oracle Linux (and Oracle Enterprise Linux) + "scientific" Scientific Linux + "slackware" Slackware + "xenserver" XenServer + "openbsd" OpenBSD + "netbsd" NetBSD + "freebsd" FreeBSD + "midnightbsd" MidnightBSD + ============== ========================================= + + If you have a need to get distros for reliable IDs added into this set, + or if you find that the :func:`distro.id` function returns a different + distro ID for one of the listed distros, please create an issue in the + `distro issue tracker`_. + + **Lookup hierarchy and transformations:** + + First, the ID is obtained from the following sources, in the specified + order. The first available and non-empty value is used: + + * the value of the "ID" attribute of the os-release file, + + * the value of the "Distributor ID" attribute returned by the lsb_release + command, + + * the first part of the file name of the distro release file, + + The so determined ID value then passes the following transformations, + before it is returned by this method: + + * it is translated to lower case, + + * blanks (which should not be there anyway) are translated to underscores, + + * a normalization of the ID is performed, based upon + `normalization tables`_. The purpose of this normalization is to ensure + that the ID is as reliable as possible, even across incompatible changes + in the OS distributions. A common reason for an incompatible change is + the addition of an os-release file, or the addition of the lsb_release + command, with ID values that differ from what was previously determined + from the distro release file name. + """ + return _distro.id() + + +def name(pretty=False): + """ + Return the name of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the name is returned without version or codename. + (e.g. "CentOS Linux") + + If *pretty* is true, the version and codename are appended. + (e.g. "CentOS Linux 7.1.1503 (Core)") + + **Lookup hierarchy:** + + The name is obtained from the following sources, in the specified order. + The first available and non-empty value is used: + + * If *pretty* is false: + + - the value of the "NAME" attribute of the os-release file, + + - the value of the "Distributor ID" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file. + + * If *pretty* is true: + + - the value of the "PRETTY_NAME" attribute of the os-release file, + + - the value of the "Description" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file, appended + with the value of the pretty version ("" and "" + fields) of the distro release file, if available. + """ + return _distro.name(pretty) + + +def version(pretty=False, best=False): + """ + Return the version of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the version is returned without codename (e.g. + "7.0"). + + If *pretty* is true, the codename in parenthesis is appended, if the + codename is non-empty (e.g. "7.0 (Maipo)"). + + Some distributions provide version numbers with different precisions in + the different sources of distribution information. Examining the different + sources in a fixed priority order does not always yield the most precise + version (e.g. for Debian 8.2, or CentOS 7.1). + + The *best* parameter can be used to control the approach for the returned + version: + + If *best* is false, the first non-empty version number in priority order of + the examined sources is returned. + + If *best* is true, the most precise version number out of all examined + sources is returned. + + **Lookup hierarchy:** + + In all cases, the version number is obtained from the following sources. + If *best* is false, this order represents the priority order: + + * the value of the "VERSION_ID" attribute of the os-release file, + * the value of the "Release" attribute returned by the lsb_release + command, + * the version number parsed from the "" field of the first line + of the distro release file, + * the version number parsed from the "PRETTY_NAME" attribute of the + os-release file, if it follows the format of the distro release files. + * the version number parsed from the "Description" attribute returned by + the lsb_release command, if it follows the format of the distro release + files. + """ + return _distro.version(pretty, best) + + +def version_parts(best=False): + """ + Return the version of the current OS distribution as a tuple + ``(major, minor, build_number)`` with items as follows: + + * ``major``: The result of :func:`distro.major_version`. + + * ``minor``: The result of :func:`distro.minor_version`. + + * ``build_number``: The result of :func:`distro.build_number`. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.version_parts(best) + + +def major_version(best=False): + """ + Return the major version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The major version is the first + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.major_version(best) + + +def minor_version(best=False): + """ + Return the minor version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The minor version is the second + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.minor_version(best) + + +def build_number(best=False): + """ + Return the build number of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The build number is the third part + of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.build_number(best) + + +def like(): + """ + Return a space-separated list of distro IDs of distributions that are + closely related to the current OS distribution in regards to packaging + and programming interfaces, for example distributions the current + distribution is a derivative from. + + **Lookup hierarchy:** + + This information item is only provided by the os-release file. + For details, see the description of the "ID_LIKE" attribute in the + `os-release man page + `_. + """ + return _distro.like() + + +def codename(): + """ + Return the codename for the release of the current OS distribution, + as a string. + + If the distribution does not have a codename, an empty string is returned. + + Note that the returned codename is not always really a codename. For + example, openSUSE returns "x86_64". This function does not handle such + cases in any special way and just returns the string it finds, if any. + + **Lookup hierarchy:** + + * the codename within the "VERSION" attribute of the os-release file, if + provided, + + * the value of the "Codename" attribute returned by the lsb_release + command, + + * the value of the "" field of the distro release file. + """ + return _distro.codename() + + +def info(pretty=False, best=False): + """ + Return certain machine-readable information items about the current OS + distribution in a dictionary, as shown in the following example: + + .. sourcecode:: python + + { + 'id': 'rhel', + 'version': '7.0', + 'version_parts': { + 'major': '7', + 'minor': '0', + 'build_number': '' + }, + 'like': 'fedora', + 'codename': 'Maipo' + } + + The dictionary structure and keys are always the same, regardless of which + information items are available in the underlying data sources. The values + for the various keys are as follows: + + * ``id``: The result of :func:`distro.id`. + + * ``version``: The result of :func:`distro.version`. + + * ``version_parts -> major``: The result of :func:`distro.major_version`. + + * ``version_parts -> minor``: The result of :func:`distro.minor_version`. + + * ``version_parts -> build_number``: The result of + :func:`distro.build_number`. + + * ``like``: The result of :func:`distro.like`. + + * ``codename``: The result of :func:`distro.codename`. + + For a description of the *pretty* and *best* parameters, see the + :func:`distro.version` method. + """ + return _distro.info(pretty, best) + + +def os_release_info(): + """ + Return a dictionary containing key-value pairs for the information items + from the os-release file data source of the current OS distribution. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_info() + + +def lsb_release_info(): + """ + Return a dictionary containing key-value pairs for the information items + from the lsb_release command data source of the current OS distribution. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_info() + + +def distro_release_info(): + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_info() + + +def uname_info(): + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + """ + return _distro.uname_info() + + +def os_release_attr(attribute): + """ + Return a single named information item from the os-release file data source + of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_attr(attribute) + + +def lsb_release_attr(attribute): + """ + Return a single named information item from the lsb_release command output + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_attr(attribute) + + +def distro_release_attr(attribute): + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_attr(attribute) + + +def uname_attr(attribute): + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + """ + return _distro.uname_attr(attribute) + + +class cached_property(object): + """A version of @property which caches the value. On access, it calls the + underlying function and sets the value in `__dict__` so future accesses + will not re-call the property. + """ + def __init__(self, f): + self._fname = f.__name__ + self._f = f + + def __get__(self, obj, owner): + assert obj is not None, 'call {} on an instance'.format(self._fname) + ret = obj.__dict__[self._fname] = self._f(obj) + return ret + + +class LinuxDistribution(object): + """ + Provides information about a OS distribution. + + This package creates a private module-global instance of this class with + default initialization arguments, that is used by the + `consolidated accessor functions`_ and `single source accessor functions`_. + By using default initialization arguments, that module-global instance + returns data about the current OS distribution (i.e. the distro this + package runs on). + + Normally, it is not necessary to create additional instances of this class. + However, in situations where control is needed over the exact data sources + that are used, instances of this class can be created with a specific + distro release file, or a specific os-release file, or without invoking the + lsb_release command. + """ + + def __init__(self, + include_lsb=True, + os_release_file='', + distro_release_file='', + include_uname=True): + """ + The initialization method of this class gathers information from the + available data sources, and stores that in private instance attributes. + Subsequent access to the information items uses these private instance + attributes, so that the data sources are read only once. + + Parameters: + + * ``include_lsb`` (bool): Controls whether the + `lsb_release command output`_ is included as a data source. + + If the lsb_release command is not available in the program execution + path, the data source for the lsb_release command will be empty. + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is to be used as a data source. + + An empty string (the default) will cause the default path name to + be used (see `os-release file`_ for details). + + If the specified or defaulted os-release file does not exist, the + data source for the os-release file will be empty. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is to be used as a data source. + + An empty string (the default) will cause a default search algorithm + to be used (see `distro release file`_ for details). + + If the specified distro release file does not exist, or if no default + distro release file can be found, the data source for the distro + release file will be empty. + + * ``include_uname`` (bool): Controls whether uname command output is + included as a data source. If the uname command is not available in + the program execution path the data source for the uname command will + be empty. + + Public instance attributes: + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``include_lsb`` (bool): The result of the ``include_lsb`` parameter. + This controls whether the lsb information will be loaded. + + * ``include_uname`` (bool): The result of the ``include_uname`` + parameter. This controls whether the uname information will + be loaded. + + Raises: + + * :py:exc:`IOError`: Some I/O issue with an os-release file or distro + release file. + + * :py:exc:`subprocess.CalledProcessError`: The lsb_release command had + some issue (other than not being available in the program execution + path). + + * :py:exc:`UnicodeError`: A data source has unexpected characters or + uses an unexpected encoding. + """ + self.os_release_file = os_release_file or \ + os.path.join(_UNIXCONFDIR, _OS_RELEASE_BASENAME) + self.distro_release_file = distro_release_file or '' # updated later + self.include_lsb = include_lsb + self.include_uname = include_uname + + def __repr__(self): + """Return repr of all info + """ + return \ + "LinuxDistribution(" \ + "os_release_file={self.os_release_file!r}, " \ + "distro_release_file={self.distro_release_file!r}, " \ + "include_lsb={self.include_lsb!r}, " \ + "include_uname={self.include_uname!r}, " \ + "_os_release_info={self._os_release_info!r}, " \ + "_lsb_release_info={self._lsb_release_info!r}, " \ + "_distro_release_info={self._distro_release_info!r}, " \ + "_uname_info={self._uname_info!r})".format( + self=self) + + def linux_distribution(self, full_distribution_name=True): + """ + Return information about the OS distribution that is compatible + with Python's :func:`platform.linux_distribution`, supporting a subset + of its parameters. + + For details, see :func:`distro.linux_distribution`. + """ + return ( + self.name() if full_distribution_name else self.id(), + self.version(), + self.codename() + ) + + def id(self): + """Return the distro ID of the OS distribution, as a string. + + For details, see :func:`distro.id`. + """ + def normalize(distro_id, table): + distro_id = distro_id.lower().replace(' ', '_') + return table.get(distro_id, distro_id) + + distro_id = self.os_release_attr('id') + if distro_id: + return normalize(distro_id, NORMALIZED_OS_ID) + + distro_id = self.lsb_release_attr('distributor_id') + if distro_id: + return normalize(distro_id, NORMALIZED_LSB_ID) + + distro_id = self.distro_release_attr('id') + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + distro_id = self.uname_attr('id') + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + return '' + + def name(self, pretty=False): + """ + Return the name of the OS distribution, as a string. + + For details, see :func:`distro.name`. + """ + name = self.os_release_attr('name') \ + or self.lsb_release_attr('distributor_id') \ + or self.distro_release_attr('name') \ + or self.uname_attr('name') + if pretty: + name = self.os_release_attr('pretty_name') \ + or self.lsb_release_attr('description') + if not name: + name = self.distro_release_attr('name') \ + or self.uname_attr('name') + version = self.version(pretty=True) + if version: + name = name + ' ' + version + return name or '' + + def version(self, pretty=False, best=False): + """ + Return the version of the OS distribution, as a string. + + For details, see :func:`distro.version`. + """ + versions = [ + self.os_release_attr('version_id'), + self.lsb_release_attr('release'), + self.distro_release_attr('version_id'), + self._parse_distro_release_content( + self.os_release_attr('pretty_name')).get('version_id', ''), + self._parse_distro_release_content( + self.lsb_release_attr('description')).get('version_id', ''), + self.uname_attr('release') + ] + version = '' + if best: + # This algorithm uses the last version in priority order that has + # the best precision. If the versions are not in conflict, that + # does not matter; otherwise, using the last one instead of the + # first one might be considered a surprise. + for v in versions: + if v.count(".") > version.count(".") or version == '': + version = v + else: + for v in versions: + if v != '': + version = v + break + if pretty and version and self.codename(): + version = '{0} ({1})'.format(version, self.codename()) + return version + + def version_parts(self, best=False): + """ + Return the version of the OS distribution, as a tuple of version + numbers. + + For details, see :func:`distro.version_parts`. + """ + version_str = self.version(best=best) + if version_str: + version_regex = re.compile(r'(\d+)\.?(\d+)?\.?(\d+)?') + matches = version_regex.match(version_str) + if matches: + major, minor, build_number = matches.groups() + return major, minor or '', build_number or '' + return '', '', '' + + def major_version(self, best=False): + """ + Return the major version number of the current distribution. + + For details, see :func:`distro.major_version`. + """ + return self.version_parts(best)[0] + + def minor_version(self, best=False): + """ + Return the minor version number of the current distribution. + + For details, see :func:`distro.minor_version`. + """ + return self.version_parts(best)[1] + + def build_number(self, best=False): + """ + Return the build number of the current distribution. + + For details, see :func:`distro.build_number`. + """ + return self.version_parts(best)[2] + + def like(self): + """ + Return the IDs of distributions that are like the OS distribution. + + For details, see :func:`distro.like`. + """ + return self.os_release_attr('id_like') or '' + + def codename(self): + """ + Return the codename of the OS distribution. + + For details, see :func:`distro.codename`. + """ + try: + # Handle os_release specially since distros might purposefully set + # this to empty string to have no codename + return self._os_release_info['codename'] + except KeyError: + return self.lsb_release_attr('codename') \ + or self.distro_release_attr('codename') \ + or '' + + def info(self, pretty=False, best=False): + """ + Return certain machine-readable information about the OS + distribution. + + For details, see :func:`distro.info`. + """ + return dict( + id=self.id(), + version=self.version(pretty, best), + version_parts=dict( + major=self.major_version(best), + minor=self.minor_version(best), + build_number=self.build_number(best) + ), + like=self.like(), + codename=self.codename(), + ) + + def os_release_info(self): + """ + Return a dictionary containing key-value pairs for the information + items from the os-release file data source of the OS distribution. + + For details, see :func:`distro.os_release_info`. + """ + return self._os_release_info + + def lsb_release_info(self): + """ + Return a dictionary containing key-value pairs for the information + items from the lsb_release command data source of the OS + distribution. + + For details, see :func:`distro.lsb_release_info`. + """ + return self._lsb_release_info + + def distro_release_info(self): + """ + Return a dictionary containing key-value pairs for the information + items from the distro release file data source of the OS + distribution. + + For details, see :func:`distro.distro_release_info`. + """ + return self._distro_release_info + + def uname_info(self): + """ + Return a dictionary containing key-value pairs for the information + items from the uname command data source of the OS distribution. + + For details, see :func:`distro.uname_info`. + """ + return self._uname_info + + def os_release_attr(self, attribute): + """ + Return a single named information item from the os-release file data + source of the OS distribution. + + For details, see :func:`distro.os_release_attr`. + """ + return self._os_release_info.get(attribute, '') + + def lsb_release_attr(self, attribute): + """ + Return a single named information item from the lsb_release command + output data source of the OS distribution. + + For details, see :func:`distro.lsb_release_attr`. + """ + return self._lsb_release_info.get(attribute, '') + + def distro_release_attr(self, attribute): + """ + Return a single named information item from the distro release file + data source of the OS distribution. + + For details, see :func:`distro.distro_release_attr`. + """ + return self._distro_release_info.get(attribute, '') + + def uname_attr(self, attribute): + """ + Return a single named information item from the uname command + output data source of the OS distribution. + + For details, see :func:`distro.uname_release_attr`. + """ + return self._uname_info.get(attribute, '') + + @cached_property + def _os_release_info(self): + """ + Get the information items from the specified os-release file. + + Returns: + A dictionary containing all information items. + """ + if os.path.isfile(self.os_release_file): + with open(self.os_release_file) as release_file: + return self._parse_os_release_content(release_file) + return {} + + @staticmethod + def _parse_os_release_content(lines): + """ + Parse the lines of an os-release file. + + Parameters: + + * lines: Iterable through the lines in the os-release file. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + lexer = shlex.shlex(lines, posix=True) + lexer.whitespace_split = True + + # The shlex module defines its `wordchars` variable using literals, + # making it dependent on the encoding of the Python source file. + # In Python 2.6 and 2.7, the shlex source file is encoded in + # 'iso-8859-1', and the `wordchars` variable is defined as a byte + # string. This causes a UnicodeDecodeError to be raised when the + # parsed content is a unicode object. The following fix resolves that + # (... but it should be fixed in shlex...): + if sys.version_info[0] == 2 and isinstance(lexer.wordchars, bytes): + lexer.wordchars = lexer.wordchars.decode('iso-8859-1') + + tokens = list(lexer) + for token in tokens: + # At this point, all shell-like parsing has been done (i.e. + # comments processed, quotes and backslash escape sequences + # processed, multi-line values assembled, trailing newlines + # stripped, etc.), so the tokens are now either: + # * variable assignments: var=value + # * commands or their arguments (not allowed in os-release) + if '=' in token: + k, v = token.split('=', 1) + props[k.lower()] = v + else: + # Ignore any tokens that are not variable assignments + pass + + if 'version_codename' in props: + # os-release added a version_codename field. Use that in + # preference to anything else Note that some distros purposefully + # do not have code names. They should be setting + # version_codename="" + props['codename'] = props['version_codename'] + elif 'ubuntu_codename' in props: + # Same as above but a non-standard field name used on older Ubuntus + props['codename'] = props['ubuntu_codename'] + elif 'version' in props: + # If there is no version_codename, parse it from the version + codename = re.search(r'(\(\D+\))|,(\s+)?\D+', props['version']) + if codename: + codename = codename.group() + codename = codename.strip('()') + codename = codename.strip(',') + codename = codename.strip() + # codename appears within paranthese. + props['codename'] = codename + + return props + + @cached_property + def _lsb_release_info(self): + """ + Get the information items from the lsb_release command output. + + Returns: + A dictionary containing all information items. + """ + if not self.include_lsb: + return {} + with open(os.devnull, 'w') as devnull: + try: + cmd = ('lsb_release', '-a') + stdout = subprocess.check_output(cmd, stderr=devnull) + except OSError: # Command not found + return {} + content = self._to_str(stdout).splitlines() + return self._parse_lsb_release_content(content) + + @staticmethod + def _parse_lsb_release_content(lines): + """ + Parse the output of the lsb_release command. + + Parameters: + + * lines: Iterable through the lines of the lsb_release output. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + for line in lines: + kv = line.strip('\n').split(':', 1) + if len(kv) != 2: + # Ignore lines without colon. + continue + k, v = kv + props.update({k.replace(' ', '_').lower(): v.strip()}) + return props + + @cached_property + def _uname_info(self): + with open(os.devnull, 'w') as devnull: + try: + cmd = ('uname', '-rs') + stdout = subprocess.check_output(cmd, stderr=devnull) + except OSError: + return {} + content = self._to_str(stdout).splitlines() + return self._parse_uname_content(content) + + @staticmethod + def _parse_uname_content(lines): + props = {} + match = re.search(r'^([^\s]+)\s+([\d\.]+)', lines[0].strip()) + if match: + name, version = match.groups() + + # This is to prevent the Linux kernel version from + # appearing as the 'best' version on otherwise + # identifiable distributions. + if name == 'Linux': + return {} + props['id'] = name.lower() + props['name'] = name + props['release'] = version + return props + + @staticmethod + def _to_str(text): + encoding = sys.getfilesystemencoding() + encoding = 'utf-8' if encoding == 'ascii' else encoding + + if sys.version_info[0] >= 3: + if isinstance(text, bytes): + return text.decode(encoding) + else: + if isinstance(text, unicode): # noqa + return text.encode(encoding) + + return text + + @cached_property + def _distro_release_info(self): + """ + Get the information items from the specified distro release file. + + Returns: + A dictionary containing all information items. + """ + if self.distro_release_file: + # If it was specified, we use it and parse what we can, even if + # its file name or content does not match the expected pattern. + distro_info = self._parse_distro_release_file( + self.distro_release_file) + basename = os.path.basename(self.distro_release_file) + # The file name pattern for user-specified distro release files + # is somewhat more tolerant (compared to when searching for the + # file), because we want to use what was specified as best as + # possible. + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + if 'name' in distro_info \ + and 'cloudlinux' in distro_info['name'].lower(): + distro_info['id'] = 'cloudlinux' + elif match: + distro_info['id'] = match.group(1) + return distro_info + else: + try: + basenames = os.listdir(_UNIXCONFDIR) + # We sort for repeatability in cases where there are multiple + # distro specific files; e.g. CentOS, Oracle, Enterprise all + # containing `redhat-release` on top of their own. + basenames.sort() + except OSError: + # This may occur when /etc is not readable but we can't be + # sure about the *-release files. Check common entries of + # /etc for information. If they turn out to not be there the + # error is handled in `_parse_distro_release_file()`. + basenames = ['SuSE-release', + 'arch-release', + 'base-release', + 'centos-release', + 'fedora-release', + 'gentoo-release', + 'mageia-release', + 'mandrake-release', + 'mandriva-release', + 'mandrivalinux-release', + 'manjaro-release', + 'oracle-release', + 'redhat-release', + 'sl-release', + 'slackware-version'] + for basename in basenames: + if basename in _DISTRO_RELEASE_IGNORE_BASENAMES: + continue + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + if match: + filepath = os.path.join(_UNIXCONFDIR, basename) + distro_info = self._parse_distro_release_file(filepath) + if 'name' in distro_info: + # The name is always present if the pattern matches + self.distro_release_file = filepath + distro_info['id'] = match.group(1) + if 'cloudlinux' in distro_info['name'].lower(): + distro_info['id'] = 'cloudlinux' + return distro_info + return {} + + def _parse_distro_release_file(self, filepath): + """ + Parse a distro release file. + + Parameters: + + * filepath: Path name of the distro release file. + + Returns: + A dictionary containing all information items. + """ + try: + with open(filepath) as fp: + # Only parse the first line. For instance, on SLES there + # are multiple lines. We don't want them... + return self._parse_distro_release_content(fp.readline()) + except (OSError, IOError): + # Ignore not being able to read a specific, seemingly version + # related file. + # See https://github.com/nir0s/distro/issues/162 + return {} + + @staticmethod + def _parse_distro_release_content(line): + """ + Parse a line from a distro release file. + + Parameters: + * line: Line from the distro release file. Must be a unicode string + or a UTF-8 encoded byte string. + + Returns: + A dictionary containing all information items. + """ + matches = _DISTRO_RELEASE_CONTENT_REVERSED_PATTERN.match( + line.strip()[::-1]) + distro_info = {} + if matches: + # regexp ensures non-None + distro_info['name'] = matches.group(3)[::-1] + if matches.group(2): + distro_info['version_id'] = matches.group(2)[::-1] + if matches.group(1): + distro_info['codename'] = matches.group(1)[::-1] + elif line: + distro_info['name'] = line.strip() + return distro_info + + +_distro = LinuxDistribution() + + +def main(): + logger = logging.getLogger(__name__) + logger.setLevel(logging.DEBUG) + logger.addHandler(logging.StreamHandler(sys.stdout)) + + parser = argparse.ArgumentParser(description="OS distro info tool") + parser.add_argument( + '--json', + '-j', + help="Output in machine readable format", + action="store_true") + args = parser.parse_args() + + if args.json: + logger.info(json.dumps(info(), indent=4, sort_keys=True)) + else: + logger.info('Name: %s', name(pretty=True)) + distribution_version = version(pretty=True) + logger.info('Version: %s', distribution_version) + distribution_codename = codename() + logger.info('Codename: %s', distribution_codename) + + +if __name__ == '__main__': + main() diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__init__.py b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__init__.py new file mode 100644 index 00000000..d1d82f15 --- /dev/null +++ b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__init__.py @@ -0,0 +1,35 @@ +""" +HTML parsing library based on the `WHATWG HTML specification +`_. The parser is designed to be compatible with +existing HTML found in the wild and implements well-defined error recovery that +is largely compatible with modern desktop web browsers. + +Example usage:: + + from pip._vendor import html5lib + with open("my_document.html", "rb") as f: + tree = html5lib.parse(f) + +For convenience, this module re-exports the following names: + +* :func:`~.html5parser.parse` +* :func:`~.html5parser.parseFragment` +* :class:`~.html5parser.HTMLParser` +* :func:`~.treebuilders.getTreeBuilder` +* :func:`~.treewalkers.getTreeWalker` +* :func:`~.serializer.serialize` +""" + +from __future__ import absolute_import, division, unicode_literals + +from .html5parser import HTMLParser, parse, parseFragment +from .treebuilders import getTreeBuilder +from .treewalkers import getTreeWalker +from .serializer import serialize + +__all__ = ["HTMLParser", "parse", "parseFragment", "getTreeBuilder", + "getTreeWalker", "serialize"] + +# this has to be at the top level, see how setup.py parses this +#: Distribution version number. +__version__ = "1.1" diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fd6ed0409f934cd3735b724c4c8b9f489ebe77cb GIT binary patch literal 1278 zcmaJ>O>g5i5S2e-JF=Z*fuLt1r**NGv4;g(V|URl(Cr@DqCisw(1oVNk<5k^Rg#L5 zJ@i(zf2BZwk*+=MU+ASBQfZo`Kxuf)p+@gL&WFEWF5?In`Q_)`uj45C!#nra1f9?D zYxih)ltz5OhjO5X=}?W*ks7DtLBvOVEDzKqov3L#RkL&!&JN_EiqkmkCvvV9=_2f> za;c8eBizsUA&>c-FZi;Yq{sXyJ>kdSMXM9``!I^)cjsS!MQUcOs7fM5W|+Al8MDBN zu87+M*irOQ&mu%1CB(i#lx*$6s7CPeU5ZO4x4W znBXdmR-_hnLa(6WNQP3ham3&C1tu*7`FjvuL-q7b-B7Oc#%oP{%-J(?X0o#tVU`rz z5ba@|0U)pLP?C_Xr^PCc-y%n@D`XQ;`zf%$=&R7f@Ba7cTf<7PIz;7?S^F5o*XP?%)dxuaDp`Y-@>wjwoumJG z@Bb&RW%BY~*hO$3L}4uilj1#?8}`-k$Ul@!;@Ij`34#rrylFIrPTQ zxtXJRKYE@#|7P{1n^NBily)(tMdKO+lp377$c((fzk{fohc*go%p=%taX+zvq?`Mr z+Z+bQF8)_lVE3#{N@Sf=>{y&_T~Yd5WKKP&H-Em_I8|@3rPobWv-}eHy4?fF^^fHb z?$i2{!av*GwtJXq-{%`jMI{`iNqy7JUiSU?+Naoh)bU5B!_&dSe}=QcFdF_fKKL7Q C!H=>4 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f6514d201161bd749d49d324b3b45470b5438b54 GIT binary patch literal 13764 zcmeHuYj7Obb>{TUU@!o|r)WO(a3D*H1X)eaU>?M1wTioYrV}SJlSp!+f=DAn^bi0E z41k`2rG*Do5HSEPSrjE%mKe(tK^0$s0D|B{q5y)Za_mwzE?bGYmaJB7)g5yGC{@W; z?XN9VZF#?Q?o1B=QR^hX7p%Vb_U&`eJ?A^;o_qWB@Y`$G)_d^RczE=0p3*#?n{>1M zuMRigz?J*oC@hbqbbES~R;9<=>h1Bh`V{K(cKciXT-UVLSU$_&9q6fTt;MsN)}R$= zt+Q%d>#bnx8mq3g!Kxo$n+ay>I=m;8)^&WhF0;m3V>MW7GxeE$_dKuHLM(VIbSp-fLyry1VijJKdez{kcMe6lZ-h zolig3o6G%m+Rk=mJJR22@ObKmC&ifMZr3ys_pmp!|xJw}LWl5v+N*}^?0 z^+-NuxyP)~ghM6TjEFnRNHUEXa(hh4 z*^Ie-Oy<)Z-c_M#jxnERjpkxan{}P|G#e}-T9KA`S)E7=s}pHq5crW%9u;Xx(Wr># z>J`x<++&c;j7B8Mb44U#M4i+yoEyZ48>w<56{>JfH8UTRG-W=~5ZfXeGAc4hLp*yl z>f#)YNt#%dCMIcGNJ7ac!SY0nsLRLLMRP?B7mcXFXhe-FAE`w&rMrAmk~8DX7)GVt zqh_MQITm4gVlnm>%n^$v%3{Q%YsFezM~cZQVky_zVkV0kGn*?6cS#!EHFsQR2Z-ygBgLf~$E#+F%h}^eb}fh+PsYl&h^JzNPdw#{nh0@EBEp*D zSt61w%ae$)wo)k}h@Rl(FGn3@EWr_kjTdR1m!$}CZ(DRi2G8nh}|3|%6oSJ$8}5z`ql zmPeO}=~cvZiI~oaNj?%Wy^5F~VVml%N9p8Il3|REtH)g9>M=HxUiC3u;-kwLMGERN zH0f0z(-W++o^S)Bo?sK`33dP)l&C~DJ;AG6Pq?u~myu1^T%+h3+f>(F|Isx$N~bBL z@H)p9z3Qum#L!?284W|mF{6s15oS@1Du#x{(5ND2NFOs8G07*+;lilGVn|qw>e4eL zEJhU;L&9QIy~U8;VpM&@kiKEKzF{OQzG|f8q`c5rjHFaBS#^@6R4`dpFew#GRuxQ2 z1(Q{El2V;yRh^XF0#eN!$6&8iq_SV6q(`L~9~L7OWx-NW*A}T34veW54yQD{C0aI9 zs)fyzYT;$hkFZJAbED#isRVDVse~I>Q__D@RVPVlatf^yMN=B0DD%;FRpyfLrZis5 zZQAS$#t4yTQDD9l{`wu@KkjpGo{LA)RoYTvWJ^-3Y7#)IHVCQ;gC^* zB^=_&9}e*W2J1bH(~1-oE%HNDqz(@cvvJYGQ}8qFXyoeXqfHZ4CC;Ns%OM;NmjMrl zBUoS10u8z2hr>~ti+ZB+Fn~toQOp%1M#zW5F_xKINt3LczQQJl9aOHfnWp4yR>d&o zD6=d^bGW&DrbUZ3aa85~6fLqc=4uYJI;bj#u84duh=dZA$R7#uGLMAJO5~5obrA_S zSLD$QwoY;vLc!pJU>ubuO_*BQizA^>IV40ve5^y2*qc66Q+^%6bI2HqxTXt5WJHWq zBVx3Lk0;S(r^p0Hpco&?339y7Fiotw1;ylHKc=${i9|Q0_Mw;|hgX~w9f*<4Cm!WP zaXeNDpYdJg1&XsGA&sh{J(?WS;>pU&!10mQiKi;|K@SJrc*;Fn#Z&U2nyNTgC?P|B zLPj9Wk)RMlhC+)s+eEZ%Uf8D+suS`(AQ5xtO2m0bO~fmaER>MDL87G+suQ}5Ksag2 z6^}**mV}J833gjXBOzZJ64jT6gnVg87!_0#$x6si$hVn9sxp@r!eN%exyI^nqdch= zsZ6TLaIQrwo*2@ijF?t^N7STIG&pYoGxY7S!NbPkFo#gG6M0a7Pglz zW#%3!sxCc~dpL50bT)zHW3d0|t_gJ41csE^V3}DALyBrdE6X}$L|F`@Dyku0!Hp`s zMvRZihJ2+XF$^iH!J@Jlh7{FsgIvgvq8e3iF{G$Q6;&fCIrED$^GWjdi~ZRJGbv?G zR^d%bnUhtSlTzlSgckxPV{!w;aVcD0J1LodNb!3lqmhzkN=2(@5D>E%DP10XssSV= z14v2+cmg41@L4!jRY&ecAv4TJ50ID{mdA|9eFi;c=QmyFH|1Nb+2UHqY+>t| z@*RjKHRY?k$tQa3SLmp$I8z?YOpO*JYhmgf*-ZIbOvHNmIM6IlK&UDkMJQDU3L%+1 z3KhpOY9*x1XlUsM_RDHdR%UB)flNTc#moK1kcLNV4;;d03?gq(3O7^6v zhev6WMq?V;BWbiMjV@{QDj!{jR=rANNE)Nc$B=xCDos+-B&&QMkY2WLb5fpbLd{9S6OSS-;q5lu?m`M?)_f$q3BT4 z;Qf0rWK}0duj<*ex1ExOmA_gv=rVBS=1^FQ z%-0pXkkDJ8+-d#p6{>lmjUU$&q}pZ_9Z+j;!;n%?#yuxIuXy|YPk1IMZCaDd+g*JV zUdOv5NB00Ot;$KaUh@QYuQiFcD8*t zleK#7ot^of?pSx%zMXAdo#}k$*`DqlegDO&f26xBmv8Uw>3g)3q#>~a9YqP7prXR1bjqkZX1VcE*6b&Kg-ip3Zh;oSL3=zP-~4 zr2F~+ffMMkdk6Y*j;}kDb=GOQT*l5LX`Qm|Ufc2Y+Lp61+iUlvp&c_LrJHJ<8UiBc z)KkTLbB@>kuDu=tIQ9E`2eQ_;TSvf{PQaTTpPSw&|}{Vsud6u0Awd#8B=HgT3QV#;rZLhjVxt5;I_QmJqK%Y z4SD5|(%(R9#qtheP2{~qf6!x}wUi-0{MT3T6nxv+a|^zLf2+r(c$=P3&vty{08g(4 zI^u3ATRjIAd--#kv;6!KPr+{~yF5ew{>NxMTE6}rycYbs*@8B$b^A6HO@1ek!*_&? zW#37CcTlmN9@IEN0*(y9c-wcQ*HOA0<-jV0?XTiV0axyJ6du49RJH&@g4M6AQ$hf? z9{-rG)o6Spe`fmj_!XLqX}2g<-M5cH6G{o(U`nf&QwqkPk(unXj5Q09Q3tr(Es#(xxEg6lCU&na_#B9%;UU59bbE= z?f4J$c4eD<%W%0BB@i+u-G^Ok!^W)oENgigzA`?^n!1GX!w)EEG_%qOtw~ z{buYv*el873hx+fg+svX^;BQ&WF`+?0H(<^PRuh^F8&a@BQ?O`qRa~d*kok z|JeogXBU6AsQ!HT=g~=l(TR^PssA|qk4OIL z<$rqX*N1+6SpD_U>!a%RvFp#P*I&4PM7@6W`jmQo`ucn7_4lvOssHW#Z{ARUbL=-i zR(~`8@nQAjmp^{zlZ)za$A3Go{&w-xAF7`o|8!FQ zbjG=&Iv+TTpB??|wa+F#JEwj&^Vys#P7aHcMRAf^^WxM?syOwsIQ1h`Z-`STQJoT} z&a2||usB^5r;niZk~sYes#nG732}N>oW6*g%i=T`oSqk_7sQ!SRh$_UXP!s(f;aX)j-h%}oOxTE0n;<5#F-1KIQyJ9JA$ex&i(+^OX4gTpM6!Foe*bd#o0^Z?EB&@ z_@12?XBWf-NGHa`1o%$8ASS?f;+U9tOH3R`>y((dtcuBDFR#N?}Dazaeb zipfi25=kn|eu1L58VU#ngnDniW%* zaC2EqVf@s*m@cYfdQ411g6S8;H26&aNK8Ys={Lpn+hY11v`&d>a6I>%I9C+spw+n} z;@m6Z-0Nr^6X)I(=iU85Em|q3mA7{L0lXa7oQgwG4A4P;v&Xfd`nzBE-qr|#Z%%U zhF*G3Tq=r7N5rL9#H9&w3F9s;h|7TD@~F7{yts_9mtPl`A>`%b;xYzaJ|!+=;FV!< zWky_?M{7}ha8!KoV^z!zi@6ao2M?JW6LZgtIUqFmqL>4ZxgUzTV`6Sx%$*c-r^Vb^ zbWMo4DKR%A=H|rQHQXZd{-~G-$E$CMt5h8qS0_0k=qtB_O(I1pXkCaA_mPTK}%@0eXucJCv8vQY< zw@ah%ltxdMMo*VU&z43f(KS^Xok2BQ8og8+eNQcoy;T}Jj_OQlYy#C}X>1DBbZP87 zs`pA`AC$)CONU3)(&5R{VLUoKQ#w40>PqP_qiW!#&3+gquwZdohdZyx%Qdh^h+n}^;+^^=>2j-wjC zIWm89WKq3YEZ!_mtN-Ku#m}#uR{wcs@n7CPss7K!#k~XnioFDZcv%qscg9}?+{3>= zF}pNP(MAtJh;BDes=P+GYF{VxO!Ebg!fWF#p?L|VYD14L3?IK#>w9o zAeRNgSs4hwGzwl7laQqx|Nae8@2Z#reKo-S$HLkzf>t>|-6AYiL(uBLQw}iY$TBOg zAUsoW8AELN4@Q<*F$X4dSE~UAfn%{8IR1ZJ_ zuB}h2gPPhJQWJaB`yXif`a?T*KK!5m=s(^4;62~Cx9z^Y?Q~*W{zu2nZ{W(=C^DW_ z#qzXzGd`qNa305x-|nE(c~NN%;KydQRuHXPtIn#&&(4DM6F1a#)>>;F>UwLvwE^`S zYooOZb%S-AwHftV>nqk4)a$IR);84ZE&PBD^#&_|Sr)8;MsQThrsDE);1%9<`5 z)!UFXLKa5ZjU2!x%kJ%as;4`fdyH}*yVE@xXT95}<@5ILoU^^p&LG#4PxcP%>&_(8 zxlW_Erw1K5XKUpVI<5BWUOW9=*pNUaL(?|{N+GzKJym?`?@Tr zp*+S&w|8bBoIjW8-f#agRI~qtif>Z!r&RnI6^~KjCXHl1BG}f}mF>#6wOzx*+&UDV zU_c3Y`SJ$5gIiW0yrV+CyB&Lk`$ug*E{2w-DR>Te>_)uEA^&hfu^aQqELh&W|Ad!* zBl!e9udyG+8;K7uf{*f3|MI8f0eYo-f@zy-b`J)Sq{`+V9{d_1+_eusIm|V-r?c7K zeB-`MM_0D-nXY_iBNGkY)tS%tJ-l=0GtWG;rf`DK$X_ku?S@)5Edd7Gsmu31)x!>fcgfx8cKpQ2 zsdM?Q#(sT!Z^mxVxbplOgL3qq=fUeFWh-EW-+8@gc?a)WX@*rJ+xexCM&gg!WDqt6 zy>9Z$AH!*zxNTBwN;funSxWm!v{y^ER`O4EXUJ>+J1EMpor8DWN{%w!7o>1qf_#u& z!bH+UIT)}X$SdP`9nJg5A>by67)a%Mhm?L8e!Rx=!)Z*Wsj1Ld0i=#F8tcAx_n=o* z2k)<}s){SL_h$2HSTb!LfcdidMhmMflNQM%jTO(N>wE{`9C8c-R zo^do7$z~*)2t(MF(@YzNfF^MC=4%Mk{>^wAsGwR-6)h-ZKs$=qte9KO90n6LCh7kpymE!&!gIYa&x$K=c{%_OAnc zwRR`^f)+A%h(I-V=kf?d)X0=zG(D#=oUKF@+G5axMHFt#_GZ6 z9M2s;4Q;BCYng1})RR~K`9QvJAa5tB1F3M%))0%;Mp`3{!~*><5SQZ*WlAXxy$(s~ z2H0wF`>pK6qgI%Rtn2#fi@1>qX!8B?6Pxt{ab$_O(m21tCmAMq3pvk#JR0Ht~z8N9<#-o z>Z>7F?hDM^3DV4uXL5N*>2cQ64fjhMI_oM=%lGcC5C6%rh3)+`!^)kVWBmU?e~wb= zlm{n!;!^@vo!?9LrKBZUcyQ}V+q(PM3d>RyqKg;by=c(s>3|2Zd<)eDr2L1x*?KG+ zUXF6n$o!MMAsv4TFw$8WP0nB!TVMU`X!6w3u4p3kHvln z4a&V9K;Wd9!GUuNIVV!cwBq4#yyBJq4HPn^_%(JHiNA5#Dk}SeYgngYAY0Y05*c}C zy;UxG&3?PLr|e!^NK1-p^!;b^7Z%zw$}i~UnuES{AnL&gBUnZRJ?U6b@a;wBm>99!Rb#fddoY4 zZ=jrUmfw6h>Fu?5k`T=(DqAXl=Ar*MvRbq}h#E;Wn#rRK-o8?-75E3}tIm^V6He?K z9h`7!0kyR`^=)lEz1BcCwHw;n`Ule8$d)E=OMV6#cUWkNHu^wGplp_s>&qg4}B>U|!?{kK%VxqeO17pxBkgKL7D zg0;b#U=5FGx|`(PKad}=A+JqZ+hlN?4psIb6%>V>Ivjd%KE=BQpH!USzO?*k>8$Cp zGQAyky05dV-Pr`~_Ti+T?Qk~{r^f2)z!%dX4g@&aWNbS`3_`x$q#(^F1oa zruJ4UNDcma#)h-MPPeqO_`?T(m*8~1eSrEpsYs)60=@eVWZLtr+^ukOf{#e+JPIp& za#0kU@o^yNMZ5|jVr}yW{Qh;m4T|@70q;75gL+@^E5VH@*WjN&SXb|@_tpFUFLa{K AmH+?% literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6848f42082ec9227a0147415a5faf3f6a60a5a48 GIT binary patch literal 21837 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3a587669f53f1ef62d257c03e29b16ac20e43725 GIT binary patch literal 4781 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 literal 0 HcmV?d00001 diff --git a/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-38.pyc b/venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bfa1f357bc7e468a3d04a6ae79bed331401ab140 GIT binary patch literal 66295 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