yilunzhao chengyewang commited on
Commit
5e81459
·
verified ·
0 Parent(s):

Duplicate from mmya/10K_papers

Browse files

Co-authored-by: chengyewang <chengyewang@users.noreply.huggingface.co>

This view is limited to 50 files because it contains too many changes.   See raw diff
.gitattributes ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.lz4 filter=lfs diff=lfs merge=lfs -text
12
+ *.mds filter=lfs diff=lfs merge=lfs -text
13
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
14
+ *.model filter=lfs diff=lfs merge=lfs -text
15
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
16
+ *.npy filter=lfs diff=lfs merge=lfs -text
17
+ *.npz filter=lfs diff=lfs merge=lfs -text
18
+ *.onnx filter=lfs diff=lfs merge=lfs -text
19
+ *.ot filter=lfs diff=lfs merge=lfs -text
20
+ *.parquet filter=lfs diff=lfs merge=lfs -text
21
+ *.pb filter=lfs diff=lfs merge=lfs -text
22
+ *.pickle filter=lfs diff=lfs merge=lfs -text
23
+ *.pkl filter=lfs diff=lfs merge=lfs -text
24
+ *.pt filter=lfs diff=lfs merge=lfs -text
25
+ *.pth filter=lfs diff=lfs merge=lfs -text
26
+ *.rar filter=lfs diff=lfs merge=lfs -text
27
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
28
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
29
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
30
+ *.tar filter=lfs diff=lfs merge=lfs -text
31
+ *.tflite filter=lfs diff=lfs merge=lfs -text
32
+ *.tgz filter=lfs diff=lfs merge=lfs -text
33
+ *.wasm filter=lfs diff=lfs merge=lfs -text
34
+ *.xz filter=lfs diff=lfs merge=lfs -text
35
+ *.zip filter=lfs diff=lfs merge=lfs -text
36
+ *.zst filter=lfs diff=lfs merge=lfs -text
37
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
38
+ # Audio files - uncompressed
39
+ *.pcm filter=lfs diff=lfs merge=lfs -text
40
+ *.sam filter=lfs diff=lfs merge=lfs -text
41
+ *.raw filter=lfs diff=lfs merge=lfs -text
42
+ # Audio files - compressed
43
+ *.aac filter=lfs diff=lfs merge=lfs -text
44
+ *.flac filter=lfs diff=lfs merge=lfs -text
45
+ *.mp3 filter=lfs diff=lfs merge=lfs -text
46
+ *.ogg filter=lfs diff=lfs merge=lfs -text
47
+ *.wav filter=lfs diff=lfs merge=lfs -text
48
+ # Image files - uncompressed
49
+ *.bmp filter=lfs diff=lfs merge=lfs -text
50
+ *.gif filter=lfs diff=lfs merge=lfs -text
51
+ *.png filter=lfs diff=lfs merge=lfs -text
52
+ *.tiff filter=lfs diff=lfs merge=lfs -text
53
+ # Image files - compressed
54
+ *.jpg filter=lfs diff=lfs merge=lfs -text
55
+ *.jpeg filter=lfs diff=lfs merge=lfs -text
56
+ *.webp filter=lfs diff=lfs merge=lfs -text
57
+ # Video files - compressed
58
+ *.mp4 filter=lfs diff=lfs merge=lfs -text
59
+ *.webm filter=lfs diff=lfs merge=lfs -text
download_image.py ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import time
4
+ import requests
5
+ from concurrent.futures import ThreadPoolExecutor, as_completed
6
+ from tqdm import tqdm
7
+
8
+ IMAGES_DIR = 'images'
9
+ JSON_DIR = 'papers'
10
+ MAX_WORKERS = 16 # 并发线程数,可根据网络与磁盘性能调整
11
+ TIMEOUT = 20 # 请求超时(秒)
12
+ RETRIES = 2 # 失败重试次数(不含首次请求)
13
+
14
+ # 创建 images 文件夹(如果不存在)
15
+ os.makedirs(IMAGES_DIR, exist_ok=True)
16
+
17
+ # 收集 papers 文件夹中的所有 JSON 文件
18
+ json_files = [f for f in os.listdir(JSON_DIR) if f.endswith('.json')]
19
+
20
+ # 解析所有 JSON,收集待下载任务 (url, save_path)
21
+ tasks = []
22
+ for json_file in json_files:
23
+ json_file_path = os.path.join(JSON_DIR, json_file)
24
+ with open(json_file_path, 'r', encoding='utf-8') as f:
25
+ data = json.load(f)
26
+ image_paths = data.get("image_paths", {})
27
+ for _, value in image_paths.items():
28
+ image_url = value.get("url")
29
+ figure_path = value.get("figure_path")
30
+ if image_url and figure_path:
31
+ save_path = os.path.join(IMAGES_DIR, figure_path)
32
+ tasks.append((image_url, save_path))
33
+
34
+ def ensure_parent_dir(path: str):
35
+ parent = os.path.dirname(path)
36
+ if parent:
37
+ os.makedirs(parent, exist_ok=True)
38
+
39
+ def download_image(url: str, save_path: str) -> str:
40
+ """下载单张图片,带重试与超时。成功返回 save_path,失败抛异常。"""
41
+ ensure_parent_dir(save_path)
42
+ last_err = None
43
+ for attempt in range(RETRIES + 1):
44
+ try:
45
+ # 每次尝试使用独立请求,避免跨线程 Session 共享带来的问题
46
+ resp = requests.get(url, timeout=TIMEOUT)
47
+ resp.raise_for_status()
48
+ with open(save_path, 'wb') as f:
49
+ f.write(resp.content)
50
+ return save_path
51
+ except requests.exceptions.RequestException as e:
52
+ last_err = e
53
+ # 小退避,避免瞬时故障
54
+ if attempt < RETRIES:
55
+ time.sleep(0.8 * (attempt + 1))
56
+ # 若仍失败,抛出最后一次错误
57
+ raise last_err
58
+
59
+ if not tasks:
60
+ print("未发现需要下载的图片任务。")
61
+ else:
62
+ # 用进度条包裹 futures 的完成情况
63
+ successes, failures = 0, 0
64
+ with ThreadPoolExecutor(max_workers=MAX_WORKERS) as executor:
65
+ future_to_task = {executor.submit(download_image, url, path): (url, path) for url, path in tasks}
66
+ for future in tqdm(as_completed(future_to_task), total=len(future_to_task), desc="下载进度", unit="img"):
67
+ url, path = future_to_task[future]
68
+ try:
69
+ _ = future.result()
70
+ successes += 1
71
+ except Exception as e:
72
+ failures += 1
73
+ # 用 tqdm.write 保持与进度条输出不打架
74
+ tqdm.write(f"下载失败: {url} -> {path},错误: {e}")
75
+
76
+ print(f"完成:成功 {successes} 张,失败 {failures} 张,共 {len(tasks)} 张。")
download_pdf.py ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import requests
3
+ from tqdm import tqdm
4
+ from concurrent.futures import ThreadPoolExecutor, as_completed
5
+
6
+ def list_files_in_folder(folder_path):
7
+ file_list = []
8
+ for root, dirs, files in os.walk(folder_path):
9
+ for file in files:
10
+ file_list.append(file[:-5]) # 去掉最后 5 个字符,如 '.json'
11
+ return file_list
12
+
13
+ def download_single_pdf(arxiv_id, output_folder="pdf"):
14
+ base_url = "https://arxiv.org/pdf/"
15
+ pdf_url = f"{base_url}{arxiv_id}.pdf"
16
+ output_path = os.path.join(output_folder, f"{arxiv_id}.pdf")
17
+
18
+ if os.path.exists(output_path):
19
+ return f"跳过已存在文件: {arxiv_id}"
20
+
21
+ try:
22
+ response = requests.get(pdf_url, timeout=15)
23
+ response.raise_for_status()
24
+ with open(output_path, "wb") as f:
25
+ f.write(response.content)
26
+ return f"✅ 下载成功: {arxiv_id}"
27
+ except Exception as e:
28
+ return f"❌ 下载失败 {arxiv_id}: {e}"
29
+
30
+ def download_arxiv_pdfs(arxiv_ids, output_folder="pdf", max_workers=10):
31
+ os.makedirs(output_folder, exist_ok=True)
32
+ results = []
33
+
34
+ with ThreadPoolExecutor(max_workers=max_workers) as executor:
35
+ futures = {executor.submit(download_single_pdf, arxiv_id, output_folder): arxiv_id for arxiv_id in arxiv_ids}
36
+ for future in tqdm(as_completed(futures), total=len(futures), desc="Downloading PDFs"):
37
+ results.append(future.result())
38
+
39
+ # 打印总结
40
+ print("\n下载完成:")
41
+ for r in results:
42
+ print(r)
43
+
44
+ # 示例用法
45
+ if __name__ == "__main__":
46
+ folder_path = "papers"
47
+ all_files = list_files_in_folder(folder_path)
48
+ download_arxiv_pdfs(all_files, max_workers=20) # 可调整线程数
file_zip.py ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import zipfile
3
+ from tqdm import tqdm
4
+ from concurrent.futures import ThreadPoolExecutor, as_completed
5
+
6
+ # 设置文件夹路径
7
+ source_dir = '/home/yz979/palmer_scratch/chengye/1000_arxiv/pdf2figure/figure'
8
+ output_dir = '/home/yz979/palmer_scratch/chengye/1000_arxiv/tables'
9
+
10
+ # 获取源文件夹中所有文件
11
+ files = os.listdir(source_dir)
12
+ table_files = [f for f in files if 'Table' in f]
13
+ files = table_files
14
+
15
+ # 按每1000个文件分批进行压缩
16
+ batch_size = 1000
17
+
18
+ # 定义压缩单个批次文件的函数
19
+ def compress_batch(batch_index, batch_files):
20
+ # 创建输出zip文件的路径
21
+ zip_filename = os.path.join(output_dir, f'images_{batch_index}.zip')
22
+
23
+ # 创建并写入zip文件
24
+ with zipfile.ZipFile(zip_filename, 'w', zipfile.ZIP_DEFLATED) as zipf:
25
+ for file in batch_files:
26
+ file_path = os.path.join(source_dir, file)
27
+ zipf.write(file_path, arcname=file) # 将文件写入zip中,使用相对路径
28
+ return f'压缩完成: {zip_filename}'
29
+
30
+ # 使用ThreadPoolExecutor来并行处理批次
31
+ with ThreadPoolExecutor() as executor:
32
+ # 准备批次文件
33
+ futures = []
34
+ for i in range(0, len(files), batch_size):
35
+ batch_files = files[i:i + batch_size]
36
+ batch_index = i // batch_size + 1
37
+ futures.append(executor.submit(compress_batch, batch_index, batch_files))
38
+
39
+ # 显示进度条
40
+ for future in tqdm(as_completed(futures), total=len(futures), desc="压缩文件中", unit="批次"):
41
+ print(future.result())
42
+
43
+ print('所有文件已压缩完成!')
find_1k_papers.py ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import random
3
+ import shutil
4
+
5
+ # 源文件夹和目标文件夹路径
6
+ source_dir = '/home/yz979/scratch/chengye/scraping/papers'
7
+ target_dir = '/home/yz979/scratch/chengye/scraping/1000_arxiv/papers'
8
+
9
+ # 获取所有json文件
10
+ json_files = []
11
+
12
+ for root, dirs, files in os.walk(source_dir):
13
+ for file in files:
14
+ if file.endswith('.json'):
15
+ json_files.append(os.path.join(root, file))
16
+
17
+ # 随机选择1000个文件
18
+ selected_files = random.sample(json_files, 1000)
19
+
20
+ # 确保目标文件夹存在
21
+ os.makedirs(target_dir, exist_ok=True)
22
+
23
+ # 将选中的文件复制到目标文件夹
24
+ for file in selected_files:
25
+ shutil.copy(file, target_dir)
26
+
27
+ print(f"成功复制了{len(selected_files)}个文件到目标文件夹。")
images/images_1.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc7ea20a73807d6039860773b66a94e7dfd29edb6b55ab0d48628fadcc575c4c
3
+ size 724167947
images/images_10.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28411656a3bacfbb185ac41a25b9818640491363dd7bc3f7c5a1fde1569e3394
3
+ size 618609993
images/images_11.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6b2c40726bd7b2ba80b90d355ac0aa2a2627719d0249e0bf11804145eb36c08
3
+ size 602452580
images/images_12.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c740b88055eae18423a4299c154bf535fd4e466a162e2a9a278307878ad4c2f5
3
+ size 670597036
images/images_13.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abb7285a8ac818a9f20ec0fc105f8585db68646345ab5fe436c177179af6e80c
3
+ size 612271510
images/images_14.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81329e523a3577aa4e62e1548a3c6d72d47e7ab80431e315a9bfbb395fa53e7f
3
+ size 583132117
images/images_15.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1ca5caf5f1797cdb380136cacf8a4160afe59ae7dcda5ad03201448baf3aabc
3
+ size 550029531
images/images_16.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b21e9f88c7301ccdf26bd2392f532a170f00246c82ff96cbe97fdfb87cba0c08
3
+ size 673214626
images/images_17.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:449165c357028d2fd0a784505e7377a7720b3f0dd3d6dfba57571d15a0eac5ae
3
+ size 663417651
images/images_18.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e50c309f5ec219c23087a2e9991ea532fcaa2dcdcffb9b4d8124357ae5b1e04
3
+ size 672942454
images/images_19.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:746765c2db3ec46184f183530153d82582270015270f9257867950c03379ab12
3
+ size 617566486
images/images_2.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9376b171431adb3457a7173aa62397c6328a7dc485cf4af38473d20553ebf631
3
+ size 671892171
images/images_20.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f01875ac78887e6e4c225405298b19ca9affa427f4b5cc010aea6af1e718c78
3
+ size 597879133
images/images_21.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67f88e64f44331a43832d35b824d0c9a7b391ac2850a2ff37c7ec6ec0e5b9539
3
+ size 519840125
images/images_22.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3c9f1e08fe58902e54b3f36e9c984b965fcaed5959dd90266f512c60d26c25d
3
+ size 579083873
images/images_23.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a13c2108275225ae51962f91dceccdbd2d62a57c1978aced136da1326c40774
3
+ size 626738014
images/images_24.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e204c15c2036b67be8f4929a1b29e87b47aa789fc981391c0bcc965eb5dfade
3
+ size 585976489
images/images_25.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c17437ced3a85821d86dafb7f082034dde922fc54aae676f7ea5b176dca8a8c7
3
+ size 656252149
images/images_26.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ac2c6519771aa78ac1d5689b44ce1dfd78933758774298a581dd7597ed450d7
3
+ size 646493939
images/images_27.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdb4e1e3a720839f455da8191ed36d710bd13dc8d7e4e5062cae2c9794d1fa75
3
+ size 592966495
images/images_28.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91b411a1c75526044be05d628cb774d8defad2203e25d35bced8b16435108e43
3
+ size 601624062
images/images_29.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a1640de5b7923cdf38fcbe6f4da19d8ee6df2a97c5ae959c2b5824feda365b3
3
+ size 661912259
images/images_3.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd77caf70ca5733715c3bbc9a5b1ead532c14c400d431179039aa4e758720d45
3
+ size 585331799
images/images_30.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d04555e6d3b1f855c8d2fc57ad2f9a380eab3dd6fff796f4c19e25e201bfcb30
3
+ size 590498550
images/images_31.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a56a82b953b63ed92e6cf6842c165aa8b5fe16be89873302d5fe0e93ba56cb6
3
+ size 655163049
images/images_32.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2fe1ff5416ccdb5c151ebab5fa6ddec5a6cef759699e943140b114a4d18ba170
3
+ size 731514256
images/images_33.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8d66bcc0366916bcc9f530be3295badd2d5c9d19cc3776faeaf29243b450cce
3
+ size 651459368
images/images_34.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7aca7a44c287270279efe19b2f653d596992ff47cf047eb8a945e37d5b07cdae
3
+ size 619763710
images/images_35.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5cce9b49b6658fc7068503918b6e055089250cf6fe24feaac61d6ce07c6be157
3
+ size 601815297
images/images_36.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75b48e4215798784f0f4be5d3c00e642a6e2680465c2f86115d4f40f59b16fea
3
+ size 618364660
images/images_37.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f7aa0d4d9076c70658454f55940f0cd03bc2421c1bac8e0b5ac6435dff99b0c
3
+ size 702661227
images/images_38.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a2b1a46c80e71bc03c5d73f08ff4a439fecb7377c87e821e4e10fbfde6e32ed
3
+ size 601129364
images/images_39.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b99bfe996546b3ecaebbc474dc13d4300ae9f8ed6cec03ad0b6c4d0272a5f138
3
+ size 623005586
images/images_4.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0c605c80525f149f12a26368e9e83c27807d65ec7d2f2b88c3ac165246f3d53
3
+ size 613736746
images/images_40.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:315d95b87b254f89d1fc6d2dc26628ac03e5332f88cd9b863a3541a8e8350a3d
3
+ size 626255263
images/images_41.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:acefde32d43eac05e24bd1d57d1d90a1a357c8878a8988a1c30a18f1f140b888
3
+ size 680698726
images/images_42.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9d7e379b568bd7352a5f8e5a08f7e88d7625dab7dba96bf498f894b0c638271
3
+ size 584880274
images/images_43.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ede9f7afd25b8f54ced97c02f74f4332bb05269c32824e77ed625cd5265dbb67
3
+ size 627747734
images/images_44.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1971ceb7f28dcffc3b8b0350aa4e1f21c31a3db2f2b689bd943c4f66f4c7b80e
3
+ size 607417995
images/images_45.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd2f99e0ae5e87da64905efa13199a28fc22c66fe02eff5fd6d5867a457d9d65
3
+ size 635034142
images/images_46.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:070a30359f5ec407825a2a90d16baeb26e2e91c8c357f0ce58ebfadb3921218f
3
+ size 588115868
images/images_47.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c10a93056bcf4bf3885be1eb9ee9722c7f68bd528c2954c65b0ff0781c77948a
3
+ size 612788378
images/images_48.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aac05b1485b52d2bdfaa9012e8e3d4fb31fe64729f131cc2924a892b14c48f70
3
+ size 601972832
images/images_49.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f21dd55a80b68099201909486bae741840fefe5c7d05eb3a129302e84c1b8d6d
3
+ size 578169611
images/images_5.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:428a2fb1b75a7c230a943de15a0296ff25c2d5a3adeb7cc76254616176b71245
3
+ size 667989870