ybbwcwaps commited on
Commit
b0c0f32
1 Parent(s): 711b041

some FakeVD

Browse files
Files changed (48) hide show
  1. FakeVD/code_test/Text_Feature_Extractor/calc.py +12 -0
  2. FakeVD/code_test/Text_Feature_Extractor/data/test.py +14 -0
  3. FakeVD/code_test/Text_Feature_Extractor/main.py +149 -0
  4. FakeVD/code_test/Text_Feature_Extractor/test.py +10 -0
  5. FakeVD/code_test/Text_Feature_Extractor/v0.txt +16 -0
  6. FakeVD/code_test/Text_Feature_Extractor/videos-0.txt +1 -0
  7. FakeVD/code_test/Text_Feature_Extractor/wav2text.py +18 -0
  8. FakeVD/code_test/VGG19_Feature_Extractor/outputs/douyin_6571001202379590925.pkl +3 -0
  9. FakeVD/code_test/VGG19_Feature_Extractor/test.py +11 -0
  10. FakeVD/code_test/VGG19_Feature_Extractor/vgg19_feature.py +108 -0
  11. FakeVD/code_test/VGGish_Feature_Extractor/mel_features.py +223 -0
  12. FakeVD/code_test/VGGish_Feature_Extractor/my_vggish.py +72 -0
  13. FakeVD/code_test/VGGish_Feature_Extractor/my_vggish_folder.py +51 -0
  14. FakeVD/code_test/VGGish_Feature_Extractor/my_vggish_folder_fun.py +57 -0
  15. FakeVD/code_test/VGGish_Feature_Extractor/my_vggish_fun.py +57 -0
  16. FakeVD/code_test/VGGish_Feature_Extractor/vggish.py +189 -0
  17. FakeVD/code_test/VGGish_Feature_Extractor/vggish_input.py +98 -0
  18. FakeVD/code_test/VGGish_Feature_Extractor/vggish_modified.py +200 -0
  19. FakeVD/code_test/VGGish_Feature_Extractor/vggish_params.py +53 -0
  20. FakeVD/code_test/torchvggish/hubconf.py +15 -0
  21. FakeVD/code_test/torchvggish/torchvggish/mel_features.py +223 -0
  22. FakeVD/code_test/torchvggish/torchvggish/vggish.py +189 -0
  23. FakeVD/code_test/torchvggish/torchvggish/vggish_input.py +98 -0
  24. FakeVD/code_test/torchvggish/torchvggish/vggish_params.py +53 -0
  25. FakeVD/code_test/utils/dataloader.py +593 -0
  26. FakeVD/code_test/utils/metrics.py +26 -0
  27. FakeVD/code_test/utils/vggish_modified.py +200 -0
  28. FakeVD/dataset/data-split/event/vid_fold_1.txt +970 -0
  29. FakeVD/dataset/data-split/event/vid_fold_2.txt +930 -0
  30. FakeVD/dataset/data-split/event/vid_fold_3.txt +955 -0
  31. FakeVD/dataset/data-split/event/vid_fold_4.txt +920 -0
  32. FakeVD/dataset/data-split/event/vid_fold_5.txt +994 -0
  33. FakeVD/dataset/data-split/temporal/vid_time3_test.txt +720 -0
  34. FakeVD/dataset/data-split/temporal/vid_time3_train.txt +4002 -0
  35. FakeVD/dataset/data-split/temporal/vid_time3_val.txt +773 -0
  36. FakeVD/dataset/data.json +0 -0
  37. FakeVD/dataset/my_datajson/all_1.json +0 -0
  38. FakeVD/dataset/my_datajson/all_1_modified.json +0 -0
  39. FakeVD/dataset/my_datajson/missing_vids_test.txt +195 -0
  40. FakeVD/dataset/my_datajson/missing_vids_train.txt +780 -0
  41. FakeVD/dataset/my_datajson/test_1.json +0 -0
  42. FakeVD/dataset/my_datajson/test_1.txt +545 -0
  43. FakeVD/dataset/my_datajson/test_1_1.txt +350 -0
  44. FakeVD/dataset/my_datajson/test_1_modified.json +0 -0
  45. FakeVD/dataset/my_datajson/train_1.json +0 -0
  46. FakeVD/dataset/my_datajson/train_1.txt +2130 -0
  47. FakeVD/dataset/my_datajson/train_1_1.txt +1350 -0
  48. FakeVD/dataset/my_datajson/train_1_modified.json +0 -0
FakeVD/code_test/Text_Feature_Extractor/calc.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import threading
2
+ import os
3
+ video_path = "./videos"
4
+ files = os.listdir(video_path)
5
+ thread_num = 1
6
+ i = 0
7
+ for i in range(thread_num):
8
+ open("videos-%d.txt" % (i), "w").write('')
9
+ for file in files:
10
+ if file.endswith('.mp4'):
11
+ open("videos-%d.txt" % (i % thread_num), "a").write(file + '\n')
12
+ i += 1
FakeVD/code_test/Text_Feature_Extractor/data/test.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+
3
+ # 假设这是你的 JSON 文件路径
4
+ json_file_path = 'FakeSV/code_test/Text_Feature/data/douyin_6700861687563570439.json'
5
+
6
+ # 打开并读取 JSON 文件内容
7
+ with open(json_file_path, 'r', encoding='utf-8') as file:
8
+ data = json.load(file) # 解析 JSON 数据为字典
9
+
10
+ # 获取 'wav_result' 列表中第一个元素的 'text' 字段
11
+ text = data['wav_result'][0]['text']
12
+
13
+ # 打印获取的文本
14
+ print(text)
FakeVD/code_test/Text_Feature_Extractor/main.py ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from multiprocessing import Pool
2
+ from PIL import Image
3
+ import sys
4
+
5
+ # sys.path.append('/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/code_test')
6
+
7
+ # from imageocr import imageocr
8
+ # from Extract_audio import extract_audio
9
+ from FakeVD.code_test.VGGish_Feature_Extractor.my_vggish_fun import vggish_audio as extract_audio
10
+ from FakeVD.code_test.VGG19_Feature_Extractor.vgg19_feature import load_model_vgg19
11
+
12
+ # from Imghash import imghash
13
+ # from Extract_frame import V2frame
14
+ from FakeVD.code_test.Text_Feature_Extractor.wav2text import wav2text
15
+ import os
16
+ import shutil
17
+ # from Sentence_distance import sentence_distance
18
+ import time
19
+ import json
20
+ import cv2
21
+ # audio_path = '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/dataset/1.wav'
22
+ # frame_path = ''
23
+ # datasave_path = '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/code_test/Text_Feature/data'
24
+ # video_path = '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/code_test/Text_Feature/videos'
25
+
26
+ # def get_string_from_list(A):
27
+ # if type(A) == list:
28
+ # ret = ''
29
+ # for i in A:
30
+ # ret += get_string_from_list(i)
31
+ # return ret
32
+ # if type(A) == str:
33
+ # return A
34
+ # return ""
35
+
36
+
37
+ # ocr_ret = []
38
+
39
+
40
+ # def ocr_frame(frame):
41
+ # img_path = os.path.join(frame_path, str(frame)+'.jpg')
42
+ # now_ocr_result = imageocr.work(img_path)
43
+ # ocr_ret.append({'frame': frame, 'result': now_ocr_result})
44
+
45
+
46
+ # def get_frame(x):
47
+ # return x['frame']
48
+
49
+
50
+ # def OCR(path):
51
+ # imgH = imghash()
52
+ # cropimgH = imghash()
53
+ # # 返回结果
54
+ # ret = []
55
+
56
+ # # 当前帧
57
+ # now_frame = -15
58
+ # # 上一次执行ocr的帧
59
+ # last_frame = 0
60
+ # # 上一次的ocr结果拼接字符串
61
+ # last_ocr_result_string = "ocr at first"
62
+ # # 限
63
+ # k = 8
64
+ # # 历史最高k点
65
+ # kmax = 20
66
+ # # 匹配标识
67
+ # marchflag = False
68
+
69
+ # while True:
70
+ # now_frame += 15
71
+
72
+ # img_path = os.path.join(frame_path, str(now_frame)+'.jpg')
73
+
74
+ # if not os.path.exists(img_path):
75
+ # print('[OCR all] done', now_frame)
76
+ # break
77
+
78
+ # # 相似度高,无需ocr
79
+ # if not imgH.work(Image.open(img_path), k):
80
+ # print("continue " + str(now_frame))
81
+ # continue
82
+
83
+ # print('[OCR working] ocr at frame', now_frame)
84
+
85
+ # # 进行ocr
86
+ # now_ocr_result = imageocr.work(img_path, cropimgH)
87
+
88
+ # # 将识别结果添加
89
+ # ret.append({'frame': now_frame, 'result': now_ocr_result})
90
+ # # print('[OCR done] ocr at frame', now_frame)
91
+ # return ret
92
+
93
+
94
+ # 处理视频
95
+ def video_work(w2t, model_vggish, video_file_path, output_path, audio_path='./FakeVD/code_test/preprocessed_feature/1.wav'):
96
+ video_file_name = os.path.basename(video_file_path)
97
+ video_id = os.path.splitext(video_file_name)[0]
98
+
99
+ st = time.time()
100
+ print('[video_work] working')
101
+ # v2f = V2frame()
102
+
103
+ ##################
104
+ # w2t = wav2text()
105
+
106
+ # 分离wav
107
+ print('[extract audio]', video_file_path, audio_path)
108
+ extract_audio(model_vggish, video_file_path, feature_path="./FakeVD/code_test/preprocessed_feature/1.pkl", audio_file_path=audio_path)
109
+ # 分离帧
110
+ # print('[extract frame]', path, audio_path)
111
+ # v2f.work(path, frame_path)
112
+
113
+ # 进行wav处理
114
+ print('[wav2text] working')
115
+ wav_result = w2t.work(audio_path)
116
+ #print('[wav_result]', wav_result)
117
+
118
+ # 进行ocr处理
119
+ # ocr_result = OCR(frame_path)
120
+ # print('ocr_result', ocr_result)
121
+
122
+ # cap = cv2.VideoCapture(path)
123
+ # fps = cap.get(cv2.CAP_PROP_FPS)
124
+
125
+ print("time: " + str(time.time() - st))
126
+
127
+ result = {"video_id": video_id, 'text': wav_result[0]['text']} # , 'ocr_result': ocr_result , "fps": fps
128
+
129
+ with open(output_path, 'w') as f:
130
+ f.write(json.dumps(result, ensure_ascii=False))
131
+
132
+
133
+ # if __name__ == '__main__':
134
+ # file = sys.argv[1]
135
+ # r = open(file, "r").readlines()
136
+ # for name in r:
137
+ # name = name.strip()
138
+ # data_path = os.path.join(datasave_path, name[:-4]+'.json')
139
+ # if os.path.exists(data_path):
140
+ # # print("continue " + name)
141
+ # continue
142
+ # if name == '':
143
+ # continue
144
+ # path = os.path.join(video_path, name)
145
+
146
+ # result = video_work(path, name[:-4])
147
+
148
+ # with open(data_path, 'w') as f:
149
+ # f.write(json.dumps(result, ensure_ascii=False))
FakeVD/code_test/Text_Feature_Extractor/test.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ from funasr import AutoModel
2
+ # paraformer-zh is a multi-functional asr model
3
+ # use vad, punc, spk or not as you need
4
+ model = AutoModel(model="paraformer-zh", vad_model="fsmn-vad", punc_model="ct-punc",
5
+ # spk_model="cam++"
6
+ )
7
+ res = model.generate(input="/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/dataset/1.wav",
8
+ batch_size_s=300,
9
+ hotword='魔搭')
10
+ print(res)
FakeVD/code_test/Text_Feature_Extractor/v0.txt ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ckpt: /home/group2024-gen6/.cache/modelscope/hub/damo/speech_paraformer-large-vad-punc_asr_nat-zh-cn-16k-common-vocab8404-pytorch/model.pt
2
+ ckpt: /home/group2024-gen6/.cache/modelscope/hub/iic/speech_fsmn_vad_zh-cn-16k-common-pytorch/model.pt
3
+ ckpt: /home/group2024-gen6/.cache/modelscope/hub/iic/punc_ct-transformer_cn-en-common-vocab471067-large/model.pt
4
+ [video_work] working
5
+ [enc_init] working
6
+ [Errno 20] Not a directory: '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/dataset/1.wav'
7
+ [Errno 2] No such file or directory: ''
8
+ [extract audio] /mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/code_test/Text_Feature/videos/douyin_6700861687563570439.mp4 /mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/dataset/1.wav
9
+ MoviePy - Writing audio in /mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/dataset/1.wav
10
+ MoviePy - Done.
11
+ Audio features have been saved to ./1.pkl
12
+ [wav2text] working
13
+ [wav_result] [{'key': '1', 'text': '故宫每到墙顶都不会有鸟落下。因为在修建故宫时,古人考虑到墙顶屋檐边上,如果有鸟停下,多多少少会有鸟粪留下会污染空气,也影响了红墙黄瓦的美观。所以就创造了一种叫鹰不落的墙顶。它是根据鸟类的纸距计算出墙体的距离。整个房檐瓦片上都有坡度,这样使鸟抓不住,而且也不适合鸟类的站立,久而久之,鸟类就不会在此停留。咱们不得不佩服古人那无穷无尽的智慧,还有那环保意识。', 'timestamp': [[860, 1040], [1040, 1280], [1400, 1580], [1580, 1800], [1800, 2040], [2060, 2300], [2300, 2500], [2500, 2640], [2640, 2820], [2820, 2980], [2980, 3180], [3180, 3360], [3360, 3600], [3880, 4080], [4080, 4320], [4320, 4560], [4560, 4800], [4800, 5040], [5060, 5220], [5220, 5400], [5400, 5640], [5760, 5940], [5940, 6160], [6160, 6360], [6360, 6540], [6540, 6780], [6960, 7200], [7260, 7500], [7600, 7800], [7800, 8000], [8000, 8220], [8220, 8460], [8679, 8880], [8880, 9060], [9060, 9240], [9240, 9480], [9500, 9660], [9660, 9900], [10180, 10380], [10380, 10600], [10600, 10800], [10800, 11040], [11060, 11220], [11220, 11420], [11420, 11560], [11560, 11760], [11760, 11980], [11980, 12220], [12480, 12720], [12740, 12880], [12880, 13080], [13080, 13300], [13300, 13540], [13760, 14000], [14000, 14200], [14200, 14440], [14440, 14660], [14660, 14900], [14920, 15160], [15340, 15580], [15580, 15820], [15820, 16020], [16020, 16180], [16180, 16420], [16820, 17020], [17020, 17260], [17280, 17520], [17540, 17780], [17800, 18040], [18040, 18240], [18240, 18400], [18400, 18640], [18660, 18880], [18880, 19120], [19120, 19300], [19300, 19540], [19540, 19680], [19680, 19900], [19900, 20140], [20340, 20500], [20500, 20700], [20700, 20860], [20860, 21100], [21140, 21380], [21380, 21560], [21560, 21700], [21700, 21920], [21920, 22160], [22320, 22520], [22520, 22760], [22760, 23000], [23040, 23280], [23300, 23540], [23540, 23680], [23680, 23900], [23900, 24140], [24380, 24560], [24560, 24800], [24840, 25080], [25100, 25340], [25580, 25820], [25820, 26060], [26120, 26360], [26440, 26600], [26600, 26820], [26820, 27020], [27020, 27260], [27560, 27740], [27740, 27920], [27920, 28100], [28100, 28340], [28460, 28640], [28640, 28820], [28820, 29060], [29180, 29360], [29360, 29600], [29700, 29920], [29920, 30160], [30180, 30380], [30380, 30620], [30760, 30980], [30980, 31140], [31140, 31300], [31300, 31440], [31440, 31680], [32020, 32220], [32220, 32420], [32420, 32640], [32640, 32880], [33060, 33300], [33300, 33540], [33580, 33820], [33820, 34020], [34020, 34260], [34380, 34560], [34560, 34800], [34840, 35080], [35100, 35340], [35480, 35580], [35580, 35820], [35840, 36000], [36000, 36240], [36240, 36440], [36440, 36660], [36660, 36900], [37060, 37200], [37200, 37380], [37380, 37620], [37700, 37920], [37920, 38160], [38200, 38400], [38400, 38580], [38580, 38720], [38720, 38940], [38940, 39180], [39260, 39420], [39420, 39660], [39660, 39880], [39880, 40120], [40200, 40280], [40280, 40520], [40600, 41005]]}]
14
+ [Errno 20] Not a directory: '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/dataset/1.wav'
15
+ [Errno 2] No such file or directory: ''
16
+ time: 6.538952589035034
FakeVD/code_test/Text_Feature_Extractor/videos-0.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ douyin_6700861687563570439.mp4
FakeVD/code_test/Text_Feature_Extractor/wav2text.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from modelscope.pipelines import pipeline
2
+ from modelscope.utils.constant import Tasks
3
+
4
+ # ./FakeVD/Models/speech_paraformer-large-vad-punc_asr_nat-zh-cn-16k-common-vocab8404-pytorch/
5
+ # damo/speech_paraformer-large-vad-punc_asr_nat-zh-cn-16k-common-vocab8404-pytorch
6
+ class wav2text:
7
+ def __init__(self) -> None:
8
+ self.model = pipeline('auto-speech-recognition',
9
+ './FakeVD/Models/speech_paraformer-large-vad-punc_asr_nat-zh-cn-16k-common-vocab8404-pytorch/', device="cpu")
10
+
11
+ def work(self, wav_path):
12
+ return self.model(wav_path,)
13
+
14
+
15
+ if __name__ == "__main__":
16
+ model = wav2text()
17
+ result = model.work('./FakeVD/dataset/videos_1/douyin_6671891732524829965.mp4')
18
+ print(result)
FakeVD/code_test/VGG19_Feature_Extractor/outputs/douyin_6571001202379590925.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:425f2e4b59dad3bff21fa7bb4089ac4775beefbb0d9e33c722af1845fbfd6e92
3
+ size 245922
FakeVD/code_test/VGG19_Feature_Extractor/test.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # cPickle是python2系列用的,3系列已经不用了,直接用pickle就好了
2
+ import pickle
3
+
4
+ # 重点是rb和r的区别,rb是打开2进制文件,文本文件用r
5
+ # f = open('/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/code/VGG19/outputs/video_features.pkl','rb')
6
+ f = open('/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/dataset/ptvgg19_frames/6571001202379590925.pkl','rb')
7
+ data = pickle.load(f)
8
+
9
+ print(data)
10
+ print(len(data))
11
+ print(data.shape)
FakeVD/code_test/VGG19_Feature_Extractor/vgg19_feature.py ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import cv2
2
+ import torch
3
+ import torchvision.models as models
4
+ import torchvision.transforms as transforms
5
+ import numpy as np
6
+ import pickle
7
+ from PIL import Image
8
+ import os
9
+
10
+
11
+ def load_model_vgg19():
12
+
13
+ # 加载预训练的 VGG19 模型
14
+ vgg19 = models.vgg19(pretrained=True)
15
+
16
+
17
+ # structure = torch.nn.Sequential(*list(vgg19.children())[:])
18
+ # # 查看整体结构
19
+ # print(structure)
20
+ # # 查看模型各部分名称 ['features', 'avgpool', 'classifier']
21
+ # print('模型各部分名称', vgg19._modules.keys())
22
+ # # 原始feature
23
+ # features = torch.nn.Sequential(*list(vgg19.children())[0])
24
+ # # 原始classifier
25
+ # classifier = torch.nn.Sequential(*list(vgg19.children())[-1])
26
+
27
+ new_classifier = torch.nn.Sequential(*list(vgg19.children())[-1][:4])
28
+
29
+ vgg19.classifier = new_classifier
30
+ vgg19.eval()
31
+
32
+ return vgg19
33
+
34
+
35
+ # 定义图像预处理步骤
36
+ transform = transforms.Compose([
37
+ transforms.Resize(256),
38
+ transforms.CenterCrop(224),
39
+ transforms.ToTensor(),
40
+ transforms.Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]),
41
+ ])
42
+
43
+ # 处理视频,提取帧并特征,并保存为 .pkl 文件
44
+ def extract_frames_and_features(model_vgg19, video_path):
45
+ # 打开视频文件
46
+ cap = cv2.VideoCapture(video_path)
47
+ feature_list = []
48
+ frame_count = 0
49
+ buffer = []
50
+
51
+ count = 0
52
+ while True:
53
+ # 读取视频帧
54
+ ret, frame = cap.read()
55
+ if not ret:
56
+ break
57
+ # 将 BGR 格式的帧转换为 RGB 格式
58
+ frame_count += 1
59
+ if frame_count % 16 == 0:
60
+ frame_rgb = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
61
+ # 将帧转换为 PIL.Image
62
+ pil_frame = Image.fromarray(frame_rgb)
63
+ # 将帧进行预处理
64
+ input_tensor = transform(pil_frame)
65
+ # 添加一个批次维度
66
+ input_batch = input_tensor.unsqueeze(0)
67
+ # 使用 VGG19 特征提取器提取特征
68
+ with torch.no_grad():
69
+ output = model_vgg19(input_batch).data[0]
70
+ feature_list.append(output.numpy())
71
+ # 关闭视频文件
72
+ cap.release()
73
+ feature_matrix = np.stack(feature_list)
74
+ print(feature_matrix.shape)
75
+ return feature_matrix
76
+
77
+ # # 视频文件路径
78
+ # video_path = "/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/code/C3D_Feature_Extractor/raw_video/douyin_6571001202379590925.mp4"
79
+ # # 提取视频帧并特征
80
+ # video_features = extract_frames_and_features(video_path)
81
+ # # 将特征列表保存为 .pkl 文件
82
+ # # 确保输出目录存在,如果不存在则创建
83
+ # output_dir = 'outputs'
84
+ # if not os.path.exists(output_dir):
85
+ # os.makedirs(output_dir)
86
+ # output_file_path = os.path.join(output_dir, 'video_features.pkl')
87
+ # with open(output_file_path, 'wb') as f:
88
+ # pickle.dump(video_features, f)
89
+ # print("Video features saved to", output_file_path)
90
+
91
+ def process_video(model_vgg19, video_name, input_folder, output_folder):
92
+ # 确保输出目录存在,如果不存在则创建
93
+ if not os.path.exists(output_folder):
94
+ os.makedirs(output_folder)
95
+ video_path = os.path.join(input_folder, video_name)
96
+ video_features = extract_frames_and_features(model_vgg19, video_path)
97
+ output_file_path = os.path.join(output_folder, video_name.split('.')[0] + '.pkl')
98
+ with open(output_file_path, 'wb') as f:
99
+ pickle.dump(video_features, f)
100
+ print("Video features saved to", output_file_path)
101
+
102
+ if __name__ == "__main__":
103
+ input_folder = './FakeVD/code/C3D_Feature_Extractor/raw_video'
104
+ output_folder = './FakeVD/code/VGG19/outputs'
105
+ video_name = 'douyin_6571001202379590925.mp4'
106
+
107
+ model_vgg19 = load_model_vgg19()
108
+ process_video(model_vgg19, video_name, input_folder, output_folder)
FakeVD/code_test/VGGish_Feature_Extractor/mel_features.py ADDED
@@ -0,0 +1,223 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright 2017 The TensorFlow Authors All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+
16
+ """Defines routines to compute mel spectrogram features from audio waveform."""
17
+
18
+ import numpy as np
19
+
20
+
21
+ def frame(data, window_length, hop_length):
22
+ """Convert array into a sequence of successive possibly overlapping frames.
23
+
24
+ An n-dimensional array of shape (num_samples, ...) is converted into an
25
+ (n+1)-D array of shape (num_frames, window_length, ...), where each frame
26
+ starts hop_length points after the preceding one.
27
+
28
+ This is accomplished using stride_tricks, so the original data is not
29
+ copied. However, there is no zero-padding, so any incomplete frames at the
30
+ end are not included.
31
+
32
+ Args:
33
+ data: np.array of dimension N >= 1.
34
+ window_length: Number of samples in each frame.
35
+ hop_length: Advance (in samples) between each window.
36
+
37
+ Returns:
38
+ (N+1)-D np.array with as many rows as there are complete frames that can be
39
+ extracted.
40
+ """
41
+ num_samples = data.shape[0]
42
+ num_frames = 1 + int(np.floor((num_samples - window_length) / hop_length))
43
+ shape = (num_frames, window_length) + data.shape[1:]
44
+ strides = (data.strides[0] * hop_length,) + data.strides
45
+ return np.lib.stride_tricks.as_strided(data, shape=shape, strides=strides)
46
+
47
+
48
+ def periodic_hann(window_length):
49
+ """Calculate a "periodic" Hann window.
50
+
51
+ The classic Hann window is defined as a raised cosine that starts and
52
+ ends on zero, and where every value appears twice, except the middle
53
+ point for an odd-length window. Matlab calls this a "symmetric" window
54
+ and np.hanning() returns it. However, for Fourier analysis, this
55
+ actually represents just over one cycle of a period N-1 cosine, and
56
+ thus is not compactly expressed on a length-N Fourier basis. Instead,
57
+ it's better to use a raised cosine that ends just before the final
58
+ zero value - i.e. a complete cycle of a period-N cosine. Matlab
59
+ calls this a "periodic" window. This routine calculates it.
60
+
61
+ Args:
62
+ window_length: The number of points in the returned window.
63
+
64
+ Returns:
65
+ A 1D np.array containing the periodic hann window.
66
+ """
67
+ return 0.5 - (0.5 * np.cos(2 * np.pi / window_length *
68
+ np.arange(window_length)))
69
+
70
+
71
+ def stft_magnitude(signal, fft_length,
72
+ hop_length=None,
73
+ window_length=None):
74
+ """Calculate the short-time Fourier transform magnitude.
75
+
76
+ Args:
77
+ signal: 1D np.array of the input time-domain signal.
78
+ fft_length: Size of the FFT to apply.
79
+ hop_length: Advance (in samples) between each frame passed to FFT.
80
+ window_length: Length of each block of samples to pass to FFT.
81
+
82
+ Returns:
83
+ 2D np.array where each row contains the magnitudes of the fft_length/2+1
84
+ unique values of the FFT for the corresponding frame of input samples.
85
+ """
86
+ frames = frame(signal, window_length, hop_length)
87
+ # Apply frame window to each frame. We use a periodic Hann (cosine of period
88
+ # window_length) instead of the symmetric Hann of np.hanning (period
89
+ # window_length-1).
90
+ window = periodic_hann(window_length)
91
+ windowed_frames = frames * window
92
+ return np.abs(np.fft.rfft(windowed_frames, int(fft_length)))
93
+
94
+
95
+ # Mel spectrum constants and functions.
96
+ _MEL_BREAK_FREQUENCY_HERTZ = 700.0
97
+ _MEL_HIGH_FREQUENCY_Q = 1127.0
98
+
99
+
100
+ def hertz_to_mel(frequencies_hertz):
101
+ """Convert frequencies to mel scale using HTK formula.
102
+
103
+ Args:
104
+ frequencies_hertz: Scalar or np.array of frequencies in hertz.
105
+
106
+ Returns:
107
+ Object of same size as frequencies_hertz containing corresponding values
108
+ on the mel scale.
109
+ """
110
+ return _MEL_HIGH_FREQUENCY_Q * np.log(
111
+ 1.0 + (frequencies_hertz / _MEL_BREAK_FREQUENCY_HERTZ))
112
+
113
+
114
+ def spectrogram_to_mel_matrix(num_mel_bins=20,
115
+ num_spectrogram_bins=129,
116
+ audio_sample_rate=8000,
117
+ lower_edge_hertz=125.0,
118
+ upper_edge_hertz=3800.0):
119
+ """Return a matrix that can post-multiply spectrogram rows to make mel.
120
+
121
+ Returns a np.array matrix A that can be used to post-multiply a matrix S of
122
+ spectrogram values (STFT magnitudes) arranged as frames x bins to generate a
123
+ "mel spectrogram" M of frames x num_mel_bins. M = S A.
124
+
125
+ The classic HTK algorithm exploits the complementarity of adjacent mel bands
126
+ to multiply each FFT bin by only one mel weight, then add it, with positive
127
+ and negative signs, to the two adjacent mel bands to which that bin
128
+ contributes. Here, by expressing this operation as a matrix multiply, we go
129
+ from num_fft multiplies per frame (plus around 2*num_fft adds) to around
130
+ num_fft^2 multiplies and adds. However, because these are all presumably
131
+ accomplished in a single call to np.dot(), it's not clear which approach is
132
+ faster in Python. The matrix multiplication has the attraction of being more
133
+ general and flexible, and much easier to read.
134
+
135
+ Args:
136
+ num_mel_bins: How many bands in the resulting mel spectrum. This is
137
+ the number of columns in the output matrix.
138
+ num_spectrogram_bins: How many bins there are in the source spectrogram
139
+ data, which is understood to be fft_size/2 + 1, i.e. the spectrogram
140
+ only contains the nonredundant FFT bins.
141
+ audio_sample_rate: Samples per second of the audio at the input to the
142
+ spectrogram. We need this to figure out the actual frequencies for
143
+ each spectrogram bin, which dictates how they are mapped into mel.
144
+ lower_edge_hertz: Lower bound on the frequencies to be included in the mel
145
+ spectrum. This corresponds to the lower edge of the lowest triangular
146
+ band.
147
+ upper_edge_hertz: The desired top edge of the highest frequency band.
148
+
149
+ Returns:
150
+ An np.array with shape (num_spectrogram_bins, num_mel_bins).
151
+
152
+ Raises:
153
+ ValueError: if frequency edges are incorrectly ordered or out of range.
154
+ """
155
+ nyquist_hertz = audio_sample_rate / 2.
156
+ if lower_edge_hertz < 0.0:
157
+ raise ValueError("lower_edge_hertz %.1f must be >= 0" % lower_edge_hertz)
158
+ if lower_edge_hertz >= upper_edge_hertz:
159
+ raise ValueError("lower_edge_hertz %.1f >= upper_edge_hertz %.1f" %
160
+ (lower_edge_hertz, upper_edge_hertz))
161
+ if upper_edge_hertz > nyquist_hertz:
162
+ raise ValueError("upper_edge_hertz %.1f is greater than Nyquist %.1f" %
163
+ (upper_edge_hertz, nyquist_hertz))
164
+ spectrogram_bins_hertz = np.linspace(0.0, nyquist_hertz, num_spectrogram_bins)
165
+ spectrogram_bins_mel = hertz_to_mel(spectrogram_bins_hertz)
166
+ # The i'th mel band (starting from i=1) has center frequency
167
+ # band_edges_mel[i], lower edge band_edges_mel[i-1], and higher edge
168
+ # band_edges_mel[i+1]. Thus, we need num_mel_bins + 2 values in
169
+ # the band_edges_mel arrays.
170
+ band_edges_mel = np.linspace(hertz_to_mel(lower_edge_hertz),
171
+ hertz_to_mel(upper_edge_hertz), num_mel_bins + 2)
172
+ # Matrix to post-multiply feature arrays whose rows are num_spectrogram_bins
173
+ # of spectrogram values.
174
+ mel_weights_matrix = np.empty((num_spectrogram_bins, num_mel_bins))
175
+ for i in range(num_mel_bins):
176
+ lower_edge_mel, center_mel, upper_edge_mel = band_edges_mel[i:i + 3]
177
+ # Calculate lower and upper slopes for every spectrogram bin.
178
+ # Line segments are linear in the *mel* domain, not hertz.
179
+ lower_slope = ((spectrogram_bins_mel - lower_edge_mel) /
180
+ (center_mel - lower_edge_mel))
181
+ upper_slope = ((upper_edge_mel - spectrogram_bins_mel) /
182
+ (upper_edge_mel - center_mel))
183
+ # .. then intersect them with each other and zero.
184
+ mel_weights_matrix[:, i] = np.maximum(0.0, np.minimum(lower_slope,
185
+ upper_slope))
186
+ # HTK excludes the spectrogram DC bin; make sure it always gets a zero
187
+ # coefficient.
188
+ mel_weights_matrix[0, :] = 0.0
189
+ return mel_weights_matrix
190
+
191
+
192
+ def log_mel_spectrogram(data,
193
+ audio_sample_rate=8000,
194
+ log_offset=0.0,
195
+ window_length_secs=0.025,
196
+ hop_length_secs=0.010,
197
+ **kwargs):
198
+ """Convert waveform to a log magnitude mel-frequency spectrogram.
199
+
200
+ Args:
201
+ data: 1D np.array of waveform data.
202
+ audio_sample_rate: The sampling rate of data.
203
+ log_offset: Add this to values when taking log to avoid -Infs.
204
+ window_length_secs: Duration of each window to analyze.
205
+ hop_length_secs: Advance between successive analysis windows.
206
+ **kwargs: Additional arguments to pass to spectrogram_to_mel_matrix.
207
+
208
+ Returns:
209
+ 2D np.array of (num_frames, num_mel_bins) consisting of log mel filterbank
210
+ magnitudes for successive frames.
211
+ """
212
+ window_length_samples = int(round(audio_sample_rate * window_length_secs))
213
+ hop_length_samples = int(round(audio_sample_rate * hop_length_secs))
214
+ fft_length = 2 ** int(np.ceil(np.log(window_length_samples) / np.log(2.0)))
215
+ spectrogram = stft_magnitude(
216
+ data,
217
+ fft_length=fft_length,
218
+ hop_length=hop_length_samples,
219
+ window_length=window_length_samples)
220
+ mel_spectrogram = np.dot(spectrogram, spectrogram_to_mel_matrix(
221
+ num_spectrogram_bins=spectrogram.shape[1],
222
+ audio_sample_rate=audio_sample_rate, **kwargs))
223
+ return np.log(mel_spectrogram + log_offset)
FakeVD/code_test/VGGish_Feature_Extractor/my_vggish.py ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # # 使用moviepy从视频中分离音频
2
+
3
+ # from moviepy.editor import VideoFileClip
4
+
5
+ # # 定义输入视频文件的路径
6
+ # video_file_path = '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/dataset/douyin_6571001202379590925.mp4'
7
+
8
+ # # 定义输出音频文件的路径
9
+ # audio_file_path = '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/dataset/douyin_6571001202379590925.mp3'
10
+
11
+ # # 加载视频文件
12
+ # video_clip = VideoFileClip(video_file_path)
13
+
14
+ # # 提取音频
15
+ # audio_clip = video_clip.audio
16
+
17
+ # # 将音频保存为文件
18
+ # audio_clip.write_audiofile(audio_file_path)
19
+
20
+ # # 关闭VideoClip对象以释放资源
21
+ # video_clip.close()
22
+ # audio_clip.close()
23
+
24
+ import os
25
+ import torch
26
+ import numpy as np
27
+ from moviepy.editor import VideoFileClip
28
+ import pickle
29
+
30
+ from vggish_modified import VGGish as VGGish_modified # 修改后的VGGish代码
31
+
32
+ # 定义输入视频文件夹和输出特征文件路径
33
+ video_file_path = '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/dataset/videos/douyin_6571001202379590925.mp4'
34
+ feature_path = '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/code/VGGish_Feature_Extractor/my_dict_vid_audioconvfea.pkl'
35
+
36
+ # 加载模型
37
+ urls = {
38
+ 'vggish': 'https://github.com/harritaylor/torchvggish/'
39
+ 'releases/download/v0.1/vggish-10086976.pth',
40
+ 'pca': 'https://github.com/harritaylor/torchvggish/'
41
+ 'releases/download/v0.1/vggish_pca_params-970ea276.pth'
42
+ }
43
+ vggish_model = VGGish_modified(urls, pretrained=True)
44
+
45
+ # 初始化保存特征的字典
46
+ features_dict = {}
47
+
48
+ audio_file_path = '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/dataset/1.wav'
49
+
50
+
51
+ # 提取视频文件名(不包括扩展名)作为视频ID
52
+ video_file_name = os.path.basename(video_file_path)
53
+ video_id = os.path.splitext(video_file_name)[0]
54
+ # video_id = video_file_name.split('_')[1].split('.')[0]
55
+
56
+ # 从视频中提取音频
57
+ video = VideoFileClip(video_file_path)
58
+ video.audio.write_audiofile(audio_file_path)
59
+
60
+ # 提取特征
61
+ features = vggish_model(audio_file_path)
62
+
63
+
64
+ # 保存特征到字典中
65
+ features_dict[video_id] = features.cpu().detach().numpy()
66
+
67
+
68
+ # 保存特征字典到文件
69
+ with open(feature_path, 'wb') as f:
70
+ pickle.dump(features_dict, f)
71
+
72
+ print(f"Audio features have been saved to {feature_path}")
FakeVD/code_test/VGGish_Feature_Extractor/my_vggish_folder.py ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import torch
3
+ import numpy as np
4
+ from moviepy.editor import VideoFileClip
5
+ import pickle
6
+
7
+ from vggish_modified import VGGish as VGGish_modified # 修改后的VGGish代码
8
+
9
+ # 定义输入视频文件夹和输出特征文件路径
10
+ video_folder_path = '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/dataset/videos'
11
+ feature_path = '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/code/VGGish_Feature_Extractor/my_dict_vid_audioconvfea.pkl'
12
+
13
+ # 加载模型
14
+ urls = {
15
+ 'vggish': 'https://github.com/harritaylor/torchvggish/releases/download/v0.1/vggish-10086976.pth',
16
+ 'pca': 'https://github.com/harritaylor/torchvggish/releases/download/v0.1/vggish_pca_params-970ea276.pth'
17
+ }
18
+ vggish_model = VGGish_modified(urls, pretrained=True)
19
+
20
+ # 初始化保存特征的字典
21
+ features_dict = {}
22
+
23
+ audio_file_path = '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/dataset/1.wav'
24
+
25
+ # 遍历视频文件夹中的所有视频文件
26
+ for video_file_name in os.listdir(video_folder_path):
27
+ video_file_path = os.path.join(video_folder_path, video_file_name)
28
+
29
+ # 提取视频文件名(不包括扩展名)作为视频ID
30
+ video_id = os.path.splitext(video_file_name)[0]
31
+ # video_id = video_file_name.split('_')[1].split('.')[0]
32
+
33
+ try:
34
+ # 从视频中提取音频
35
+ video = VideoFileClip(video_file_path)
36
+ video.audio.write_audiofile(audio_file_path)
37
+
38
+ # 提取特征
39
+ features = vggish_model(audio_file_path)
40
+
41
+ # 保存特征到字典中
42
+ features_dict[video_id] = features.cpu().detach().numpy()
43
+
44
+ except Exception as e:
45
+ print(f"Error processing {video_file_name}: {e}")
46
+
47
+ # 保存特征字典到文件
48
+ with open(feature_path, 'wb') as f:
49
+ pickle.dump(features_dict, f)
50
+
51
+ print(f"Audio features have been saved to {feature_path}")
FakeVD/code_test/VGGish_Feature_Extractor/my_vggish_folder_fun.py ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import torch
3
+ import numpy as np
4
+ from moviepy.editor import VideoFileClip
5
+ import pickle
6
+
7
+ from .vggish_modified import VGGish as VGGish_modified # 修改后的VGGish代码
8
+
9
+ def vggish_audio(video_folder_path, feature_path):
10
+ # 加载模型
11
+ urls = {
12
+ 'vggish': 'https://github.com/harritaylor/torchvggish/releases/download/v0.1/vggish-10086976.pth',
13
+ 'pca': 'https://github.com/harritaylor/torchvggish/releases/download/v0.1/vggish_pca_params-970ea276.pth'
14
+ }
15
+ vggish_model = VGGish_modified(urls, pretrained=True)
16
+
17
+ # 初始化保存特征的字典
18
+ features_dict = {}
19
+
20
+ audio_file_path = '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/dataset/1.wav'
21
+
22
+ # 遍历视频文件夹中的所有视频文件
23
+ for video_file_name in os.listdir(video_folder_path):
24
+ video_file_path = os.path.join(video_folder_path, video_file_name)
25
+
26
+ # 提取视频文件名(不包括扩展名)作为视频ID
27
+ video_id = os.path.splitext(video_file_name)[0]
28
+ # video_id = video_file_name.split('_')[1].split('.')[0]
29
+
30
+ try:
31
+ # 从视频中提取音频
32
+ video = VideoFileClip(video_file_path)
33
+ video.audio.write_audiofile(audio_file_path)
34
+
35
+ # 提取特征
36
+ features = vggish_model(audio_file_path)
37
+
38
+ # 保存特征到字典中
39
+ features_dict[video_id] = features.cpu().detach().numpy()
40
+
41
+ except Exception as e:
42
+ print(f"Error processing {video_file_name}: {e}")
43
+
44
+ # 保存特征字典到文件
45
+ with open(feature_path, 'wb') as f:
46
+ pickle.dump(features_dict, f)
47
+
48
+ print(f"Audio features have been saved to {feature_path}")
49
+
50
+
51
+ if __name__ == "__main__":
52
+
53
+ # 定义输入视频文件夹和输出特征文件路径
54
+ video_folder_path = '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/dataset/videos_1'
55
+ feature_path = '/mnt/data10t/dazuoye/GROUP2024-GEN6/FakeSV/code/VGGish_Feature_Extractor/my_dict_vid_audioconvfea.pkl'
56
+
57
+ vggish_audio(video_folder_path, feature_path)
FakeVD/code_test/VGGish_Feature_Extractor/my_vggish_fun.py ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import torch
3
+ import numpy as np
4
+ from moviepy.editor import VideoFileClip
5
+ import pickle
6
+
7
+ from .vggish_modified import VGGish as VGGish_modified # 修改后的VGGish代码
8
+
9
+ def load_model_vggish():
10
+ # 加载模型
11
+ urls = {
12
+ 'vggish': 'https://github.com/harritaylor/torchvggish/'
13
+ 'releases/download/v0.1/vggish-10086976.pth',
14
+ 'pca': 'https://github.com/harritaylor/torchvggish/'
15
+ 'releases/download/v0.1/vggish_pca_params-970ea276.pth'
16
+ }
17
+ model_vggish = VGGish_modified(urls, pretrained=True)
18
+ return model_vggish
19
+
20
+ def vggish_audio(model_vggish, video_file_path, feature_path, audio_file_path='./FakeVD/code_test/preprocessed_feature/1.wav'):
21
+
22
+ # 初始化保存特征的字典
23
+ features_dict = {}
24
+
25
+ # 提取视频文件名(不包括扩展名)作为视频ID
26
+ video_file_name = os.path.basename(video_file_path)
27
+ video_id = os.path.splitext(video_file_name)[0]
28
+ # video_id = video_file_name.split('_')[1].split('.')[0]
29
+
30
+ # 从视频中提取音频
31
+ video = VideoFileClip(video_file_path)
32
+ video.audio.write_audiofile(audio_file_path)
33
+
34
+ # 提取特征
35
+ features = model_vggish(audio_file_path)
36
+
37
+
38
+ # 保存特征到字典中
39
+ features_dict[video_id] = features.cpu().detach().numpy()
40
+
41
+
42
+ # 保存特征字典到文件
43
+ with open(feature_path, 'wb') as f:
44
+ pickle.dump(features_dict, f)
45
+
46
+ print(f"Audio features have been saved to {feature_path}")
47
+
48
+
49
+ if __name__ == "__main__":
50
+
51
+ # 定义输入视频文件夹和输出特征文件路径
52
+ video_file_path = './FakeVD/dataset/videos_1/douyin_6559701594739313923.mp4'
53
+ feature_path = './FakeVD/code/VGGish_Feature_Extractor/my_dict_vid_audioconvfea.pkl'
54
+
55
+ # 加载模型
56
+ model_vggish = load_model_vggish()
57
+ vggish_audio(model_vggish, video_file_path, feature_path)
FakeVD/code_test/VGGish_Feature_Extractor/vggish.py ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import torch
3
+ import torch.nn as nn
4
+ from torch import hub
5
+
6
+ from . import vggish_input, vggish_params
7
+
8
+
9
+ class VGG(nn.Module):
10
+ def __init__(self, features):
11
+ super(VGG, self).__init__()
12
+ self.features = features
13
+ self.embeddings = nn.Sequential(
14
+ nn.Linear(512 * 4 * 6, 4096),
15
+ nn.ReLU(True),
16
+ nn.Linear(4096, 4096),
17
+ nn.ReLU(True),
18
+ nn.Linear(4096, 128),
19
+ nn.ReLU(True))
20
+
21
+ def forward(self, x):
22
+ x = self.features(x)
23
+
24
+ # Transpose the output from features to
25
+ # remain compatible with vggish embeddings
26
+ x = torch.transpose(x, 1, 3)
27
+ x = torch.transpose(x, 1, 2)
28
+ x = x.contiguous()
29
+ x = x.view(x.size(0), -1)
30
+
31
+ return self.embeddings(x)
32
+
33
+
34
+ class Postprocessor(nn.Module):
35
+ """Post-processes VGGish embeddings. Returns a torch.Tensor instead of a
36
+ numpy array in order to preserve the gradient.
37
+
38
+ "The initial release of AudioSet included 128-D VGGish embeddings for each
39
+ segment of AudioSet. These released embeddings were produced by applying
40
+ a PCA transformation (technically, a whitening transform is included as well)
41
+ and 8-bit quantization to the raw embedding output from VGGish, in order to
42
+ stay compatible with the YouTube-8M project which provides visual embeddings
43
+ in the same format for a large set of YouTube videos. This class implements
44
+ the same PCA (with whitening) and quantization transformations."
45
+ """
46
+
47
+ def __init__(self):
48
+ """Constructs a postprocessor."""
49
+ super(Postprocessor, self).__init__()
50
+ # Create empty matrix, for user's state_dict to load
51
+ self.pca_eigen_vectors = torch.empty(
52
+ (vggish_params.EMBEDDING_SIZE, vggish_params.EMBEDDING_SIZE,),
53
+ dtype=torch.float,
54
+ )
55
+ self.pca_means = torch.empty(
56
+ (vggish_params.EMBEDDING_SIZE, 1), dtype=torch.float
57
+ )
58
+
59
+ self.pca_eigen_vectors = nn.Parameter(self.pca_eigen_vectors, requires_grad=False)
60
+ self.pca_means = nn.Parameter(self.pca_means, requires_grad=False)
61
+
62
+ def postprocess(self, embeddings_batch):
63
+ """Applies tensor postprocessing to a batch of embeddings.
64
+
65
+ Args:
66
+ embeddings_batch: An tensor of shape [batch_size, embedding_size]
67
+ containing output from the embedding layer of VGGish.
68
+
69
+ Returns:
70
+ A tensor of the same shape as the input, containing the PCA-transformed,
71
+ quantized, and clipped version of the input.
72
+ """
73
+ assert len(embeddings_batch.shape) == 2, "Expected 2-d batch, got %r" % (
74
+ embeddings_batch.shape,
75
+ )
76
+ assert (
77
+ embeddings_batch.shape[1] == vggish_params.EMBEDDING_SIZE
78
+ ), "Bad batch shape: %r" % (embeddings_batch.shape,)
79
+
80
+ # Apply PCA.
81
+ # - Embeddings come in as [batch_size, embedding_size].
82
+ # - Transpose to [embedding_size, batch_size].
83
+ # - Subtract pca_means column vector from each column.
84
+ # - Premultiply by PCA matrix of shape [output_dims, input_dims]
85
+ # where both are are equal to embedding_size in our case.
86
+ # - Transpose result back to [batch_size, embedding_size].
87
+ pca_applied = torch.mm(self.pca_eigen_vectors, (embeddings_batch.t() - self.pca_means)).t()
88
+
89
+ # Quantize by:
90
+ # - clipping to [min, max] range
91
+ clipped_embeddings = torch.clamp(
92
+ pca_applied, vggish_params.QUANTIZE_MIN_VAL, vggish_params.QUANTIZE_MAX_VAL
93
+ )
94
+ # - convert to 8-bit in range [0.0, 255.0]
95
+ quantized_embeddings = torch.round(
96
+ (clipped_embeddings - vggish_params.QUANTIZE_MIN_VAL)
97
+ * (
98
+ 255.0
99
+ / (vggish_params.QUANTIZE_MAX_VAL - vggish_params.QUANTIZE_MIN_VAL)
100
+ )
101
+ )
102
+ return torch.squeeze(quantized_embeddings)
103
+
104
+ def forward(self, x):
105
+ return self.postprocess(x)
106
+
107
+
108
+ def make_layers():
109
+ layers = []
110
+ in_channels = 1
111
+ for v in [64, "M", 128, "M", 256, 256, "M", 512, 512, "M"]:
112
+ if v == "M":
113
+ layers += [nn.MaxPool2d(kernel_size=2, stride=2)]
114
+ else:
115
+ conv2d = nn.Conv2d(in_channels, v, kernel_size=3, padding=1)
116
+ layers += [conv2d, nn.ReLU(inplace=True)]
117
+ in_channels = v
118
+ return nn.Sequential(*layers)
119
+
120
+
121
+ def _vgg():
122
+ return VGG(make_layers())
123
+
124
+
125
+ # def _spectrogram():
126
+ # config = dict(
127
+ # sr=16000,
128
+ # n_fft=400,
129
+ # n_mels=64,
130
+ # hop_length=160,
131
+ # window="hann",
132
+ # center=False,
133
+ # pad_mode="reflect",
134
+ # htk=True,
135
+ # fmin=125,
136
+ # fmax=7500,
137
+ # output_format='Magnitude',
138
+ # # device=device,
139
+ # )
140
+ # return Spectrogram.MelSpectrogram(**config)
141
+
142
+
143
+ class VGGish(VGG):
144
+ def __init__(self, urls, device=None, pretrained=True, preprocess=True, postprocess=True, progress=True):
145
+ super().__init__(make_layers())
146
+ if pretrained:
147
+ state_dict = hub.load_state_dict_from_url(urls['vggish'], progress=progress)
148
+ super().load_state_dict(state_dict)
149
+
150
+ if device is None:
151
+ device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
152
+ self.device = device
153
+ self.preprocess = preprocess
154
+ self.postprocess = postprocess
155
+ if self.postprocess:
156
+ self.pproc = Postprocessor()
157
+ if pretrained:
158
+ state_dict = hub.load_state_dict_from_url(urls['pca'], progress=progress)
159
+ # TODO: Convert the state_dict to torch
160
+ state_dict[vggish_params.PCA_EIGEN_VECTORS_NAME] = torch.as_tensor(
161
+ state_dict[vggish_params.PCA_EIGEN_VECTORS_NAME], dtype=torch.float
162
+ )
163
+ state_dict[vggish_params.PCA_MEANS_NAME] = torch.as_tensor(
164
+ state_dict[vggish_params.PCA_MEANS_NAME].reshape(-1, 1), dtype=torch.float
165
+ )
166
+
167
+ self.pproc.load_state_dict(state_dict)
168
+ self.to(self.device)
169
+
170
+ def forward(self, x, fs=None):
171
+ if self.preprocess:
172
+ x = self._preprocess(x, fs)
173
+ x = x.to(self.device)
174
+ x = VGG.forward(self, x)
175
+ if self.postprocess:
176
+ x = self._postprocess(x)
177
+ return x
178
+
179
+ def _preprocess(self, x, fs):
180
+ if isinstance(x, np.ndarray):
181
+ x = vggish_input.waveform_to_examples(x, fs)
182
+ elif isinstance(x, str):
183
+ x = vggish_input.wavfile_to_examples(x)
184
+ else:
185
+ raise AttributeError
186
+ return x
187
+
188
+ def _postprocess(self, x):
189
+ return self.pproc(x)
FakeVD/code_test/VGGish_Feature_Extractor/vggish_input.py ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright 2017 The TensorFlow Authors All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+
16
+ """Compute input examples for VGGish from audio waveform."""
17
+
18
+ # Modification: Return torch tensors rather than numpy arrays
19
+ import torch
20
+
21
+ import numpy as np
22
+ import resampy
23
+
24
+ from . import mel_features
25
+ from . import vggish_params
26
+
27
+ import soundfile as sf
28
+
29
+
30
+ def waveform_to_examples(data, sample_rate, return_tensor=True):
31
+ """Converts audio waveform into an array of examples for VGGish.
32
+
33
+ Args:
34
+ data: np.array of either one dimension (mono) or two dimensions
35
+ (multi-channel, with the outer dimension representing channels).
36
+ Each sample is generally expected to lie in the range [-1.0, +1.0],
37
+ although this is not required.
38
+ sample_rate: Sample rate of data.
39
+ return_tensor: Return data as a Pytorch tensor ready for VGGish
40
+
41
+ Returns:
42
+ 3-D np.array of shape [num_examples, num_frames, num_bands] which represents
43
+ a sequence of examples, each of which contains a patch of log mel
44
+ spectrogram, covering num_frames frames of audio and num_bands mel frequency
45
+ bands, where the frame length is vggish_params.STFT_HOP_LENGTH_SECONDS.
46
+
47
+ """
48
+ # Convert to mono.
49
+ if len(data.shape) > 1:
50
+ data = np.mean(data, axis=1)
51
+ # Resample to the rate assumed by VGGish.
52
+ if sample_rate != vggish_params.SAMPLE_RATE:
53
+ data = resampy.resample(data, sample_rate, vggish_params.SAMPLE_RATE)
54
+
55
+ # Compute log mel spectrogram features.
56
+ log_mel = mel_features.log_mel_spectrogram(
57
+ data,
58
+ audio_sample_rate=vggish_params.SAMPLE_RATE,
59
+ log_offset=vggish_params.LOG_OFFSET,
60
+ window_length_secs=vggish_params.STFT_WINDOW_LENGTH_SECONDS,
61
+ hop_length_secs=vggish_params.STFT_HOP_LENGTH_SECONDS,
62
+ num_mel_bins=vggish_params.NUM_MEL_BINS,
63
+ lower_edge_hertz=vggish_params.MEL_MIN_HZ,
64
+ upper_edge_hertz=vggish_params.MEL_MAX_HZ)
65
+
66
+ # Frame features into examples.
67
+ features_sample_rate = 1.0 / vggish_params.STFT_HOP_LENGTH_SECONDS
68
+ example_window_length = int(round(
69
+ vggish_params.EXAMPLE_WINDOW_SECONDS * features_sample_rate))
70
+ example_hop_length = int(round(
71
+ vggish_params.EXAMPLE_HOP_SECONDS * features_sample_rate))
72
+ log_mel_examples = mel_features.frame(
73
+ log_mel,
74
+ window_length=example_window_length,
75
+ hop_length=example_hop_length)
76
+
77
+ if return_tensor:
78
+ log_mel_examples = torch.tensor(
79
+ log_mel_examples, requires_grad=True)[:, None, :, :].float()
80
+
81
+ return log_mel_examples
82
+
83
+
84
+ def wavfile_to_examples(wav_file, return_tensor=True):
85
+ """Convenience wrapper around waveform_to_examples() for a common WAV format.
86
+
87
+ Args:
88
+ wav_file: String path to a file, or a file-like object. The file
89
+ is assumed to contain WAV audio data with signed 16-bit PCM samples.
90
+ torch: Return data as a Pytorch tensor ready for VGGish
91
+
92
+ Returns:
93
+ See waveform_to_examples.
94
+ """
95
+ wav_data, sr = sf.read(wav_file, dtype='int16')
96
+ assert wav_data.dtype == np.int16, 'Bad sample type: %r' % wav_data.dtype
97
+ samples = wav_data / 32768.0 # Convert to [-1.0, +1.0]
98
+ return waveform_to_examples(samples, sr, return_tensor)
FakeVD/code_test/VGGish_Feature_Extractor/vggish_modified.py ADDED
@@ -0,0 +1,200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # This file is about how to transform an audio to features. (You can use open-source tools such as moviepy to split the audio from video. )
3
+ # The original file "vggish.py" and the pre-trained model weight are from https://github.com/harritaylor/torchvggish.
4
+ # We save the audio convolutional features as dict_vid_audioconvfea.pkl in the preprocessing, and merge the fc layers (L20-26 self.embedding) into SV-FEND to train.
5
+ # Therefore, in this modified file, we comment out "self.embeddings" (L39) and "postprocess"(L183-184) to obtain the output features of the convolutional layers.
6
+ # 本文件介绍了如何将音频转换为特征。(你可以使用诸如moviepy之类的开源工具从视频中分离音频。)
7
+ # 原始文件“vggish.py”和预训练模型权重来自https://github.com/harritaylor/torchvggish。
8
+ # 我们在预处理过程中将音频卷积特征保存为dict_vid_audioconvfea.pkl,并将全连接层(第20-26行的self.embedding)合并到SV-FEND中进行训练。
9
+ # 因此,在这个修改后的文件中,我们注释掉了“self.embeddings”(第39行)和“postprocess”(第183-184行)以获取卷积层的输出特征。
10
+
11
+ import numpy as np
12
+ import torch
13
+ import torch.nn as nn
14
+ from torch import hub
15
+
16
+ from . import vggish_input, vggish_params
17
+
18
+
19
+ class VGG(nn.Module):
20
+ def __init__(self, features):
21
+ super(VGG, self).__init__()
22
+ self.features = features
23
+ self.embeddings = nn.Sequential(
24
+ nn.Linear(512 * 4 * 6, 4096),
25
+ nn.ReLU(True),
26
+ nn.Linear(4096, 4096),
27
+ nn.ReLU(True),
28
+ nn.Linear(4096, 128),
29
+ nn.ReLU(True))
30
+
31
+ def forward(self, x):
32
+ x = self.features(x)
33
+
34
+ # Transpose the output from features to
35
+ # remain compatible with vggish embeddings
36
+ x = torch.transpose(x, 1, 3)
37
+ x = torch.transpose(x, 1, 2)
38
+ x = x.contiguous()
39
+ x = x.view(x.size(0), -1)
40
+
41
+ return x
42
+ # return self.embeddings(x)
43
+
44
+
45
+ class Postprocessor(nn.Module):
46
+ """Post-processes VGGish embeddings. Returns a torch.Tensor instead of a
47
+ numpy array in order to preserve the gradient.
48
+
49
+ "The initial release of AudioSet included 128-D VGGish embeddings for each
50
+ segment of AudioSet. These released embeddings were produced by applying
51
+ a PCA transformation (technically, a whitening transform is included as well)
52
+ and 8-bit quantization to the raw embedding output from VGGish, in order to
53
+ stay compatible with the YouTube-8M project which provides visual embeddings
54
+ in the same format for a large set of YouTube videos. This class implements
55
+ the same PCA (with whitening) and quantization transformations."
56
+ """
57
+
58
+ def __init__(self):
59
+ """Constructs a postprocessor."""
60
+ super(Postprocessor, self).__init__()
61
+ # Create empty matrix, for user's state_dict to load
62
+ self.pca_eigen_vectors = torch.empty(
63
+ (vggish_params.EMBEDDING_SIZE, vggish_params.EMBEDDING_SIZE,),
64
+ dtype=torch.float,
65
+ )
66
+ self.pca_means = torch.empty(
67
+ (vggish_params.EMBEDDING_SIZE, 1), dtype=torch.float
68
+ )
69
+
70
+ self.pca_eigen_vectors = nn.Parameter(self.pca_eigen_vectors, requires_grad=False)
71
+ self.pca_means = nn.Parameter(self.pca_means, requires_grad=False)
72
+
73
+ def postprocess(self, embeddings_batch):
74
+ """Applies tensor postprocessing to a batch of embeddings.
75
+
76
+ Args:
77
+ embeddings_batch: An tensor of shape [batch_size, embedding_size]
78
+ containing output from the embedding layer of VGGish.
79
+
80
+ Returns:
81
+ A tensor of the same shape as the input, containing the PCA-transformed,
82
+ quantized, and clipped version of the input.
83
+ """
84
+ assert len(embeddings_batch.shape) == 2, "Expected 2-d batch, got %r" % (
85
+ embeddings_batch.shape,
86
+ )
87
+ assert (
88
+ embeddings_batch.shape[1] == vggish_params.EMBEDDING_SIZE
89
+ ), "Bad batch shape: %r" % (embeddings_batch.shape,)
90
+
91
+ # Apply PCA.
92
+ # - Embeddings come in as [batch_size, embedding_size].
93
+ # - Transpose to [embedding_size, batch_size].
94
+ # - Subtract pca_means column vector from each column.
95
+ # - Premultiply by PCA matrix of shape [output_dims, input_dims]
96
+ # where both are are equal to embedding_size in our case.
97
+ # - Transpose result back to [batch_size, embedding_size].
98
+ pca_applied = torch.mm(self.pca_eigen_vectors, (embeddings_batch.t() - self.pca_means)).t()
99
+
100
+ # Quantize by:
101
+ # - clipping to [min, max] range
102
+ clipped_embeddings = torch.clamp(
103
+ pca_applied, vggish_params.QUANTIZE_MIN_VAL, vggish_params.QUANTIZE_MAX_VAL
104
+ )
105
+ # - convert to 8-bit in range [0.0, 255.0]
106
+ quantized_embeddings = torch.round(
107
+ (clipped_embeddings - vggish_params.QUANTIZE_MIN_VAL)
108
+ * (
109
+ 255.0
110
+ / (vggish_params.QUANTIZE_MAX_VAL - vggish_params.QUANTIZE_MIN_VAL)
111
+ )
112
+ )
113
+ return torch.squeeze(quantized_embeddings)
114
+
115
+ def forward(self, x):
116
+ return self.postprocess(x)
117
+
118
+
119
+ def make_layers():
120
+ layers = []
121
+ in_channels = 1
122
+ for v in [64, "M", 128, "M", 256, 256, "M", 512, 512, "M"]:
123
+ if v == "M":
124
+ layers += [nn.MaxPool2d(kernel_size=2, stride=2)]
125
+ else:
126
+ conv2d = nn.Conv2d(in_channels, v, kernel_size=3, padding=1)
127
+ layers += [conv2d, nn.ReLU(inplace=True)]
128
+ in_channels = v
129
+ return nn.Sequential(*layers)
130
+
131
+
132
+ def _vgg():
133
+ return VGG(make_layers())
134
+
135
+
136
+ # def _spectrogram():
137
+ # config = dict(
138
+ # sr=16000,
139
+ # n_fft=400,
140
+ # n_mels=64,
141
+ # hop_length=160,
142
+ # window="hann",
143
+ # center=False,
144
+ # pad_mode="reflect",
145
+ # htk=True,
146
+ # fmin=125,
147
+ # fmax=7500,
148
+ # output_format='Magnitude',
149
+ # # device=device,
150
+ # )
151
+ # return Spectrogram.MelSpectrogram(**config)
152
+
153
+
154
+ class VGGish(VGG):
155
+ def __init__(self, urls, device=None, pretrained=True, preprocess=True, postprocess=True, progress=True):
156
+ super().__init__(make_layers())
157
+ if pretrained:
158
+ state_dict = hub.load_state_dict_from_url(urls['vggish'], progress=progress)
159
+ super().load_state_dict(state_dict)
160
+
161
+ if device is None:
162
+ device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
163
+ self.device = device
164
+ self.preprocess = preprocess
165
+ self.postprocess = postprocess
166
+ if self.postprocess:
167
+ self.pproc = Postprocessor()
168
+ if pretrained:
169
+ state_dict = hub.load_state_dict_from_url(urls['pca'], progress=progress)
170
+ # TODO: Convert the state_dict to torch
171
+ state_dict[vggish_params.PCA_EIGEN_VECTORS_NAME] = torch.as_tensor(
172
+ state_dict[vggish_params.PCA_EIGEN_VECTORS_NAME], dtype=torch.float
173
+ )
174
+ state_dict[vggish_params.PCA_MEANS_NAME] = torch.as_tensor(
175
+ state_dict[vggish_params.PCA_MEANS_NAME].reshape(-1, 1), dtype=torch.float
176
+ )
177
+
178
+ self.pproc.load_state_dict(state_dict)
179
+ self.to(self.device)
180
+
181
+ def forward(self, x, fs=None):
182
+ if self.preprocess:
183
+ x = self._preprocess(x, fs)
184
+ x = x.to(self.device)
185
+ x = VGG.forward(self, x)
186
+ # if self.postprocess:
187
+ # x = self._postprocess(x)
188
+ return x
189
+
190
+ def _preprocess(self, x, fs):
191
+ if isinstance(x, np.ndarray):
192
+ x = vggish_input.waveform_to_examples(x, fs)
193
+ elif isinstance(x, str):
194
+ x = vggish_input.wavfile_to_examples(x)
195
+ else:
196
+ raise AttributeError
197
+ return x
198
+
199
+ def _postprocess(self, x):
200
+ return self.pproc(x)
FakeVD/code_test/VGGish_Feature_Extractor/vggish_params.py ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright 2017 The TensorFlow Authors All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+
16
+ """Global parameters for the VGGish model.
17
+
18
+ See vggish_slim.py for more information.
19
+ """
20
+
21
+ # Architectural constants.
22
+ NUM_FRAMES = 96 # Frames in input mel-spectrogram patch.
23
+ NUM_BANDS = 64 # Frequency bands in input mel-spectrogram patch.
24
+ EMBEDDING_SIZE = 128 # Size of embedding layer.
25
+
26
+ # Hyperparameters used in feature and example generation.
27
+ SAMPLE_RATE = 16000
28
+ STFT_WINDOW_LENGTH_SECONDS = 0.025
29
+ STFT_HOP_LENGTH_SECONDS = 0.010
30
+ NUM_MEL_BINS = NUM_BANDS
31
+ MEL_MIN_HZ = 125
32
+ MEL_MAX_HZ = 7500
33
+ LOG_OFFSET = 0.01 # Offset used for stabilized log of input mel-spectrogram.
34
+ EXAMPLE_WINDOW_SECONDS = 0.96 # Each example contains 96 10ms frames
35
+ EXAMPLE_HOP_SECONDS = 0.96 # with zero overlap.
36
+
37
+ # Parameters used for embedding postprocessing.
38
+ PCA_EIGEN_VECTORS_NAME = 'pca_eigen_vectors'
39
+ PCA_MEANS_NAME = 'pca_means'
40
+ QUANTIZE_MIN_VAL = -2.0
41
+ QUANTIZE_MAX_VAL = +2.0
42
+
43
+ # Hyperparameters used in training.
44
+ INIT_STDDEV = 0.01 # Standard deviation used to initialize weights.
45
+ LEARNING_RATE = 1e-4 # Learning rate for the Adam optimizer.
46
+ ADAM_EPSILON = 1e-8 # Epsilon for the Adam optimizer.
47
+
48
+ # Names of ops, tensors, and features.
49
+ INPUT_OP_NAME = 'vggish/input_features'
50
+ INPUT_TENSOR_NAME = INPUT_OP_NAME + ':0'
51
+ OUTPUT_OP_NAME = 'vggish/embedding'
52
+ OUTPUT_TENSOR_NAME = OUTPUT_OP_NAME + ':0'
53
+ AUDIO_EMBEDDING_FEATURE_NAME = 'audio_embedding'
FakeVD/code_test/torchvggish/hubconf.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ dependencies = ['torch', 'numpy', 'resampy', 'soundfile']
2
+
3
+ from torchvggish.vggish import VGGish
4
+
5
+ model_urls = {
6
+ 'vggish': 'https://github.com/harritaylor/torchvggish/'
7
+ 'releases/download/v0.1/vggish-10086976.pth',
8
+ 'pca': 'https://github.com/harritaylor/torchvggish/'
9
+ 'releases/download/v0.1/vggish_pca_params-970ea276.pth'
10
+ }
11
+
12
+
13
+ def vggish(**kwargs):
14
+ model = VGGish(urls=model_urls, **kwargs)
15
+ return model
FakeVD/code_test/torchvggish/torchvggish/mel_features.py ADDED
@@ -0,0 +1,223 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright 2017 The TensorFlow Authors All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+
16
+ """Defines routines to compute mel spectrogram features from audio waveform."""
17
+
18
+ import numpy as np
19
+
20
+
21
+ def frame(data, window_length, hop_length):
22
+ """Convert array into a sequence of successive possibly overlapping frames.
23
+
24
+ An n-dimensional array of shape (num_samples, ...) is converted into an
25
+ (n+1)-D array of shape (num_frames, window_length, ...), where each frame
26
+ starts hop_length points after the preceding one.
27
+
28
+ This is accomplished using stride_tricks, so the original data is not
29
+ copied. However, there is no zero-padding, so any incomplete frames at the
30
+ end are not included.
31
+
32
+ Args:
33
+ data: np.array of dimension N >= 1.
34
+ window_length: Number of samples in each frame.
35
+ hop_length: Advance (in samples) between each window.
36
+
37
+ Returns:
38
+ (N+1)-D np.array with as many rows as there are complete frames that can be
39
+ extracted.
40
+ """
41
+ num_samples = data.shape[0]
42
+ num_frames = 1 + int(np.floor((num_samples - window_length) / hop_length))
43
+ shape = (num_frames, window_length) + data.shape[1:]
44
+ strides = (data.strides[0] * hop_length,) + data.strides
45
+ return np.lib.stride_tricks.as_strided(data, shape=shape, strides=strides)
46
+
47
+
48
+ def periodic_hann(window_length):
49
+ """Calculate a "periodic" Hann window.
50
+
51
+ The classic Hann window is defined as a raised cosine that starts and
52
+ ends on zero, and where every value appears twice, except the middle
53
+ point for an odd-length window. Matlab calls this a "symmetric" window
54
+ and np.hanning() returns it. However, for Fourier analysis, this
55
+ actually represents just over one cycle of a period N-1 cosine, and
56
+ thus is not compactly expressed on a length-N Fourier basis. Instead,
57
+ it's better to use a raised cosine that ends just before the final
58
+ zero value - i.e. a complete cycle of a period-N cosine. Matlab
59
+ calls this a "periodic" window. This routine calculates it.
60
+
61
+ Args:
62
+ window_length: The number of points in the returned window.
63
+
64
+ Returns:
65
+ A 1D np.array containing the periodic hann window.
66
+ """
67
+ return 0.5 - (0.5 * np.cos(2 * np.pi / window_length *
68
+ np.arange(window_length)))
69
+
70
+
71
+ def stft_magnitude(signal, fft_length,
72
+ hop_length=None,
73
+ window_length=None):
74
+ """Calculate the short-time Fourier transform magnitude.
75
+
76
+ Args:
77
+ signal: 1D np.array of the input time-domain signal.
78
+ fft_length: Size of the FFT to apply.
79
+ hop_length: Advance (in samples) between each frame passed to FFT.
80
+ window_length: Length of each block of samples to pass to FFT.
81
+
82
+ Returns:
83
+ 2D np.array where each row contains the magnitudes of the fft_length/2+1
84
+ unique values of the FFT for the corresponding frame of input samples.
85
+ """
86
+ frames = frame(signal, window_length, hop_length)
87
+ # Apply frame window to each frame. We use a periodic Hann (cosine of period
88
+ # window_length) instead of the symmetric Hann of np.hanning (period
89
+ # window_length-1).
90
+ window = periodic_hann(window_length)
91
+ windowed_frames = frames * window
92
+ return np.abs(np.fft.rfft(windowed_frames, int(fft_length)))
93
+
94
+
95
+ # Mel spectrum constants and functions.
96
+ _MEL_BREAK_FREQUENCY_HERTZ = 700.0
97
+ _MEL_HIGH_FREQUENCY_Q = 1127.0
98
+
99
+
100
+ def hertz_to_mel(frequencies_hertz):
101
+ """Convert frequencies to mel scale using HTK formula.
102
+
103
+ Args:
104
+ frequencies_hertz: Scalar or np.array of frequencies in hertz.
105
+
106
+ Returns:
107
+ Object of same size as frequencies_hertz containing corresponding values
108
+ on the mel scale.
109
+ """
110
+ return _MEL_HIGH_FREQUENCY_Q * np.log(
111
+ 1.0 + (frequencies_hertz / _MEL_BREAK_FREQUENCY_HERTZ))
112
+
113
+
114
+ def spectrogram_to_mel_matrix(num_mel_bins=20,
115
+ num_spectrogram_bins=129,
116
+ audio_sample_rate=8000,
117
+ lower_edge_hertz=125.0,
118
+ upper_edge_hertz=3800.0):
119
+ """Return a matrix that can post-multiply spectrogram rows to make mel.
120
+
121
+ Returns a np.array matrix A that can be used to post-multiply a matrix S of
122
+ spectrogram values (STFT magnitudes) arranged as frames x bins to generate a
123
+ "mel spectrogram" M of frames x num_mel_bins. M = S A.
124
+
125
+ The classic HTK algorithm exploits the complementarity of adjacent mel bands
126
+ to multiply each FFT bin by only one mel weight, then add it, with positive
127
+ and negative signs, to the two adjacent mel bands to which that bin
128
+ contributes. Here, by expressing this operation as a matrix multiply, we go
129
+ from num_fft multiplies per frame (plus around 2*num_fft adds) to around
130
+ num_fft^2 multiplies and adds. However, because these are all presumably
131
+ accomplished in a single call to np.dot(), it's not clear which approach is
132
+ faster in Python. The matrix multiplication has the attraction of being more
133
+ general and flexible, and much easier to read.
134
+
135
+ Args:
136
+ num_mel_bins: How many bands in the resulting mel spectrum. This is
137
+ the number of columns in the output matrix.
138
+ num_spectrogram_bins: How many bins there are in the source spectrogram
139
+ data, which is understood to be fft_size/2 + 1, i.e. the spectrogram
140
+ only contains the nonredundant FFT bins.
141
+ audio_sample_rate: Samples per second of the audio at the input to the
142
+ spectrogram. We need this to figure out the actual frequencies for
143
+ each spectrogram bin, which dictates how they are mapped into mel.
144
+ lower_edge_hertz: Lower bound on the frequencies to be included in the mel
145
+ spectrum. This corresponds to the lower edge of the lowest triangular
146
+ band.
147
+ upper_edge_hertz: The desired top edge of the highest frequency band.
148
+
149
+ Returns:
150
+ An np.array with shape (num_spectrogram_bins, num_mel_bins).
151
+
152
+ Raises:
153
+ ValueError: if frequency edges are incorrectly ordered or out of range.
154
+ """
155
+ nyquist_hertz = audio_sample_rate / 2.
156
+ if lower_edge_hertz < 0.0:
157
+ raise ValueError("lower_edge_hertz %.1f must be >= 0" % lower_edge_hertz)
158
+ if lower_edge_hertz >= upper_edge_hertz:
159
+ raise ValueError("lower_edge_hertz %.1f >= upper_edge_hertz %.1f" %
160
+ (lower_edge_hertz, upper_edge_hertz))
161
+ if upper_edge_hertz > nyquist_hertz:
162
+ raise ValueError("upper_edge_hertz %.1f is greater than Nyquist %.1f" %
163
+ (upper_edge_hertz, nyquist_hertz))
164
+ spectrogram_bins_hertz = np.linspace(0.0, nyquist_hertz, num_spectrogram_bins)
165
+ spectrogram_bins_mel = hertz_to_mel(spectrogram_bins_hertz)
166
+ # The i'th mel band (starting from i=1) has center frequency
167
+ # band_edges_mel[i], lower edge band_edges_mel[i-1], and higher edge
168
+ # band_edges_mel[i+1]. Thus, we need num_mel_bins + 2 values in
169
+ # the band_edges_mel arrays.
170
+ band_edges_mel = np.linspace(hertz_to_mel(lower_edge_hertz),
171
+ hertz_to_mel(upper_edge_hertz), num_mel_bins + 2)
172
+ # Matrix to post-multiply feature arrays whose rows are num_spectrogram_bins
173
+ # of spectrogram values.
174
+ mel_weights_matrix = np.empty((num_spectrogram_bins, num_mel_bins))
175
+ for i in range(num_mel_bins):
176
+ lower_edge_mel, center_mel, upper_edge_mel = band_edges_mel[i:i + 3]
177
+ # Calculate lower and upper slopes for every spectrogram bin.
178
+ # Line segments are linear in the *mel* domain, not hertz.
179
+ lower_slope = ((spectrogram_bins_mel - lower_edge_mel) /
180
+ (center_mel - lower_edge_mel))
181
+ upper_slope = ((upper_edge_mel - spectrogram_bins_mel) /
182
+ (upper_edge_mel - center_mel))
183
+ # .. then intersect them with each other and zero.
184
+ mel_weights_matrix[:, i] = np.maximum(0.0, np.minimum(lower_slope,
185
+ upper_slope))
186
+ # HTK excludes the spectrogram DC bin; make sure it always gets a zero
187
+ # coefficient.
188
+ mel_weights_matrix[0, :] = 0.0
189
+ return mel_weights_matrix
190
+
191
+
192
+ def log_mel_spectrogram(data,
193
+ audio_sample_rate=8000,
194
+ log_offset=0.0,
195
+ window_length_secs=0.025,
196
+ hop_length_secs=0.010,
197
+ **kwargs):
198
+ """Convert waveform to a log magnitude mel-frequency spectrogram.
199
+
200
+ Args:
201
+ data: 1D np.array of waveform data.
202
+ audio_sample_rate: The sampling rate of data.
203
+ log_offset: Add this to values when taking log to avoid -Infs.
204
+ window_length_secs: Duration of each window to analyze.
205
+ hop_length_secs: Advance between successive analysis windows.
206
+ **kwargs: Additional arguments to pass to spectrogram_to_mel_matrix.
207
+
208
+ Returns:
209
+ 2D np.array of (num_frames, num_mel_bins) consisting of log mel filterbank
210
+ magnitudes for successive frames.
211
+ """
212
+ window_length_samples = int(round(audio_sample_rate * window_length_secs))
213
+ hop_length_samples = int(round(audio_sample_rate * hop_length_secs))
214
+ fft_length = 2 ** int(np.ceil(np.log(window_length_samples) / np.log(2.0)))
215
+ spectrogram = stft_magnitude(
216
+ data,
217
+ fft_length=fft_length,
218
+ hop_length=hop_length_samples,
219
+ window_length=window_length_samples)
220
+ mel_spectrogram = np.dot(spectrogram, spectrogram_to_mel_matrix(
221
+ num_spectrogram_bins=spectrogram.shape[1],
222
+ audio_sample_rate=audio_sample_rate, **kwargs))
223
+ return np.log(mel_spectrogram + log_offset)
FakeVD/code_test/torchvggish/torchvggish/vggish.py ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import torch
3
+ import torch.nn as nn
4
+ from torch import hub
5
+
6
+ from . import vggish_input, vggish_params
7
+
8
+
9
+ class VGG(nn.Module):
10
+ def __init__(self, features):
11
+ super(VGG, self).__init__()
12
+ self.features = features
13
+ self.embeddings = nn.Sequential(
14
+ nn.Linear(512 * 4 * 6, 4096),
15
+ nn.ReLU(True),
16
+ nn.Linear(4096, 4096),
17
+ nn.ReLU(True),
18
+ nn.Linear(4096, 128),
19
+ nn.ReLU(True))
20
+
21
+ def forward(self, x):
22
+ x = self.features(x)
23
+
24
+ # Transpose the output from features to
25
+ # remain compatible with vggish embeddings
26
+ x = torch.transpose(x, 1, 3)
27
+ x = torch.transpose(x, 1, 2)
28
+ x = x.contiguous()
29
+ x = x.view(x.size(0), -1)
30
+
31
+ return self.embeddings(x)
32
+
33
+
34
+ class Postprocessor(nn.Module):
35
+ """Post-processes VGGish embeddings. Returns a torch.Tensor instead of a
36
+ numpy array in order to preserve the gradient.
37
+
38
+ "The initial release of AudioSet included 128-D VGGish embeddings for each
39
+ segment of AudioSet. These released embeddings were produced by applying
40
+ a PCA transformation (technically, a whitening transform is included as well)
41
+ and 8-bit quantization to the raw embedding output from VGGish, in order to
42
+ stay compatible with the YouTube-8M project which provides visual embeddings
43
+ in the same format for a large set of YouTube videos. This class implements
44
+ the same PCA (with whitening) and quantization transformations."
45
+ """
46
+
47
+ def __init__(self):
48
+ """Constructs a postprocessor."""
49
+ super(Postprocessor, self).__init__()
50
+ # Create empty matrix, for user's state_dict to load
51
+ self.pca_eigen_vectors = torch.empty(
52
+ (vggish_params.EMBEDDING_SIZE, vggish_params.EMBEDDING_SIZE,),
53
+ dtype=torch.float,
54
+ )
55
+ self.pca_means = torch.empty(
56
+ (vggish_params.EMBEDDING_SIZE, 1), dtype=torch.float
57
+ )
58
+
59
+ self.pca_eigen_vectors = nn.Parameter(self.pca_eigen_vectors, requires_grad=False)
60
+ self.pca_means = nn.Parameter(self.pca_means, requires_grad=False)
61
+
62
+ def postprocess(self, embeddings_batch):
63
+ """Applies tensor postprocessing to a batch of embeddings.
64
+
65
+ Args:
66
+ embeddings_batch: An tensor of shape [batch_size, embedding_size]
67
+ containing output from the embedding layer of VGGish.
68
+
69
+ Returns:
70
+ A tensor of the same shape as the input, containing the PCA-transformed,
71
+ quantized, and clipped version of the input.
72
+ """
73
+ assert len(embeddings_batch.shape) == 2, "Expected 2-d batch, got %r" % (
74
+ embeddings_batch.shape,
75
+ )
76
+ assert (
77
+ embeddings_batch.shape[1] == vggish_params.EMBEDDING_SIZE
78
+ ), "Bad batch shape: %r" % (embeddings_batch.shape,)
79
+
80
+ # Apply PCA.
81
+ # - Embeddings come in as [batch_size, embedding_size].
82
+ # - Transpose to [embedding_size, batch_size].
83
+ # - Subtract pca_means column vector from each column.
84
+ # - Premultiply by PCA matrix of shape [output_dims, input_dims]
85
+ # where both are are equal to embedding_size in our case.
86
+ # - Transpose result back to [batch_size, embedding_size].
87
+ pca_applied = torch.mm(self.pca_eigen_vectors, (embeddings_batch.t() - self.pca_means)).t()
88
+
89
+ # Quantize by:
90
+ # - clipping to [min, max] range
91
+ clipped_embeddings = torch.clamp(
92
+ pca_applied, vggish_params.QUANTIZE_MIN_VAL, vggish_params.QUANTIZE_MAX_VAL
93
+ )
94
+ # - convert to 8-bit in range [0.0, 255.0]
95
+ quantized_embeddings = torch.round(
96
+ (clipped_embeddings - vggish_params.QUANTIZE_MIN_VAL)
97
+ * (
98
+ 255.0
99
+ / (vggish_params.QUANTIZE_MAX_VAL - vggish_params.QUANTIZE_MIN_VAL)
100
+ )
101
+ )
102
+ return torch.squeeze(quantized_embeddings)
103
+
104
+ def forward(self, x):
105
+ return self.postprocess(x)
106
+
107
+
108
+ def make_layers():
109
+ layers = []
110
+ in_channels = 1
111
+ for v in [64, "M", 128, "M", 256, 256, "M", 512, 512, "M"]:
112
+ if v == "M":
113
+ layers += [nn.MaxPool2d(kernel_size=2, stride=2)]
114
+ else:
115
+ conv2d = nn.Conv2d(in_channels, v, kernel_size=3, padding=1)
116
+ layers += [conv2d, nn.ReLU(inplace=True)]
117
+ in_channels = v
118
+ return nn.Sequential(*layers)
119
+
120
+
121
+ def _vgg():
122
+ return VGG(make_layers())
123
+
124
+
125
+ # def _spectrogram():
126
+ # config = dict(
127
+ # sr=16000,
128
+ # n_fft=400,
129
+ # n_mels=64,
130
+ # hop_length=160,
131
+ # window="hann",
132
+ # center=False,
133
+ # pad_mode="reflect",
134
+ # htk=True,
135
+ # fmin=125,
136
+ # fmax=7500,
137
+ # output_format='Magnitude',
138
+ # # device=device,
139
+ # )
140
+ # return Spectrogram.MelSpectrogram(**config)
141
+
142
+
143
+ class VGGish(VGG):
144
+ def __init__(self, urls, device=None, pretrained=True, preprocess=True, postprocess=True, progress=True):
145
+ super().__init__(make_layers())
146
+ if pretrained:
147
+ state_dict = hub.load_state_dict_from_url(urls['vggish'], progress=progress)
148
+ super().load_state_dict(state_dict)
149
+
150
+ if device is None:
151
+ device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
152
+ self.device = device
153
+ self.preprocess = preprocess
154
+ self.postprocess = postprocess
155
+ if self.postprocess:
156
+ self.pproc = Postprocessor()
157
+ if pretrained:
158
+ state_dict = hub.load_state_dict_from_url(urls['pca'], progress=progress)
159
+ # TODO: Convert the state_dict to torch
160
+ state_dict[vggish_params.PCA_EIGEN_VECTORS_NAME] = torch.as_tensor(
161
+ state_dict[vggish_params.PCA_EIGEN_VECTORS_NAME], dtype=torch.float
162
+ )
163
+ state_dict[vggish_params.PCA_MEANS_NAME] = torch.as_tensor(
164
+ state_dict[vggish_params.PCA_MEANS_NAME].reshape(-1, 1), dtype=torch.float
165
+ )
166
+
167
+ self.pproc.load_state_dict(state_dict)
168
+ self.to(self.device)
169
+
170
+ def forward(self, x, fs=None):
171
+ if self.preprocess:
172
+ x = self._preprocess(x, fs)
173
+ x = x.to(self.device)
174
+ x = VGG.forward(self, x)
175
+ if self.postprocess:
176
+ x = self._postprocess(x)
177
+ return x
178
+
179
+ def _preprocess(self, x, fs):
180
+ if isinstance(x, np.ndarray):
181
+ x = vggish_input.waveform_to_examples(x, fs)
182
+ elif isinstance(x, str):
183
+ x = vggish_input.wavfile_to_examples(x)
184
+ else:
185
+ raise AttributeError
186
+ return x
187
+
188
+ def _postprocess(self, x):
189
+ return self.pproc(x)
FakeVD/code_test/torchvggish/torchvggish/vggish_input.py ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright 2017 The TensorFlow Authors All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+
16
+ """Compute input examples for VGGish from audio waveform."""
17
+
18
+ # Modification: Return torch tensors rather than numpy arrays
19
+ import torch
20
+
21
+ import numpy as np
22
+ import resampy
23
+
24
+ from . import mel_features
25
+ from . import vggish_params
26
+
27
+ import soundfile as sf
28
+
29
+
30
+ def waveform_to_examples(data, sample_rate, return_tensor=True):
31
+ """Converts audio waveform into an array of examples for VGGish.
32
+
33
+ Args:
34
+ data: np.array of either one dimension (mono) or two dimensions
35
+ (multi-channel, with the outer dimension representing channels).
36
+ Each sample is generally expected to lie in the range [-1.0, +1.0],
37
+ although this is not required.
38
+ sample_rate: Sample rate of data.
39
+ return_tensor: Return data as a Pytorch tensor ready for VGGish
40
+
41
+ Returns:
42
+ 3-D np.array of shape [num_examples, num_frames, num_bands] which represents
43
+ a sequence of examples, each of which contains a patch of log mel
44
+ spectrogram, covering num_frames frames of audio and num_bands mel frequency
45
+ bands, where the frame length is vggish_params.STFT_HOP_LENGTH_SECONDS.
46
+
47
+ """
48
+ # Convert to mono.
49
+ if len(data.shape) > 1:
50
+ data = np.mean(data, axis=1)
51
+ # Resample to the rate assumed by VGGish.
52
+ if sample_rate != vggish_params.SAMPLE_RATE:
53
+ data = resampy.resample(data, sample_rate, vggish_params.SAMPLE_RATE)
54
+
55
+ # Compute log mel spectrogram features.
56
+ log_mel = mel_features.log_mel_spectrogram(
57
+ data,
58
+ audio_sample_rate=vggish_params.SAMPLE_RATE,
59
+ log_offset=vggish_params.LOG_OFFSET,
60
+ window_length_secs=vggish_params.STFT_WINDOW_LENGTH_SECONDS,
61
+ hop_length_secs=vggish_params.STFT_HOP_LENGTH_SECONDS,
62
+ num_mel_bins=vggish_params.NUM_MEL_BINS,
63
+ lower_edge_hertz=vggish_params.MEL_MIN_HZ,
64
+ upper_edge_hertz=vggish_params.MEL_MAX_HZ)
65
+
66
+ # Frame features into examples.
67
+ features_sample_rate = 1.0 / vggish_params.STFT_HOP_LENGTH_SECONDS
68
+ example_window_length = int(round(
69
+ vggish_params.EXAMPLE_WINDOW_SECONDS * features_sample_rate))
70
+ example_hop_length = int(round(
71
+ vggish_params.EXAMPLE_HOP_SECONDS * features_sample_rate))
72
+ log_mel_examples = mel_features.frame(
73
+ log_mel,
74
+ window_length=example_window_length,
75
+ hop_length=example_hop_length)
76
+
77
+ if return_tensor:
78
+ log_mel_examples = torch.tensor(
79
+ log_mel_examples, requires_grad=True)[:, None, :, :].float()
80
+
81
+ return log_mel_examples
82
+
83
+
84
+ def wavfile_to_examples(wav_file, return_tensor=True):
85
+ """Convenience wrapper around waveform_to_examples() for a common WAV format.
86
+
87
+ Args:
88
+ wav_file: String path to a file, or a file-like object. The file
89
+ is assumed to contain WAV audio data with signed 16-bit PCM samples.
90
+ torch: Return data as a Pytorch tensor ready for VGGish
91
+
92
+ Returns:
93
+ See waveform_to_examples.
94
+ """
95
+ wav_data, sr = sf.read(wav_file, dtype='int16')
96
+ assert wav_data.dtype == np.int16, 'Bad sample type: %r' % wav_data.dtype
97
+ samples = wav_data / 32768.0 # Convert to [-1.0, +1.0]
98
+ return waveform_to_examples(samples, sr, return_tensor)
FakeVD/code_test/torchvggish/torchvggish/vggish_params.py ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright 2017 The TensorFlow Authors All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+
16
+ """Global parameters for the VGGish model.
17
+
18
+ See vggish_slim.py for more information.
19
+ """
20
+
21
+ # Architectural constants.
22
+ NUM_FRAMES = 96 # Frames in input mel-spectrogram patch.
23
+ NUM_BANDS = 64 # Frequency bands in input mel-spectrogram patch.
24
+ EMBEDDING_SIZE = 128 # Size of embedding layer.
25
+
26
+ # Hyperparameters used in feature and example generation.
27
+ SAMPLE_RATE = 16000
28
+ STFT_WINDOW_LENGTH_SECONDS = 0.025
29
+ STFT_HOP_LENGTH_SECONDS = 0.010
30
+ NUM_MEL_BINS = NUM_BANDS
31
+ MEL_MIN_HZ = 125
32
+ MEL_MAX_HZ = 7500
33
+ LOG_OFFSET = 0.01 # Offset used for stabilized log of input mel-spectrogram.
34
+ EXAMPLE_WINDOW_SECONDS = 0.96 # Each example contains 96 10ms frames
35
+ EXAMPLE_HOP_SECONDS = 0.96 # with zero overlap.
36
+
37
+ # Parameters used for embedding postprocessing.
38
+ PCA_EIGEN_VECTORS_NAME = 'pca_eigen_vectors'
39
+ PCA_MEANS_NAME = 'pca_means'
40
+ QUANTIZE_MIN_VAL = -2.0
41
+ QUANTIZE_MAX_VAL = +2.0
42
+
43
+ # Hyperparameters used in training.
44
+ INIT_STDDEV = 0.01 # Standard deviation used to initialize weights.
45
+ LEARNING_RATE = 1e-4 # Learning rate for the Adam optimizer.
46
+ ADAM_EPSILON = 1e-8 # Epsilon for the Adam optimizer.
47
+
48
+ # Names of ops, tensors, and features.
49
+ INPUT_OP_NAME = 'vggish/input_features'
50
+ INPUT_TENSOR_NAME = INPUT_OP_NAME + ':0'
51
+ OUTPUT_OP_NAME = 'vggish/embedding'
52
+ OUTPUT_TENSOR_NAME = OUTPUT_OP_NAME + ':0'
53
+ AUDIO_EMBEDDING_FEATURE_NAME = 'audio_embedding'
FakeVD/code_test/utils/dataloader.py ADDED
@@ -0,0 +1,593 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ import os
4
+ import pickle
5
+
6
+ import h5py
7
+ import jieba
8
+ import jieba.analyse as analyse
9
+ import numpy as np
10
+ import pandas as pd
11
+ import torch
12
+ from scipy.spatial import distance
13
+ from sklearn import preprocessing
14
+ from sklearn.decomposition import LatentDirichletAllocation
15
+ from sklearn.feature_extraction.text import TfidfVectorizer
16
+ from torch.utils.data import Dataset
17
+ from transformers import BertTokenizer
18
+ import math
19
+
20
+ import json
21
+
22
+ def str2num(str_x):
23
+ if isinstance(str_x, float):
24
+ return str_x
25
+ elif str_x.isdigit():
26
+ return int(str_x)
27
+ elif 'w' in str_x:
28
+ return float(str_x[:-1])*10000
29
+ elif '亿' in str_x:
30
+ return float(str_x[:-1])*100000000
31
+ else:
32
+ print ("error")
33
+ print (str_x)
34
+
35
+
36
+ class SVFENDDataset(Dataset):
37
+
38
+ def __init__(self, data, data_paths):
39
+
40
+ self.data = data
41
+
42
+ self.text = []
43
+ with open(data_paths['ASR_text'], 'r', encoding='utf-8') as file:
44
+ for line in file:
45
+ self.text.append(json.loads(line))
46
+
47
+ # self.text = pd.read_json(data_paths['ASR_text'], lines=True)
48
+
49
+ with open(data_paths['VGGish_audio'], "rb") as fr:
50
+ self.dict_vid_convfea = pickle.load(fr)
51
+
52
+ self.framefeapath = data_paths['VGG19_frame']
53
+
54
+ self.c3dfeapath = data_paths['C3D_video']
55
+
56
+ self.tokenizer = BertTokenizer.from_pretrained('./FakeVD/Models/bert-base-chinese/')
57
+
58
+
59
+ def __len__(self):
60
+ # return self.data.shape[0]
61
+ return len(self.data)
62
+
63
+ def __getitem__(self, idx):
64
+
65
+ vid = self.data[idx]
66
+
67
+ # text
68
+ # 遍历列表,查找匹配的 video_id
69
+ for itm in self.text:
70
+ if itm['video_id'] == vid:
71
+ text = itm['text']
72
+ break
73
+ title_tokens = self.tokenizer(text, max_length=512, padding='max_length', truncation=True)
74
+ title_inputid = torch.LongTensor(title_tokens['input_ids'])
75
+ title_mask = torch.LongTensor(title_tokens['attention_mask'])
76
+
77
+ # comments
78
+
79
+
80
+ # audio
81
+ audioframes = self.dict_vid_convfea[vid]
82
+ audioframes = torch.FloatTensor(audioframes)
83
+
84
+ # frames
85
+ frames=pickle.load(open(os.path.join(self.framefeapath,vid+'.pkl'),'rb'))
86
+ frames=torch.FloatTensor(frames)
87
+
88
+ # video
89
+ c3d = h5py.File(self.c3dfeapath+vid+".hdf5", "r")[vid]['c3d_features']
90
+ c3d = torch.FloatTensor(c3d)
91
+
92
+ # # user
93
+
94
+
95
+ return {
96
+ 'label': torch.tensor(-1),
97
+ 'title_inputid': title_inputid,
98
+ 'title_mask': title_mask,
99
+ 'audioframes': audioframes,
100
+ 'frames':frames,
101
+ 'c3d': c3d,
102
+ # 'comments_inputid': comments_inputid,
103
+ # 'comments_mask': comments_mask,
104
+ # 'comments_like': comments_like,
105
+ # 'intro_inputid': intro_inputid,
106
+ # 'intro_mask': intro_mask,
107
+ }
108
+
109
+
110
+ def split_word(df):
111
+ title = df['description'].values
112
+ comments = df['comments'].apply(lambda x:' '.join(x)).values
113
+ text = np.concatenate([title, comments],axis=0)
114
+ analyse.set_stop_words('./data/stopwords.txt')
115
+ all_word = [analyse.extract_tags(txt) for txt in text.tolist()]
116
+ corpus = [' '.join(word) for word in all_word]
117
+ return corpus
118
+
119
+
120
+ class FANVMDataset_train(Dataset):
121
+
122
+ def __init__(self, path_vid_train):
123
+ self.data_complete = pd.read_json('./data/data.json',orient='records',dtype=False,lines=True)
124
+
125
+ self.framefeapath='./data/ptvgg19_frames/'
126
+ self.thumbframefeapath='./data/ptvgg19_frame_thumb/'
127
+
128
+ self.vid_train = []
129
+ with open('./data/vids/'+path_vid_train, "r") as fr:
130
+ for line in fr.readlines():
131
+ self.vid_train.append(line.strip())
132
+ self.data_train = self.data_complete[self.data_complete.video_id.isin(self.vid_train)]
133
+ self.data_train['video_id'] = self.data_train['video_id'].astype('category')
134
+ self.data_train['video_id'].cat.set_categories(self.vid_train, inplace=True)
135
+ self.data_train.sort_values('video_id', ascending=True, inplace=True)
136
+ self.data_train.reset_index(inplace=True)
137
+
138
+ self.tokenizer = BertTokenizer.from_pretrained('bert-base-chinese')
139
+
140
+ corpus = split_word(self.data_train)
141
+ tfidf = TfidfVectorizer().fit_transform(corpus)
142
+ lda = LatentDirichletAllocation(n_components=15,random_state=2022)
143
+ docres = lda.fit_transform(tfidf)
144
+ self.topic_title = []
145
+ s = []
146
+ for idx in range(self.data_train.shape[0]):
147
+ theta_title = docres[idx]
148
+ self.topic_title.append(theta_title)
149
+ theta_comments = docres[idx+self.data_train.shape[0]]
150
+ s.append(distance.jensenshannon(theta_title, theta_comments) ** 2)
151
+ min_max_scaler = preprocessing.MinMaxScaler()
152
+ s_minMax = min_max_scaler.fit_transform(np.array(s).reshape(-1, 1))
153
+ self.s_minMax = s_minMax.reshape(s_minMax.shape[0])
154
+
155
+ def __len__(self):
156
+ return self.data_train.shape[0]
157
+
158
+ def __getitem__(self, idx):
159
+ item = self.data_train.iloc[idx]
160
+ vid = item['video_id']
161
+
162
+ label = 1 if item['annotation']=='假' else 0
163
+ label = torch.tensor(label)
164
+
165
+ title_tokens = self.tokenizer(item['description'], max_length=512, padding='max_length', truncation=True)
166
+ title_inputid = torch.LongTensor(title_tokens['input_ids'])
167
+ title_mask = torch.LongTensor(title_tokens['attention_mask'])
168
+
169
+ comments_inputid = []
170
+ comments_mask = []
171
+ for comment in item['comments']:
172
+ comment_tokens = self.tokenizer(comment, max_length=250, padding='max_length', truncation=True)
173
+ comments_inputid.append(comment_tokens['input_ids'])
174
+ comments_mask.append(comment_tokens['attention_mask'])
175
+ comments_inputid = torch.LongTensor(comments_inputid)
176
+ comments_mask = torch.LongTensor(comments_mask)
177
+
178
+ comments_like = []
179
+ for num in item['comments_like']:
180
+ num_like = num.split(" ")[0]
181
+ comments_like.append(str2num(num_like))
182
+ comments_like = torch.tensor(comments_like)
183
+
184
+ frames=pickle.load(open(os.path.join(self.framefeapath,vid+'.pkl'),'rb'))
185
+ frames=torch.FloatTensor(frames)
186
+
187
+ frame_thmub = pickle.load(open(os.path.join(self.thumbframefeapath,vid+'.pkl'),'rb'))
188
+ frame_thmub = torch.FloatTensor(frame_thmub)
189
+
190
+ s = self.s_minMax[idx]
191
+ s = torch.tensor(s)
192
+
193
+ topic_title = self.topic_title[idx]
194
+ topic_title = torch.FloatTensor(topic_title)
195
+
196
+
197
+ return {
198
+ 'label': label,
199
+ 'title_inputid': title_inputid,
200
+ 'title_mask': title_mask,
201
+ 'comments_inputid': comments_inputid,
202
+ 'comments_mask': comments_mask,
203
+ 'comments_like': comments_like,
204
+ 'frames':frames,
205
+ 'frame_thmub':frame_thmub,
206
+ 's':s,
207
+ 'label_event':topic_title,
208
+ }
209
+
210
+
211
+ class FANVMDataset_test(Dataset):
212
+
213
+ def __init__(self, path_vid_train, path_vid_test):
214
+ self.data_complete = pd.read_json('./data/data.json',orient='records',dtype=False,lines=True)
215
+
216
+ self.framefeapath='./data/ptvgg19_frames/'
217
+ self.thumbframefeapath='./data/ptvgg19_frame_thumb/'
218
+
219
+ self.vid_train = []
220
+ with open('./data/vids/'+path_vid_train, "r") as fr:
221
+ for line in fr.readlines():
222
+ self.vid_train.append(line.strip())
223
+ self.data_train = self.data_complete[self.data_complete.video_id.isin(self.vid_train)]
224
+ self.data_train['video_id'] = self.data_train['video_id'].astype('category')
225
+ self.data_train['video_id'].cat.set_categories(self.vid_train, inplace=True)
226
+ self.data_train.sort_values('video_id', ascending=True, inplace=True)
227
+ self.data_train.reset_index(inplace=True)
228
+
229
+ self.vid_test = []
230
+ with open('./data/vids/'+path_vid_test, "r") as fr:
231
+ for line in fr.readlines():
232
+ self.vid_test.append(line.strip())
233
+ self.data_test = self.data_complete[self.data_complete.video_id.isin(self.vid_test)]
234
+ self.data_test['video_id'] = self.data_test['video_id'].astype('category')
235
+ self.data_test['video_id'].cat.set_categories(self.vid_test, inplace=True)
236
+ self.data_test.sort_values('video_id', ascending=True, inplace=True)
237
+ self.data_test.reset_index(inplace=True)
238
+
239
+ self.tokenizer = BertTokenizer.from_pretrained('bert-base-chinese')
240
+
241
+ # Use data_train to train
242
+ corpus_train = split_word(self.data_train)
243
+ tfidf = TfidfVectorizer()
244
+ tfidf_matrix_train = tfidf.fit_transform(corpus_train)
245
+ lda = LatentDirichletAllocation(n_components=15,random_state=2022)
246
+ lda.fit(tfidf_matrix_train)
247
+
248
+ # apply on data_test
249
+ corpus_test = split_word(self.data_test)
250
+ tfidf_matrix_test = tfidf.transform(corpus_test)
251
+ docres = lda.transform(tfidf_matrix_test)
252
+
253
+ s = []
254
+ self.topic_title = []
255
+ for idx in range(self.data_test.shape[0]):
256
+ theta_title = docres[idx]
257
+ self.topic_title.append(theta_title)
258
+ theta_comments = docres[idx+self.data_test.shape[0]]
259
+ s.append(distance.jensenshannon(theta_title, theta_comments) ** 2)
260
+ min_max_scaler = preprocessing.MinMaxScaler()
261
+ s_minMax = min_max_scaler.fit_transform(np.array(s).reshape(-1, 1))
262
+ self.s_minMax = s_minMax.reshape(s_minMax.shape[0])
263
+
264
+ def __len__(self):
265
+ return self.data_test.shape[0]
266
+
267
+ def __getitem__(self, idx):
268
+ item = self.data_test.iloc[idx]
269
+ vid = item['video_id']
270
+
271
+ label = 1 if item['annotation']=='假' else 0
272
+ label = torch.tensor(label)
273
+
274
+ title_tokens = self.tokenizer(item['description'], max_length=512, padding='max_length', truncation=True)
275
+ title_inputid = torch.LongTensor(title_tokens['input_ids'])
276
+ title_mask = torch.LongTensor(title_tokens['attention_mask'])
277
+
278
+ comments_inputid = []
279
+ comments_mask = []
280
+ for comment in item['comments']:
281
+ comment_tokens = self.tokenizer(comment, max_length=250, padding='max_length', truncation=True)
282
+ comments_inputid.append(comment_tokens['input_ids'])
283
+ comments_mask.append(comment_tokens['attention_mask'])
284
+ comments_inputid = torch.LongTensor(comments_inputid)
285
+ comments_mask = torch.LongTensor(comments_mask)
286
+
287
+ comments_like = []
288
+ for num in item['comments_like']:
289
+ num_like = num.split(" ")[0]
290
+ comments_like.append(str2num(num_like))
291
+ comments_like = torch.tensor(comments_like)
292
+
293
+ frames=pickle.load(open(os.path.join(self.framefeapath,vid+'.pkl'),'rb'))
294
+ frames=torch.FloatTensor(frames)
295
+
296
+ frame_thmub = pickle.load(open(os.path.join(self.thumbframefeapath,vid+'.pkl'),'rb'))
297
+ frame_thmub = torch.FloatTensor(frame_thmub)
298
+
299
+ s = self.s_minMax[idx]
300
+ s = torch.tensor(s)
301
+
302
+ topic_title = self.topic_title[idx]
303
+ topic_title = torch.FloatTensor(topic_title)
304
+
305
+
306
+ return {
307
+ 'label': label,
308
+ 'title_inputid': title_inputid,
309
+ 'title_mask': title_mask,
310
+ 'comments_inputid': comments_inputid,
311
+ 'comments_mask': comments_mask,
312
+ 'comments_like': comments_like,
313
+ 'frames':frames,
314
+ 'frame_thmub':frame_thmub,
315
+ 's':s,
316
+ 'label_event':topic_title,
317
+ }
318
+
319
+
320
+ class TikTecDataset(Dataset):
321
+
322
+ def __init__(self, path_vid):
323
+ self.data_complete = pd.read_json('./data/data.json',orient='records',dtype=False,lines=True)
324
+
325
+ self.vid = []
326
+ with open(f'./data/vids/{path_vid}', "r") as fr:
327
+ for line in fr.readlines():
328
+ self.vid.append(line.strip())
329
+ self.data = self.data_complete[self.data_complete['video_id'].isin(self.vid)]
330
+
331
+ def __len__(self):
332
+ return self.data.shape[0]
333
+
334
+ def __getitem__(self, idx):
335
+ item = self.data.iloc[idx]
336
+ vid = item['video_id']
337
+
338
+ label = 1 if item['label']=='假' else 0
339
+ label = torch.tensor(label)
340
+
341
+ max_K = 200 # max num of frames
342
+ max_N = 500 # max num of ASR words
343
+
344
+ # get caption feature
345
+ with open('./data/caption_w2v_pad%s.pkl' % vid, 'rb') as f:
346
+ caption_feature = pickle.load(f) # (num_frame, 100, 300)
347
+ if max_K / caption_feature.shape[0] >= 2:
348
+ times = math.floor(max_K / caption_feature.shape[0])
349
+ caption_feature = caption_feature.repeat_interleave(times, dim=0)
350
+ elif caption_feature.shape[0] > max_K:
351
+ times = math.ceil(caption_feature.shape[0] / max_K)
352
+ caption_feature = caption_feature[::times][:max_K]
353
+ actual_K = caption_feature.shape[0]
354
+ caption_feature = torch.cat([caption_feature, torch.zeros((max_K - caption_feature.shape[0], 100, 300))], dim=0)
355
+
356
+ # get visual feature
357
+ with open( './data/vgg19_result%s.pkl' % vid, 'rb') as f:
358
+ visual_feature = pickle.load(f) # (num_frame, 45, 1000)
359
+ if max_K / visual_feature.shape[0] >= 2:
360
+ times = math.floor(max_K / visual_feature.shape[0])
361
+ visual_feature = visual_feature.repeat_interleave(times, dim=0)
362
+ elif visual_feature.shape[0] > max_K:
363
+ times = math.ceil(visual_feature.shape[0] / max_K)
364
+ visual_feature = visual_feature[::times][:max_K]
365
+ visual_feature = torch.cat([visual_feature, torch.zeros((max_K - visual_feature.shape[0], 45, 1000))], dim=0)
366
+
367
+ # get ASR feature
368
+ with open('./data/asr_w2v+mfcc%s.pkl' % vid, 'rb') as f:
369
+ asr_feature = pickle.load(f) # (num_word, 300+650)
370
+ asr_feature = asr_feature[:max_N]
371
+ actual_N = asr_feature.shape[0]
372
+ asr_feature = torch.cat([asr_feature, torch.zeros((max_N - asr_feature.shape[0], 300+650))], dim=0)
373
+
374
+ # get frames mask & ASR words mask
375
+ mask_K = torch.zeros(max_K, dtype=torch.int)
376
+ mask_K[:actual_K] = 1
377
+ mask_N = torch.zeros(max_N, dtype=torch.int)
378
+ mask_N[:actual_N] = 1
379
+ if actual_N == 0:
380
+ mask_N[:] = 1
381
+
382
+ return {
383
+ 'label': label,
384
+ 'caption_feature': caption_feature,
385
+ 'visual_feature': visual_feature,
386
+ 'asr_feature': asr_feature,
387
+ 'mask_K': mask_K,
388
+ 'mask_N': mask_N,
389
+ }
390
+
391
+
392
+ class C3DDataset(Dataset):
393
+
394
+ def __init__(self, path_vid):
395
+ self.data_complete = pd.read_json('./data/data.json',orient='records',dtype=False,lines=True)
396
+
397
+ self.vid = []
398
+ with open('./data/vids/'+path_vid, "r") as fr:
399
+ for line in fr.readlines():
400
+ self.vid.append(line.strip())
401
+ self.data = self.data_complete[self.data_complete.video_id.isin(self.vid)]
402
+ self.data['video_id'] = self.data['video_id'].astype('category')
403
+ self.data['video_id'].cat.set_categories(self.vid, inplace=True)
404
+ self.data.sort_values('video_id', ascending=True, inplace=True)
405
+ self.data.reset_index(inplace=True)
406
+
407
+ self.c3dfeapath='./data/c3d/'
408
+
409
+ def __len__(self):
410
+ return self.data.shape[0]
411
+
412
+ def __getitem__(self, idx):
413
+ item = self.data.iloc[idx]
414
+ vid = item['video_id']
415
+
416
+ label = 1 if item['annotation']=='假' else 0
417
+ label = torch.tensor(label)
418
+
419
+ c3d = h5py.File(self.c3dfeapath+vid+".hdf5", "r")[vid]['c3d_features']
420
+ c3d = torch.FloatTensor(c3d)
421
+
422
+ return {
423
+ 'label': label,
424
+ 'c3d': c3d,
425
+ }
426
+
427
+
428
+ class VGGDataset(Dataset):
429
+
430
+ def __init__(self, path_vid):
431
+ self.data_complete = pd.read_json('./data/data.json',orient='records',dtype=False,lines=True)
432
+
433
+ self.vid = []
434
+ with open('./data/vids/'+path_vid, "r") as fr:
435
+ for line in fr.readlines():
436
+ self.vid.append(line.strip())
437
+ self.data = self.data_complete[self.data_complete.video_id.isin(self.vid)]
438
+ self.data['video_id'] = self.data['video_id'].astype('category')
439
+ self.data['video_id'].cat.set_categories(self.vid, inplace=True)
440
+ self.data.sort_values('video_id', ascending=True, inplace=True)
441
+ self.data.reset_index(inplace=True)
442
+
443
+ self.framefeapath='./data/ptvgg19_frames/'
444
+
445
+
446
+ def __len__(self):
447
+ return self.data.shape[0]
448
+
449
+ def __getitem__(self, idx):
450
+ item = self.data.iloc[idx]
451
+ vid = item['video_id']
452
+
453
+ label = 1 if item['annotation']=='假' else 0
454
+ label = torch.tensor(label)
455
+
456
+ frames=pickle.load(open(os.path.join(self.framefeapath,vid+'.pkl'),'rb'))
457
+ frames=torch.FloatTensor(frames)
458
+
459
+ return {
460
+ 'label': label,
461
+ 'frames': frames,
462
+ }
463
+
464
+
465
+ class BboxDataset(Dataset):
466
+ def __init__(self, path_vid):
467
+ self.data_complete = pd.read_json('./data/data_5500_revised.json',orient='records',dtype=False,lines=True)
468
+
469
+ self.vid = []
470
+ with open('./data/vids/'+path_vid, "r") as fr:
471
+ for line in fr.readlines():
472
+ self.vid.append(line.strip())
473
+ self.data = self.data_complete[self.data_complete.video_id.isin(self.vid)]
474
+ self.data['video_id'] = self.data['video_id'].astype('category')
475
+ self.data['video_id'].cat.set_categories(self.vid, inplace=True)
476
+ self.data.sort_values('video_id', ascending=True, inplace=True)
477
+ self.data.reset_index(inplace=True)
478
+
479
+ self.bboxfeapath = './data/bbox_vgg19/'
480
+
481
+ def __len__(self):
482
+ return self.data.shape[0]
483
+
484
+ def __getitem__(self, idx):
485
+ item = self.data.iloc[idx]
486
+ vid = item['video_id']
487
+
488
+ label = 1 if item['annotation']=='假' else 0
489
+ label = torch.tensor(label)
490
+
491
+ bbox_vgg = pickle.load(open(os.path.join(self.bboxfeapath,vid+'.pkl'),'rb'))
492
+ bbox_vgg = torch.FloatTensor(bbox_vgg)
493
+
494
+ return {
495
+ 'label': label,
496
+ 'bbox_vgg': bbox_vgg
497
+ }
498
+
499
+
500
+ class Title_W2V_Dataset(Dataset):
501
+ def __init__(self, path_vid, wv_from_text):
502
+ self.data_complete = pd.read_json('./data/data.json',orient='records',dtype=False,lines=True)
503
+
504
+ self.vid = []
505
+ with open('./data/vids/'+path_vid, "r") as fr:
506
+ for line in fr.readlines():
507
+ self.vid.append(line.strip())
508
+ self.data = self.data_complete[self.data_complete.video_id.isin(self.vid)]
509
+ self.data['video_id'] = self.data['video_id'].astype('category')
510
+ self.data['video_id'].cat.set_categories(self.vid, inplace=True)
511
+ self.data.sort_values('video_id', ascending=True, inplace=True)
512
+ self.data.reset_index(inplace=True)
513
+
514
+ self.wv_from_text = wv_from_text
515
+
516
+ def __len__(self):
517
+ return self.data.shape[0]
518
+
519
+ def __getitem__(self, idx):
520
+ item = self.data.iloc[idx]
521
+
522
+ label = 1 if item['annotation']=='假' else 0
523
+ label = torch.tensor(label)
524
+
525
+ text = item['description']+' '+item['ocr']
526
+ title_w2v = []
527
+ for word in jieba.cut(text, cut_all=False):
528
+ if self.wv_from_text.__contains__(word):
529
+ try:
530
+ title_w2v.append(self.wv_from_text[word])
531
+ except:
532
+ continue
533
+
534
+ title_w2v = torch.FloatTensor(title_w2v)
535
+
536
+ return {
537
+ 'label': label,
538
+ 'title_w2v': title_w2v,
539
+ }
540
+
541
+
542
+ class CommentsDataset(Dataset):
543
+
544
+ def __init__(self, path_vid):
545
+ self.data_complete = pd.read_json('./data/data.json',orient='records',dtype=False,lines=True)
546
+
547
+ self.vid = []
548
+ with open('./data/vids/'+path_vid, "r") as fr:
549
+ for line in fr.readlines():
550
+ self.vid.append(line.strip())
551
+ self.data = self.data_complete[self.data_complete.video_id.isin(self.vid)]
552
+ self.data['video_id'] = self.data['video_id'].astype('category')
553
+ self.data['video_id'].cat.set_categories(self.vid, inplace=True)
554
+ self.data.sort_values('video_id', ascending=True, inplace=True)
555
+ self.data.reset_index(inplace=True)
556
+
557
+ self.tokenizer = BertTokenizer.from_pretrained('bert-base-chinese')
558
+
559
+ hascomments = self.data['comments'].apply(lambda x:len(x)>0)
560
+ self.data = self.data[hascomments]
561
+ print (self.data.shape)
562
+
563
+ def __len__(self):
564
+ return self.data.shape[0]
565
+
566
+ def __getitem__(self, idx):
567
+ item = self.data.iloc[idx]
568
+ vid = item['video_id']
569
+
570
+ label = 1 if item['annotation']=='假' else 0
571
+ label = torch.tensor(label)
572
+
573
+ comments_inputid = []
574
+ comments_mask = []
575
+ for comment in item['comments']:
576
+ comment_tokens = self.tokenizer(comment, max_length=250, padding='max_length', truncation=True)
577
+ comments_inputid.append(comment_tokens['input_ids'])
578
+ comments_mask.append(comment_tokens['attention_mask'])
579
+ comments_inputid = torch.LongTensor(comments_inputid)
580
+ comments_mask = torch.LongTensor(comments_mask)
581
+
582
+ comments_like = []
583
+ for num in item['comments_like']:
584
+ num_like = num.split(" ")[0]
585
+ comments_like.append(str2num(num_like))
586
+ comments_like = torch.tensor(comments_like)
587
+
588
+ return {
589
+ 'label': label,
590
+ 'comments_inputid': comments_inputid,
591
+ 'comments_mask': comments_mask,
592
+ 'comments_like': comments_like,
593
+ }
FakeVD/code_test/utils/metrics.py ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import numpy as np
3
+ from sklearn.metrics import (accuracy_score, classification_report,
4
+ confusion_matrix, f1_score, precision_score,
5
+ recall_score, roc_auc_score)
6
+
7
+
8
+ def get_confusionmatrix_fnd(preds, labels):
9
+ # label_predicted = np.argmax(preds, axis=1)
10
+ label_predicted = preds
11
+ print (accuracy_score(labels, label_predicted))
12
+ print(classification_report(labels, label_predicted, labels=[0.0, 1.0], target_names=['real', 'fake'],digits=4))
13
+ print (confusion_matrix(labels, label_predicted, labels=[0,1]))
14
+
15
+
16
+ def metrics(y_true, y_pred):
17
+
18
+ metrics = {}
19
+ metrics['auc'] = roc_auc_score(y_true, y_pred, average='macro')
20
+ y_pred = np.around(np.array(y_pred)).astype(int)
21
+ metrics['f1'] = f1_score(y_true, y_pred, average='macro')
22
+ metrics['recall'] = recall_score(y_true, y_pred, average='macro')
23
+ metrics['precision'] = precision_score(y_true, y_pred, average='macro')
24
+ metrics['acc'] = accuracy_score(y_true, y_pred)
25
+
26
+ return metrics
FakeVD/code_test/utils/vggish_modified.py ADDED
@@ -0,0 +1,200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # This file is about how to transform an audio to features. (You can use open-source tools such as moviepy to split the audio from video. )
3
+ # The original file "vggish.py" and the pre-trained model weight are from https://github.com/harritaylor/torchvggish.
4
+ # We save the audio convolutional features as dict_vid_audioconvfea.pkl in the preprocessing, and merge the fc layers (L20-26 self.embedding) into SV-FEND to train.
5
+ # Therefore, in this modified file, we comment out "self.embeddings" (L39) and "postprocess"(L183-184) to obtain the output features of the convolutional layers.
6
+ # 本文件介绍了如何将音频转换为特征。(你可以使用诸如moviepy之类的开源工具从视频中分离音频。)
7
+ # 原始文件“vggish.py”和预训练模型权重来自https://github.com/harritaylor/torchvggish。
8
+ # 我们在预处理过程中将音频卷积特征保存为dict_vid_audioconvfea.pkl,并将全连接层(第20-26行的self.embedding)合并到SV-FEND中进行训练。
9
+ # 因此,在这个修改后的文件中,我们注释掉了“self.embeddings”(第39行)和“postprocess”(第183-184行)以获取卷积层的输出特征。
10
+
11
+ import numpy as np
12
+ import torch
13
+ import torch.nn as nn
14
+ from torch import hub
15
+
16
+ from . import vggish_input, vggish_params
17
+
18
+
19
+ class VGG(nn.Module):
20
+ def __init__(self, features):
21
+ super(VGG, self).__init__()
22
+ self.features = features
23
+ self.embeddings = nn.Sequential(
24
+ nn.Linear(512 * 4 * 6, 4096),
25
+ nn.ReLU(True),
26
+ nn.Linear(4096, 4096),
27
+ nn.ReLU(True),
28
+ nn.Linear(4096, 128),
29
+ nn.ReLU(True))
30
+
31
+ def forward(self, x):
32
+ x = self.features(x)
33
+
34
+ # Transpose the output from features to
35
+ # remain compatible with vggish embeddings
36
+ x = torch.transpose(x, 1, 3)
37
+ x = torch.transpose(x, 1, 2)
38
+ x = x.contiguous()
39
+ x = x.view(x.size(0), -1)
40
+
41
+ return x
42
+ # return self.embeddings(x)
43
+
44
+
45
+ class Postprocessor(nn.Module):
46
+ """Post-processes VGGish embeddings. Returns a torch.Tensor instead of a
47
+ numpy array in order to preserve the gradient.
48
+
49
+ "The initial release of AudioSet included 128-D VGGish embeddings for each
50
+ segment of AudioSet. These released embeddings were produced by applying
51
+ a PCA transformation (technically, a whitening transform is included as well)
52
+ and 8-bit quantization to the raw embedding output from VGGish, in order to
53
+ stay compatible with the YouTube-8M project which provides visual embeddings
54
+ in the same format for a large set of YouTube videos. This class implements
55
+ the same PCA (with whitening) and quantization transformations."
56
+ """
57
+
58
+ def __init__(self):
59
+ """Constructs a postprocessor."""
60
+ super(Postprocessor, self).__init__()
61
+ # Create empty matrix, for user's state_dict to load
62
+ self.pca_eigen_vectors = torch.empty(
63
+ (vggish_params.EMBEDDING_SIZE, vggish_params.EMBEDDING_SIZE,),
64
+ dtype=torch.float,
65
+ )
66
+ self.pca_means = torch.empty(
67
+ (vggish_params.EMBEDDING_SIZE, 1), dtype=torch.float
68
+ )
69
+
70
+ self.pca_eigen_vectors = nn.Parameter(self.pca_eigen_vectors, requires_grad=False)
71
+ self.pca_means = nn.Parameter(self.pca_means, requires_grad=False)
72
+
73
+ def postprocess(self, embeddings_batch):
74
+ """Applies tensor postprocessing to a batch of embeddings.
75
+
76
+ Args:
77
+ embeddings_batch: An tensor of shape [batch_size, embedding_size]
78
+ containing output from the embedding layer of VGGish.
79
+
80
+ Returns:
81
+ A tensor of the same shape as the input, containing the PCA-transformed,
82
+ quantized, and clipped version of the input.
83
+ """
84
+ assert len(embeddings_batch.shape) == 2, "Expected 2-d batch, got %r" % (
85
+ embeddings_batch.shape,
86
+ )
87
+ assert (
88
+ embeddings_batch.shape[1] == vggish_params.EMBEDDING_SIZE
89
+ ), "Bad batch shape: %r" % (embeddings_batch.shape,)
90
+
91
+ # Apply PCA.
92
+ # - Embeddings come in as [batch_size, embedding_size].
93
+ # - Transpose to [embedding_size, batch_size].
94
+ # - Subtract pca_means column vector from each column.
95
+ # - Premultiply by PCA matrix of shape [output_dims, input_dims]
96
+ # where both are are equal to embedding_size in our case.
97
+ # - Transpose result back to [batch_size, embedding_size].
98
+ pca_applied = torch.mm(self.pca_eigen_vectors, (embeddings_batch.t() - self.pca_means)).t()
99
+
100
+ # Quantize by:
101
+ # - clipping to [min, max] range
102
+ clipped_embeddings = torch.clamp(
103
+ pca_applied, vggish_params.QUANTIZE_MIN_VAL, vggish_params.QUANTIZE_MAX_VAL
104
+ )
105
+ # - convert to 8-bit in range [0.0, 255.0]
106
+ quantized_embeddings = torch.round(
107
+ (clipped_embeddings - vggish_params.QUANTIZE_MIN_VAL)
108
+ * (
109
+ 255.0
110
+ / (vggish_params.QUANTIZE_MAX_VAL - vggish_params.QUANTIZE_MIN_VAL)
111
+ )
112
+ )
113
+ return torch.squeeze(quantized_embeddings)
114
+
115
+ def forward(self, x):
116
+ return self.postprocess(x)
117
+
118
+
119
+ def make_layers():
120
+ layers = []
121
+ in_channels = 1
122
+ for v in [64, "M", 128, "M", 256, 256, "M", 512, 512, "M"]:
123
+ if v == "M":
124
+ layers += [nn.MaxPool2d(kernel_size=2, stride=2)]
125
+ else:
126
+ conv2d = nn.Conv2d(in_channels, v, kernel_size=3, padding=1)
127
+ layers += [conv2d, nn.ReLU(inplace=True)]
128
+ in_channels = v
129
+ return nn.Sequential(*layers)
130
+
131
+
132
+ def _vgg():
133
+ return VGG(make_layers())
134
+
135
+
136
+ # def _spectrogram():
137
+ # config = dict(
138
+ # sr=16000,
139
+ # n_fft=400,
140
+ # n_mels=64,
141
+ # hop_length=160,
142
+ # window="hann",
143
+ # center=False,
144
+ # pad_mode="reflect",
145
+ # htk=True,
146
+ # fmin=125,
147
+ # fmax=7500,
148
+ # output_format='Magnitude',
149
+ # # device=device,
150
+ # )
151
+ # return Spectrogram.MelSpectrogram(**config)
152
+
153
+
154
+ class VGGish(VGG):
155
+ def __init__(self, urls, device=None, pretrained=True, preprocess=True, postprocess=True, progress=True):
156
+ super().__init__(make_layers())
157
+ if pretrained:
158
+ state_dict = hub.load_state_dict_from_url(urls['vggish'], progress=progress)
159
+ super().load_state_dict(state_dict)
160
+
161
+ if device is None:
162
+ device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
163
+ self.device = device
164
+ self.preprocess = preprocess
165
+ self.postprocess = postprocess
166
+ if self.postprocess:
167
+ self.pproc = Postprocessor()
168
+ if pretrained:
169
+ state_dict = hub.load_state_dict_from_url(urls['pca'], progress=progress)
170
+ # TODO: Convert the state_dict to torch
171
+ state_dict[vggish_params.PCA_EIGEN_VECTORS_NAME] = torch.as_tensor(
172
+ state_dict[vggish_params.PCA_EIGEN_VECTORS_NAME], dtype=torch.float
173
+ )
174
+ state_dict[vggish_params.PCA_MEANS_NAME] = torch.as_tensor(
175
+ state_dict[vggish_params.PCA_MEANS_NAME].reshape(-1, 1), dtype=torch.float
176
+ )
177
+
178
+ self.pproc.load_state_dict(state_dict)
179
+ self.to(self.device)
180
+
181
+ def forward(self, x, fs=None):
182
+ if self.preprocess:
183
+ x = self._preprocess(x, fs)
184
+ x = x.to(self.device)
185
+ x = VGG.forward(self, x)
186
+ # if self.postprocess:
187
+ # x = self._postprocess(x)
188
+ return x
189
+
190
+ def _preprocess(self, x, fs):
191
+ if isinstance(x, np.ndarray):
192
+ x = vggish_input.waveform_to_examples(x, fs)
193
+ elif isinstance(x, str):
194
+ x = vggish_input.wavfile_to_examples(x)
195
+ else:
196
+ raise AttributeError
197
+ return x
198
+
199
+ def _postprocess(self, x):
200
+ return self.pproc(x)
FakeVD/dataset/data-split/event/vid_fold_1.txt ADDED
@@ -0,0 +1,970 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 3x5ukaaarhwb6mk
2
+ 3xqvbqu2mwutzqm
3
+ 3xann9z9p6a9cnk
4
+ 6986540295076859144
5
+ 3xq2wxtxsj9jut6
6
+ 6799618679307898125
7
+ 6799630403775859979
8
+ 6799610819052195083
9
+ 6799723170103348495
10
+ 6799805646259653892
11
+ 6799651993712413952
12
+ 6799618970572836096
13
+ 6800160905402338560
14
+ 6800604345059511563
15
+ 6799632397999574285
16
+ 6799624923137477896
17
+ 3x6hfvinryh5j7m
18
+ 3xtgnmm6ti7dax2
19
+ 6852945157218766091
20
+ 6924506575486930176
21
+ 6948678821382081799
22
+ 6626546582256880904
23
+ 3x7t93y4spz9vce
24
+ 3xakxrebxzvt9ym
25
+ 3xd2pmsy6jz5t64
26
+ 3xe35cdfnkit36c
27
+ 3xkv3tjmzcqvn9c
28
+ 3xrrf488kbvfniw
29
+ 3xw3y8ahpfbefak
30
+ 3xxhymwfjqiwaqk
31
+ 6818512388380282115
32
+ 6826694516725124363
33
+ 6829139570873863435
34
+ 6867415299667315980
35
+ 6876307200378146059
36
+ 6875943585640975629
37
+ 6710765185000361223
38
+ 6691237749439122702
39
+ 6735274778426395916
40
+ 6707521283178958083
41
+ 6708130500130770188
42
+ 6848416927472176391
43
+ 6692975444850986251
44
+ 7021383978431106311
45
+ 7021444066311179560
46
+ 7023193130031713575
47
+ 7023244925978397983
48
+ 7023245555539184931
49
+ 7035537991837699368
50
+ 7028151349657242894
51
+ 7024701019565182212
52
+ 7053134515258068257
53
+ 6965951577681169702
54
+ 6955367636876152077
55
+ 6877782422897822990
56
+ 6998395315200052492
57
+ 6672177708996349196
58
+ 6669681666606337291
59
+ 6670698133162315021
60
+ 6670693135917632771
61
+ 6670418901978959118
62
+ 6670080902330141956
63
+ 3xbaix7rtmyz4ak
64
+ 6670406765903023372
65
+ 6670084100352658701
66
+ 3x59uvnx32kkngy
67
+ 3xbiwhc4gr6aarm
68
+ 6723520593372957956
69
+ 6723540942005046536
70
+ 6723758691306327307
71
+ 6724072932240379139
72
+ 6724073013362412807
73
+ 7027902340577479975
74
+ 6862262999323774215
75
+ 6862317109200833806
76
+ 7021151306094038307
77
+ 7020601843373837579
78
+ 7020726223252851998
79
+ 7020398566292213006
80
+ 7020413584433810722
81
+ 7020709911310978312
82
+ 3xv8a322b2pi8da
83
+ 3xvw6gzi5j8rc6y
84
+ 6804697484024139023
85
+ 6804741575374015752
86
+ 6805499391944805639
87
+ 6804982145879166212
88
+ 6804778409202421007
89
+ 6804804465997139211
90
+ 6805038781247409421
91
+ 6805340083609144579
92
+ 6804979457431014670
93
+ 6804993725136162062
94
+ 6804855347765873920
95
+ 6805470549469351183
96
+ 3xic7kwhfqj4qzg
97
+ 6862992444389199107
98
+ 6826906406629788942
99
+ 6825652924190903556
100
+ 3xbfakcavgfknsi
101
+ 7002013336548297992
102
+ 6911886311465045259
103
+ 6911885762459962639
104
+ 6911946224694250766
105
+ 6912653109466647821
106
+ 6911959319927852295
107
+ 6911639638021098759
108
+ 6912372801232047372
109
+ 3xaghn65czmtaya
110
+ 3xvxpdrnhbrfsm6
111
+ 6834678309704535310
112
+ 6845079496467516672
113
+ 3xwais9i694b6ru
114
+ 6906797838299090184
115
+ 6923791489453575439
116
+ 7030642279803079973
117
+ 6906526529145081103
118
+ 7055213699849538831
119
+ 3xak4byq8e4ke42
120
+ 6945841715328716046
121
+ 6941179995440073998
122
+ 6955760886380367141
123
+ 6775508012497964303
124
+ 6905905064129416459
125
+ 6864306556071087367
126
+ 6773826654889364743
127
+ 7027911935391780110
128
+ 6660797234772266243
129
+ 6827524144276589835
130
+ 6585097411885010189
131
+ 6571231799966436621
132
+ 6584654455793257735
133
+ 6589802305174899972
134
+ 6585751304314817795
135
+ 6589804927680253192
136
+ 6585423557172399363
137
+ 6585701737036778755
138
+ 6589801702977703172
139
+ 6589801198071581960
140
+ 3xha6nekemhtwqg
141
+ 6907898669622660365
142
+ 7021897732549823758
143
+ 6816651986570661134
144
+ 6816658765379652875
145
+ 6819119145527872768
146
+ 7027884729215094020
147
+ 6796269202954095876
148
+ 6796250238131784975
149
+ 6796278439218253056
150
+ 6796892888799186187
151
+ 6795843422155558144
152
+ 6796235429608688900
153
+ 6999789925893737735
154
+ 6797768585096858880
155
+ 3xzxwfc65txdf4m
156
+ 3x3nakwg44m3c8q
157
+ 3xduvt257dpjr52
158
+ 3xm3faiugmt6vv4
159
+ 3xreagrs6ze2t62
160
+ 3xuuuke5drurc6y
161
+ 6973100059894254859
162
+ 6973131309623332131
163
+ 6973131558630821128
164
+ 6973131802902891810
165
+ 6973132866595130663
166
+ 6973132914473061644
167
+ 6973133690469633314
168
+ 6973134961222143266
169
+ 6973163491779726607
170
+ 6973583949612256526
171
+ 6973621961121484068
172
+ 6988058857863941383
173
+ 3xpfzzsb67hvhiy
174
+ 3xr3j2kpcvniegq
175
+ 6981628375173500191
176
+ 6981385008921595166
177
+ 6981393104481897742
178
+ 3xs5tnjjnigwbhi
179
+ 6890557139635473668
180
+ 3x34p5rv5rty2kq
181
+ 3x6rt3xnesb4qpe
182
+ 3x7yb5v5zsr9iwi
183
+ 3x9zrpu3gbf7hh2
184
+ 3xbd9q2xtppijqu
185
+ 3xjp7rzxfjd5wes
186
+ 3xue2zmk8tyzvc6
187
+ 6822179237424925960
188
+ 6823672276060278028
189
+ 6830025257416428800
190
+ 6882643461967777039
191
+ 6921274634578988292
192
+ 6925630911501307147
193
+ 6935673902374997278
194
+ 7023258320903441699
195
+ 7027841726249209124
196
+ 7049357768301546755
197
+ 6916026292047514887
198
+ 6915977232523545860
199
+ 6915942286828342543
200
+ 6916043629995887883
201
+ 6916123476306742531
202
+ 6916339179710418189
203
+ 6915999637065207055
204
+ 6915956003733310728
205
+ 6915955190193540352
206
+ 6916015148125703427
207
+ 6916020252455259407
208
+ 6916029513977613576
209
+ 6966807670456077582
210
+ 6995453847942499615
211
+ 6995458080293031198
212
+ 6995471139426274571
213
+ 7043746381047008545
214
+ 6735318039601958152
215
+ 3x5sidac4zdeb99
216
+ 6695230573637635335
217
+ 6863261542293441805
218
+ 7004128355888958753
219
+ 7005070507431169288
220
+ 7027877118893640968
221
+ 6843964897949142286
222
+ 6668609331593891080
223
+ 6761524739673558285
224
+ 6668169334721891588
225
+ 6667832599202860296
226
+ 6668604896394120462
227
+ 6999618607625866533
228
+ 6666751540021251331
229
+ 6708125601703660804
230
+ 6767485224801684747
231
+ 6659670456464903436
232
+ 6934517181774302464
233
+ 6946368506640223519
234
+ 6946559118064848162
235
+ 7043720289464749325
236
+ 6817309213111504139
237
+ 6815763546740116747
238
+ 6819227918212943104
239
+ 6819107059414437128
240
+ 6819103520705285388
241
+ 6841458671445183744
242
+ 6841898406458182927
243
+ 6841465100637883662
244
+ 6841737153366543629
245
+ 6842210280110296334
246
+ 6841448512274566400
247
+ 6842280784913550592
248
+ 6841480420991732992
249
+ 6841447480438131982
250
+ 3xhq44e6tbqy2w9
251
+ 6880825119963434247
252
+ 6880907739334315275
253
+ 6881087516192050440
254
+ 6880856650178104589
255
+ 3x8qz5767vxkabm
256
+ 6881548700108295427
257
+ 6881437296684518669
258
+ 3x6mys8ucuhcy9w
259
+ 3xiibw3b8djvzee
260
+ 3x8cdude385tekc
261
+ 3xc5gnc47aqijk4
262
+ 3xcz7in4que5si4
263
+ 3xdqfdv7mydwwfc
264
+ 3xekv75eurqih29
265
+ 3xirssh3uruebri
266
+ 3xu8n8jmv53tx34
267
+ 3xxpn236a2yfygq
268
+ 3x36yd4pq593xgq
269
+ 3x5ibdcizvyit4a
270
+ 3xeaxug5we475m9
271
+ 3xfugyiwur4urtm
272
+ 3xry52emffxvgeq
273
+ 3xyy2c76kfs56gu
274
+ 3xz4n9de78h5awk
275
+ 6917513241031642380
276
+ 6917513401027677440
277
+ 6917514786771160333
278
+ 6917517499756023052
279
+ 6917518319717338375
280
+ 6917519769889541391
281
+ 6917521385057160455
282
+ 6917530149990698240
283
+ 6917532912292252943
284
+ 6917534938292079879
285
+ 6919042388237241608
286
+ 6716132354248674563
287
+ 6693371163273399566
288
+ 6989245926250532137
289
+ 6988731395401059591
290
+ 6988823542125137192
291
+ 6988822051410742561
292
+ 6943077802723822881
293
+ 6845109782538472711
294
+ 6948746414448987404
295
+ 7038808265320418563
296
+ 6961724093309668641
297
+ 6959394593934822686
298
+ 6959483308090658078
299
+ 6801033814048099599
300
+ 6799920478912777487
301
+ 7009103145875819817
302
+ 6800390134777842952
303
+ 6800496422627167496
304
+ 6800490872300375296
305
+ 3xs5yyui9eixsis
306
+ 6951990295361817860
307
+ 3xdn98c7ghbj74c
308
+ 3xx4yy4qwzfmc8w
309
+ 6857760867765800195
310
+ 3xw59ifzkrgxeg4
311
+ 6829634216347716877
312
+ 6960500262389697806
313
+ 6960982614324874496
314
+ 6861586134191934733
315
+ 6861904335417232653
316
+ 6737534985860893965
317
+ 3x565u5rqzmdk2k
318
+ 6919103246233570564
319
+ 6737544416589876494
320
+ 6738672123256114444
321
+ 3xiqf9ynj4rteci
322
+ 6656020525690703118
323
+ 6601309012942130446
324
+ 6656609197859278083
325
+ 6656727039187438861
326
+ 6960636617618967840
327
+ 6656349042290724103
328
+ 6602072754596351240
329
+ 7027918320322006283
330
+ 6842634497394035981
331
+ 6907416097469910276
332
+ 6971562441322827021
333
+ 6758599323153403147
334
+ 6759121139760483587
335
+ 6991221279806229797
336
+ 6938907422522182953
337
+ 6937205315297398053
338
+ 6935414800474246431
339
+ 6940113892127395111
340
+ 6982495627968040199
341
+ 6993691653328489739
342
+ 6984169828995042574
343
+ 7023059343138442511
344
+ 6998826355425086756
345
+ 6981097615320468743
346
+ 6988313422119177506
347
+ 6932598050611334403
348
+ 6925030631521013004
349
+ 6966855785523547422
350
+ 6834140945643080974
351
+ 6835558642318658829
352
+ 6834394371866103055
353
+ 3x3chuj8nhc47uw
354
+ 7019625163473865996
355
+ 7021306852726050052
356
+ 7021159338882370855
357
+ 7021067470937001254
358
+ 7020326987369696526
359
+ 7023011062509260071
360
+ 6796086977654557960
361
+ 7019851942029561091
362
+ 7020227558654479650
363
+ 7020242118274764046
364
+ 7021440042019179791
365
+ 6933984545607863556
366
+ 6931586349568888078
367
+ 7024047971012480293
368
+ 7018383515674889504
369
+ 7055924468711050503
370
+ 3xzxrpdjujcqbxw
371
+ 3x6g8rysfypvsc6
372
+ 6991496387909209357
373
+ 6863203977656405256
374
+ 6861885697775701248
375
+ 6853626230684650755
376
+ 6844116748266917124
377
+ 6861525249188515076
378
+ 6749276397937757453
379
+ 3xs2zix577c8dt4
380
+ 3xtwsf2e372g64i
381
+ 7027894775168634148
382
+ 6991498016397987084
383
+ 6659729914352176395
384
+ 7013979030231764257
385
+ 6821462506544991496
386
+ 6789239936978652429
387
+ 6787931864230399247
388
+ 6824457136597110027
389
+ 6925406534285495565
390
+ 6820640530037361935
391
+ 6822741118699048199
392
+ 6792710074407062784
393
+ 6821498975498095875
394
+ 6925552908167630083
395
+ 6787712891559611652
396
+ 6788381071135329551
397
+ 6787684132538387712
398
+ 3x7tstw5zadfd74
399
+ 6753966052528508167
400
+ 6753977989278567683
401
+ 6753996415292149005
402
+ 6909380431892794631
403
+ 6988682262237793550
404
+ 6988446831701282080
405
+ 6991494535851330846
406
+ 6988470819655666956
407
+ 3xttzee8t79whbi
408
+ 6650297598831824132
409
+ 6650290016838864142
410
+ 6650290449728720132
411
+ 6650309954823654663
412
+ 3x6u8ywhvmp6nww
413
+ 3xvqu8etsfb5rbu
414
+ 3xzgybrcpf8zwfm
415
+ 6862496783692500228
416
+ 6873740731245219076
417
+ 6883831030139194637
418
+ 6884573066844835086
419
+ 6902244200536984835
420
+ 6947318617755127078
421
+ 6960566438436326693
422
+ 6968705181332557088
423
+ 7027867462083398945
424
+ 6895138486022688007
425
+ 6949094701811174692
426
+ 6844484276851952911
427
+ 7045198491735428366
428
+ 7040430639207714061
429
+ 7013610683375930656
430
+ 7050066710958853411
431
+ 6791773291511188749
432
+ 3x2k63gs7xyifmc
433
+ 6906270461873622272
434
+ 6906310378238561549
435
+ 6860371441007791368
436
+ 6848425894361517327
437
+ 6848861749949582592
438
+ 6848464753204006155
439
+ 6848579855626292494
440
+ 6848501754376539392
441
+ 6848770518095531277
442
+ 6848784835973057800
443
+ 6848899375402421508
444
+ 6848941907926584591
445
+ 6849580996883451150
446
+ 6680495441294920964
447
+ 6882908970764242187
448
+ 6686677511218220299
449
+ 6820179715064745229
450
+ 6823900927192272141
451
+ 6825143527085772045
452
+ 6836034235967524110
453
+ 7043312251079576864
454
+ 6817675724665703692
455
+ 6817979355336117511
456
+ 3xwr99t37ja3jku
457
+ 7020638514916117793
458
+ 6872907441135275278
459
+ 6872900172397989133
460
+ 6911949842147233032
461
+ 6872926439709134083
462
+ 6873751654743821576
463
+ 6872915896998825229
464
+ 7020638488198532356
465
+ 6873756007982583051
466
+ 6873021279260249344
467
+ 3xszmvkij5m7jm2
468
+ 3x622i8qqv825ym
469
+ 3x8yvwgeta3enn9
470
+ 3xfdbetmka48eiq
471
+ 3xjmbb3zj82t4uc
472
+ 3xjsgikfd6fxf4m
473
+ 3xppqx27b2354pm
474
+ 6866360146147265800
475
+ 6867361315111980291
476
+ 6991520662259125518
477
+ 6999597490399907109
478
+ 7000998985607531780
479
+ 7008828598815591713
480
+ 7027898091239968031
481
+ 7027922688245075207
482
+ 6723878732349721868
483
+ 6723872348761492739
484
+ 3x8xer3fc5y46dm
485
+ 3xc8f9m2xq24d82
486
+ 3xqg8tenvphfzbs
487
+ 3xy7jd3smwfm7tw
488
+ 6853242304224922894
489
+ 6924686470749965583
490
+ 6924875295799430415
491
+ 6924956003725364487
492
+ 6925223734156545287
493
+ 6925313216381734157
494
+ 6972494564657548583
495
+ 7029969757415673119
496
+ 7044719543280848141
497
+ 7044849883752320270
498
+ 6965921131731651851
499
+ 6839291158720433408
500
+ 6947274925078039811
501
+ 6991483878930124044
502
+ 6862165913668439309
503
+ 7007553697945324803
504
+ 7016712547759967523
505
+ 7055801040767159565
506
+ 7053378834468474149
507
+ 7029201231767784711
508
+ 7056682221725388064
509
+ 7034867342387596559
510
+ 3xzrpewykxkhw9g
511
+ 3xf4u9sitpxktha
512
+ 6996975047013354793
513
+ 6996149984123014411
514
+ 6996960184220339496
515
+ 6996180288422415656
516
+ 6848788248337173760
517
+ 6848853805828803852
518
+ 7018071222957182245
519
+ 6849611318106934536
520
+ 6849273789818113295
521
+ 6848846476597071115
522
+ 6849526244967533839
523
+ 6849259405859425551
524
+ 6849224773843701004
525
+ 6849290675947638031
526
+ 3xf3wg2qak5kvfy
527
+ 6794048844045765892
528
+ 6961671164758445324
529
+ 6961542946059488542
530
+ 3xga25kuspsv7tg
531
+ 6961332961169952011
532
+ 6961240655192427810
533
+ 6961571213114215718
534
+ 6961034313479605540
535
+ 7022235670324251941
536
+ 6970861964713004291
537
+ 7017376717115264286
538
+ 7016857783479979301
539
+ 6967733989947837730
540
+ 3x77de6ge8bcspu
541
+ 3xikv9ux8yi4cq6
542
+ 7020083040105893120
543
+ 7022429834466872589
544
+ 3x32xpnzvy8zprk
545
+ 3xckb5udfrjmrq9
546
+ 3xgskjc8s4dj8mi
547
+ 3xmyvj4mppnu28e
548
+ 3xqpk3jkqg8qa4y
549
+ 6824006803018353923
550
+ 6832616226582236423
551
+ 6839977126981127437
552
+ 6844306836745702656
553
+ 6844773921955400974
554
+ 6845971406891568391
555
+ 6858063433804401935
556
+ 6891203642074926350
557
+ 6928624085714914573
558
+ 6930455911005834508
559
+ 6935640384068439332
560
+ 6937114875189595423
561
+ 7035424396676320515
562
+ 7044795417824922891
563
+ 3xb4f8ixc7mcfs4
564
+ 3x27f5qs8sye8jy
565
+ 3x8w26udth22cu2
566
+ 3xffg69x86g3sy9
567
+ 3xnq42svbhe8sg4
568
+ 3xpe7ec2c8vxbqc
569
+ 6988436971450371342
570
+ 6989050946466630920
571
+ 6989054254346456327
572
+ 6989056563323358501
573
+ 6989068562510007590
574
+ 6989072004984999199
575
+ 6989073697432816933
576
+ 6989144378392497415
577
+ 6989233489522527503
578
+ 7015944426862152963
579
+ 6908100104171883791
580
+ 6860315708467711247
581
+ 6942624537611717896
582
+ 6870133525300006147
583
+ 6890842868357958927
584
+ 6833590376872316168
585
+ 3xuy84jd2yeie79
586
+ 6833743607174843655
587
+ 6833986187829562628
588
+ 6835958738646551808
589
+ 6987545166991084813
590
+ 6997606856353008911
591
+ 6968703581247524109
592
+ 6914868017910320384
593
+ 6915282201991007488
594
+ 3xhmq99savp4sxy
595
+ 6819587416542825731
596
+ 6859189072108260612
597
+ 7004304973991365919
598
+ 7024763407547125006
599
+ 7054496591473855747
600
+ 7035112768273517828
601
+ 6749387130092424459
602
+ 6749752784016379149
603
+ 7055540654083935523
604
+ 7034461852092353807
605
+ 6966971745383320847
606
+ 7042505949998828815
607
+ 3xu6chvjsunkf5e
608
+ 3xhhpqq7hw82wqy
609
+ 3xhx79jtrqtidx2
610
+ 6751580201026620686
611
+ 6891969449671265543
612
+ 6962697672247627019
613
+ 6962815025379544350
614
+ 6962474748638940451
615
+ 6960828951912566053
616
+ 6859694525888122112
617
+ 6716819704834428167
618
+ 6843713648347680012
619
+ 6998357222615043360
620
+ 6844056515222031623
621
+ 6593657216513871112
622
+ 6996465978309643527
623
+ 6996888663145696516
624
+ 6805277630758210823
625
+ 6672607427034107144
626
+ 6672596808490831108
627
+ 7030354324840566029
628
+ 7037462720379211011
629
+ 7035566006554643751
630
+ 7009133406340631842
631
+ 7055906127388658974
632
+ 7038252244478840095
633
+ 6981724915720310057
634
+ 7041933462365883683
635
+ 7026575265421610244
636
+ 6990508795952713000
637
+ 7037803401752677662
638
+ 7045383922292641031
639
+ 6897953983655136527
640
+ 7027674089112341795
641
+ 3xf849a5v87bxnw
642
+ 3xp8rwyviepz87q
643
+ 6991423203205713160
644
+ 6961335020694867240
645
+ 6994992929060277507
646
+ 6992536341691010304
647
+ 6992104868131458337
648
+ 6993172696712482062
649
+ 6993667558448696589
650
+ 6993897539623800100
651
+ 6962470014104423712
652
+ 3xd44tsqxrjfbaa
653
+ 6945723692513004836
654
+ 6763220699252411655
655
+ 6712014841738956035
656
+ 6792402142960323854
657
+ 6756123326000778507
658
+ 6704243435131522307
659
+ 6806202016768019725
660
+ 6806187842931297544
661
+ 6730797013505445133
662
+ 6714092438002208004
663
+ 6715018056688536844
664
+ 6838454773600111880
665
+ 6839913812527779084
666
+ 6841818957217795335
667
+ 3x4h25rqxf99t7i
668
+ 3xadd8whdwr4awa
669
+ 6838356560104803584
670
+ 6838545142350089486
671
+ 6839504528132312320
672
+ 6841202699501980940
673
+ 6798719685182475535
674
+ 3xaku2fi86cp8ey
675
+ 6947308827322731779
676
+ 7024788820474318094
677
+ 7046943614638787872
678
+ 7054011574050147598
679
+ 3xei8hkqz7i5kxi
680
+ 3xi6ijtrvqft7a6
681
+ 3xvs9yq5ssbq394
682
+ 6853279858903092488
683
+ 6904831360410602759
684
+ 6907161181887220996
685
+ 6956861520747760933
686
+ 6977934327946464548
687
+ 7013533576759086366
688
+ 7016269741698354467
689
+ 7029577288278641927
690
+ 7031744433435479310
691
+ 7036960164108324109
692
+ 7043265905731620103
693
+ 7043791676510440745
694
+ 7045236629421690153
695
+ 7058189158447140103
696
+ 7018074404609330472
697
+ 6855475582453484811
698
+ 6858882581929168131
699
+ 6855504368691678472
700
+ 7017791130548833536
701
+ 6811750377726283012
702
+ 7007602560160877859
703
+ 6963661561554586895
704
+ 6559701594739313923
705
+ 6988367031007464743
706
+ 6988347682641202465
707
+ 6988347102770335012
708
+ 6988364635367886087
709
+ 6988350632432356616
710
+ 6988332678042995976
711
+ 6988355207474187528
712
+ 6988342947431353604
713
+ 6988376220043955494
714
+ 6988345870337051934
715
+ 6988384134892703012
716
+ 6988362750644784423
717
+ 3xbvqhdas3sb89s
718
+ 6798661547246832907
719
+ 3xs9rjfy95uj4ea
720
+ 3xinbffb49q4fmu
721
+ 3x9gi9csrtcsg52
722
+ 6886296759493020941
723
+ 6886309004423810307
724
+ 6886310115218132224
725
+ 6886317851376913668
726
+ 6886334348988124430
727
+ 6886690524598635784
728
+ 6894612649531723022
729
+ 6999606918415273227
730
+ 6713066052504292616
731
+ 6723140781441322248
732
+ 6717960933538270477
733
+ 6875802829269880077
734
+ 6860043902666198275
735
+ 6763209184528928004
736
+ 6860488338697276687
737
+ 6860665652357631247
738
+ 7008903037779479849
739
+ 6854770358029995279
740
+ 6839197629331541262
741
+ 6789970177502055683
742
+ 3xkpprkxwqkt6ys
743
+ 6790312812737613063
744
+ 6893389748480625934
745
+ 6915213929752956168
746
+ 7021056131950857480
747
+ 7048461958416305448
748
+ 7048576318459497742
749
+ 6790021335000157440
750
+ 7047824234395045156
751
+ 6944229377320160548
752
+ 6766472450160053507
753
+ 6766223276566957319
754
+ 3x5p3pvd8pdky6c
755
+ 3x7i6xjvpbrjfzk
756
+ 3xsm3xg5m6b58c6
757
+ 3xu9ax8fa8w39iw
758
+ 6784181585978707204
759
+ 6784236847154384141
760
+ 6829946831397506307
761
+ 6829977515516251404
762
+ 6967239675295616293
763
+ 6965956531066014988
764
+ 7024722988222123302
765
+ 3xkgamjcnac2m49
766
+ 3xtkh89n2uagude
767
+ 6905321879456861454
768
+ 6905941408226528527
769
+ 6966646454219787560
770
+ 7008243555298774285
771
+ 3x8ex48wyuc5uhm
772
+ 3xcwdz3x45utvmw
773
+ 3xd5tzsfz34vufs
774
+ 3xfj824arvdbxn6
775
+ 3xmef2pdm6j5iu4
776
+ 7056718049017204004
777
+ 7056726761974926628
778
+ 7056960971734109476
779
+ 6924929045708705037
780
+ 6925218688496962830
781
+ 6924276158305438983
782
+ 3xsejbt27c6r6i4
783
+ 6924525157621026055
784
+ 6925366755388886286
785
+ 6924693693043674383
786
+ 6924868145664757006
787
+ 6925331872335580429
788
+ 6926321497606851855
789
+ 6882995145646673166
790
+ 6882982172739783939
791
+ 6882945901367676168
792
+ 6882958721719323916
793
+ 6883093359997635854
794
+ 6883733064015498500
795
+ 6883056976650046727
796
+ 6883041428973440267
797
+ 6883007372814503172
798
+ 6882992354949598479
799
+ 6883035443248516355
800
+ 6883007885299698947
801
+ 6884121331181292814
802
+ 6883002774582234383
803
+ 6883400207422197006
804
+ 3xk53itcrqz432s
805
+ 3xjczz4dpkdkgcw
806
+ 3xjdr3jbmdrhm3m
807
+ 6883878275328838920
808
+ 6882572192501026048
809
+ 6924308985721982221
810
+ 6851858895221181710
811
+ 6882342391844490504
812
+ 7010377197328305443
813
+ 3xzii8htr2xwmqk
814
+ 6884560770525400332
815
+ 6884930389090110734
816
+ 6888561950561684747
817
+ 3xtfeta6c3be4p9
818
+ 3xwrd6cqkgyqgt9
819
+ 6888255713102105859
820
+ 6888873897144454403
821
+ 6968702523637108004
822
+ 6732333962821209357
823
+ 6733905101359959300
824
+ 6883301375967546632
825
+ 6883404288052202759
826
+ 6883362164850101519
827
+ 6883432516573859086
828
+ 6883465133973048584
829
+ 6898624348354071811
830
+ 6883462157791399183
831
+ 6883471174009982219
832
+ 3xpuhre9xyv6qtm
833
+ 3x3jxftb49znrhi
834
+ 3xn9dj9fvbrfsz2
835
+ 3xsefhr4knp7zvm
836
+ 7050033675534208256
837
+ 7050407300435053832
838
+ 7050760867020934414
839
+ 7045134379881975051
840
+ 7044747295853759780
841
+ 7044752506311806238
842
+ 7045107637427506467
843
+ 7019839633865428262
844
+ 6850318649975229696
845
+ 6983145466733120775
846
+ 6849577913830952199
847
+ 6849845731646360832
848
+ 3xxhewhe8g8w9v4
849
+ 3xu977khz35sipa
850
+ 6896373201203514632
851
+ 6896293361062251780
852
+ 6896079262370057479
853
+ 6896014346149825799
854
+ 6896300872611990795
855
+ 6896344156965309708
856
+ 6896070752374623488
857
+ 6896297354702408974
858
+ 6896331262399712526
859
+ 3xh7penfq6teck2
860
+ 3x6vwx6hgtcckfe
861
+ 6879925463733652751
862
+ 3xajber3dnycv4i
863
+ 3xbf77vbekt2azq
864
+ 3xpagups3fpvmk9
865
+ 6828063511369813262
866
+ 6879648527568375051
867
+ 6879657338479922447
868
+ 6879725157846387975
869
+ 6904946721210617092
870
+ 6944183348491308318
871
+ 6952011958073838856
872
+ 3x47nmzxjjrrxjw
873
+ 6860312102125456644
874
+ 6860326519579970819
875
+ 6862492808612154637
876
+ 6796616456328072463
877
+ 6796850990931922190
878
+ 6796863411708792071
879
+ 6796982473969503503
880
+ 6796933052695186696
881
+ 6833975172467313933
882
+ 6796688776744750336
883
+ 6797002300104674560
884
+ 6796917456901246211
885
+ 6797017288722648335
886
+ 3x8p9urjt96ac6g
887
+ 3x5aidy7n7r83cw
888
+ 6827804688365227264
889
+ 6857411280916057357
890
+ 6676824324873243912
891
+ 6690414518859812109
892
+ 6701187302170823949
893
+ 6693141851832159491
894
+ 6908608281665654020
895
+ 7021086903294364964
896
+ 6718194044620573966
897
+ 6691617960399817992
898
+ 6717967309350243598
899
+ 3xz86kniwnn6y4a
900
+ 6984397462026997026
901
+ 6692770651482164488
902
+ 6691220078169427214
903
+ 3x83aw2k6kj6ce4
904
+ 3xb22nscgvnff3w
905
+ 3xc4ddad3iqv8d4
906
+ 3xdjh38f4v2bkig
907
+ 3xducwys6mt3c4y
908
+ 3xfd7k6bvnhhebw
909
+ 3xtj5q9jpwnmgqe
910
+ 6813635878624234767
911
+ 6815151234698251523
912
+ 6815153433662770439
913
+ 6816561551626013967
914
+ 6820699058919820556
915
+ 6841369965208145156
916
+ 6843587287889087755
917
+ 6950557313144982792
918
+ 7013592085433535785
919
+ 7015141085047491852
920
+ 3xhfcbjf9z2m6hm
921
+ 6853944547446148364
922
+ 6853962519736798479
923
+ 6853972709974494472
924
+ 6853973226440117517
925
+ 6854069496425073927
926
+ 6854097139853757704
927
+ 7027862919559925030
928
+ 6854012967072075021
929
+ 6854004597619494157
930
+ 6854116310993964301
931
+ 6853983235765046539
932
+ 7005542053106961677
933
+ 7031092145968729378
934
+ 6976556097561824525
935
+ 7027921075925191947
936
+ 6787699220339051783
937
+ 7047409022496017672
938
+ 6860809853275737344
939
+ 6989433418803186975
940
+ 6989576732403698985
941
+ 6989496406260157703
942
+ 6989484416708005152
943
+ 6989445925752163591
944
+ 6989551730866359564
945
+ 6989452227056258318
946
+ 6989424478283435301
947
+ 6996961870460505352
948
+ 7013643268407741709
949
+ 3xhtptauynmdupm
950
+ 3xj7w4vyyuumr3e
951
+ 3xkv582e67xapjm
952
+ 6989547032058875144
953
+ 6989541145835621632
954
+ 3xsvi2h3yqbv6ak
955
+ 7008360046098746664
956
+ 7008191125190151439
957
+ 7008444285003648291
958
+ 7008759062632434944
959
+ 7008192506793905442
960
+ 6908203817863499016
961
+ 6978466384560803103
962
+ 7019606833019047180
963
+ 6834678060604820744
964
+ 6978712054056111394
965
+ 7037119584104631587
966
+ 6765476032708381965
967
+ 6765480777158266115
968
+ 6765504634174917899
969
+ 6765587869026290956
970
+ 6765508874511338755
FakeVD/dataset/data-split/event/vid_fold_2.txt ADDED
@@ -0,0 +1,930 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 6885912598605237507
2
+ 6886430430208298255
3
+ 6915359540363939080
4
+ 6946922230706097408
5
+ 6963127737955470633
6
+ 6976452250612944139
7
+ 6989830805723811076
8
+ 7004371861605764365
9
+ 7006966963960286477
10
+ 7009810928149548318
11
+ 7029948498762157342
12
+ 7049184364088823053
13
+ 7028615037652618500
14
+ 6804705458432003328
15
+ 6666314921619295496
16
+ 3xac2wqftvihbu2
17
+ 3xgfgk5d4pn3j8k
18
+ 6838096889913707791
19
+ 6808542878009167107
20
+ 6808539046395038990
21
+ 6808728377600511232
22
+ 6808536938602040590
23
+ 6808538691502476556
24
+ 3x3q3hahn6m93cw
25
+ 3xqrdtygummwmr2
26
+ 3x432tjvxinwezy
27
+ 6844693085868264718
28
+ 6844820372278283531
29
+ 3x5828usxrrqke4
30
+ 6849644048446278919
31
+ 6849965766872173827
32
+ 6965912113130884365
33
+ 6849878626674986240
34
+ 6850019992428104974
35
+ 6849888470937193728
36
+ 3xpvhih995xmmk9
37
+ 6890103435056647424
38
+ 6890346401767623944
39
+ 6891596634208210187
40
+ 6890208945252732160
41
+ 6890138864099282176
42
+ 6890353470595976459
43
+ 6890129922103201024
44
+ 6890417090755333380
45
+ 6891946860613881100
46
+ 6890422869491354888
47
+ 3xetaq3xubvsd46
48
+ 3x8xhgx3nrphwgu
49
+ 3xp8t98jzm4jf6w
50
+ 6864421555695406347
51
+ 6864447937779453198
52
+ 6864464104908803336
53
+ 6864470920677936399
54
+ 6864536647506185486
55
+ 6864558022044241166
56
+ 6864585830682414336
57
+ 6864744594102357260
58
+ 6868404806692719879
59
+ 6864425749122780431
60
+ 6864490065901423884
61
+ 6864500261952556292
62
+ 3x9yakjnpve9pg4
63
+ 3x8xiugejvmptf2
64
+ 3xup3xc7d32xtsw
65
+ 3xwebu3zygidrk6
66
+ 3x6gdhd96a2snze
67
+ 6805200989348449550
68
+ 6806627068806286592
69
+ 6992930408786644258
70
+ 7027945823648435488
71
+ 6805484074208087309
72
+ 6805178488119659784
73
+ 3xtavn2cwiez7fu
74
+ 3xb6yajw26xiumw
75
+ 6806127747971206404
76
+ 6806135804818214151
77
+ 6806250764718132480
78
+ 7000946768321989901
79
+ 7029590123297754371
80
+ 6729863166571908359
81
+ 6827409976156310791
82
+ 7012795113373994275
83
+ 6856934489415814407
84
+ 6683993408370904328
85
+ 6702591963255885059
86
+ 6709066288955690247
87
+ 7020642445767511334
88
+ 6902403863274425612
89
+ 6896644027702152455
90
+ 6998866339808955659
91
+ 3x2j4qjgpky2tfw
92
+ 3x2td3pk9g35gq2
93
+ 3x497g6axqey4i2
94
+ 3xd8unj8q8q95t2
95
+ 3xiickbjafrcsjm
96
+ 3xrw9j53ib359fc
97
+ 3xx3izpfnseke8i
98
+ 3x3tsjvcbd8wzpi
99
+ 3xvdy99nxdp8agm
100
+ 6983501462441577735
101
+ 6983461700552953126
102
+ 6983493122789543182
103
+ 6995809692031208717
104
+ 3xjpdcaywncs5a2
105
+ 7027846689465568520
106
+ 6900018298834930957
107
+ 6935428450366803230
108
+ 6900073008388459784
109
+ 3xdbu5uxz57diks
110
+ 3xtnkcm8527zeh4
111
+ 3xryb33gbmepdes
112
+ 3xstdsmuasvpwy9
113
+ 6900421259419487495
114
+ 6841313813887831296
115
+ 6907264931377286414
116
+ 6858261421122243848
117
+ 7035206290636836096
118
+ 6908203826021534991
119
+ 6838465131337256207
120
+ 7000234313220476167
121
+ 3xhg6rkhqhrzd2c
122
+ 6577878573309234440
123
+ 6701101433736973575
124
+ 7034629754259098916
125
+ 6652318431716691203
126
+ 6655457533551004932
127
+ 6661953058412465420
128
+ 6933945482934832398
129
+ 6988778497846152488
130
+ 7008444769395281165
131
+ 7053657591594962210
132
+ 3x8dp7zscxri5d4
133
+ 3xeku62m6ws5f92
134
+ 3xgi3ftmi83ke2w
135
+ 3xjv9ezq4nx68di
136
+ 3xviwmw4hienh2g
137
+ 3xwpzj888xnjjaw
138
+ 3xyq4zsnhyksrcg
139
+ 6851908839277595918
140
+ 6948423138476625182
141
+ 6948604620235148585
142
+ 6959153860627811597
143
+ 6977581008392555784
144
+ 7027022221763824926
145
+ 7029617693196160290
146
+ 7046643645541403941
147
+ 7047470404633480462
148
+ 6866665922355088643
149
+ 6959943793139256583
150
+ 3xgxxwg4bs8hhiq
151
+ 6959868141245582622
152
+ 6961238020578102542
153
+ 6959858468081749280
154
+ 6959859820551851268
155
+ 6959869106610916622
156
+ 6959872435948735757
157
+ 6838792735034526991
158
+ 6905496338289511688
159
+ 6838725076267961608
160
+ 6838165218330152199
161
+ 6838726978653179144
162
+ 6871882437987716355
163
+ 6836670907902070020
164
+ 7027857818065669415
165
+ 7013557383226051872
166
+ 7004711785823472936
167
+ 6947639066594790695
168
+ 6842097049127718148
169
+ 6842189070978813184
170
+ 6842213274075843853
171
+ 6842285820909489421
172
+ 6842302496388517131
173
+ 6842311648456281348
174
+ 6842468747228335367
175
+ 6845464116518325504
176
+ 6845664512251645199
177
+ 6910821547510926592
178
+ 6942867105645694216
179
+ 6842842965895941384
180
+ 6842055637803797768
181
+ 6883109921852804366
182
+ 3xvg6dikbufifg2
183
+ 3xfves7h27ekhb2
184
+ 3x47b3x2jxzeu9s
185
+ 6722341983882333452
186
+ 6753893273120623886
187
+ 6753918581664140558
188
+ 6867356883720736011
189
+ 6877905833980726542
190
+ 6883028290722876679
191
+ 7015162143196613920
192
+ 3xiqs66buw6r2jw
193
+ 7039904064364088608
194
+ 7039905905583918340
195
+ 7039979927290039588
196
+ 7040993287494307086
197
+ 7042975772717436167
198
+ 7042982526268362015
199
+ 7045640507996916992
200
+ 6779036391969017096
201
+ 6777539314789207303
202
+ 6798066523282885896
203
+ 6797393343480417544
204
+ 6793884900228336911
205
+ 6798778448115551495
206
+ 6800188418136493320
207
+ 6806074889011825928
208
+ 6799925026771586312
209
+ 6797944476640775438
210
+ 6807213181593718028
211
+ 6797172611190181120
212
+ 3xkarx952igja9s
213
+ 3xcrsj8vuutz9ms
214
+ 3xpa7zcrqb7y9ae
215
+ 6821040396726963460
216
+ 3x8itqvvdgrs4nw
217
+ 3xt37ijwcw6bmda
218
+ 6755341958933155075
219
+ 6755405727952653580
220
+ 6755416306075356428
221
+ 6755768839365053700
222
+ 6757690178191576323
223
+ 6908996925001862407
224
+ 6991492579351203103
225
+ 3xcjwkhg9a9yz4m
226
+ 6723856443524566280
227
+ 6858865626597903624
228
+ 6896489623871032590
229
+ 6896848817627450637
230
+ 6982133029397482789
231
+ 6989478568946388260
232
+ 6992154335161486600
233
+ 6995183568620195103
234
+ 7043426723593014562
235
+ 6843792717835701511
236
+ 6823363913669725448
237
+ 6683804664594517251
238
+ 6683802242291698958
239
+ 6684239798695103755
240
+ 6790698483734039823
241
+ 6789596785385000205
242
+ 6791071587224292615
243
+ 6790610269031664904
244
+ 6791042788709469448
245
+ 6790987860217482504
246
+ 6790994130337090823
247
+ 6790377354146467087
248
+ 6929447653319216398
249
+ 6894407646229695748
250
+ 7048432073551383846
251
+ 6791783098536217856
252
+ 6791818457714380040
253
+ 6791871959547383051
254
+ 6803581739374595335
255
+ 6791785443517140232
256
+ 6792033909237435652
257
+ 6791839171230174475
258
+ 6791821286776507648
259
+ 3xfic7vvpyd7fxs
260
+ 6866321876864552203
261
+ 6897530029597527309
262
+ 7033034658308771110
263
+ 7040050087627607304
264
+ 7043952122508872994
265
+ 3xytyzwx3fpd5va
266
+ 6868923781004496136
267
+ 6870066869148093699
268
+ 6868843771530841347
269
+ 6867441948416855311
270
+ 6870812791691939079
271
+ 6988475024562720033
272
+ 6997215310415662375
273
+ 6988717281333251335
274
+ 6988500375594749214
275
+ 6968797115782941990
276
+ 6990396523871767844
277
+ 6960894401027575040
278
+ 6989223095152217356
279
+ 6748975268213427460
280
+ 6749010896951020808
281
+ 6749358587463650568
282
+ 6749419787849436429
283
+ 6749412337406561547
284
+ 7018091209382006029
285
+ 6749374182297013517
286
+ 6749357657875860747
287
+ 6749751267607727373
288
+ 6867859275339861248
289
+ 6894123336046005507
290
+ 7027992116609453350
291
+ 7013655059615583492
292
+ 6894418284972641549
293
+ 6937064570032819487
294
+ 3xzgq2kcu4xe9ce
295
+ 6894912494519799048
296
+ 6894438260290964751
297
+ 6906029310809771277
298
+ 6894808801057312003
299
+ 6768748406232943879
300
+ 6768749535347903755
301
+ 6900287208352189709
302
+ 6789764070896585997
303
+ 6858462238185966860
304
+ 6920765266288725262
305
+ 6855465207934831879
306
+ 6991053959905479948
307
+ 7035041510471093508
308
+ 6991063619983166733
309
+ 6991271392138317059
310
+ 6988802654352739597
311
+ 6660784036757196039
312
+ 6660794545132817668
313
+ 6831818405503454471
314
+ 6755736301779127559
315
+ 7001793175912205608
316
+ 7018090584246160647
317
+ 3x4vjn57kdewfhw
318
+ 3x45r2zhabatrie
319
+ 6864923280172666125
320
+ 6865153689397497101
321
+ 6865119605233405198
322
+ 6865237619538676992
323
+ 6865221230316784900
324
+ 6865501394292526350
325
+ 6865251877697752328
326
+ 6865226364723662093
327
+ 6865245516364598543
328
+ 3x2btk3372e8fiq
329
+ 3x7uvc8sb6xsdjk
330
+ 7017695556092890376
331
+ 7017414510847724836
332
+ 7017526065920789800
333
+ 7017442227408473385
334
+ 7018099873065028899
335
+ 7018011675534101798
336
+ 7017801758168648990
337
+ 7018060154117639432
338
+ 7017854651475283233
339
+ 3xkf5s3nx2t7qbk
340
+ 6737281726466329868
341
+ 6737250162667834627
342
+ 6737510247499451656
343
+ 6737593217153305869
344
+ 3xdypr2mia2fs69
345
+ 3xe83eqthe63p59
346
+ 6819144347590593795
347
+ 6872644808154844424
348
+ 6812356200517127428
349
+ 6810892086141783309
350
+ 6811601588193365255
351
+ 6810183442228088064
352
+ 6947553212157152542
353
+ 6897483952299314443
354
+ 6950201634651655437
355
+ 6969895125304626443
356
+ 7034062611872238856
357
+ 7052522725612489992
358
+ 6863378128375516420
359
+ 6863761687258959115
360
+ 7006270525844639016
361
+ 3x5ednv2v7uggb6
362
+ 3xt8acu6wtv37ks
363
+ 6950171571306695976
364
+ 6737972209689611523
365
+ 6737562768133721348
366
+ 3xf6gzk8mebxyjm
367
+ 3xqy7qr4amkp44i
368
+ 3xf254cgufipfa2
369
+ 6741223148525604108
370
+ 7051483674377768199
371
+ 6739713098640379148
372
+ 6805075102808476939
373
+ 6737869139471240456
374
+ 6737856627552161037
375
+ 3xt4jwpgfckzv8k
376
+ 6646725072495054094
377
+ 7048940393475460387
378
+ 6648940727432645901
379
+ 6989014784683429124
380
+ 6873498386075503887
381
+ 6853279754209086724
382
+ 6852869196473306382
383
+ 6854760502371880204
384
+ 7001781542766775583
385
+ 6790828160695946507
386
+ 6790922195494341896
387
+ 6790904987712113934
388
+ 6993132366109641988
389
+ 7006505596249738530
390
+ 7007335568988212515
391
+ 7007025077606714635
392
+ 7000551278275300608
393
+ 6992166958540148004
394
+ 6998697010668784910
395
+ 6716849310362848523
396
+ 6992174785912425736
397
+ 6989122943116741919
398
+ 6985410472111541534
399
+ 6847061751171714319
400
+ 6846941022308683016
401
+ 6965949219823734052
402
+ 3x29qa3tdevpjby
403
+ 3x83d33mbekpx9e
404
+ 3xafa6w6iksyr9u
405
+ 3xhqddfy9c767cc
406
+ 3xnju8srvdbjgwa
407
+ 3xnuy4rkufkecmm
408
+ 3xtrxrpz8cvkpt2
409
+ 3xubrwrx6ik7eyk
410
+ 6894080336926346510
411
+ 7012816937730313502
412
+ 7012823302880185607
413
+ 7012842517238533406
414
+ 7012901246478667011
415
+ 7012977027187821838
416
+ 7013170559047568673
417
+ 7013226060045110558
418
+ 7013654980955557150
419
+ 7013670245978148132
420
+ 7015413269745700134
421
+ 7037720351664590120
422
+ 6852598901032160520
423
+ 6926828154090687752
424
+ 6852618779000671488
425
+ 6813906455280897283
426
+ 6852585647857749263
427
+ 6884213334812527872
428
+ 3x44qdubkgakpya
429
+ 3x9dv6iyh9vqsny
430
+ 6680479610414664974
431
+ 6680484308932726023
432
+ 6998461234035150117
433
+ 7007696528345173252
434
+ 7031939937406553381
435
+ 7032866394190417155
436
+ 7032869305435933963
437
+ 7043587064008281358
438
+ 7043748758198258975
439
+ 6896844454724930831
440
+ 6965945917509733635
441
+ 7039894871749987621
442
+ 6896766740038962444
443
+ 6896757248098307328
444
+ 6896752604198604046
445
+ 6746744077246647560
446
+ 3x7m98cncgw25b4
447
+ 6988569067028303141
448
+ 6988398931788975391
449
+ 6988524874654289184
450
+ 3xbp92npgu2ppeu
451
+ 3xy4vn77pthun2s
452
+ 7046313095060311333
453
+ 7003606994833771806
454
+ 7036923326471671053
455
+ 7038198919838387493
456
+ 6994584141287165219
457
+ 7040481564500774178
458
+ 3x8ft3yny3j9nqs
459
+ 3xesx39h9s7x9bw
460
+ 6997292529616030979
461
+ 6997638901053590791
462
+ 6997354476185095428
463
+ 6997681180728413480
464
+ 6802604813633785096
465
+ 6802851077705288963
466
+ 3xjbrxwwnt7eiek
467
+ 3xtrcijpu64y6xc
468
+ 6802751301202595087
469
+ 6802770862526319872
470
+ 6802839353497242893
471
+ 6803138853226990855
472
+ 6803639669138492680
473
+ 6803611700953189644
474
+ 6837784250800966920
475
+ 6837836003022064896
476
+ 6838012336184298765
477
+ 6838058397108079887
478
+ 6862496739316763908
479
+ 6919111578998639876
480
+ 6951986198319516939
481
+ 7027860249763646750
482
+ 7027865298359307553
483
+ 6837999103167761672
484
+ 3x4fprj2y3wkpqq
485
+ 3x5qyy5ckq7swuw
486
+ 3x8prc8e4yqbu3i
487
+ 3xfyscnma4nsmyc
488
+ 3xksn2sa94by5ge
489
+ 3xpjkw34pxm5exi
490
+ 3xvaagirk8be4b9
491
+ 3xzzegwhwiw7de9
492
+ 6766217741016763660
493
+ 6766220299689053444
494
+ 6766220724072910088
495
+ 6766222242721434894
496
+ 6766228423317703940
497
+ 6766234763129867527
498
+ 6766248464813722893
499
+ 6766370765701991687
500
+ 6766508408339221768
501
+ 7008815008708611360
502
+ 3x6rptbr78izvt6
503
+ 3xfesnh86g47gq6
504
+ 3xi25a5xuir6966
505
+ 3xqbbtffv6kfquq
506
+ 3xrgk8f4vrrsghq
507
+ 3xsjsfimkn7f4pu
508
+ 6777155234998340872
509
+ 6854107493627399437
510
+ 6862620046783548686
511
+ 6905628008716029197
512
+ 6911241104876752141
513
+ 6927492596331728135
514
+ 6988028759072967940
515
+ 6991510973530033441
516
+ 6601765814712405251
517
+ 6601707759312309512
518
+ 6637504149732723981
519
+ 6601686537832762637
520
+ 6601845922928266500
521
+ 6601803968425233671
522
+ 6601690518281784579
523
+ 6601810803031035144
524
+ 7045091116760239360
525
+ 6984729526995586345
526
+ 7011798479798324520
527
+ 6605897306417925389
528
+ 7035978396383431976
529
+ 7043412541501984038
530
+ 7032213017500732680
531
+ 6964305242070469922
532
+ 7050313098820947207
533
+ 7028703095957851407
534
+ 6877678568873168135
535
+ 6660788747598040333
536
+ 6864820920872127758
537
+ 6865234646532132096
538
+ 3xmfdvafpnuxhe6
539
+ 3x8tfm78zjzuk2i
540
+ 3xnv3vyayyczw6a
541
+ 6860436552699350272
542
+ 3xyyxafu83i2d74
543
+ 6965376782115572999
544
+ 6965408559379074340
545
+ 6965453905228483874
546
+ 6965764136655539493
547
+ 7037346913875709197
548
+ 7037347520925715720
549
+ 6771052622569901319
550
+ 3xditxafxkx2p52
551
+ 3xf9bm4943xu8z2
552
+ 6988666769787325733
553
+ 6988533578246147358
554
+ 6988507083100458244
555
+ 6989044780927864100
556
+ 6988502550131608846
557
+ 6988493829875813644
558
+ 6988877168315092237
559
+ 6910238257267641613
560
+ 6892230838822440195
561
+ 6899240792330718477
562
+ 6899267608013507840
563
+ 6835822316132240651
564
+ 3xajn7s22e3bccs
565
+ 3xpdjq32v5rzp82
566
+ 3xr3a8wyr7m4b5w
567
+ 6819136014683032840
568
+ 6819192874383576331
569
+ 3x8trva9ykrpdr2
570
+ 3xuwiu26x2fzciy
571
+ 6824273888134941966
572
+ 6824298917363043588
573
+ 6824303959415557387
574
+ 6824343107169996035
575
+ 6824345287847349515
576
+ 6824447680635309325
577
+ 6824456540989230344
578
+ 6824515285085687048
579
+ 6824790268290632968
580
+ 6824833850066095368
581
+ 6825418062817152270
582
+ 6865979338509126912
583
+ 6778845316692135175
584
+ 7000288201763982623
585
+ 6657757273663737100
586
+ 6657315189093862668
587
+ 6888541926488804621
588
+ 6732085366825700612
589
+ 6854704649019198727
590
+ 3xa3247p7my2z96
591
+ 3xcieg4sgab3wse
592
+ 7000992974133939470
593
+ 6837286484110855432
594
+ 6658097607740558606
595
+ 7057257608880655650
596
+ 7056176038535056651
597
+ 7054330907901136166
598
+ 7053088371425529092
599
+ 7053012112385363215
600
+ 7053069428979764487
601
+ 7053628147362942223
602
+ 7057450949576609031
603
+ 7052273452274830599
604
+ 3xdq4zhsege5nsi
605
+ 6843323742291070208
606
+ 3x9f3hnsdu3n9j2
607
+ 6896777878248131855
608
+ 3x52i9jh8en2xa4
609
+ 6965893452080909582
610
+ 6896844772661677316
611
+ 6896809184545787151
612
+ 7027848974430227744
613
+ 7027837603885911303
614
+ 6897084425113242893
615
+ 6897119580481801476
616
+ 6897412643976498440
617
+ 3xutqv3t3wgs5h4
618
+ 3xrdt2ia84kfdsk
619
+ 6722372266396536067
620
+ 7049920788383698215
621
+ 6648367305724005645
622
+ 7056404286284090662
623
+ 6937568290604682499
624
+ 6950543663424359693
625
+ 7057098924561108262
626
+ 7039513583717272863
627
+ 7050839413848296739
628
+ 7023492285463612708
629
+ 7045264001541917966
630
+ 7050820590671842572
631
+ 7049986028387568935
632
+ 6972815906502151463
633
+ 7016158173178481928
634
+ 7048197292616174862
635
+ 6992864494305217792
636
+ 7007322146288504096
637
+ 6960467999165926696
638
+ 6942027436464852254
639
+ 7002498473455045902
640
+ 6953206357570915599
641
+ 3x8y3r78ih2pcea
642
+ 3xhcekjaafetqdu
643
+ 6824693917791833347
644
+ 6925771486640819469
645
+ 6956513104595307776
646
+ 6960565268309445895
647
+ 7033979808505777411
648
+ 6887458098420731148
649
+ 6887468950859435268
650
+ 6734952578938883331
651
+ 6839432188866383118
652
+ 3xehe4cbsrr53vi
653
+ 6864452334915816704
654
+ 6984774738744790285
655
+ 6681912078522928396
656
+ 6877516937170144520
657
+ 3xsrwisvpm4brig
658
+ 7003940340956761381
659
+ 6901555943423692036
660
+ 6901991916812979456
661
+ 6901544459809459463
662
+ 7015592826054479138
663
+ 7014880697168973094
664
+ 7015912615247383815
665
+ 6968710894654197029
666
+ 6894435692538088707
667
+ 3x5azhb8s73fe3e
668
+ 6857787505337535752
669
+ 6872218356959677704
670
+ 6872241276243250444
671
+ 6961619376055291168
672
+ 6968712359783288103
673
+ 7015096155822394631
674
+ 7027902690940177675
675
+ 7033669372057111815
676
+ 7037808720532786445
677
+ 3xqeqr9w3n4c7hk
678
+ 3xwbjveiw8ap69s
679
+ 6639931517634088200
680
+ 6639935519650221316
681
+ 6639946938441534728
682
+ 6998389046774959397
683
+ 7006550296226712862
684
+ 7010563690705538335
685
+ 7010619156492061965
686
+ 7015088065521683744
687
+ 7018167400063372581
688
+ 7027875719078366476
689
+ 6923761208126377216
690
+ 6923944604484013319
691
+ 6923248650873326848
692
+ 6923392226127121672
693
+ 6924202569501920525
694
+ 6923403368471792907
695
+ 6923916971721510151
696
+ 6942864805426416928
697
+ 6924132750555417864
698
+ 6923935118297959684
699
+ 6924190461619932419
700
+ 6923901827289320715
701
+ 6991475682643692813
702
+ 6924182159754267904
703
+ 6923881986759216388
704
+ 6924240755338775822
705
+ 6924113151701159183
706
+ 6924276047198407951
707
+ 6924263691001154830
708
+ 6923906958311427332
709
+ 6924193678906936591
710
+ 6923859622524701967
711
+ 3xyrmsa99e4kqhi
712
+ 3xr9z4a2euei2kk
713
+ 7048969477999840516
714
+ 6787190557866200323
715
+ 6789737243754974468
716
+ 6747713690004425998
717
+ 6786598297932025092
718
+ 6788717427145428236
719
+ 7002009621653130496
720
+ 7019485257175043335
721
+ 6782224171817635084
722
+ 6845554752420318468
723
+ 7026682604434902276
724
+ 6809108235757325582
725
+ 6809082780979399944
726
+ 6809086139736034572
727
+ 7045925414622989605
728
+ 6809088973919538435
729
+ 7030004578389183784
730
+ 6809993376138677511
731
+ 6811731857701358848
732
+ 6809107490568015115
733
+ 6811820983104638212
734
+ 3x3683vyxjb8jte
735
+ 3xazmuvizcaakxm
736
+ 3xd8gse9sunm5rq
737
+ 3xfbehbhbfjfi89
738
+ 3xfrr3t4zkmc5xq
739
+ 6883688654267567372
740
+ 6968682298413780236
741
+ 6818254662957812996
742
+ 6818172291185216771
743
+ 6818183900867693831
744
+ 6818176700526972175
745
+ 6818177047186181388
746
+ 6818178781300165899
747
+ 6818180586310536459
748
+ 6818180833631866120
749
+ 6818182445825903883
750
+ 6818189045835762957
751
+ 6818194765524389120
752
+ 6818211739641941259
753
+ 6755327541562690829
754
+ 6754986372974611725
755
+ 3x3r8a3maezknyw
756
+ 3xubjmdsfgj26m4
757
+ 7026358663065390348
758
+ 3x83zw7z59qpfx9
759
+ 3xdhivth2efuws9
760
+ 3x2x7x8gg67q3be
761
+ 3xcub57ub6j9jus
762
+ 3xnk6im4tswztt4
763
+ 3xycywheebhjz2a
764
+ 3xyu78psjmtc77k
765
+ 6845958218343091456
766
+ 6935740364347149583
767
+ 7013641819443563810
768
+ 7024876615393938724
769
+ 7025142316490919204
770
+ 7025145570293566731
771
+ 7025218023657114910
772
+ 6968732100300180744
773
+ 6969713655126510879
774
+ 6966460383699782953
775
+ 6828710235448872192
776
+ 6965421764612558091
777
+ 6791424540338605312
778
+ 6693709051819330820
779
+ 6966482095812218144
780
+ 3x7xvgsxawknjwi
781
+ 3xr43wnyik4ei9e
782
+ 6908553412116303111
783
+ 6691403747714764046
784
+ 6750090376167656712
785
+ 6750084855222013188
786
+ 6927088372099927303
787
+ 6927098259127274759
788
+ 6927186101178502408
789
+ 6719367286420983043
790
+ 6819225937868000523
791
+ 6902244853975928068
792
+ 6983295000121511208
793
+ 6996208267248536865
794
+ 6929818142382247179
795
+ 6910034292022217996
796
+ 6882327798631943435
797
+ 7029602985692941572
798
+ 6881900497465380104
799
+ 6917951732773375239
800
+ 6935411196338228495
801
+ 6883481842016603395
802
+ 7047561614614187264
803
+ 6884414855001001231
804
+ 3x5e3gp2d87wyqa
805
+ 6881252546996948231
806
+ 3x6x7szqy97ixya
807
+ 3x9qj3njeezgam9
808
+ 3xj5igrhtitfruq
809
+ 3xkqq4gqv2jwebm
810
+ 3xpy6jveyc3ddqq
811
+ 3xr2jb4vkxvc4ba
812
+ 3xrrssc3euy6gvy
813
+ 3xuhnzpzcm59xjw
814
+ 6720810902158970120
815
+ 6790920932694281487
816
+ 6791023538900978947
817
+ 6791327276693769476
818
+ 6791831278296599822
819
+ 6827719074328349956
820
+ 6827785033965686023
821
+ 6944252027438468365
822
+ 7027888720120384775
823
+ 7029478371427912973
824
+ 7029504216238427431
825
+ 7029510412718624040
826
+ 7029591662020070691
827
+ 6904190453969620232
828
+ 6992530636137352481
829
+ 6866662937436769550
830
+ 7026283453658287400
831
+ 6924115033282596111
832
+ 6976190785423199518
833
+ 6832839786999336192
834
+ 7056381386420145444
835
+ 7030359137842154752
836
+ 7051811666438196521
837
+ 6980156179301387533
838
+ 7024261770944531751
839
+ 6810857820892728583
840
+ 3x86dqjqgniye9q
841
+ 3xtrrhe37egsz7s
842
+ 6818106186253077760
843
+ 6808699529592868104
844
+ 6690094171123911948
845
+ 6803220050435214605
846
+ 6803631659339009287
847
+ 6802876759202123023
848
+ 6803630413559385358
849
+ 6803550951979388160
850
+ 6803209256284736783
851
+ 6803906422519237891
852
+ 6803680340402539789
853
+ 3xdctnctbnzxt6y
854
+ 3x4tpy4899xiyie
855
+ 3x2zch5gn4zh9tm
856
+ 3xue5nc32hm4ahw
857
+ 6833180805523655936
858
+ 6828472686629473551
859
+ 6930202412284153102
860
+ 7032287848623639840
861
+ 6830322258532257024
862
+ 6828108856078372099
863
+ 6829344934055791885
864
+ 6828084054592703757
865
+ 6839860769656524045
866
+ 6849172354753465604
867
+ 6848835923430345997
868
+ 6848850561106808078
869
+ 6852959254513536270
870
+ 6848844197701618952
871
+ 6848874136572349709
872
+ 6848769788425063694
873
+ 6848898037788560647
874
+ 6848856703497194759
875
+ 6848922685674704128
876
+ 6848868667233471744
877
+ 6895645115327548683
878
+ 6863352314317638924
879
+ 7015126847277124878
880
+ 3x37hj7i43bnwxa
881
+ 3xsvtp3d7txyd5g
882
+ 3xq5c94hz2ew6mm
883
+ 3xr2uqhpipvf9x4
884
+ 3xp73wtgpv85ipe
885
+ 6965906243571485955
886
+ 7027855528684571907
887
+ 6849127595091512576
888
+ 6848894223253523724
889
+ 6848893667097316623
890
+ 3xmjtdz9jeuagjc
891
+ 3xg6jpkp9afa9z4
892
+ 3xyrp5kjzkx6i3e
893
+ 6859227229776268555
894
+ 6859536716722638095
895
+ 6987765025024773380
896
+ 6987926512364277007
897
+ 6987961460941016334
898
+ 6988160063231888675
899
+ 6988303473049734437
900
+ 6988398982594596103
901
+ 6988417863581256990
902
+ 6992805039286930729
903
+ 6992870723819801887
904
+ 6988704735511530790
905
+ 6988717700398746910
906
+ 3x2cmdj3f78srsm
907
+ 3xjkkiwz4i8q5ek
908
+ 3xm8r468bs4vh2k
909
+ 3xm96t56etnsz7w
910
+ 3xr9mwqg8dnh9q6
911
+ 6857307515592396045
912
+ 6857313418328689935
913
+ 6857423306220457230
914
+ 6896644309940997389
915
+ 6951984332437245215
916
+ 6996165317244341541
917
+ 6988105022747807011
918
+ 6988040278133296419
919
+ 6979954800599371039
920
+ 6987756426290531624
921
+ 6988363802492308772
922
+ 6988328883036654855
923
+ 6988265709788843271
924
+ 6988157324527439136
925
+ 3xnw94dj3fmcztu
926
+ 6961635135196351781
927
+ 6961171972868902148
928
+ 3xr3kfv5dcbqine
929
+ 6961414337353354531
930
+ 6961686581413514503
FakeVD/dataset/data-split/event/vid_fold_3.txt ADDED
@@ -0,0 +1,955 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 6893044994064600332
2
+ 6893079981358861581
3
+ 6671891732524829965
4
+ 6730921689619746059
5
+ 6732011912634125575
6
+ 6975525474722270494
7
+ 6992786592934956325
8
+ 6993940443503365383
9
+ 7016541340636941599
10
+ 7016544513078431006
11
+ 7055180730518883587
12
+ 7031859613460925736
13
+ 7056300233491303691
14
+ 7036952898252639503
15
+ 7042975466105343271
16
+ 7044047262388882688
17
+ 7016082793277033758
18
+ 6853306188751277324
19
+ 6815514117089119488
20
+ 7015131742344350984
21
+ 6846279291731315981
22
+ 6846278828227136781
23
+ 6846393271279783183
24
+ 6846363199571283207
25
+ 6846270187113630990
26
+ 6846350151716588800
27
+ 6846323530779430152
28
+ 6846256034172964111
29
+ 6846302822405803268
30
+ 6846299323572030728
31
+ 6846303393753992448
32
+ 6723367944341998852
33
+ 6846239194554060047
34
+ 6853285242413911311
35
+ 6855571163804863744
36
+ 6631872122111134989
37
+ 6631908657430793476
38
+ 3x2t7ggzjjt2rxy
39
+ 3x7y3ftb2pw3hk4
40
+ 3xnytmuxj3q5yeu
41
+ 6846696067157855501
42
+ 6845139126321302798
43
+ 6854088274965728525
44
+ 6888548536619650311
45
+ 6846555826107337997
46
+ 6854700483416689934
47
+ 6872898807584066830
48
+ 6911959277749947662
49
+ 7028054479111015692
50
+ 6862983978555641096
51
+ 6864082334421945604
52
+ 7026928413533392158
53
+ 7016914704752725263
54
+ 7027130384802450688
55
+ 7015553248283217190
56
+ 7016168109925027106
57
+ 7013548667487423781
58
+ 3x6inzb55at7vcq
59
+ 3xi7c26x8b2n8xm
60
+ 3xt67pft5fxj72m
61
+ 3x7f6bxg4j46cdk
62
+ 3xjtcqeba4gb9wa
63
+ 3xqd4wg3dspf9ra
64
+ 6711673130307423499
65
+ 6876084422584585472
66
+ 6921530276170550543
67
+ 6949057632543968526
68
+ 7003728090253774115
69
+ 7012226315784899881
70
+ 7011435340359552268
71
+ 7023287644146633995
72
+ 7015866922952641800
73
+ 7010716223960812834
74
+ 7012377268827802895
75
+ 3xh3bvqxk5dzyag
76
+ 3xngtmpr3darssi
77
+ 3x7rav9yzk3whvw
78
+ 7016917914628459780
79
+ 6814268707116829955
80
+ 3xezr4htuqxmh9c
81
+ 3xpxazku5zy6hki
82
+ 3xga74hk8bzbgt4
83
+ 6959445688598023432
84
+ 6815059537582755072
85
+ 6964307997883403527
86
+ 6964369257022999849
87
+ 6933420613256105219
88
+ 7000560277502659875
89
+ 7000948535936011557
90
+ 7007294950069013775
91
+ 7004612252749794567
92
+ 7004044204104092935
93
+ 6593855966033218824
94
+ 7032453438562700578
95
+ 6878115211723689230
96
+ 6884856957434367246
97
+ 6876248127704255759
98
+ 6611022763593305357
99
+ 3x2btceauwuicmq
100
+ 3xwej5gfvj7dk42
101
+ 3xcqacxk9636cke
102
+ 6806817903996914948
103
+ 6806837820825619712
104
+ 6806852595315969293
105
+ 6806876094176759054
106
+ 6806911175415155980
107
+ 6965939071847779615
108
+ 6965948064905399555
109
+ 6850073170922196239
110
+ 6891166905764302084
111
+ 6960701115130285346
112
+ 6988539797950319908
113
+ 6989159538079321352
114
+ 6588057622690139396
115
+ 6810364597237845256
116
+ 6824314763397369101
117
+ 6665860072050150659
118
+ 6584309915597147395
119
+ 6882734940627258638
120
+ 6882597499773734156
121
+ 6882284651981950212
122
+ 6882019900957707535
123
+ 6882376493612289295
124
+ 6882285474606566667
125
+ 6969968631992028453
126
+ 6881996672826641679
127
+ 6882179308740234510
128
+ 6882688817216687360
129
+ 6883695293607496964
130
+ 6882324874296167688
131
+ 6883309663887052045
132
+ 6882371254087601416
133
+ 6882335565744721160
134
+ 6882551291101465856
135
+ 6883427969172393231
136
+ 6887537198124567808
137
+ 6882261368679025932
138
+ 6884233572681567488
139
+ 6882519280492055823
140
+ 6882207314565287175
141
+ 3xsbaf8588raa5w
142
+ 6761685888939478285
143
+ 6873805237992393987
144
+ 6873800821826522383
145
+ 6874103148731059469
146
+ 6873855139153825039
147
+ 6873797503909711107
148
+ 6873800780508417280
149
+ 3x89nyhjrvzwu4w
150
+ 6746074256381054215
151
+ 6601651424973557006
152
+ 6601363612395113732
153
+ 6601567618816019725
154
+ 6601367719201737987
155
+ 6601471942249680132
156
+ 6603272419895414024
157
+ 6601472765788687629
158
+ 3xyee2uc9irhyw9
159
+ 6661955363564309764
160
+ 6661968458898607368
161
+ 6662572764358118659
162
+ 6662628773718019335
163
+ 6664133446220369165
164
+ 6967505700071263524
165
+ 6971075536311307552
166
+ 7018142188026547467
167
+ 7018157503468834084
168
+ 7038497948476378383
169
+ 6800979777382649095
170
+ 6811243864851025156
171
+ 6789893745149086990
172
+ 6792797475833990400
173
+ 6791347567276854543
174
+ 6792897401788091660
175
+ 6795781027680898304
176
+ 6789837915535969544
177
+ 6791108774804376845
178
+ 7008076204368596255
179
+ 6789943769178311948
180
+ 3x2hqy3c9hdfr46
181
+ 3x3ckmbkc4fr3b2
182
+ 6766397552943287555
183
+ 6766462015247518980
184
+ 6898627406563757316
185
+ 6794990416669330688
186
+ 6999580002933116198
187
+ 6795018932831980800
188
+ 3xvuu6r9eersygk
189
+ 3xxgdfjxqf42ui9
190
+ 6817955495341542669
191
+ 6818191541836795147
192
+ 6818384473957092611
193
+ 6829168861053537544
194
+ 6909663625506508032
195
+ 6861811404760960256
196
+ 6862218894397017344
197
+ 6854428993400098062
198
+ 6854411205600136455
199
+ 6854466699173842176
200
+ 6854532920569236744
201
+ 6849325235796184333
202
+ 6849139091796282624
203
+ 3x94cf2iqnb2y69
204
+ 3xvh3yfxgn2sude
205
+ 6848860607907695883
206
+ 6848892717498371336
207
+ 6848960147729960207
208
+ 6849178857996684552
209
+ 6849158025442266368
210
+ 3x4p7wvtv2pd9bg
211
+ 3xcskteswkckwn2
212
+ 3xmnhs7jun9jukk
213
+ 3xpeuqgdstzbg4e
214
+ 3xsr58cwtw5uyjy
215
+ 6836656871059819784
216
+ 6961679665048096031
217
+ 3xg97d5m8rgd4eq
218
+ 6916438087664962823
219
+ 6916496093836594447
220
+ 6916680730785402119
221
+ 6916693245837806863
222
+ 6916697301520043264
223
+ 6916708434427530499
224
+ 6916735523188952328
225
+ 6916754377227111688
226
+ 3xn5r5hunm3npwq
227
+ 3xujjxnpnu95mkg
228
+ 6844722773693074691
229
+ 6848434489488624911
230
+ 6849160135001115917
231
+ 6824382577302850829
232
+ 3x7e8w4ccghcery
233
+ 3xhbwukg4sg52sm
234
+ 3xrq9wuzmb2n2wg
235
+ 3xsqqbaw8hmytju
236
+ 6837332562436738307
237
+ 6956010318124404002
238
+ 6965901953180208423
239
+ 6968679947346939167
240
+ 6803587758137806088
241
+ 6967908914419485988
242
+ 6967963198112713997
243
+ 6968670645626342686
244
+ 7024506816197365003
245
+ 6743389763094498573
246
+ 6743386932136414471
247
+ 6743882384711634184
248
+ 3xucctxw92h6iy4
249
+ 6898573443512552717
250
+ 6826634159990017291
251
+ 6923485823371447559
252
+ 7007607583020240164
253
+ 7007625423093796132
254
+ 7007689008151055630
255
+ 7007725023771331844
256
+ 7018372776943766823
257
+ 6723073099874503940
258
+ 6723063742726245636
259
+ 6723845660061273356
260
+ 6723297674604350732
261
+ 7007324838620695849
262
+ 6723112787112971523
263
+ 6989542437265935629
264
+ 6987344677544398113
265
+ 6987652076654316830
266
+ 6988011078420647198
267
+ 6988843334437489950
268
+ 7036919950036012292
269
+ 7036319814654151947
270
+ 7037223827880938752
271
+ 3xtf6mqjhubyp6q
272
+ 3x4hfzaq6dgb4k9
273
+ 6934173790754573568
274
+ 6934516526846430464
275
+ 6763150823938690318
276
+ 3xk54x9mqy56dcq
277
+ 7015112781401787656
278
+ 6881463059546672388
279
+ 6881935035121847567
280
+ 6881220567740058883
281
+ 3xujti347fvjy3s
282
+ 6881530799594753288
283
+ 6881411791398735107
284
+ 3x2vrs88h8z6szq
285
+ 3x857esmry8jwjm
286
+ 3xfw32q4dqkiyyy
287
+ 3xpwbyigtq8bxhq
288
+ 3xrz7pxek48nqnm
289
+ 6951669781250542879
290
+ 7043686053001186567
291
+ 6990274939051986206
292
+ 6901513323875978496
293
+ 6991047652259499275
294
+ 7054857378411400456
295
+ 6916597493333527819
296
+ 6991375428766141710
297
+ 6916375091370642695
298
+ 6932372049864232196
299
+ 6916518350227098894
300
+ 3xkws3vq5f55hxq
301
+ 6995111532946328845
302
+ 7043022295295593763
303
+ 6766399412500581636
304
+ 6977225430944255244
305
+ 7023313508917972261
306
+ 7038594783354359075
307
+ 6922761154846592271
308
+ 7006174117300817192
309
+ 6845570754923203847
310
+ 7001820598901017856
311
+ 7021084862442474752
312
+ 7051519784583728397
313
+ 3xa2xdx6xjkqbn6
314
+ 3xmfngcjhkf8v2u
315
+ 7025213002756394276
316
+ 6805807308191419656
317
+ 6805829872481504520
318
+ 3xed6sthrk9xjj6
319
+ 7019175347518328098
320
+ 7019203424432475395
321
+ 7019183807249108254
322
+ 6969811065626496293
323
+ 6634052840174128397
324
+ 6826597464448044301
325
+ 7034840731491634446
326
+ 7034118132620971303
327
+ 7035068206834355469
328
+ 7034590432021581088
329
+ 7036681334651194632
330
+ 7035237862660525319
331
+ 7034713552313126175
332
+ 7034731648927255819
333
+ 7039270843121208584
334
+ 7035612977793387812
335
+ 3x2cayvnq245yna
336
+ 7022452124336262414
337
+ 6966937438413491488
338
+ 6966916807554813222
339
+ 6967168386627407138
340
+ 6966751274033351974
341
+ 6967251039728749855
342
+ 6966595257593007374
343
+ 6967522520727653673
344
+ 6967292987084672267
345
+ 6966894118236720414
346
+ 3x4f6tcsx5eg5me
347
+ 3x6zszjue2kspb9
348
+ 3xcv2rrgq6hxs6q
349
+ 3xexs4d8xaxzsxk
350
+ 3xkc68r7sikqn6w
351
+ 3xpvqxh8jt8fsvg
352
+ 6988538403017035044
353
+ 6988633278005644578
354
+ 6988648445850455335
355
+ 6988655021533564168
356
+ 6988658583508487432
357
+ 6988677562289458432
358
+ 6988685306669092129
359
+ 6988686083613543716
360
+ 6988722921858518276
361
+ 6988748341433601287
362
+ 6988749025277136159
363
+ 6989095482073025806
364
+ 6837363937797803278
365
+ 6871569249878478094
366
+ 6934678435339980046
367
+ 6871090374924897539
368
+ 3x6qiykm79uuibw
369
+ 3xnt2qj955tp79w
370
+ 7029994065131277598
371
+ 6991335890241015078
372
+ 6641159939815378190
373
+ 6851867018145090819
374
+ 6852105097892121871
375
+ 6852322189618842888
376
+ 3xur32aznsk2sps
377
+ 6851828761348852999
378
+ 6852482482604969223
379
+ 3xb5zsmtm53c49m
380
+ 7048919632329067810
381
+ 7048827243237281055
382
+ 7048883103657381159
383
+ 7048861382715936035
384
+ 7048926901884259621
385
+ 7048879953420569893
386
+ 7048783060040551710
387
+ 7048891249478192420
388
+ 7049581887957896480
389
+ 7048915245552782607
390
+ 7048807143155191081
391
+ 3x3bemanmjsg9j9
392
+ 3x5bsx7my8yx29u
393
+ 3x7wujde7b33mug
394
+ 3xs5e3i3a7xygmm
395
+ 3xz5ybjrd4we6x9
396
+ 6883331385835244813
397
+ 6883425147680804100
398
+ 6883734332104510724
399
+ 6951954708068076813
400
+ 7010720850617879845
401
+ 7027898967174204705
402
+ 3xa4fsmda94hgr9
403
+ 3xizkej8sh2m5ue
404
+ 3xmp52g4njfq6xi
405
+ 3xz4249ie6yzshq
406
+ 7058183113519746307
407
+ 6837080981480951040
408
+ 6836009676849679631
409
+ 6792078822356389131
410
+ 6922462128716729615
411
+ 7027490498361265443
412
+ 7039922477526469901
413
+ 7048471469944327464
414
+ 6834677872515435784
415
+ 6867424768560303373
416
+ 6867364396381768967
417
+ 6869287253827521796
418
+ 6900020602325716237
419
+ 6867842242145504524
420
+ 6868085481968651520
421
+ 6867782011872955660
422
+ 6805794994201332992
423
+ 6805843004675443972
424
+ 6805886136331062536
425
+ 6805754741612629263
426
+ 6805750422867922190
427
+ 6812129190201036043
428
+ 6805830554991250688
429
+ 6805804945003105536
430
+ 6805796789485145357
431
+ 3x9zd4pmyee5r66
432
+ 3xhzc4225xj2jp4
433
+ 3xkawfceecgxpgs
434
+ 3xbdwzq229m2ifi
435
+ 3xutd6mridvz6rq
436
+ 6777641222413602048
437
+ 6855577899844635919
438
+ 6855617331767381256
439
+ 6873739404939136268
440
+ 6886357948747058443
441
+ 6889320431329840399
442
+ 6921657713025961228
443
+ 6921984059375766798
444
+ 6940819252114935079
445
+ 7027891245288574212
446
+ 7027873765598055684
447
+ 6609176747055254797
448
+ 7027893113121164583
449
+ 6724229983763549454
450
+ 6984335281902177540
451
+ 6643668413828828424
452
+ 6870028793084480780
453
+ 6646444149622967566
454
+ 6873110086781275403
455
+ 6649939133181496583
456
+ 6835161375895997710
457
+ 6914595715704458511
458
+ 6878118954947087623
459
+ 6962035654960106766
460
+ 6645815668123897102
461
+ 6964231333082057996
462
+ 6994736483995225384
463
+ 6650031791770062084
464
+ 6656639426464206088
465
+ 6816633821031648526
466
+ 6984717399920561442
467
+ 7023259885768887563
468
+ 6826698976511757580
469
+ 7028207119946059040
470
+ 6990601021982543104
471
+ 3x8nm8963gqmez2
472
+ 6797938572524670220
473
+ 6797964261302816008
474
+ 6797999399957007631
475
+ 6797377024152423680
476
+ 6795798663940541703
477
+ 6658850835998444804
478
+ 7008825846341340449
479
+ 6871605448215186701
480
+ 6889334569816853763
481
+ 6736737150169042183
482
+ 7001836155834567968
483
+ 6682302034592533768
484
+ 6962281009354149159
485
+ 3xc6kryz6f7669c
486
+ 3xshwgib3i6dk7k
487
+ 3xsqpb557r6bjjg
488
+ 6807981206370536717
489
+ 6807962256270200067
490
+ 6808015877334650127
491
+ 6808014560423906567
492
+ 6808030057936719117
493
+ 6808025819265518851
494
+ 6808038875227770125
495
+ 6808045764657384704
496
+ 6808063383045197070
497
+ 7016925919562501389
498
+ 6888628485665901824
499
+ 6985171993607949598
500
+ 6985415411915377960
501
+ 3x3rg3rthx6yk8e
502
+ 3x6wgga2ph3jxza
503
+ 6723522583536405774
504
+ 7007318985393851678
505
+ 7040982514940284163
506
+ 7040693836997332258
507
+ 7040444501629947143
508
+ 7040463070564601125
509
+ 7040434586077105420
510
+ 3x2kitjzxz2u5na
511
+ 3x53ptyn58ackmw
512
+ 3x5figva6s2sk7s
513
+ 3xcbamtjy9g79fc
514
+ 3xee737rmjg4p92
515
+ 3xhdghhypy3s9ma
516
+ 3xmydr5rp66gfpm
517
+ 3xxqh9g2mqd5z6w
518
+ 7015819288053402912
519
+ 7018051758337412366
520
+ 7018783925770128655
521
+ 6781203276546329863
522
+ 6965941390442351902
523
+ 3xd2phenmd6jbmc
524
+ 3xt56hysgxmysde
525
+ 6835503656784186639
526
+ 6917413709052660995
527
+ 7000990476274830629
528
+ 6791331018306587918
529
+ 6791442371943910670
530
+ 6796890396719959304
531
+ 6792888144355167500
532
+ 6793099198360341764
533
+ 6792926161165978893
534
+ 3x8q576we5iycna
535
+ 7027884760277994760
536
+ 7047432439307816192
537
+ 6866352267004611844
538
+ 6774924661470891264
539
+ 6855232520561151244
540
+ 3xkaxd72w6rqct9
541
+ 3xyv9ycbzi426r4
542
+ 6987686503098895647
543
+ 6988490986850651425
544
+ 6987628050611588367
545
+ 6988277007628897571
546
+ 6992447450963365128
547
+ 6852677764353379597
548
+ 6852945783688285454
549
+ 6852973825793985804
550
+ 6852984894365207821
551
+ 7020632717368888615
552
+ 6926098495787126016
553
+ 6927271093564656899
554
+ 6926787983504936205
555
+ 6926776011698736391
556
+ 6926794377121516814
557
+ 6928321333755432207
558
+ 6926724468861652224
559
+ 6926695531972480260
560
+ 6926789867410083075
561
+ 6926426825312783616
562
+ 3xivnmiqbuamnus
563
+ 3x5k4ukqiff2shm
564
+ 3x97r2jhzyvk3c4
565
+ 6691461631374888195
566
+ 6690045890444446988
567
+ 7009640844173085956
568
+ 6988731721214594308
569
+ 6988654591785061672
570
+ 6988083209904934179
571
+ 6733340523794402574
572
+ 3xcvxd8bvp5xys2
573
+ 3x9d6k674j8newk
574
+ 6989194726918360360
575
+ 3xwgej7egf9857u
576
+ 6767918377714404622
577
+ 6935052777273969934
578
+ 6936451574046690598
579
+ 7003588006300896519
580
+ 7003597350492982565
581
+ 7003604300123442436
582
+ 7003633195887381797
583
+ 6787662250317581581
584
+ 6893477906882874639
585
+ 6892156062619749645
586
+ 6752811707518749966
587
+ 7008532276556434726
588
+ 6892957721037901056
589
+ 6893383722993782020
590
+ 6752267747142405388
591
+ 6893077965429591311
592
+ 6891553112411196685
593
+ 6813262520137026827
594
+ 6830008628045532428
595
+ 6830676220544306440
596
+ 6959100069924654372
597
+ 6959557935596850435
598
+ 6789888904431471884
599
+ 6866678444009327884
600
+ 6867068647152700679
601
+ 6867119524294954248
602
+ 6866979815686294798
603
+ 3x25ybraqeighzm
604
+ 6869960490093677831
605
+ 6867761508810509581
606
+ 7027859325582396702
607
+ 3xz3hmxxzdsmvvq
608
+ 6735787083878780173
609
+ 6736398192516107528
610
+ 6735974091859250444
611
+ 6735936408239787267
612
+ 6735866308967107851
613
+ 3xkuv2uxe6azhm2
614
+ 6737484511816305923
615
+ 3xwktrfqyu6az4a
616
+ 6754309026638466311
617
+ 3xgswq5c8z4d5fm
618
+ 6874867342950649095
619
+ 3xh3yqpexshcm3y
620
+ 3xkw4nmdf2aqaai
621
+ 3xqgjjvh67txs3w
622
+ 3xs4zww7ccki8y2
623
+ 3xtcj6m7jy4dec4
624
+ 6987694426378358030
625
+ 6987990211426815245
626
+ 6988034393491246350
627
+ 6988085268494552356
628
+ 6988463734175943967
629
+ 6988727422384344333
630
+ 6988767219563941157
631
+ 6988783850839133471
632
+ 3x3vr3xw2phwdxg
633
+ 3xqxuepyavp3bu2
634
+ 3xrhmg72wuz4wb6
635
+ 6718536657395649803
636
+ 6840651629285461262
637
+ 6862161911828499726
638
+ 6864830459587710211
639
+ 6866295416246242574
640
+ 6866400849942351111
641
+ 6866629945838275852
642
+ 6866707115373825288
643
+ 6886048565702053133
644
+ 6919633818316066051
645
+ 7027859856119958820
646
+ 6935430732693146888
647
+ 6812584743767493902
648
+ 6914471100944551168
649
+ 6914570532776103175
650
+ 6914584068289989902
651
+ 6917529077662453006
652
+ 6935427469554093348
653
+ 6942865258377694497
654
+ 7055532121758158112
655
+ 3xk5vd4vjixbunm
656
+ 3xw9ky58nx44ifq
657
+ 3xzuwugxup38nri
658
+ 6851858679331884301
659
+ 6865921098651897103
660
+ 6866260665762401550
661
+ 6866675644713929995
662
+ 7020750371622554913
663
+ 7038857031654182148
664
+ 7039925672155860265
665
+ 7050683268659727646
666
+ 6851383928897539336
667
+ 6855409013547470095
668
+ 6852625488393866511
669
+ 6851466996798868744
670
+ 6852295865047026952
671
+ 3xd4q8scnjx7m8s
672
+ 6924492691766037760
673
+ 6822849359667924227
674
+ 6822822191986396431
675
+ 6822799485123579143
676
+ 6824249309484076303
677
+ 3xvmqpw3a3acghw
678
+ 3x2ijm5pkxhhv2i
679
+ 3xdcxpqfwesxke4
680
+ 6894123222929902862
681
+ 6867718792600980749
682
+ 6890529616985869571
683
+ 6748049832067255559
684
+ 6947293595493731622
685
+ 3xe5ep2me9fcac4
686
+ 3xv86srjimxszvy
687
+ 3xwmdn8rh7zym59
688
+ 7024868156531330304
689
+ 7024869071128628516
690
+ 7024872299543235874
691
+ 7024878215407619362
692
+ 7024885711677525260
693
+ 7024927766906719518
694
+ 7025048954974833934
695
+ 7025136991641537833
696
+ 7025167215913667851
697
+ 7025399661116525854
698
+ 6807197079044246784
699
+ 6807753138548837647
700
+ 6806923980981685504
701
+ 6806993569967131915
702
+ 6801975907172044032
703
+ 6802000980696255751
704
+ 6804759703986425103
705
+ 6805429938464804110
706
+ 6799054384429845767
707
+ 6799070294901263616
708
+ 6741239300479929613
709
+ 6980163382900952352
710
+ 6980688326005214476
711
+ 6742065740737760526
712
+ 7054804462501776651
713
+ 6898989866432908555
714
+ 6965924270757170445
715
+ 6797317471222222088
716
+ 6797265622339177728
717
+ 6797327565603310848
718
+ 6798503970345143552
719
+ 6797362129050537223
720
+ 6797605608674577678
721
+ 3x2qfjm5xf234he
722
+ 3x4e5f9ym6b3fbk
723
+ 6979842981633215755
724
+ 3xsepbi8enkwmxi
725
+ 7020557739868867870
726
+ 7041717698761329923
727
+ 7057819525407952167
728
+ 7021083431903808779
729
+ 7021289862108122404
730
+ 6813127019132423431
731
+ 7020440059090406659
732
+ 7035914620879555855
733
+ 7022988623481998600
734
+ 7055097663162879272
735
+ 7021437448987102471
736
+ 7031081942648933670
737
+ 7020227111260523809
738
+ 7020645164867702055
739
+ 7020228622967491879
740
+ 7021399162243534118
741
+ 3xy6xs5kz4asrd9
742
+ 3xzfu98w5vd8rym
743
+ 6814260029789588747
744
+ 6813280545036946692
745
+ 6815218376181288200
746
+ 6813252139440164111
747
+ 6875506196208504078
748
+ 6844137104889433358
749
+ 3x5jp5mezdgi4fq
750
+ 3x8hupc4mjyjx7e
751
+ 3x8stnuh4w4z7n2
752
+ 3xiibwtmpm2ddc6
753
+ 3xrpffa9z5d66uq
754
+ 6719639684600941836
755
+ 6741270032111701255
756
+ 6896798684684553487
757
+ 6905746694005099791
758
+ 6910459766439447819
759
+ 6955383616880856356
760
+ 7054523893691829544
761
+ 6938366074006064414
762
+ 6730005569073106180
763
+ 7031973520406023427
764
+ 6926078836232736015
765
+ 7035527261545598243
766
+ 7035936383457824041
767
+ 6921902933449772292
768
+ 6629232297071611139
769
+ 7024033337564007695
770
+ 6846349799248235784
771
+ 6620647874076085511
772
+ 3x3e23czmz7bhxa
773
+ 3xc8mjfrqhruxq9
774
+ 3xhykdy7axiwyaq
775
+ 7024060485381147918
776
+ 7024386092619025676
777
+ 6707587902336978189
778
+ 7027867727146618151
779
+ 3xgjcuv8463gbhs
780
+ 6711600610715733256
781
+ 6781646180800646403
782
+ 7027788692471287076
783
+ 6696480086914256142
784
+ 6695140584388185348
785
+ 6818719238392433924
786
+ 6819470101025131783
787
+ 6696800873215003907
788
+ 3xqf9t4tsqbgw5w
789
+ 3xvme6jhzggeckc
790
+ 6989484406104689957
791
+ 6989838370146979083
792
+ 6989873964189240584
793
+ 6989879848529333512
794
+ 6989906160413445406
795
+ 6866426039648718088
796
+ 6712816336973647116
797
+ 6637728366650723592
798
+ 6612183406635650308
799
+ 7010799760575647006
800
+ 6722438557987851523
801
+ 7011714515356159246
802
+ 6792102270520544516
803
+ 7016886917191044392
804
+ 6974326372076473639
805
+ 3xxs7ag6q2r79qu
806
+ 3xxtwntdnjjduwi
807
+ 7019229281704250662
808
+ 6845050996394069248
809
+ 6959070097126346025
810
+ 6993680509851192615
811
+ 6997255056294677791
812
+ 6847109400235166988
813
+ 6993695176057277704
814
+ 6861920937609153807
815
+ 6862626165442514179
816
+ 6972703718487756032
817
+ 6986257142642691342
818
+ 7059265016276552992
819
+ 6671112046978796803
820
+ 6671495133961276680
821
+ 6670805620435750147
822
+ 6670707542898789646
823
+ 6901477164416371975
824
+ 6999573895548308774
825
+ 6679460647836601608
826
+ 3xazqphaqedebx9
827
+ 3xm6cfgdi87tije
828
+ 6965944255768513829
829
+ 6965969917724101925
830
+ 7032175363627240744
831
+ 6883002263124626695
832
+ 6820341703828884744
833
+ 6841343937014156548
834
+ 6841721529869323520
835
+ 6841757602284604687
836
+ 6842866874104024320
837
+ 6841513596141276423
838
+ 6841802131771526404
839
+ 6843223547012320524
840
+ 6841157087737810183
841
+ 6842198568623803655
842
+ 6975634643404033293
843
+ 6843695846136106255
844
+ 6843212356214967567
845
+ 6845025280160009480
846
+ 6843428070272060686
847
+ 6986771327285726500
848
+ 6843028258036976909
849
+ 6843604905266072832
850
+ 6843275177204256013
851
+ 6843252591242071303
852
+ 6850444269824527624
853
+ 6838179907978153230
854
+ 6862580471000288512
855
+ 6851757877980368141
856
+ 6838103289851104526
857
+ 6841176893027339534
858
+ 6862620542722149639
859
+ 3xknypu3m4w37g2
860
+ 6843390911024565519
861
+ 6843289161361804544
862
+ 6843057578625273099
863
+ 6828096382855941376
864
+ 6859578472910671108
865
+ 6871826519736585479
866
+ 6964344406887517471
867
+ 6985148688599452959
868
+ 6987023271656967428
869
+ 7052674165236583688
870
+ 7057915117601688868
871
+ 6700401364331154696
872
+ 6810996687356611855
873
+ 6810947122804935943
874
+ 7040074834931354914
875
+ 3xrdmz9jp5euq5a
876
+ 3xj4meizhnndq7w
877
+ 3x6d7bq2f8dc95u
878
+ 3x6y3jhyehykdz6
879
+ 7038557817552293123
880
+ 7038604197650058503
881
+ 7039178038545845536
882
+ 7039183851284860197
883
+ 7039192061043576100
884
+ 7040267067081133326
885
+ 3xiaejix36a5zjk
886
+ 3xp8ixgzyzsd9i2
887
+ 3xythyyv2vcw6wm
888
+ 6687412730971868429
889
+ 6687415218663935239
890
+ 6687415441695984900
891
+ 6687419353547279629
892
+ 6687811321574051076
893
+ 6708971806499392780
894
+ 6781727165240118531
895
+ 6965954615594503427
896
+ 6588370236414627085
897
+ 6571001202379590925
898
+ 7002783251727142174
899
+ 7002787673081449741
900
+ 7002792398082411790
901
+ 7003174376501693704
902
+ 7003323274218261790
903
+ 6874220865987415304
904
+ 7039205282525760776
905
+ 6890486208653315341
906
+ 6753603543804005636
907
+ 6890670354180607243
908
+ 6849689713515810063
909
+ 6951934204426898703
910
+ 6994719783769902366
911
+ 6884545191089360136
912
+ 6989896036709829895
913
+ 6890449612604230926
914
+ 6808837621192723727
915
+ 7020353840985804069
916
+ 6899336054558575872
917
+ 6909752479127194880
918
+ 6921909551386103047
919
+ 6766547180921670924
920
+ 7015180893803351308
921
+ 6702695933576039688
922
+ 6856761078001552648
923
+ 6941874367362026782
924
+ 6700549546591898888
925
+ 6714844810399747340
926
+ 6729528749609454856
927
+ 6759760505386044680
928
+ 6717908479664786696
929
+ 6955693172307594534
930
+ 6615899462533385479
931
+ 7046160617840856361
932
+ 7035462964685704479
933
+ 6616450884832333069
934
+ 6615513758447979780
935
+ 6615158947240217869
936
+ 6617561143990816007
937
+ 6618027963864583427
938
+ 6831726615974726912
939
+ 6761998960384085251
940
+ 6985499664539831593
941
+ 6986149633626049796
942
+ 6985718689903545641
943
+ 6894424143358430472
944
+ 6987583696945597704
945
+ 6994767955527552286
946
+ 7005007047766854951
947
+ 6894624393306098952
948
+ 3x5aickpnrpqhds
949
+ 3xj847b9ksyfiu2
950
+ 6831107091411782916
951
+ 6991315650144767269
952
+ 6994735251490704675
953
+ 6994787235748924703
954
+ 7006256451161214221
955
+ 7041376892577991973
FakeVD/dataset/data-split/event/vid_fold_4.txt ADDED
@@ -0,0 +1,920 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 6853696307836488973
2
+ 7041921581278416158
3
+ 6782715640990928131
4
+ 6998443161127243039
5
+ 3x4zj7hyemptkvm
6
+ 3x67v5cyrwg7ifq
7
+ 3x7269wyyimyzm4
8
+ 3xdipwd5nde7586
9
+ 3xte5yssxwrciwm
10
+ 6731971438481394958
11
+ 6731998623359339784
12
+ 6732020059977370894
13
+ 6732370114181598477
14
+ 6978679609512529159
15
+ 6979087409996664071
16
+ 6980603426870742279
17
+ 7028536210775723272
18
+ 7032965221509582092
19
+ 7035210171949288740
20
+ 7034473142282095904
21
+ 6951982118553668900
22
+ 6799192188782742795
23
+ 6799533163812048136
24
+ 6799610832528477454
25
+ 6799481768757054733
26
+ 6799632132231728391
27
+ 6799402620197932292
28
+ 6799592807204949259
29
+ 6799408811812736268
30
+ 6799804611491302669
31
+ 6799214625020710144
32
+ 6799285650232282368
33
+ 6921590353304833293
34
+ 6799567742367255823
35
+ 6799445735189368072
36
+ 6799215193923603712
37
+ 6799232523990748427
38
+ 6799630077681356032
39
+ 6799522394093538560
40
+ 6799842434990755079
41
+ 6799433567362370829
42
+ 6799871964044397832
43
+ 6800199936664292608
44
+ 3xbzd2raj97hbni
45
+ 3xfujiz7e7k5ute
46
+ 6805702587258653967
47
+ 6791087880077954318
48
+ 7023555587845672204
49
+ 6779859634711809283
50
+ 6807576349264399629
51
+ 6807230416798354691
52
+ 6807214103493496064
53
+ 6807219837950037259
54
+ 6780315764210535694
55
+ 6998054384126954752
56
+ 6983341699493874983
57
+ 7018071054258031876
58
+ 7024680548287139110
59
+ 7003652634578046222
60
+ 6804199355738869004
61
+ 7018354482329177359
62
+ 6791103843804384523
63
+ 6790512189703867651
64
+ 3x3p585pre2uq8c
65
+ 3xsszurwtabibs4
66
+ 6868092030178839815
67
+ 7060231048436665640
68
+ 7060192184368221454
69
+ 7042498832483028257
70
+ 6922861288834075908
71
+ 6925389180478442756
72
+ 7034494607262059776
73
+ 7031891728529394982
74
+ 6877333959764757768
75
+ 7039973983286054179
76
+ 7019257441250544904
77
+ 6952424015675886855
78
+ 6596996733048196360
79
+ 3x8te6xa787myhq
80
+ 3xc7n2yjnjv2bru
81
+ 6851398726708186376
82
+ 6851503683750857988
83
+ 6852515832187112712
84
+ 6859606107627818254
85
+ 6859990030639828238
86
+ 6861501869743770894
87
+ 6861848484539141384
88
+ 6944194124060888356
89
+ 7044821798168399141
90
+ 7005217766269619469
91
+ 6681488793100455175
92
+ 7003774950452497703
93
+ 7053548393922071823
94
+ 6610821466466290958
95
+ 7037499302746393893
96
+ 6617393568547867908
97
+ 6614033953328205069
98
+ 7005708253988506894
99
+ 6609129207760948487
100
+ 6683813797590863117
101
+ 6609092980735216909
102
+ 3xn46ahfmzxpkgw
103
+ 3xqwycwmnu69dki
104
+ 6862170451624447245
105
+ 6862228172075765007
106
+ 6862253405146975491
107
+ 6862603682614185230
108
+ 7009838697545813260
109
+ 6862711949310856456
110
+ 6954728923670318373
111
+ 6987965120089525516
112
+ 6974929500131953956
113
+ 6993528130094763303
114
+ 7045968561013148958
115
+ 6937103576527375657
116
+ 6888268465443065103
117
+ 7037740090369625379
118
+ 3xt6ngf7ijprstq
119
+ 3xrrsjf2rsksk92
120
+ 3xxe2t6fsuzkm3g
121
+ 6888295653252828424
122
+ 6889304880939306253
123
+ 6890005271863627011
124
+ 6888482101704903951
125
+ 6889070478149913871
126
+ 3xrzrtn3kdc2ggg
127
+ 6643213295887060238
128
+ 6643257618611571982
129
+ 6642214705265904899
130
+ 6642473378819083527
131
+ 6936058260545916167
132
+ 6920531891758140684
133
+ 6925297643824467212
134
+ 6991420442137447687
135
+ 3xmefydzub9tuj6
136
+ 6958356118821244190
137
+ 6958423572402457871
138
+ 6958444948777749767
139
+ 6958632363018554656
140
+ 6958700705565658405
141
+ 6959108100074900769
142
+ 7037659286041906439
143
+ 6763119711237475592
144
+ 6796939583679401230
145
+ 3xdr3mm36zqbm74
146
+ 3x7tg8ssm7zb8g9
147
+ 3xtzz8mxtfz4wc4
148
+ 3xxsa325kecmpek
149
+ 6816180936074349839
150
+ 6951992689579576613
151
+ 6955298325201489166
152
+ 6956876863784389895
153
+ 6969435715524414756
154
+ 6995042411118333215
155
+ 7011347681729629448
156
+ 6815487937636060428
157
+ 3xtj2c37w9gbkyg
158
+ 3xdf9duhj7279wy
159
+ 6815586672919530752
160
+ 6815550496695356685
161
+ 6815759453888007427
162
+ 6815576666199297288
163
+ 6816484174967491851
164
+ 6815759487308172552
165
+ 6815767290815122703
166
+ 6815679346007674127
167
+ 3xym6d6rhbwfvwi
168
+ 3xyekg2aa2sfxq4
169
+ 7000724523041541414
170
+ 6847352943386053892
171
+ 6995176277158169870
172
+ 7007543428665838852
173
+ 6639480431265713421
174
+ 7027662208859393313
175
+ 7015120049664970023
176
+ 6868254006939094279
177
+ 6986823108564897065
178
+ 3xphf5chuf8swak
179
+ 3xtug64ruchdhnu
180
+ 3xypsrhjjk8ygi9
181
+ 3xyt72fwv379p46
182
+ 7008543910867848479
183
+ 7050044992445893918
184
+ 6857772551565839620
185
+ 6807999964963163404
186
+ 6808071882743483648
187
+ 6771036010101918987
188
+ 6991499503631076612
189
+ 7027920751856553219
190
+ 6613318089943551240
191
+ 7020263243776019748
192
+ 6958984117077773601
193
+ 6971045158452235535
194
+ 6861156588284120332
195
+ 6976521836163058982
196
+ 6978378060353539341
197
+ 7042245916841053473
198
+ 6990172593567321374
199
+ 7014507425130761479
200
+ 6958568570905201920
201
+ 6958423364281175331
202
+ 6590972352731811075
203
+ 3xinxitcp8tr4qi
204
+ 3xkkg5828b66b6s
205
+ 3xvivcpu8atrg3i
206
+ 6830735992824155396
207
+ 6830943686621203715
208
+ 6830947702365261063
209
+ 6831092597377780992
210
+ 6846231993508695304
211
+ 3xcgikuji7xnvy9
212
+ 3xg6j28gs333sqg
213
+ 3xjmefgwtxxvtgy
214
+ 6771602582063320334
215
+ 6845443361369820430
216
+ 6846996541232663808
217
+ 6847022560618482957
218
+ 6884872001551404303
219
+ 6943058156968742174
220
+ 6943212523181116713
221
+ 6943403246866238724
222
+ 6944537695473519883
223
+ 7014771785946172676
224
+ 6963233504134024487
225
+ 3x84funch5xarre
226
+ 3xxy6dwpnfur2gg
227
+ 6714197602209926404
228
+ 6846962776804510988
229
+ 6903516292544744717
230
+ 6985123823758675230
231
+ 6986831637665402148
232
+ 7018173859207728418
233
+ 3x2xkqtcffyy486
234
+ 3xcfp4jvic85w8g
235
+ 3xrt92ujdh8b9ti
236
+ 6872297877264207117
237
+ 6911597286476811534
238
+ 6989553415466634509
239
+ 7037037902475300128
240
+ 7051566224471280904
241
+ 3xjm82mkej2cppc
242
+ 3xvmetj7ig58y82
243
+ 6894776905745042703
244
+ 3xtxwuvhuxfwda2
245
+ 6855096922303155471
246
+ 7031438991597620494
247
+ 7029547154922310943
248
+ 7031153271658040590
249
+ 7038398576862498056
250
+ 7029398660622454046
251
+ 7029459999575346444
252
+ 7029448555840474409
253
+ 7030677133030706447
254
+ 7029513792593644841
255
+ 6741271306672622852
256
+ 6741307029693926659
257
+ 6924939109215653123
258
+ 6874895234182941959
259
+ 6875217471041735939
260
+ 6953511272054885669
261
+ 7025573055808294159
262
+ 6943192848179170595
263
+ 6979582520740318497
264
+ 6739877973362511115
265
+ 6909484183282781444
266
+ 6829659638355479811
267
+ 6862631381806222595
268
+ 6827215508593495311
269
+ 6964273350474550565
270
+ 6740095929317133582
271
+ 3x252r556a2924a
272
+ 3x9jq8jyb5jby82
273
+ 3xahzbnw59bgiv2
274
+ 3xntizpht5qq6ew
275
+ 6823927741784624399
276
+ 6890400107934600448
277
+ 6890401070326041867
278
+ 6891252687153663246
279
+ 6891542492282359051
280
+ 7005715166004268323
281
+ 7046936640991792418
282
+ 7046999925455916318
283
+ 7047060920429792524
284
+ 3xcg33em65pw9fi
285
+ 3xffw33yzwyxn66
286
+ 6988795106719468808
287
+ 6989865099649355048
288
+ 7005031876503014692
289
+ 7003880241902947615
290
+ 7004324389533633830
291
+ 7004593652139855143
292
+ 7004401905539566885
293
+ 7013640580437658919
294
+ 7007951328680971555
295
+ 7004610133938425129
296
+ 7003640350795435298
297
+ 3x2qdx6vwrnaeqy
298
+ 3xhucc7we6iihi9
299
+ 6989209196025728259
300
+ 6989230274286505223
301
+ 7044789589755612427
302
+ 7044814190552321287
303
+ 7044720935663914274
304
+ 6949076459247963423
305
+ 7044536903693110536
306
+ 7044544101886332167
307
+ 3xrk8cxhhqwimqu
308
+ 7002137220622699812
309
+ 7002483964787035422
310
+ 7002790840036822286
311
+ 7003220612894199078
312
+ 7003139927860907271
313
+ 7002881545740586251
314
+ 3xritiscbi6w5jm
315
+ 7003548840510950656
316
+ 7003600690048257316
317
+ 7003708537570348324
318
+ 3x6mic55dwjzfb6
319
+ 7029845929318436132
320
+ 6910848869672832263
321
+ 7017441632828067109
322
+ 7021333575794560288
323
+ 6594392272438037764
324
+ 6594260302991199492
325
+ 6827436705751076110
326
+ 6827616334147243271
327
+ 6827747092371393796
328
+ 6831473572704259340
329
+ 6831546631620463872
330
+ 7017364334938443039
331
+ 7017724427525688576
332
+ 6837109740330405133
333
+ 7017589177361435936
334
+ 7017441093457399077
335
+ 7017739552920014116
336
+ 7017986654732340521
337
+ 7017611679143906568
338
+ 7017716576472321315
339
+ 3x58gquvkdiqvmq
340
+ 3x7kapcdec4yft9
341
+ 3xajrrry5huesxg
342
+ 3xigwzke8wpfjfq
343
+ 6838420817282469120
344
+ 6838431310114016519
345
+ 6838570621010562307
346
+ 6838779314671029518
347
+ 6838788578584169739
348
+ 6839222788197321991
349
+ 7030728031652138273
350
+ 7049528744184204574
351
+ 3xh3mxrd7pj6sbm
352
+ 6766592408340729100
353
+ 6920507291275971844
354
+ 6920514939933166860
355
+ 6992030934585347336
356
+ 6992068947063459085
357
+ 6992111449275501838
358
+ 6992127030460501255
359
+ 6992188699207339305
360
+ 6893160337151937795
361
+ 6732286238021160199
362
+ 6729400686074760460
363
+ 6924597177310350592
364
+ 6903350416000503047
365
+ 6729711347824659719
366
+ 6730205068865424647
367
+ 3xxz8k2xv5a4vus
368
+ 3x3j8ngqac98k5i
369
+ 3x9znjfdy6mni56
370
+ 3xdpafj89627ji6
371
+ 3xne9ingv2w954k
372
+ 3xpgttbxgecyw8c
373
+ 3xs59mg4ju9adx6
374
+ 3xwsrgmtms5c75s
375
+ 6746738577272540424
376
+ 6746904276045417740
377
+ 6746905110107933955
378
+ 6746916482405403911
379
+ 6747140566040988936
380
+ 6747974213874814220
381
+ 6947275565011438878
382
+ 6999617935186627847
383
+ 7027879223423503629
384
+ 7027885300571573518
385
+ 7027891515733200132
386
+ 7027891782197251361
387
+ 3xa9xu44eur6dy6
388
+ 3xkyfsn2nqffs5u
389
+ 3xngyu6br33mbf2
390
+ 3xt23az557iuvj9
391
+ 3xtewccrw3578cy
392
+ 3xu97ycpgwz45vq
393
+ 3xwhr7aqas4k4jy
394
+ 3xz8he5fpzius8y
395
+ 6853595702258420999
396
+ 6853598175782014223
397
+ 6853649144918084879
398
+ 6853654661677796622
399
+ 6853680327718636813
400
+ 6853696390283922702
401
+ 6854043084150344974
402
+ 6854141579452484868
403
+ 7009442450586520843
404
+ 7027842098246339843
405
+ 7027863154243669281
406
+ 6807575619598142727
407
+ 6807984321668861184
408
+ 6807588716341742861
409
+ 6807550037825015044
410
+ 6807641056977390848
411
+ 6807582684005682446
412
+ 6807641854180461839
413
+ 6807605833568947471
414
+ 6807624102896028943
415
+ 3xqi5sx7y8gmj9c
416
+ 6809422948814818574
417
+ 3x6grrjdmfjcvgs
418
+ 3xm3ueguexkhez2
419
+ 6805904789029817614
420
+ 6805939478151122191
421
+ 6806119699898699015
422
+ 6806154638795050243
423
+ 6806205657587485952
424
+ 6806606169847680260
425
+ 6893269628953382144
426
+ 6686481160224230669
427
+ 3xvg252p7mhzxnc
428
+ 3xkrcqew9ehghjq
429
+ 3xiqrgxk4y4ytpu
430
+ 6819121035665755392
431
+ 6819163384739646732
432
+ 6819209408438914317
433
+ 6869892868224322830
434
+ 6920826150474222856
435
+ 7027874561815252232
436
+ 6891570229969816845
437
+ 6890730826267413773
438
+ 7020637614898187524
439
+ 6999917049434737924
440
+ 3xynvbi7mwja7zu
441
+ 3x62d3gz53276vs
442
+ 3x845w5ghsgk3hy
443
+ 3xjf9fdcc9f468u
444
+ 6883817894984092940
445
+ 6884896887976021256
446
+ 6884893912100556045
447
+ 6872882461475376392
448
+ 6940833081607703822
449
+ 7031454072850894116
450
+ 6781430354055154944
451
+ 6867166970853297422
452
+ 6874376605016280328
453
+ 6730434516105661700
454
+ 6805136344969415951
455
+ 7038944755274829096
456
+ 6885972986743033095
457
+ 6872302397465660675
458
+ 6846270288255044878
459
+ 6846277571336752384
460
+ 6846314399595040000
461
+ 6988730177106791688
462
+ 6988961508529065224
463
+ 6988675439631797512
464
+ 6989087827808029966
465
+ 6849733324701846792
466
+ 6605813001754774798
467
+ 6737173013730462984
468
+ 6991500180289785126
469
+ 6796985569776864520
470
+ 6797330904890035471
471
+ 6797029032643824909
472
+ 6797199355628637448
473
+ 6797670636266212615
474
+ 6797231836675312900
475
+ 6797409346381827339
476
+ 6797584517885431053
477
+ 6797182551938141448
478
+ 6797286686633004302
479
+ 3xmbkaqc8zavfwq
480
+ 3xe9qisa3jqmju9
481
+ 3x6empvmuai65ci
482
+ 3xcgbi9d2d8rmmc
483
+ 3xkr5cb62vrqgzg
484
+ 3xubv38juwkvaqq
485
+ 6814381687825353996
486
+ 6814639933291056396
487
+ 6814663526683036943
488
+ 6821677729226788108
489
+ 6814409751523233035
490
+ 3xec2tg4va63kvg
491
+ 3x7mm4prebqqqym
492
+ 3x9jss8pgj56ipm
493
+ 3xhep9azwbeuwye
494
+ 6836168603889405196
495
+ 6836172690861100303
496
+ 6836177348363144463
497
+ 6836179631603846413
498
+ 6836180902352080132
499
+ 6836181677300059392
500
+ 6836183067531463948
501
+ 6836183231293836556
502
+ 6836184471495068936
503
+ 6836185378953694468
504
+ 6836185591537863947
505
+ 6836201017860836621
506
+ 6836221278811114763
507
+ 6837016406660271371
508
+ 6798119823319633165
509
+ 6795136003800567043
510
+ 6795390464452218127
511
+ 6794816030641327363
512
+ 6795726406232886540
513
+ 6795764790707932431
514
+ 6794988930535132431
515
+ 6795769343574674695
516
+ 6802916932044508430
517
+ 3xmxwuq867w95e6
518
+ 6827520616497679620
519
+ 3x9bj2pk8uqafds
520
+ 7030958335998315790
521
+ 7010731047281331489
522
+ 7025234606643334440
523
+ 6912079237662969102
524
+ 6951994071409872164
525
+ 3xfwr2gzemrgaxc
526
+ 3x8v8sbdv5rbjfs
527
+ 6848177805520293120
528
+ 6852522086913658125
529
+ 6852539740328168717
530
+ 6852586988072160512
531
+ 6853029182356753675
532
+ 7013931633732488460
533
+ 3xpsykb4fi2hfa2
534
+ 3xfg6tucm6cxxv2
535
+ 3x7a7juzrk3g8ak
536
+ 3xsrpx7h4g5d9tm
537
+ 3xyrsygih6yxfhe
538
+ 6968671834694782219
539
+ 6968739328969264423
540
+ 6968999140315450638
541
+ 7028453876248399135
542
+ 6986508597135969576
543
+ 6940500821041745185
544
+ 3x5yiw5hwys89cm
545
+ 7001120093753117963
546
+ 6844072655059062030
547
+ 6849313247384915215
548
+ 7029239969403112711
549
+ 7020727263180229888
550
+ 6916872376953179396
551
+ 6914540564822166799
552
+ 6881232398978223373
553
+ 3xxqtqisfdhnyq6
554
+ 3x3844w57698meu
555
+ 3x6rd6qtetk9b5m
556
+ 3xe6si4ifnmtt46
557
+ 3xnttt2cet3x2zq
558
+ 3xq2sckicwhcfjw
559
+ 3xt9ixupdzyujqq
560
+ 3xthxhuyacfred2
561
+ 6872158398226418958
562
+ 6872315365985176847
563
+ 7020638542674087206
564
+ 6797946717984525576
565
+ 6798440875786587406
566
+ 6798008311460433159
567
+ 6797997723753663752
568
+ 6797925040911305987
569
+ 6797977154782006542
570
+ 6797955890583555328
571
+ 6797924760434003200
572
+ 6797937482760490240
573
+ 3xy8gtn8hs9pa2w
574
+ 6798515331057913103
575
+ 6798063003444055311
576
+ 3xingjgp2cywnj2
577
+ 3xs9psqgu52qt2w
578
+ 6706693656956374276
579
+ 6706724761545755908
580
+ 6706725685160955143
581
+ 7015175549756673293
582
+ 6989623502961757473
583
+ 6895999377542745351
584
+ 6922317442479869199
585
+ 3x9nwnj84m3cq32
586
+ 3xehdxv4px2its2
587
+ 3xkqrvwam36uwke
588
+ 6771251306406464781
589
+ 6872543801748016397
590
+ 7020684985111809310
591
+ 6867810873981897992
592
+ 6841849812283821327
593
+ 6801386212029517069
594
+ 6789791388394409219
595
+ 6789829510738021632
596
+ 6789531100755545351
597
+ 6789847051132783872
598
+ 6789916586959555848
599
+ 6789924810576186631
600
+ 6789930053380623624
601
+ 6886683690433383692
602
+ 6685248402101521672
603
+ 6685248974707887374
604
+ 6686810669221825795
605
+ 6687077401081416967
606
+ 6964976187663846687
607
+ 7027849348595731720
608
+ 6887043299828354307
609
+ 6733128487613238531
610
+ 7012049416127270184
611
+ 6839631607658220814
612
+ 7021093041859579150
613
+ 7023626433339641092
614
+ 7033335315314101517
615
+ 7042137290080062724
616
+ 3x3b5qt4kh322tu
617
+ 3x3n7i5r7mx3zqc
618
+ 3xkca7qz2wrpzq2
619
+ 3xyyexacpdhqbxc
620
+ 6836924424860601614
621
+ 6951671537141435679
622
+ 6951679957756087565
623
+ 6951694957057002760
624
+ 6952063448582737165
625
+ 7038958429158870280
626
+ 7027611337324858659
627
+ 7027494216439811364
628
+ 7028900912034893086
629
+ 7028190137171430692
630
+ 7030430491962527014
631
+ 7031444334620757255
632
+ 7033613488576679168
633
+ 7029522681917689091
634
+ 7029585948459420964
635
+ 7029209861531520294
636
+ 7028505403948420360
637
+ 7031153752790830374
638
+ 6814451941804952845
639
+ 6952058686420356366
640
+ 6865642115393670412
641
+ 6632978467921071374
642
+ 6875518042453953804
643
+ 6917146786058554636
644
+ 6968635495198788864
645
+ 6968612703178853646
646
+ 7017344287406886181
647
+ 7017259392332549390
648
+ 6968708193165888783
649
+ 7017433906135698724
650
+ 6968679974110891300
651
+ 7017326145901169956
652
+ 3x9hjpwvpvwhnvq
653
+ 6950140420286385412
654
+ 6613654207608130823
655
+ 6810398774649736448
656
+ 6810651602786061580
657
+ 6811011407258094862
658
+ 6810767943350242575
659
+ 6810666368145296654
660
+ 6815608457887010063
661
+ 7029566764732222750
662
+ 7032253745689857317
663
+ 7045955588488006944
664
+ 7029482339818392863
665
+ 6814719292131511564
666
+ 7056313944817945856
667
+ 7054005875446500612
668
+ 7029229563137821989
669
+ 3xgestwir9fq7hm
670
+ 6893817237463977223
671
+ 6814346432099667200
672
+ 6814401972507053312
673
+ 6821776837266427144
674
+ 6786601102973439247
675
+ 6786995810811825408
676
+ 6787389570875936000
677
+ 7042979615991811342
678
+ 6901945767066455304
679
+ 6725959074594229516
680
+ 7018087007637359876
681
+ 7018009000729988352
682
+ 6970141632582782208
683
+ 6672333608885193997
684
+ 7018389998277774606
685
+ 6672594809124883726
686
+ 3x6kgc2skkeys7m
687
+ 6601418130373741827
688
+ 6601552344368811268
689
+ 6601693670523538701
690
+ 6601509368028466445
691
+ 6601480547455733006
692
+ 6601627338029403395
693
+ 6601505419212885256
694
+ 6601743307074702599
695
+ 6601479301512563982
696
+ 6852471007010180352
697
+ 6872225881922800903
698
+ 7053609099254041895
699
+ 6921652894693428480
700
+ 6812182561956089101
701
+ 6817599587109424391
702
+ 6812205450403073288
703
+ 6813177989962943757
704
+ 6813679993961450752
705
+ 6813914791262883072
706
+ 6813920395746446595
707
+ 6815562609367043340
708
+ 6813902497317489923
709
+ 6813975983490649358
710
+ 6816267866157894923
711
+ 6813934868204948739
712
+ 6813861282865859852
713
+ 6813944479129619716
714
+ 3xfhvpnpwgnnrz2
715
+ 3xxx8y4wqk53usy
716
+ 6992380774750244126
717
+ 6907420193622985997
718
+ 6907446228024380680
719
+ 6960880794919341352
720
+ 6857772616908934404
721
+ 6745966833112730892
722
+ 3x2e58x2qjtxkj6
723
+ 3x3ybfqfsw8k3kw
724
+ 3xb6iv9nfiwviai
725
+ 3xnwmfhb5zs943q
726
+ 3xsgu5dt55qcfhc
727
+ 6589356071775636739
728
+ 6670066165177486605
729
+ 6779517808494578944
730
+ 6800324239707606287
731
+ 6818456717186157828
732
+ 6829225780535414024
733
+ 6832145810059169036
734
+ 6843986345631829262
735
+ 6973517103378861315
736
+ 7050479213098388777
737
+ 6863350843568065796
738
+ 7004708327485754660
739
+ 6638866344433421582
740
+ 6628915429882465549
741
+ 3xm23rnhivjtepe
742
+ 3xtdbm7ks9agumm
743
+ 3xc8wqnzaiiuv4i
744
+ 3xadc32fxiy998g
745
+ 3xfqd2936x56sa6
746
+ 3xh38ex6a5q7fp4
747
+ 3xmquur95nbnq6e
748
+ 6984057954035109150
749
+ 6984321731674541319
750
+ 6984415781287169291
751
+ 6984420646168169736
752
+ 6984709257069399309
753
+ 6984730768262188301
754
+ 6984780877502942499
755
+ 6985416918224129284
756
+ 6986561598680878372
757
+ 3x8vm4hb5ba66bw
758
+ 3xgh9hbqa2kcu7e
759
+ 3xvqmw48imxhge4
760
+ 3xyercd6wh8acve
761
+ 6833266792295697675
762
+ 6833574345193819404
763
+ 6834090217914354956
764
+ 6835438074969853195
765
+ 6864830194549591300
766
+ 6894498895607450894
767
+ 6896645285833968910
768
+ 6947165100222565663
769
+ 6812873029656333583
770
+ 3x68zxc3ic2uk7c
771
+ 6678180553243626764
772
+ 6889038655147543822
773
+ 6889290848429722880
774
+ 6890102205412543751
775
+ 6915542827426467086
776
+ 6925768487881297165
777
+ 6939705680093826340
778
+ 6939771750569823502
779
+ 6940414747292486949
780
+ 6944180901626563847
781
+ 6953180044663606564
782
+ 6965949499055344927
783
+ 6907975848503135488
784
+ 6921517457811344647
785
+ 6921877001590689038
786
+ 6923031334898158852
787
+ 6962513395006393637
788
+ 6963096918754938127
789
+ 6963995027122949383
790
+ 6992868961725599008
791
+ 6994408225005145378
792
+ 7037678639407713544
793
+ 6975145016507387177
794
+ 7048603452229831943
795
+ 7048279986280598819
796
+ 3x76a99a5e67jre
797
+ 7045580936322256158
798
+ 7045954176899124488
799
+ 7046558613795605796
800
+ 7050391644528594189
801
+ 7046319176570375464
802
+ 7045606193452141837
803
+ 3xbyijgymtb2246
804
+ 6857330618292768013
805
+ 6858496463324990728
806
+ 6863372774707072263
807
+ 6896644192974556424
808
+ 7027849254236441867
809
+ 6861787617369853187
810
+ 6861760820834061579
811
+ 6861857889590480128
812
+ 6861855172008643847
813
+ 6861850949149854983
814
+ 6857375682675166478
815
+ 6858255021612469519
816
+ 3x67f6wjets7kmy
817
+ 3x7zfafv64yz3hs
818
+ 6861932604002815247
819
+ 6859615228825488648
820
+ 6861768212250414348
821
+ 6816602226124033288
822
+ 6829573964378000652
823
+ 6829612419829075212
824
+ 6841814713282661645
825
+ 6803607344740617479
826
+ 6909004283170147591
827
+ 3x4xui9wvr769g6
828
+ 3xw9u4i4td5kt26
829
+ 6972518820296658210
830
+ 6972788461677972750
831
+ 6972822369048071457
832
+ 6973093033269087495
833
+ 6973111647816731935
834
+ 6974190748006681894
835
+ 3xk9hfna852igqi
836
+ 6891294237036416263
837
+ 6889960078342982912
838
+ 7019176421272718604
839
+ 6889688683054632192
840
+ 6888571174138268942
841
+ 6888550517874773255
842
+ 6889204096402803982
843
+ 6888572108532714759
844
+ 6889698714387008775
845
+ 6889451691280813312
846
+ 3xmruujz99fcdbk
847
+ 3xwcs3a222actke
848
+ 6876028324783607048
849
+ 6876042827638328590
850
+ 6881878776549051656
851
+ 3xpmq86nvkmim74
852
+ 6843335747563474187
853
+ 7002792013359811870
854
+ 6772392788966378760
855
+ 7002772527424589092
856
+ 3xhbvhpsbih94ia
857
+ 3xtcrmctskmcn9e
858
+ 6647411044501163268
859
+ 7027913877627079968
860
+ 7041503075386920205
861
+ 6968673100107926816
862
+ 6943068255921753384
863
+ 7012512283138018564
864
+ 7012408088154115362
865
+ 7012365954877295885
866
+ 7012836080856681736
867
+ 7012504350744464654
868
+ 6723730118780488971
869
+ 6723476827882425608
870
+ 6723837649523608836
871
+ 6723853150027025672
872
+ 6723788368792014091
873
+ 7018114996051741966
874
+ 6724097760619957516
875
+ 6724117106746559756
876
+ 6724118889342455048
877
+ 7000988717179473164
878
+ 6723735765462830343
879
+ 6910071453115337997
880
+ 7051775977361296655
881
+ 6981017729503431973
882
+ 6533114736177843470
883
+ 3x65sbt4v37rncy
884
+ 6533158683369540878
885
+ 7054136830056271141
886
+ 6533110785034423565
887
+ 6752823620881501452
888
+ 6752403969139641612
889
+ 6752500200847265027
890
+ 6752503898239503629
891
+ 6752463521885326600
892
+ 6752769472836259084
893
+ 6752744386607516942
894
+ 6752421543512476931
895
+ 6755378886512495886
896
+ 3xivk7kre5fg3qq
897
+ 3xkxw4ypb3z9dua
898
+ 6752778390366997764
899
+ 6753186330311740684
900
+ 6754534988223450371
901
+ 6755760910272335116
902
+ 7055611209025850662
903
+ 7051927357380168960
904
+ 6858543833941101836
905
+ 7042845353191755020
906
+ 6967304512025529639
907
+ 7019104516016590080
908
+ 6981376202854370600
909
+ 3xt6xxcdu46renc
910
+ 6790890575043235080
911
+ 6787568547569650957
912
+ 6794372223563058444
913
+ 6787249642703719691
914
+ 6792441400697867534
915
+ 6790897675416964366
916
+ 6786593293561105677
917
+ 6788032365542296840
918
+ 6788696561980378381
919
+ 6813618614193671424
920
+ 3x2436bjspkxb99
FakeVD/dataset/data-split/event/vid_fold_5.txt ADDED
@@ -0,0 +1,994 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 6799829298762059021
2
+ 6799592761499700494
3
+ 6799647050314075392
4
+ 6799610199901588743
5
+ 6799784527892925704
6
+ 6799625871759133967
7
+ 6799850000609283335
8
+ 6799691151185071363
9
+ 6799819319317400845
10
+ 6799629050215222542
11
+ 3xtzy3by3ktdzky
12
+ 3xn6itkb8szn66a
13
+ 3x5x5miprkvphbw
14
+ 6723527309363662083
15
+ 6987030561093192972
16
+ 6987554046303407391
17
+ 6987976900471770399
18
+ 6988355283214929155
19
+ 6988868759876406532
20
+ 6996206890208251167
21
+ 6989005682024484137
22
+ 6989060500944424225
23
+ 6810563817186036992
24
+ 3x6darptsdf5ic9
25
+ 3xj7dnpbsrjnctw
26
+ 3xsi8gvqrjis9uc
27
+ 3xvn2qdxfupbtn2
28
+ 6976553646884490527
29
+ 7026286039853550882
30
+ 3xpej2n4cvt7keu
31
+ 6650031854579698948
32
+ 6909367741052931341
33
+ 6916048903624330500
34
+ 6962719307059006757
35
+ 6998406307627699467
36
+ 6916063467577330948
37
+ 6916118198064614667
38
+ 3x2gz8xbnubcjzu
39
+ 3xuv9bv7uucx3n6
40
+ 6789799043749989639
41
+ 6862706010994248975
42
+ 7027830682206473508
43
+ 6922305501875260672
44
+ 6848230767944813831
45
+ 6694947747214265608
46
+ 6875710565008821504
47
+ 6720202003189894407
48
+ 6693353542767463688
49
+ 6707438561051839756
50
+ 6708285613214354691
51
+ 6848005225207418120
52
+ 3xg2zthjskz768a
53
+ 7033359367730777348
54
+ 7033301501661547806
55
+ 7047804013378538767
56
+ 7033967174477679885
57
+ 7034493169253305607
58
+ 7039258154135342366
59
+ 7033948294485249310
60
+ 7033196233627946253
61
+ 7033220858864815373
62
+ 7033239918134578467
63
+ 3xwv3275rezidgk
64
+ 3x88wibq4qspgr9
65
+ 7022992369045851404
66
+ 7007256255601331471
67
+ 7001292102290132262
68
+ 7025586251960945958
69
+ 7018344678059724047
70
+ 6870291697490840840
71
+ 6958774352036891917
72
+ 6746097657741118723
73
+ 6603693731239431431
74
+ 6702031746860453127
75
+ 6984348965202365726
76
+ 6964695121380035871
77
+ 6719472095836884235
78
+ 6898648376951311629
79
+ 6962419458421886248
80
+ 7006471084102978851
81
+ 7022913322009890051
82
+ 6773597400549444877
83
+ 6871418953919515911
84
+ 3x2svp7wtrysakk
85
+ 3x3e2d9kw3d38fc
86
+ 6965897312216370440
87
+ 6871604200355187979
88
+ 6871979527199821063
89
+ 6871891686469930253
90
+ 6871968599158967563
91
+ 7047811261353987369
92
+ 6979490643181620516
93
+ 6971261971538742542
94
+ 6821722703318289668
95
+ 3xxewae5afnmura
96
+ 3x2mm7xmj8wpq5m
97
+ 3xgb698hr5jsyq9
98
+ 6821104150999272719
99
+ 6957423894294744328
100
+ 6943606158175292679
101
+ 7053608466006510880
102
+ 6945348680832552233
103
+ 3xtnv52edctx7gq
104
+ 7050791880774241551
105
+ 7049298230923840798
106
+ 7049165411165670697
107
+ 7049558892765891876
108
+ 3xqjmkn3zhxi6ps
109
+ 3xtriv8dv8gjwk2
110
+ 6632919871975853326
111
+ 6856594694877596942
112
+ 6883768866443414795
113
+ 6896454994564828428
114
+ 6913508533107543309
115
+ 6919101461557202188
116
+ 6962773069005950244
117
+ 6991491832731471143
118
+ 7047031603356388621
119
+ 3xfdm8r68fbhkmc
120
+ 3xsxag23qwd6x8c
121
+ 3xqzd9uhwawt2xi
122
+ 6767245097198161160
123
+ 6888160891062193411
124
+ 6888185150035758348
125
+ 7044335645887712548
126
+ 7044483368649493797
127
+ 6956472320345066785
128
+ 6958748319191452964
129
+ 6958612363197041931
130
+ 3xyweefbzfswbrq
131
+ 6713699438918962440
132
+ 7018107870549970183
133
+ 3x66csnnhkzspp4
134
+ 6862146422674836744
135
+ 6861868178411212046
136
+ 6862632021471005959
137
+ 6861177952336448772
138
+ 6868242677725400320
139
+ 6857248877834194183
140
+ 6855968771857861895
141
+ 6866755739868843276
142
+ 6857064672776949003
143
+ 3x7fmnb83cu6p8a
144
+ 6865503736853237005
145
+ 3x2upyknqurag54
146
+ 3xfevhdwe9iejhq
147
+ 3xqftm6axn73qxk
148
+ 3xxd6ngz33pknj2
149
+ 6772786213909843207
150
+ 6902612730855869703
151
+ 6932785250984660232
152
+ 6932788605169487119
153
+ 6932790651176242447
154
+ 6932791427265072397
155
+ 6932793941297270024
156
+ 6933020013653691656
157
+ 6933097002435726605
158
+ 7008814789472374054
159
+ 7015397821289352455
160
+ 7017697773889834276
161
+ 7018081523995888903
162
+ 7027839508112477473
163
+ 7027840457686224167
164
+ 6877328562022583559
165
+ 3x7vk8jk8uta35w
166
+ 3xrwwetz4befca2
167
+ 6838043239178652936
168
+ 6838108232741866752
169
+ 6838123554500889867
170
+ 6838411054205144328
171
+ 6838470532753706240
172
+ 6838492904399310095
173
+ 6838517419460332813
174
+ 6839340370296442127
175
+ 6926555529158364423
176
+ 7027865369087872264
177
+ 6838491064731487495
178
+ 6838396696783834381
179
+ 3xzeu8j8b25cjqk
180
+ 3xnaset8jwnyeby
181
+ 3x6j7pgexvx9yqy
182
+ 3x9gxn3g9ubui4k
183
+ 6806184441392680195
184
+ 6847423671095610635
185
+ 6806994272903122184
186
+ 6806900594234854664
187
+ 6808073686147419399
188
+ 6806636081799286016
189
+ 6815863114907569421
190
+ 6806940383621270796
191
+ 6807251562881174797
192
+ 6806845737222098189
193
+ 6998925550685261067
194
+ 6999202660243033351
195
+ 7054459665228303657
196
+ 6998804603148029221
197
+ 6882281700290759936
198
+ 6883671782910463240
199
+ 6882982930499554573
200
+ 6883094325689863424
201
+ 6882971449695472909
202
+ 3xdfyyaakq5s7fg
203
+ 3xhexdg3cfkzahy
204
+ 3xzr8tc3yjan4ns
205
+ 6885306773683653899
206
+ 3x2qbcnaz6iin6a
207
+ 3x5cu7ezz33wf6y
208
+ 3xzni2rn9yb2ur4
209
+ 6952024742920604958
210
+ 7033779180982603049
211
+ 7053369565618670856
212
+ 7056399445985987871
213
+ 7056401603636563207
214
+ 7056402040389520648
215
+ 3x38ctqewjb8hmu
216
+ 6810648413433023757
217
+ 6855480621616221444
218
+ 6908524417744194824
219
+ 6948988362430680351
220
+ 6953603582159506728
221
+ 6969441526204108062
222
+ 7021409894137859365
223
+ 7022241756792081672
224
+ 6998450830852541708
225
+ 6998644293661429003
226
+ 6998418311407062272
227
+ 6998757889745718536
228
+ 6998537799976619295
229
+ 6998441704458161444
230
+ 6998682545118367013
231
+ 7012839691653369118
232
+ 6998348900516039971
233
+ 6998796781681151271
234
+ 6998759857868295455
235
+ 3x48ret89vhanji
236
+ 6945220453338320142
237
+ 6945371204471573763
238
+ 6876765823755668744
239
+ 6877326059440786695
240
+ 3x5jcn6stnye28u
241
+ 6658113316042345736
242
+ 6658859333775838476
243
+ 6659638348123999492
244
+ 6770980407262399752
245
+ 6845297094828281092
246
+ 6851858629604150540
247
+ 7028138502562860301
248
+ 7013676560733556004
249
+ 7013619339924360483
250
+ 7013648410569936166
251
+ 7013637183722507533
252
+ 7014124247391931688
253
+ 7013617655517056293
254
+ 7013628745391033614
255
+ 7013606549541227807
256
+ 3xbp36nyju5yc56
257
+ 3x9bqung2nu7kc4
258
+ 3xhjur3q2exjqw9
259
+ 6805338726206573824
260
+ 6804776274364534020
261
+ 6804747267786935560
262
+ 6805114691329756427
263
+ 6804990192773025037
264
+ 6804689338765430031
265
+ 6804780254742236419
266
+ 3xdepya4cw8t6t2
267
+ 3xr87chfid9wvpe
268
+ 6805483052119133453
269
+ 6807571192761896200
270
+ 6669263871984913678
271
+ 3xfysd9zwk29ggs
272
+ 3xhp7c8a3piwgys
273
+ 3xukbb7eybxbw5q
274
+ 6965930944154897672
275
+ 7018140769592675620
276
+ 6841641009479273742
277
+ 6841738028021599488
278
+ 6841698145173277965
279
+ 3xwkd4bdkd3yft4
280
+ 7016653111951478027
281
+ 7054455374837075204
282
+ 6966539647115709708
283
+ 6855981062661754112
284
+ 7016295347622366504
285
+ 3xnqtnd2zuif7ke
286
+ 6968800423142624520
287
+ 6969146657258736934
288
+ 6793448019225267463
289
+ 6969037949920906509
290
+ 6812556773916937480
291
+ 7033568781016239400
292
+ 6890096787571445003
293
+ 6978447063453273352
294
+ 7009610933437746468
295
+ 3xnh6ksug7tnyti
296
+ 3x2rcnynrkcq2t2
297
+ 3xsnyqsk2imatxs
298
+ 6771036373781646605
299
+ 7038747888897264935
300
+ 7053384921401789708
301
+ 3xjeb2xcq4r62ti
302
+ 6771223353316461832
303
+ 6771355541286472964
304
+ 6771300068696788232
305
+ 6771727162417483016
306
+ 3x626bdepsj6t4c
307
+ 3xd7xree5gk9su6
308
+ 3xmvxnbrbyzajfs
309
+ 3xzwiveqb4683gg
310
+ 3xskwn3dqvchci6
311
+ 6913856829122465039
312
+ 6903409421183995149
313
+ 6903438963965529347
314
+ 6774614259935563021
315
+ 6809413617453206791
316
+ 6809244629423099136
317
+ 6809235327530568968
318
+ 6809243862264057103
319
+ 6806252071180913935
320
+ 3xi54gmx9fsucii
321
+ 3xhnq4zkfef7ei4
322
+ 6789230703390264579
323
+ 6789116698042699021
324
+ 6789475875122318604
325
+ 6789212420637232392
326
+ 6789632187638500622
327
+ 6789409807355989251
328
+ 6789386035236195599
329
+ 6790621001488026895
330
+ 6789574381082316045
331
+ 6992376094531898635
332
+ 6798683452519533837
333
+ 6798738016669076750
334
+ 6798791300012313869
335
+ 6798838586625019136
336
+ 6798897058364329229
337
+ 6799129732211346688
338
+ 6798717204176129294
339
+ 6798879929468603652
340
+ 6857772860224720139
341
+ 6798691277278825735
342
+ 6798956295262096648
343
+ 6850243506976328975
344
+ 6849159823892827407
345
+ 3xuskj5xfkmgias
346
+ 3x7xttv9m6zms4w
347
+ 3x9mdqekeuqr634
348
+ 3xjhu2nb82rwc29
349
+ 3xmis9yb7m5nfas
350
+ 3xve3qzbjw2z6ds
351
+ 6719188785428565251
352
+ 6930058090414951684
353
+ 7012774343679724841
354
+ 6851208905821883663
355
+ 6851539649047923968
356
+ 6851131414222490894
357
+ 6851132909647072527
358
+ 6854883426433060096
359
+ 6857344782113508608
360
+ 6851149328103394563
361
+ 6877494103374892288
362
+ 3x6snt7agsnh6yk
363
+ 3xvn6rbbynxbhaq
364
+ 3xzesivvcxr6tf2
365
+ 6815055785375108363
366
+ 3xqnx3icyq3jvmm
367
+ 6908248927825382664
368
+ 6908520057878498572
369
+ 6908546184256834823
370
+ 7018122433488096524
371
+ 6965948653118704926
372
+ 6709366729115503875
373
+ 6920392203827268864
374
+ 6703467766516698371
375
+ 6703372956191493383
376
+ 3x4b4heing4qn8a
377
+ 3xy67xydmt3pxby
378
+ 6905545787522993422
379
+ 6944178066797235469
380
+ 6903095981676465411
381
+ 6991477279176101131
382
+ 6903365245734079748
383
+ 6902998763892182272
384
+ 6903330126805699844
385
+ 6903101676173970696
386
+ 3xk784kt7xu5sq2
387
+ 3x35hdtxh89a7de
388
+ 6813917386270395652
389
+ 6814358502589369615
390
+ 3xg73rss3sdqqku
391
+ 6817432757610859788
392
+ 6815091663300513027
393
+ 6814432741958946063
394
+ 6814314607973354756
395
+ 6815161754595642627
396
+ 3xdpy97qz539uhk
397
+ 3xpadqjbmbh7t6s
398
+ 6775038723521383693
399
+ 6775337505085525259
400
+ 6775010520979311886
401
+ 6775101574776638732
402
+ 6775437618655005965
403
+ 6774946888216087808
404
+ 6775001928356121870
405
+ 6775043765359938824
406
+ 6775057226185968907
407
+ 3x9tqsx6ue69guy
408
+ 3xduckhwh76ywae
409
+ 3xrfn5vz6ru7txa
410
+ 3xw6xz947f7uuvu
411
+ 6966865626539379979
412
+ 3x8ire7jezweh7c
413
+ 6897034063606058253
414
+ 6991495026689772831
415
+ 6866360691012472067
416
+ 6822683682126433548
417
+ 3x34txsgh77wg3a
418
+ 3x7abhetbrdcmes
419
+ 3xe3er4rmquccza
420
+ 3xmiinxjrd4pa69
421
+ 3xq22983ev7ve6k
422
+ 6872270966106459407
423
+ 6963840071669763342
424
+ 6996260709923425574
425
+ 7034683697068592424
426
+ 7000613000121945351
427
+ 7001004084434078976
428
+ 6998453571247164685
429
+ 7002406832895577383
430
+ 7001135709012741410
431
+ 7001496580188572961
432
+ 6997617707092856064
433
+ 3x4wzqhpf2pr23u
434
+ 3xfvd5368w5aaw9
435
+ 3xj2mevb7x7c36g
436
+ 3xr6rund6htjga4
437
+ 7002934975695785229
438
+ 7018010806272920835
439
+ 6583481991964921092
440
+ 6582489910870019335
441
+ 6582761311287905543
442
+ 6866197280584699136
443
+ 3xgrbg3v4xkw9m9
444
+ 3xyds2f4bvchnhu
445
+ 6844756518349360392
446
+ 6844761643717594372
447
+ 6844775384911711500
448
+ 6844776284652915982
449
+ 6844776403682987264
450
+ 6844778284421631247
451
+ 6844778978494958848
452
+ 6844791137807420686
453
+ 6844811072893996301
454
+ 6845080072357989636
455
+ 3xhcrgpx67qcxy4
456
+ 3xmuhasc9stw379
457
+ 3xne59yy72ac7ms
458
+ 3xr8w76sn8v8uhq
459
+ 3xyssmnfkp3zvh2
460
+ 6990227614799514891
461
+ 6990231897909562635
462
+ 6990235515492502787
463
+ 6990242302790880543
464
+ 6990245576285768997
465
+ 6990259339986603276
466
+ 6990259916208393486
467
+ 6990277053945777439
468
+ 6990277333823343879
469
+ 6990288935809273120
470
+ 6990315589604625703
471
+ 7015088330807217416
472
+ 6810766098741480717
473
+ 6811717413210541323
474
+ 6810751381972995336
475
+ 7042467822664043783
476
+ 6817453297524313357
477
+ 6810861641392000259
478
+ 6991877895970884896
479
+ 6810892177149922567
480
+ 6820072082794171652
481
+ 6810434722972355854
482
+ 3xqjpzpt4e4jmd6
483
+ 3xbhduy2wyvnjdk
484
+ 6970992334364347684
485
+ 3xf6cvqp456tjkw
486
+ 3xfk4czmbv3psey
487
+ 3xu9ry786wge3iy
488
+ 3xvcvr2nb4i2g3c
489
+ 6851147341253135624
490
+ 6852229819191676175
491
+ 6852876712024280335
492
+ 6852979877516283151
493
+ 6853989224878787843
494
+ 6854042677390904583
495
+ 6854064950038514951
496
+ 6853657007828847886
497
+ 6700861687563570439
498
+ 6888259844172778760
499
+ 7000396692839271694
500
+ 6948604237312052517
501
+ 7036877571987934479
502
+ 6868252662182186243
503
+ 7016216852875562271
504
+ 6828312624011185423
505
+ 3x627meastrtcsg
506
+ 7029662763786046750
507
+ 7033661092387720460
508
+ 3x6npxgu9kr2sgu
509
+ 3xt4kiqw99t33am
510
+ 6826978829282692356
511
+ 6826987786642509056
512
+ 6896645750239808775
513
+ 6919727281380363527
514
+ 6919800791696002319
515
+ 7027850535449464076
516
+ 3xtgpgvdjhncxw6
517
+ 6991495137964608782
518
+ 6777562645106150656
519
+ 6777670369743506701
520
+ 6777523912323403016
521
+ 6777376906376416520
522
+ 6777377636827041038
523
+ 3x3m25vpe7hnvhc
524
+ 3xenrbhf9hryq4q
525
+ 3x87uxtcwbgsx8k
526
+ 7041471601153559815
527
+ 7057110614602288425
528
+ 7043725834615606564
529
+ 7041770702990626055
530
+ 7041976735910432034
531
+ 3xnw86kuddjgs2m
532
+ 3xvvv5qkks2p7ba
533
+ 3xp849bntcd8umi
534
+ 3x56fqqqan35vtk
535
+ 7055512816345795874
536
+ 6883851924790136064
537
+ 6940404918889106722
538
+ 6877826756015852807
539
+ 6939804053744536839
540
+ 3xyqy7bw625iqmi
541
+ 6877743588093054212
542
+ 6877802933837188365
543
+ 6946100869813357865
544
+ 6752814648501783812
545
+ 6753509142385822987
546
+ 6758338671381974280
547
+ 6752680685108071684
548
+ 6753124687347305735
549
+ 6863359952942058765
550
+ 6753110694356471052
551
+ 6753922528953011469
552
+ 6752720428285889803
553
+ 3xj9fhazb88ia7g
554
+ 3x45cr87xn8vvec
555
+ 6984060939821714691
556
+ 7003565889027067175
557
+ 7049723441108241679
558
+ 6932452023145155855
559
+ 7015101878870478092
560
+ 6932873121598885133
561
+ 6932393385017855244
562
+ 6932403739726712072
563
+ 3x8cni5a4bdv692
564
+ 6814350072894065935
565
+ 6813734067331173647
566
+ 6814223358167649547
567
+ 6814398145854803212
568
+ 6814020004724428032
569
+ 6814290877805006094
570
+ 3xnyv8ctmhp8zyy
571
+ 6813923092897811716
572
+ 6813905741620006147
573
+ 6815493038140427535
574
+ 6813986413353225476
575
+ 3x87t8ywvvkg98a
576
+ 3xc3855y9s3ek7m
577
+ 3xhf2wrfmycgv3y
578
+ 3xptn4sa77yy3x6
579
+ 3xyg8i98945uhs9
580
+ 6680486383200652551
581
+ 6680725537217957133
582
+ 6838183183779958030
583
+ 6893761625375902979
584
+ 6940947333114875174
585
+ 6960564672554667267
586
+ 6969600590737378599
587
+ 6982426156553260301
588
+ 7005117123030797600
589
+ 3x5w3hq73bw9eby
590
+ 3xu52mp9qpgzxii
591
+ 6903417736039271688
592
+ 6903391663654259975
593
+ 6903482569623375117
594
+ 6756049768167771405
595
+ 6912698771163991307
596
+ 3xv2rkyp2bzajeu
597
+ 7028133155794111757
598
+ 6904550353425943815
599
+ 6789179815841844494
600
+ 6789126750887529742
601
+ 6789137562125585679
602
+ 6993190210511146243
603
+ 6789269241737563405
604
+ 6789446985515601166
605
+ 6789515540890275072
606
+ 6789396303777467660
607
+ 6789411863441558799
608
+ 3xjr9cdec5xgw49
609
+ 3xc46me4rch5p29
610
+ 6790650616814390535
611
+ 6790168988090371336
612
+ 3xwz5b2yrwzk4aq
613
+ 6863670234700680461
614
+ 6956048707829746974
615
+ 6965930318322748710
616
+ 7020641226827287822
617
+ 6813621650496490766
618
+ 6813330207395630347
619
+ 6813545633639681283
620
+ 3xai6e23q8ctwkm
621
+ 3xdcjwjrxhwsqcq
622
+ 3xqyfgx636625ag
623
+ 3xrmfsdwarjwyfg
624
+ 3xyjd37ta8y88gu
625
+ 6809915709791931663
626
+ 6876220191492148487
627
+ 6876257542276730120
628
+ 7031561017180065063
629
+ 7056367962126634253
630
+ 7044899170313850153
631
+ 7040459322459032873
632
+ 7042840706381106439
633
+ 7055265850936397071
634
+ 7034350483309399309
635
+ 7040430360127130892
636
+ 7034682911441915136
637
+ 7030659592841334053
638
+ 7040780207178927372
639
+ 7040585061250469158
640
+ 7042654809836621071
641
+ 6869932962536819983
642
+ 7015504911643299108
643
+ 6872144626912988429
644
+ 6872205855849221389
645
+ 6872256828034534664
646
+ 6872234972288142599
647
+ 6872401891968453899
648
+ 7015120983669394702
649
+ 6872190351185087744
650
+ 3xnnt4cw8qcu5fq
651
+ 6769364663302917389
652
+ 6768224569951014156
653
+ 6891164044552654094
654
+ 3x4hr9wjkn9q6uw
655
+ 3x5s3h6uyj5xfss
656
+ 3xemxdkexfwj2ui
657
+ 3xhbg824xcqr76s
658
+ 3xqbh4dyn9cvpwm
659
+ 3xsu7qvs4uc3qw9
660
+ 3xuznjigyifrav2
661
+ 6921575944729693447
662
+ 7020393255414156552
663
+ 7020425430473706765
664
+ 7020439365021224195
665
+ 7020553684987809032
666
+ 7021764129945898271
667
+ 7023692039996919080
668
+ 6847313184450252040
669
+ 6741328466110631181
670
+ 6988806768662957312
671
+ 6987692817392979233
672
+ 3xxqb6xhr5rcq96
673
+ 6898304240838561035
674
+ 6965944220968357134
675
+ 6990642579951947038
676
+ 6992396704175639849
677
+ 6901142136364862731
678
+ 6902717793599261967
679
+ 6901166862713801996
680
+ 6901270721499106568
681
+ 6901090507481451789
682
+ 6901178173300493568
683
+ 6901504979287231755
684
+ 6901254564037594371
685
+ 7007038642271341831
686
+ 3xsjj9m95rtg632
687
+ 3xhwbmh8jb374ni
688
+ 3xsgdw5tvhtxciu
689
+ 6844743558939806991
690
+ 6845066012333788428
691
+ 7027865610503605508
692
+ 6845078965565017344
693
+ 7024489170672405791
694
+ 6844818233850072331
695
+ 6845187354110528776
696
+ 3xkyntm4ddwj69s
697
+ 3xzsm73a8bw4t5s
698
+ 6845131127754214671
699
+ 6848896622001212685
700
+ 6848958762087156992
701
+ 6848963030395522317
702
+ 6849177771898440963
703
+ 7015179078063918339
704
+ 3xi7j5x3yfnd95y
705
+ 6769884636668611853
706
+ 6780217047482682635
707
+ 6763127593215577355
708
+ 7019796409754881316
709
+ 6974608529348889887
710
+ 6763184473241619719
711
+ 6782769312651431181
712
+ 6902249775282834695
713
+ 6780264564631047438
714
+ 6763131349818707203
715
+ 6970158017438387464
716
+ 6969091056004599055
717
+ 6969087488023448871
718
+ 6969110448809544994
719
+ 6969134658978106632
720
+ 6970194168421403912
721
+ 6969122838540225792
722
+ 6969113905746496806
723
+ 6970695764582370571
724
+ 6969132100066839840
725
+ 6969445193225473294
726
+ 6969101155754364160
727
+ 6969073275540491535
728
+ 3xffthu6xe3z7bq
729
+ 3x4q9qnsrpvf4je
730
+ 3xj8cwmikj2vbr9
731
+ 6810205219067038983
732
+ 6810214757627481352
733
+ 6810227456126094600
734
+ 6810235766942305539
735
+ 6810242340108668174
736
+ 6810244511034379527
737
+ 6810247544216620303
738
+ 6810271009959087374
739
+ 6810275919236812046
740
+ 6810319473573219595
741
+ 6810249864878820623
742
+ 7038847899148504361
743
+ 6844439307940351243
744
+ 7009449459268537637
745
+ 7012550052149349671
746
+ 6890075704415767819
747
+ 6860077218111016192
748
+ 6842834986417016075
749
+ 6825848797239774475
750
+ 6900901879304211723
751
+ 6850037694488235279
752
+ 6810729408022744335
753
+ 6989987731669617957
754
+ 6654921390925319436
755
+ 6834677839309180168
756
+ 3x53ac3h93vf3r9
757
+ 3x7e85f2nh6r2wu
758
+ 3x8ttrx4hstaer4
759
+ 3xj8k42c3vq3xr2
760
+ 3xrvfxubh5jgthg
761
+ 6858057926506990862
762
+ 6858157169779477767
763
+ 6858470103583935751
764
+ 6858568240021409024
765
+ 6858629768552713486
766
+ 6866641073729588494
767
+ 6928395135147314439
768
+ 6922751573672119566
769
+ 6922777435528285448
770
+ 6925587022056836366
771
+ 6922710442745941262
772
+ 6923111319516269837
773
+ 6923076210650139912
774
+ 6930430779285654784
775
+ 3xrt44jbg25c98e
776
+ 6931891737308777741
777
+ 3xdcfg2npatercy
778
+ 6830624718748519687
779
+ 6985038171369213220
780
+ 6985340825995578655
781
+ 6985418535661030686
782
+ 6828816553870413060
783
+ 6762485768855309575
784
+ 3xa42zzyg32yq22
785
+ 3xfst2mt4spsq99
786
+ 3xt7su5k8aaawy4
787
+ 3xy2qx99i2t48rk
788
+ 3xyqvxj6ss42t9w
789
+ 6972355496539868450
790
+ 6972363800263675151
791
+ 6972388423386582312
792
+ 6972402411998678308
793
+ 6972420491227188487
794
+ 6972433581129927976
795
+ 6972447113024146703
796
+ 6972797607403932966
797
+ 6978809243185073423
798
+ 7014037343271177485
799
+ 6994985239529426206
800
+ 6994715205578149152
801
+ 3xumtzkn6772xci
802
+ 6995034911715495181
803
+ 6995926599174507783
804
+ 6995054065151528228
805
+ 6995410327370304776
806
+ 6995124013987155236
807
+ 6995446519545580832
808
+ 6995799448039263527
809
+ 6963475755355393315
810
+ 6832185731620867335
811
+ 6831180377688788239
812
+ 6831126629700488451
813
+ 6845253491976457484
814
+ 6831381330450861323
815
+ 6830756581827808523
816
+ 6765832813238357251
817
+ 6922820326267178252
818
+ 6831818591982144783
819
+ 6853077464843832583
820
+ 6951984255584996647
821
+ 7042127707425099016
822
+ 6792571347609505024
823
+ 6829451492391537927
824
+ 6873624092294073608
825
+ 6873624365544574216
826
+ 6873624849114287368
827
+ 3xs2btwmsznp3za
828
+ 6792932367502691597
829
+ 6792897575553879309
830
+ 6793092358536744205
831
+ 6793126744271359246
832
+ 3xxpaf5hjpsb4hs
833
+ 6955779828280806664
834
+ 3x43idxk5w5vrxw
835
+ 6868192450385546504
836
+ 6873385637454630158
837
+ 6917937816848633102
838
+ 6888241047726607630
839
+ 6887904016806841600
840
+ 6887912884517571843
841
+ 3x3kfma3ff6v5mw
842
+ 7013334169975606561
843
+ 7013527137529384226
844
+ 7013535575290481950
845
+ 7034083180672011552
846
+ 7013491373680758050
847
+ 7013493792384797982
848
+ 6937986118432345357
849
+ 7022088019901517092
850
+ 7017419425355746567
851
+ 6937970125895240973
852
+ 3xicq6jv6caqu3s
853
+ 6845956029348367631
854
+ 6921677973334543630
855
+ 6921906621920627976
856
+ 6952844502319025416
857
+ 7032614704946138404
858
+ 3x9dhy9fumft48m
859
+ 6722677705763998979
860
+ 6800641564394769671
861
+ 6800697177376083214
862
+ 6875320285118156044
863
+ 6875518254727580935
864
+ 6875521596296137991
865
+ 7052861203307056414
866
+ 6766558246011407620
867
+ 6706017108238683403
868
+ 6706025183452351755
869
+ 6706303784215121164
870
+ 6786554322516757773
871
+ 6706733840070659336
872
+ 6706666689691520259
873
+ 6706877877868121352
874
+ 6706307318742584583
875
+ 6709747277369445646
876
+ 6707520442938166539
877
+ 3xrtjhvvxn9juua
878
+ 7031865728416468236
879
+ 7028529035609148676
880
+ 7030342786935246084
881
+ 7031123988202016039
882
+ 7024410573861293342
883
+ 7024849373699788045
884
+ 7024747530642672937
885
+ 7024330692058287395
886
+ 7024715360662195490
887
+ 7024381775975664926
888
+ 7025091989251034403
889
+ 7022645150371433732
890
+ 7031042923403726118
891
+ 7025198307337063721
892
+ 7030579781770988808
893
+ 7007029125328178468
894
+ 6944563014737644813
895
+ 6734183552138644750
896
+ 6828955068306427150
897
+ 6822146399438638348
898
+ 6977540170237136165
899
+ 6847625785881218317
900
+ 6975102472469712162
901
+ 6843677566914530572
902
+ 6849674179688615182
903
+ 3x65ep66n5zqdxm
904
+ 7048950287305952544
905
+ 6862216481753533710
906
+ 6862207569679699207
907
+ 6862195533260410112
908
+ 6602089727090756872
909
+ 6602092948031016196
910
+ 6988492921263787300
911
+ 6988319574223555847
912
+ 6684799575590587651
913
+ 6684708736600263950
914
+ 6965960306291920158
915
+ 6805163827123064071
916
+ 6805456913506012430
917
+ 6921872907924802829
918
+ 3xpjyqpskjxsukq
919
+ 6809911531942202637
920
+ 6807943897050860814
921
+ 6879701440365989135
922
+ 6807564623181532416
923
+ 3xfxbvx96t8exwi
924
+ 6889365879549676813
925
+ 6922772290446937352
926
+ 6956873877754481957
927
+ 6957332862806871333
928
+ 3xa5iafpjk898ck
929
+ 3xbuujgiy798qk6
930
+ 3xrd7zptf8axz4y
931
+ 6766392183114222856
932
+ 6857769856498994439
933
+ 6877747200793857288
934
+ 6941945811177606441
935
+ 6959882766800407843
936
+ 7051877619251318023
937
+ 6800313787682393357
938
+ 6799487592053181707
939
+ 6799062729790459151
940
+ 6799212507085982990
941
+ 6798877401142070532
942
+ 3xgd7kfphm4dkea
943
+ 3xwk5szsrzp384q
944
+ 3xtbidmgsa553v2
945
+ 6799207729966681351
946
+ 6799438229041958147
947
+ 6802845079288499470
948
+ 6717151423227858179
949
+ 3xh9gjxy6rkg5wy
950
+ 3xke8g72prihncq
951
+ 3xmzjex75zxr66g
952
+ 6775682394864241928
953
+ 6775705327359839488
954
+ 6965939647004298499
955
+ 7008814496965741828
956
+ 6775734701115165952
957
+ 6977896947092819208
958
+ 7044048062737665288
959
+ 7051726184639499523
960
+ 7047041238498905347
961
+ 6786394260695502080
962
+ 6849230937071291660
963
+ 6849294162769071368
964
+ 3xbncbnmp6bht7m
965
+ 6942046714337578253
966
+ 6942050121597078788
967
+ 6942111753811627264
968
+ 6942444605975661858
969
+ 6942767871684578591
970
+ 6943114614414609667
971
+ 7020635036290501921
972
+ 7030541499603455247
973
+ 3x3d9amy5hstrcw
974
+ 3x4u2idyuju97dg
975
+ 6867451579465764108
976
+ 7051110607449263398
977
+ 6922285670010473740
978
+ 7019211791964163340
979
+ 6922722737173695758
980
+ 6923593337656134923
981
+ 6923462909842525448
982
+ 6922657004334943495
983
+ 6923346063944404238
984
+ 6923095665010543872
985
+ 6922962079888559371
986
+ 6922418369014582535
987
+ 3xk9fpgwamdiz4k
988
+ 3xfdxig3uwizb8c
989
+ 6725014910033579278
990
+ 6726863850802597123
991
+ 6871052742379523341
992
+ 6871564257146785024
993
+ 6976057009275784460
994
+ 6978451541418069281
FakeVD/dataset/data-split/temporal/vid_time3_test.txt ADDED
@@ -0,0 +1,720 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 7053609099254041895
2
+ 7038747888897264935
3
+ 7053384921401789708
4
+ 7031561017180065063
5
+ 7056367962126634253
6
+ 7044899170313850153
7
+ 7040459322459032873
8
+ 7042840706381106439
9
+ 7055265850936397071
10
+ 7034350483309399309
11
+ 7040430360127130892
12
+ 7034682911441915136
13
+ 7030659592841334053
14
+ 7040780207178927372
15
+ 7040585061250469158
16
+ 7042654809836621071
17
+ 7036877571987934479
18
+ 7029994065131277598
19
+ 7027992116609453350
20
+ 7022645150371433732
21
+ 7031042923403726118
22
+ 7025198307337063721
23
+ 7030579781770988808
24
+ 7020557739868867870
25
+ 7041717698761329923
26
+ 7057819525407952167
27
+ 7021083431903808779
28
+ 7021289862108122404
29
+ 7020440059090406659
30
+ 7035914620879555855
31
+ 7022988623481998600
32
+ 7055097663162879272
33
+ 7021437448987102471
34
+ 7031081942648933670
35
+ 7020227111260523809
36
+ 7020645164867702055
37
+ 7020228622967491879
38
+ 7021399162243534118
39
+ 7023059343138442511
40
+ 7031865728416468236
41
+ 7028529035609148676
42
+ 7030342786935246084
43
+ 7031123988202016039
44
+ 7019625163473865996
45
+ 7021306852726050052
46
+ 7021159338882370855
47
+ 7021067470937001254
48
+ 7020326987369696526
49
+ 7023011062509260071
50
+ 7019851942029561091
51
+ 7020227558654479650
52
+ 7020242118274764046
53
+ 7021440042019179791
54
+ 7046160617840856361
55
+ 7035462964685704479
56
+ 7025213002756394276
57
+ 7027611337324858659
58
+ 7027494216439811364
59
+ 7028900912034893086
60
+ 7028190137171430692
61
+ 7030430491962527014
62
+ 7031444334620757255
63
+ 7033613488576679168
64
+ 7029522681917689091
65
+ 7029585948459420964
66
+ 7029209861531520294
67
+ 7028505403948420360
68
+ 7031153752790830374
69
+ 7029566764732222750
70
+ 7032253745689857317
71
+ 7045955588488006944
72
+ 7029482339818392863
73
+ 7056313944817945856
74
+ 7054005875446500612
75
+ 7032453438562700578
76
+ 7022992369045851404
77
+ 7045925414622989605
78
+ 7030004578389183784
79
+ 7048603452229831943
80
+ 7048279986280598819
81
+ 7019839633865428262
82
+ 7037659286041906439
83
+ 7026283453658287400
84
+ 7056381386420145444
85
+ 7030359137842154752
86
+ 7051811666438196521
87
+ 7024261770944531751
88
+ 7036919950036012292
89
+ 7036319814654151947
90
+ 7037223827880938752
91
+ 7033359367730777348
92
+ 7018071054258031876
93
+ 7024680548287139110
94
+ 7018354482329177359
95
+ 7020263243776019748
96
+ 7042245916841053473
97
+ 7048940393475460387
98
+ 7053548393922071823
99
+ 7037499302746393893
100
+ 7028615037652618500
101
+ 7030642279803079973
102
+ 7055213699849538831
103
+ 7034083180672011552
104
+ 7031092145968729378
105
+ 7030958335998315790
106
+ 7025234606643334440
107
+ 7021151306094038307
108
+ 7037740090369625379
109
+ 7042467822664043783
110
+ 7030354324840566029
111
+ 7037462720379211011
112
+ 7035566006554643751
113
+ 7055906127388658974
114
+ 7038252244478840095
115
+ 7055180730518883587
116
+ 7031859613460925736
117
+ 7056300233491303691
118
+ 7036952898252639503
119
+ 7042975466105343271
120
+ 7044047262388882688
121
+ 7047811261353987369
122
+ 7027945823648435488
123
+ 7045091116760239360
124
+ 7035978396383431976
125
+ 7043412541501984038
126
+ 7032213017500732680
127
+ 7050313098820947207
128
+ 7024722988222123302
129
+ 7049723441108241679
130
+ 7032287848623639840
131
+ 7049920788383698215
132
+ 7056404286284090662
133
+ 7033661092387720460
134
+ 7041471601153559815
135
+ 7057110614602288425
136
+ 7043725834615606564
137
+ 7041770702990626055
138
+ 7041976735910432034
139
+ 7019176421272718604
140
+ 7055611209025850662
141
+ 7051927357380168960
142
+ 7042845353191755020
143
+ 7019104516016590080
144
+ 7043312251079576864
145
+ 7033568781016239400
146
+ 7054523893691829544
147
+ 7031973520406023427
148
+ 7034840731491634446
149
+ 7034118132620971303
150
+ 7035068206834355469
151
+ 7034590432021581088
152
+ 7028207119946059040
153
+ 7019485257175043335
154
+ 7019796409754881316
155
+ 7022452124336262414
156
+ 7028536210775723272
157
+ 7032965221509582092
158
+ 7035210171949288740
159
+ 7034473142282095904
160
+ 7029602985692941572
161
+ 7047561614614187264
162
+ 7057098924561108262
163
+ 7039513583717272863
164
+ 7050839413848296739
165
+ 7023492285463612708
166
+ 7045264001541917966
167
+ 7050820590671842572
168
+ 7049986028387568935
169
+ 7048197292616174862
170
+ 7053134515258068257
171
+ 7019257441250544904
172
+ 7040074834931354914
173
+ 7018074404609330472
174
+ 7017791130548833536
175
+ 7027662208859393313
176
+ 7055801040767159565
177
+ 7053378834468474149
178
+ 7029201231767784711
179
+ 7056682221725388064
180
+ 7034867342387596559
181
+ 7046313095060311333
182
+ 7036923326471671053
183
+ 7038198919838387493
184
+ 7040481564500774178
185
+ 7018010806272920835
186
+ 7057257608880655650
187
+ 7056176038535056651
188
+ 7054330907901136166
189
+ 7053088371425529092
190
+ 7053012112385363215
191
+ 7053069428979764487
192
+ 7053628147362942223
193
+ 7057450949576609031
194
+ 7052273452274830599
195
+ 7041921581278416158
196
+ 7023287644146633995
197
+ 7054459665228303657
198
+ 7047824234395045156
199
+ 7024047971012480293
200
+ 7018383515674889504
201
+ 7055924468711050503
202
+ 7054804462501776651
203
+ 7042979615991811342
204
+ 7018087007637359876
205
+ 7018009000729988352
206
+ 7018389998277774606
207
+ 7035112768273517828
208
+ 7055540654083935523
209
+ 7034461852092353807
210
+ 7042505949998828815
211
+ 7044789589755612427
212
+ 7044814190552321287
213
+ 7044720935663914274
214
+ 7044536903693110536
215
+ 7044544101886332167
216
+ 7033034658308771110
217
+ 7040050087627607304
218
+ 7043952122508872994
219
+ 7051775977361296655
220
+ 7035206290636836096
221
+ 7029845929318436132
222
+ 7017364334938443039
223
+ 7017724427525688576
224
+ 7017589177361435936
225
+ 7017441093457399077
226
+ 7017739552920014116
227
+ 7017986654732340521
228
+ 7017611679143906568
229
+ 7017716576472321315
230
+ 7048919632329067810
231
+ 7048827243237281055
232
+ 7048883103657381159
233
+ 7048861382715936035
234
+ 7048926901884259621
235
+ 7048879953420569893
236
+ 7048783060040551710
237
+ 7048891249478192420
238
+ 7049581887957896480
239
+ 7048915245552782607
240
+ 7048807143155191081
241
+ 7038847899148504361
242
+ 7035527261545598243
243
+ 7035936383457824041
244
+ 7035041510471093508
245
+ 7019175347518328098
246
+ 7017344287406886181
247
+ 7017259392332549390
248
+ 7017433906135698724
249
+ 7017326145901169956
250
+ 7022913322009890051
251
+ 7025586251960945958
252
+ 7018344678059724047
253
+ 7023555587845672204
254
+ 7017695556092890376
255
+ 7017414510847724836
256
+ 7017526065920789800
257
+ 7017442227408473385
258
+ 7060231048436665640
259
+ 7060192184368221454
260
+ 7042498832483028257
261
+ 7034494607262059776
262
+ 7031891728529394982
263
+ 7039973983286054179
264
+ 7048969477999840516
265
+ 7059265016276552992
266
+ 7054455374837075204
267
+ 7038944755274829096
268
+ 7053608466006510880
269
+ 7022235670324251941
270
+ 7017376717115264286
271
+ 7029229563137821989
272
+ 7041933462365883683
273
+ 7026575265421610244
274
+ 7037803401752677662
275
+ 7045383922292641031
276
+ 7027674089112341795
277
+ 7028703095957851407
278
+ 3xy6xs5kz4asrd9
279
+ 3xzfu98w5vd8rym
280
+ 3x76a99a5e67jre
281
+ 3x86dqjqgniye9q
282
+ 3xsefhr4knp7zvm
283
+ 3xtf6mqjhubyp6q
284
+ 3xqjpzpt4e4jmd6
285
+ 3xf254cgufipfa2
286
+ 3xp8rwyviepz87q
287
+ 3x2t7ggzjjt2rxy
288
+ 3xnw86kuddjgs2m
289
+ 3xvvv5qkks2p7ba
290
+ 3xp849bntcd8umi
291
+ 3xkaxd72w6rqct9
292
+ 3xnh6ksug7tnyti
293
+ 3xrdmz9jp5euq5a
294
+ 3xj4meizhnndq7w
295
+ 3x6d7bq2f8dc95u
296
+ 3x6y3jhyehykdz6
297
+ 3xvg252p7mhzxnc
298
+ 3xdq4zhsege5nsi
299
+ 3xzxrpdjujcqbxw
300
+ 3x6g8rysfypvsc6
301
+ 3x6kgc2skkeys7m
302
+ 3xrk8cxhhqwimqu
303
+ 3xytyzwx3fpd5va
304
+ 3xyekg2aa2sfxq4
305
+ 3xnqtnd2zuif7ke
306
+ 3xtnv52edctx7gq
307
+ 3x2xkqtcffyy486
308
+ 3x34p5rv5rty2kq
309
+ 3x38ctqewjb8hmu
310
+ 3x3e23czmz7bhxa
311
+ 3x3rg3rthx6yk8e
312
+ 3x56fqqqan35vtk
313
+ 3x5azhb8s73fe3e
314
+ 3x5figva6s2sk7s
315
+ 3x5w3hq73bw9eby
316
+ 3x65ep66n5zqdxm
317
+ 3x6snt7agsnh6yk
318
+ 3x7t93y4spz9vce
319
+ 3x8hupc4mjyjx7e
320
+ 3x8ire7jezweh7c
321
+ 3x9dv6iyh9vqsny
322
+ 3x9zrpu3gbf7hh2
323
+ 3xbd9q2xtppijqu
324
+ 3xbiwhc4gr6aarm
325
+ 3xc5gnc47aqijk4
326
+ 3xc8mjfrqhruxq9
327
+ 3xcbamtjy9g79fc
328
+ 3xcwdz3x45utvmw
329
+ 3xcz7in4que5si4
330
+ 3xd2pmsy6jz5t64
331
+ 3xdqfdv7mydwwfc
332
+ 3xe35cdfnkit36c
333
+ 3xe5ep2me9fcac4
334
+ 3xee737rmjg4p92
335
+ 3xeku62m6ws5f92
336
+ 3xekv75eurqih29
337
+ 3xexs4d8xaxzsxk
338
+ 3xffw33yzwyxn66
339
+ 3xfvd5368w5aaw9
340
+ 3xgjcuv8463gbhs
341
+ 3xha6nekemhtwqg
342
+ 3xhdghhypy3s9ma
343
+ 3xhykdy7axiwyaq
344
+ 3xiqs66buw6r2jw
345
+ 3xirssh3uruebri
346
+ 3xizkej8sh2m5ue
347
+ 3xjbrxwwnt7eiek
348
+ 3xjmefgwtxxvtgy
349
+ 3xjp7rzxfjd5wes
350
+ 3xjtcqeba4gb9wa
351
+ 3xkv3tjmzcqvn9c
352
+ 3xkyntm4ddwj69s
353
+ 3xmydr5rp66gfpm
354
+ 3xqd4wg3dspf9ra
355
+ 3xqeqr9w3n4c7hk
356
+ 3xr6rund6htjga4
357
+ 3xrq9wuzmb2n2wg
358
+ 3xsu7qvs4uc3qw9
359
+ 3xt56hysgxmysde
360
+ 3xtgnmm6ti7dax2
361
+ 3xtrcijpu64y6xc
362
+ 3xu8n8jmv53tx34
363
+ 3xuhnzpzcm59xjw
364
+ 3xve3qzbjw2z6ds
365
+ 3xviwmw4hienh2g
366
+ 3xvs9yq5ssbq394
367
+ 3xw3y8ahpfbefak
368
+ 3xw59ifzkrgxeg4
369
+ 3xxhymwfjqiwaqk
370
+ 3xxpn236a2yfygq
371
+ 3xxqh9g2mqd5z6w
372
+ 3xxy6dwpnfur2gg
373
+ 3xyee2uc9irhyw9
374
+ 3xzrpewykxkhw9g
375
+ 7017441632828067109
376
+ 7017697773889834276
377
+ 7018051758337412366
378
+ 7018081523995888903
379
+ 7018173859207728418
380
+ 7018372776943766823
381
+ 7018783925770128655
382
+ 7019229281704250662
383
+ 7019606833019047180
384
+ 7020393255414156552
385
+ 7020425430473706765
386
+ 7020439365021224195
387
+ 7020553684987809032
388
+ 7020684985111809310
389
+ 7020750371622554913
390
+ 7021056131950857480
391
+ 7021093041859579150
392
+ 7021333575794560288
393
+ 7021383978431106311
394
+ 7021409894137859365
395
+ 7021444066311179560
396
+ 7021764129945898271
397
+ 7021897732549823758
398
+ 7023193130031713575
399
+ 7023244925978397983
400
+ 7023245555539184931
401
+ 7023258320903441699
402
+ 7023626433339641092
403
+ 7023692039996919080
404
+ 7024060485381147918
405
+ 7024386092619025676
406
+ 7024763407547125006
407
+ 7024788820474318094
408
+ 7024868156531330304
409
+ 7024869071128628516
410
+ 7024872299543235874
411
+ 7024876615393938724
412
+ 7024878215407619362
413
+ 7024885711677525260
414
+ 7024927766906719518
415
+ 7025048954974833934
416
+ 7025136991641537833
417
+ 7025142316490919204
418
+ 7025145570293566731
419
+ 7025167215913667851
420
+ 7025218023657114910
421
+ 7025399661116525854
422
+ 7025573055808294159
423
+ 7026286039853550882
424
+ 7026682604434902276
425
+ 7027022221763824926
426
+ 7027490498361265443
427
+ 7027788692471287076
428
+ 7028054479111015692
429
+ 7028133155794111757
430
+ 7028138502562860301
431
+ 7028453876248399135
432
+ 7029478371427912973
433
+ 7029504216238427431
434
+ 7029510412718624040
435
+ 7029577288278641927
436
+ 7029590123297754371
437
+ 7029591662020070691
438
+ 7029617693196160290
439
+ 7029948498762157342
440
+ 7029969757415673119
441
+ 7030541499603455247
442
+ 7030728031652138273
443
+ 7031744433435479310
444
+ 7031939937406553381
445
+ 7032175363627240744
446
+ 7032614704946138404
447
+ 7032866394190417155
448
+ 7032869305435933963
449
+ 7033335315314101517
450
+ 7033669372057111815
451
+ 7033779180982603049
452
+ 7033979808505777411
453
+ 7034062611872238856
454
+ 7034629754259098916
455
+ 7034683697068592424
456
+ 7035424396676320515
457
+ 7035537991837699368
458
+ 7036960164108324109
459
+ 7037037902475300128
460
+ 7037346913875709197
461
+ 7037347520925715720
462
+ 7037678639407713544
463
+ 7037720351664590120
464
+ 7037808720532786445
465
+ 7038497948476378383
466
+ 7038557817552293123
467
+ 7038604197650058503
468
+ 7038808265320418563
469
+ 7038857031654182148
470
+ 7038958429158870280
471
+ 7039178038545845536
472
+ 7039183851284860197
473
+ 7039192061043576100
474
+ 7039894871749987621
475
+ 7039904064364088608
476
+ 7039905905583918340
477
+ 7039922477526469901
478
+ 7039925672155860265
479
+ 7039979927290039588
480
+ 7040267067081133326
481
+ 7040993287494307086
482
+ 7041376892577991973
483
+ 7042127707425099016
484
+ 7042137290080062724
485
+ 7042975772717436167
486
+ 7042982526268362015
487
+ 7043022295295593763
488
+ 7043265905731620103
489
+ 7043426723593014562
490
+ 7043587064008281358
491
+ 7043686053001186567
492
+ 7043720289464749325
493
+ 7043746381047008545
494
+ 7043748758198258975
495
+ 7043791676510440745
496
+ 7044335645887712548
497
+ 7044483368649493797
498
+ 7044719543280848141
499
+ 7044795417824922891
500
+ 7044821798168399141
501
+ 7044849883752320270
502
+ 7045236629421690153
503
+ 7045640507996916992
504
+ 7046643645541403941
505
+ 7046936640991792418
506
+ 7046943614638787872
507
+ 7046999925455916318
508
+ 7047031603356388621
509
+ 7047060920429792524
510
+ 7047470404633480462
511
+ 7048461958416305448
512
+ 7048471469944327464
513
+ 7048576318459497742
514
+ 7048950287305952544
515
+ 7049184364088823053
516
+ 7049357768301546755
517
+ 7049528744184204574
518
+ 7050033675534208256
519
+ 7050044992445893918
520
+ 7050407300435053832
521
+ 7050479213098388777
522
+ 7050683268659727646
523
+ 7050760867020934414
524
+ 7051110607449263398
525
+ 7051566224471280904
526
+ 7051877619251318023
527
+ 7052522725612489992
528
+ 7052674165236583688
529
+ 7052861203307056414
530
+ 7053369565618670856
531
+ 7053657591594962210
532
+ 7054011574050147598
533
+ 7054496591473855747
534
+ 7054857378411400456
535
+ 7055512816345795874
536
+ 7055532121758158112
537
+ 7056399445985987871
538
+ 7056401603636563207
539
+ 7056402040389520648
540
+ 7056718049017204004
541
+ 7056726761974926628
542
+ 7056960971734109476
543
+ 7057915117601688868
544
+ 7058183113519746307
545
+ 7058189158447140103
546
+ 3xutehrmy5dqhu2
547
+ 3xt7wij26ryd33c
548
+ 3xq2f3nm9mr25n2
549
+ 3xssuajchkpvxd6
550
+ 7037119584104631587
551
+ 7029662763786046750
552
+ 7039205282525760776
553
+ 7020353840985804069
554
+ 7028151349657242894
555
+ 7024701019565182212
556
+ 7047432439307816192
557
+ 7024410573861293342
558
+ 7024849373699788045
559
+ 7024747530642672937
560
+ 7024330692058287395
561
+ 7024715360662195490
562
+ 7024381775975664926
563
+ 7025091989251034403
564
+ 7029489359560789281
565
+ 7039027275118972167
566
+ 7039243135662165259
567
+ 7039277351741574435
568
+ 7039273612599250176
569
+ 7051760836792175885
570
+ 7048402405158849826
571
+ 7044820339284610319
572
+ 7044732699927383310
573
+ 7019211791964163340
574
+ 7045580936322256158
575
+ 7045954176899124488
576
+ 7046558613795605796
577
+ 7050391644528594189
578
+ 7046319176570375464
579
+ 7045606193452141837
580
+ 7045134379881975051
581
+ 7044747295853759780
582
+ 7044752506311806238
583
+ 7045107637427506467
584
+ 7054091214143982885
585
+ 7052154339044986120
586
+ 7051521837817269545
587
+ 7050523335372885256
588
+ 7054812245036928260
589
+ 7033301501661547806
590
+ 7047804013378538767
591
+ 7033967174477679885
592
+ 7034493169253305607
593
+ 7039258154135342366
594
+ 7033948294485249310
595
+ 7033196233627946253
596
+ 7033220858864815373
597
+ 7033239918134578467
598
+ 7036910947323153675
599
+ 7026358663065390348
600
+ 7031454072850894116
601
+ 7041842334916545828
602
+ 7041107787190979848
603
+ 7036297725415050532
604
+ 7022088019901517092
605
+ 7017419425355746567
606
+ 7047409022496017672
607
+ 7020601843373837579
608
+ 7020726223252851998
609
+ 7020398566292213006
610
+ 7020413584433810722
611
+ 7020709911310978312
612
+ 7023913788961230080
613
+ 7023676304637660446
614
+ 7040982514940284163
615
+ 7040693836997332258
616
+ 7040444501629947143
617
+ 7040463070564601125
618
+ 7040434586077105420
619
+ 7051483674377768199
620
+ 7031438991597620494
621
+ 7029547154922310943
622
+ 7031153271658040590
623
+ 7038398576862498056
624
+ 7029398660622454046
625
+ 7029459999575346444
626
+ 7029448555840474409
627
+ 7030677133030706447
628
+ 7029513792593644841
629
+ 7023313508917972261
630
+ 7038594783354359075
631
+ 7021084862442474752
632
+ 7051519784583728397
633
+ 7040301554716527907
634
+ 7036413607969574151
635
+ 7017625601167166751
636
+ 7029188960945589511
637
+ 7052941172393774367
638
+ 7023312247166438669
639
+ 7020327493135568158
640
+ 7020372442556239108
641
+ 7020320413725052190
642
+ 7020594325197311240
643
+ 7020685349001235712
644
+ 7024769759015193863
645
+ 7020314764651842851
646
+ 7020256452497427743
647
+ 7023670069670448415
648
+ 7017611324569996575
649
+ 7051581860945644833
650
+ 7050051119447395620
651
+ 7036681334651194632
652
+ 7035237862660525319
653
+ 7034713552313126175
654
+ 7034731648927255819
655
+ 7039270843121208584
656
+ 7035612977793387812
657
+ 7045968561013148958
658
+ 7026928413533392158
659
+ 7027130384802450688
660
+ 7031723292658502948
661
+ 7057138706146200840
662
+ 7022241756792081672
663
+ 7032815054210731296
664
+ 7021086903294364964
665
+ 7035539245003459880
666
+ 7045198491735428366
667
+ 7040430639207714061
668
+ 7050066710958853411
669
+ 7029239969403112711
670
+ 7020727263180229888
671
+ 7052996157517188356
672
+ 7054136830056271141
673
+ 7039731861731495198
674
+ 7024033337564007695
675
+ 7044048062737665288
676
+ 7051726184639499523
677
+ 7047041238498905347
678
+ 7041503075386920205
679
+ 7019203424432475395
680
+ 7019183807249108254
681
+ 7018099873065028899
682
+ 7018011675534101798
683
+ 7017801758168648990
684
+ 7018060154117639432
685
+ 7017854651475283233
686
+ 7019892562517429512
687
+ 7025970825807318303
688
+ 7050791880774241551
689
+ 7049298230923840798
690
+ 7049165411165670697
691
+ 7049558892765891876
692
+ 7020083040105893120
693
+ 7022429834466872589
694
+ 3xahak47p85ei4c
695
+ 3xk9fpgwamdiz4k
696
+ 3xbyijgymtb2246
697
+ 3xsvtb7hgy6uzhy
698
+ 3xwv3275rezidgk
699
+ 3x88wibq4qspgr9
700
+ 3xv8a322b2pi8da
701
+ 3xvw6gzi5j8rc6y
702
+ 3xt4jwpgfckzv8k
703
+ 3x2kitjzxz2u5na
704
+ 3x53ptyn58ackmw
705
+ 3xiwzrfdadc466s
706
+ 3xznkv643q7qtsa
707
+ 3xfaqbf7mtmz6ay
708
+ 3x2cayvnq245yna
709
+ 3xf5rus6qak9rvw
710
+ 3x2k63gs7xyifmc
711
+ 3xzeptfniyqkwp2
712
+ 3xsgdw5tvhtxciu
713
+ 3xm23rnhivjtepe
714
+ 3xtdbm7ks9agumm
715
+ 3xc8wqnzaiiuv4i
716
+ 3xt8acu6wtv37ks
717
+ 3xkf5s3nx2t7qbk
718
+ 3xakxpi9x72jj2m
719
+ 3xyc2w66xpwru9w
720
+ 3xqjmkn3zhxi6ps
FakeVD/dataset/data-split/temporal/vid_time3_train.txt ADDED
@@ -0,0 +1,4002 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 6882995145646673166
2
+ 6882982172739783939
3
+ 6882945901367676168
4
+ 6882958721719323916
5
+ 6883093359997635854
6
+ 6849172354753465604
7
+ 6848835923430345997
8
+ 6848850561106808078
9
+ 6852959254513536270
10
+ 6848844197701618952
11
+ 6848874136572349709
12
+ 6848769788425063694
13
+ 6848898037788560647
14
+ 6848856703497194759
15
+ 6848922685674704128
16
+ 6848868667233471744
17
+ 6895645115327548683
18
+ 6863352314317638924
19
+ 7015126847277124878
20
+ 6852471007010180352
21
+ 6872225881922800903
22
+ 6921652894693428480
23
+ 6812182561956089101
24
+ 6817599587109424391
25
+ 6812205450403073288
26
+ 6771036373781646605
27
+ 6683993408370904328
28
+ 6702591963255885059
29
+ 3x4b4heing4qn8a
30
+ 3xy67xydmt3pxby
31
+ 3x37hj7i43bnwxa
32
+ 3xsvtp3d7txyd5g
33
+ 3xq5c94hz2ew6mm
34
+ 3xr2uqhpipvf9x4
35
+ 3xp73wtgpv85ipe
36
+ 3xjeb2xcq4r62ti
37
+ 6890557139635473668
38
+ 6813960385436142862
39
+ 6799192188782742795
40
+ 6799533163812048136
41
+ 6799610832528477454
42
+ 6799481768757054733
43
+ 6799632132231728391
44
+ 6799402620197932292
45
+ 6799592807204949259
46
+ 6799408811812736268
47
+ 6799804611491302669
48
+ 6799214625020710144
49
+ 6799285650232282368
50
+ 6921590353304833293
51
+ 6799567742367255823
52
+ 6799445735189368072
53
+ 6799215193923603712
54
+ 6799232523990748427
55
+ 6799630077681356032
56
+ 6799522394093538560
57
+ 6799842434990755079
58
+ 6799433567362370829
59
+ 6799871964044397832
60
+ 6800199936664292608
61
+ 6853657007828847886
62
+ 6700861687563570439
63
+ 6888259844172778760
64
+ 6948604237312052517
65
+ 6868252662182186243
66
+ 6828312624011185423
67
+ 6801975907172044032
68
+ 6874220865987415304
69
+ 6894123336046005507
70
+ 7013655059615583492
71
+ 6894418284972641549
72
+ 6937064570032819487
73
+ 6923761208126377216
74
+ 6923944604484013319
75
+ 6923248650873326848
76
+ 6923392226127121672
77
+ 6944563014737644813
78
+ 6734183552138644750
79
+ 6609176747055254797
80
+ 7015131742344350984
81
+ 6846279291731315981
82
+ 6846278828227136781
83
+ 6846393271279783183
84
+ 6846363199571283207
85
+ 6846270187113630990
86
+ 6846350151716588800
87
+ 6846323530779430152
88
+ 6846256034172964111
89
+ 6846302822405803268
90
+ 6846299323572030728
91
+ 6846303393753992448
92
+ 6813127019132423431
93
+ 6932598050611334403
94
+ 6925030631521013004
95
+ 6800979777382649095
96
+ 6811243864851025156
97
+ 6789893745149086990
98
+ 6792797475833990400
99
+ 6791347567276854543
100
+ 6792897401788091660
101
+ 6795781027680898304
102
+ 6789837915535969544
103
+ 6791108774804376845
104
+ 6789943769178311948
105
+ 6657757273663737100
106
+ 6657315189093862668
107
+ 6888541926488804621
108
+ 6732085366825700612
109
+ 6854704649019198727
110
+ 6796086977654557960
111
+ 6955693172307594534
112
+ 6615899462533385479
113
+ 6616450884832333069
114
+ 6615513758447979780
115
+ 6615158947240217869
116
+ 6617561143990816007
117
+ 6618027963864583427
118
+ 6831726615974726912
119
+ 6875506196208504078
120
+ 6970158017438387464
121
+ 6969091056004599055
122
+ 6969087488023448871
123
+ 6969110448809544994
124
+ 6969134658978106632
125
+ 6970194168421403912
126
+ 6969122838540225792
127
+ 6969113905746496806
128
+ 6970695764582370571
129
+ 6969132100066839840
130
+ 6969445193225473294
131
+ 6969101155754364160
132
+ 6969073275540491535
133
+ 6810398774649736448
134
+ 6866426039648718088
135
+ 6712816336973647116
136
+ 6771036010101918987
137
+ 6821462506544991496
138
+ 6789239936978652429
139
+ 6787931864230399247
140
+ 6824457136597110027
141
+ 6925406534285495565
142
+ 6820640530037361935
143
+ 6822741118699048199
144
+ 6792710074407062784
145
+ 6821498975498095875
146
+ 6925552908167630083
147
+ 6955760886380367141
148
+ 6775508012497964303
149
+ 6905905064129416459
150
+ 6864306556071087367
151
+ 6773826654889364743
152
+ 6789230703390264579
153
+ 6789116698042699021
154
+ 6789475875122318604
155
+ 6789212420637232392
156
+ 6882734940627258638
157
+ 6882597499773734156
158
+ 6882284651981950212
159
+ 6882019900957707535
160
+ 6882376493612289295
161
+ 6882285474606566667
162
+ 6969968631992028453
163
+ 6881996672826641679
164
+ 6882179308740234510
165
+ 6882688817216687360
166
+ 6883695293607496964
167
+ 6882324874296167688
168
+ 6883309663887052045
169
+ 6882371254087601416
170
+ 6882335565744721160
171
+ 6882551291101465856
172
+ 6883427969172393231
173
+ 6887537198124567808
174
+ 6882261368679025932
175
+ 6884233572681567488
176
+ 6882519280492055823
177
+ 6882207314565287175
178
+ 6643668413828828424
179
+ 6870028793084480780
180
+ 6646444149622967566
181
+ 6873110086781275403
182
+ 6649939133181496583
183
+ 6835161375895997710
184
+ 6914595715704458511
185
+ 6817309213111504139
186
+ 6898573443512552717
187
+ 6826634159990017291
188
+ 6923485823371447559
189
+ 6861904335417232653
190
+ 6797946717984525576
191
+ 6798440875786587406
192
+ 6798008311460433159
193
+ 6797997723753663752
194
+ 6797925040911305987
195
+ 6797977154782006542
196
+ 6797955890583555328
197
+ 6797924760434003200
198
+ 6797937482760490240
199
+ 6807197079044246784
200
+ 6815608457887010063
201
+ 6814719292131511564
202
+ 6692770651482164488
203
+ 6691220078169427214
204
+ 6733128487613238531
205
+ 6789179815841844494
206
+ 6789126750887529742
207
+ 6789137562125585679
208
+ 6789269241737563405
209
+ 6789446985515601166
210
+ 6789515540890275072
211
+ 6789396303777467660
212
+ 6789411863441558799
213
+ 6851867018145090819
214
+ 6852105097892121871
215
+ 6852322189618842888
216
+ 6922285670010473740
217
+ 6593855966033218824
218
+ 6729863166571908359
219
+ 6791331018306587918
220
+ 6791442371943910670
221
+ 6893477906882874639
222
+ 6892156062619749645
223
+ 6752811707518749966
224
+ 6892957721037901056
225
+ 6893383722993782020
226
+ 6752267747142405388
227
+ 6893077965429591311
228
+ 6891553112411196685
229
+ 6792571347609505024
230
+ 6829451492391537927
231
+ 6873624092294073608
232
+ 6873624365544574216
233
+ 6873624849114287368
234
+ 6895999377542745351
235
+ 6922317442479869199
236
+ 6798066523282885896
237
+ 6797393343480417544
238
+ 6793884900228336911
239
+ 6798778448115551495
240
+ 6835822316132240651
241
+ 6809108235757325582
242
+ 6809082780979399944
243
+ 6809086139736034572
244
+ 6809088973919538435
245
+ 6809993376138677511
246
+ 6811731857701358848
247
+ 6862262999323774215
248
+ 6849733324701846792
249
+ 6850243506976328975
250
+ 6850318649975229696
251
+ 6796985569776864520
252
+ 6763119711237475592
253
+ 6796939583679401230
254
+ 6737281726466329868
255
+ 6737250162667834627
256
+ 6805338726206573824
257
+ 6804776274364534020
258
+ 6804747267786935560
259
+ 6805114691329756427
260
+ 6804990192773025037
261
+ 6804689338765430031
262
+ 6804780254742236419
263
+ 6924115033282596111
264
+ 6976190785423199518
265
+ 6832839786999336192
266
+ 6810857820892728583
267
+ 6806184441392680195
268
+ 6847423671095610635
269
+ 6806994272903122184
270
+ 6806900594234854664
271
+ 6808073686147419399
272
+ 6806636081799286016
273
+ 6815863114907569421
274
+ 6806940383621270796
275
+ 6807251562881174797
276
+ 6806845737222098189
277
+ 6798119823319633165
278
+ 6795136003800567043
279
+ 6795390464452218127
280
+ 6794816030641327363
281
+ 6795726406232886540
282
+ 6795764790707932431
283
+ 6794988930535132431
284
+ 6795769343574674695
285
+ 6802916932044508430
286
+ 6732286238021160199
287
+ 6729400686074760460
288
+ 6924597177310350592
289
+ 6903350416000503047
290
+ 6903417736039271688
291
+ 6903391663654259975
292
+ 6903482569623375117
293
+ 6756049768167771405
294
+ 6912698771163991307
295
+ 6804697484024139023
296
+ 6804741575374015752
297
+ 6723878732349721868
298
+ 6804199355738869004
299
+ 6791103843804384523
300
+ 6790512189703867651
301
+ 6958984117077773601
302
+ 6971045158452235535
303
+ 6861156588284120332
304
+ 6976521836163058982
305
+ 6958568570905201920
306
+ 6958423364281175331
307
+ 6590972352731811075
308
+ 6884896887976021256
309
+ 6884893912100556045
310
+ 6872882461475376392
311
+ 6850037694488235279
312
+ 6844743558939806991
313
+ 6947553212157152542
314
+ 6897483952299314443
315
+ 6646725072495054094
316
+ 6648940727432645901
317
+ 6681488793100455175
318
+ 6610821466466290958
319
+ 6617393568547867908
320
+ 6614033953328205069
321
+ 6609129207760948487
322
+ 6683813797590863117
323
+ 6609092980735216909
324
+ 6916026292047514887
325
+ 6915977232523545860
326
+ 6814350072894065935
327
+ 6813734067331173647
328
+ 6814223358167649547
329
+ 6814398145854803212
330
+ 6814020004724428032
331
+ 6814290877805006094
332
+ 6804705458432003328
333
+ 6666314921619295496
334
+ 6716849310362848523
335
+ 6853306188751277324
336
+ 6815514117089119488
337
+ 6818254662957812996
338
+ 6818172291185216771
339
+ 6818183900867693831
340
+ 6906797838299090184
341
+ 6923791489453575439
342
+ 6906526529145081103
343
+ 6804759703986425103
344
+ 6805429938464804110
345
+ 6857772616908934404
346
+ 6745966833112730892
347
+ 6845079496467516672
348
+ 6813917386270395652
349
+ 6814358502589369615
350
+ 6650297598831824132
351
+ 6650290016838864142
352
+ 6650290449728720132
353
+ 6867859275339861248
354
+ 6886683690433383692
355
+ 6724229983763549454
356
+ 6862992444389199107
357
+ 6826906406629788942
358
+ 6825652924190903556
359
+ 6976556097561824525
360
+ 7027846689465568520
361
+ 6900018298834930957
362
+ 6935428450366803230
363
+ 6900073008388459784
364
+ 6864820920872127758
365
+ 6865234646532132096
366
+ 6865642115393670412
367
+ 6735787083878780173
368
+ 6736398192516107528
369
+ 6735974091859250444
370
+ 6735936408239787267
371
+ 6735866308967107851
372
+ 6866678444009327884
373
+ 6867068647152700679
374
+ 6867119524294954248
375
+ 6866979815686294798
376
+ 6961335020694867240
377
+ 6962470014104423712
378
+ 6810729408022744335
379
+ 6965924270757170445
380
+ 6797317471222222088
381
+ 6896373201203514632
382
+ 6896293361062251780
383
+ 6896079262370057479
384
+ 6790698483734039823
385
+ 6789596785385000205
386
+ 6791071587224292615
387
+ 6790610269031664904
388
+ 6791042788709469448
389
+ 6790987860217482504
390
+ 6790994130337090823
391
+ 6790377354146467087
392
+ 6881232398978223373
393
+ 6966865626539379979
394
+ 6803220050435214605
395
+ 6803631659339009287
396
+ 6802876759202123023
397
+ 6803630413559385358
398
+ 6803550951979388160
399
+ 6803209256284736783
400
+ 6803906422519237891
401
+ 6803680340402539789
402
+ 6877328562022583559
403
+ 6950171571306695976
404
+ 6737972209689611523
405
+ 6737562768133721348
406
+ 6798661547246832907
407
+ 6888268465443065103
408
+ 6810766098741480717
409
+ 6811717413210541323
410
+ 6810751381972995336
411
+ 6817453297524313357
412
+ 6810861641392000259
413
+ 6810892177149922567
414
+ 6820072082794171652
415
+ 6810434722972355854
416
+ 6775038723521383693
417
+ 6775337505085525259
418
+ 6775010520979311886
419
+ 6775101574776638732
420
+ 6775437618655005965
421
+ 6774946888216087808
422
+ 6775001928356121870
423
+ 6775043765359938824
424
+ 6775057226185968907
425
+ 6846696067157855501
426
+ 6626546582256880904
427
+ 6668609331593891080
428
+ 6761524739673558285
429
+ 6668169334721891588
430
+ 6667832599202860296
431
+ 6668604896394120462
432
+ 6971261971538742542
433
+ 6821722703318289668
434
+ 6805200989348449550
435
+ 6806627068806286592
436
+ 6805484074208087309
437
+ 6805178488119659784
438
+ 6669263871984913678
439
+ 6871418953919515911
440
+ 6902403863274425612
441
+ 6792078822356389131
442
+ 6605897306417925389
443
+ 6964305242070469922
444
+ 6658113316042345736
445
+ 6631872122111134989
446
+ 6631908657430793476
447
+ 6977225430944255244
448
+ 6805163827123064071
449
+ 6805456913506012430
450
+ 6921872907924802829
451
+ 6968703581247524109
452
+ 6914868017910320384
453
+ 6915282201991007488
454
+ 6814268707116829955
455
+ 6815487937636060428
456
+ 6809422948814818574
457
+ 6913856829122465039
458
+ 6903409421183995149
459
+ 6903438963965529347
460
+ 6833180805523655936
461
+ 6828472686629473551
462
+ 6930202412284153102
463
+ 6830322258532257024
464
+ 6828108856078372099
465
+ 6829344934055791885
466
+ 6828084054592703757
467
+ 6666751540021251331
468
+ 6708125601703660804
469
+ 6767485224801684747
470
+ 6659670456464903436
471
+ 6652318431716691203
472
+ 6841343937014156548
473
+ 6841721529869323520
474
+ 6841757602284604687
475
+ 6842866874104024320
476
+ 6841513596141276423
477
+ 6841802131771526404
478
+ 6843223547012320524
479
+ 6841157087737810183
480
+ 6842198568623803655
481
+ 6885306773683653899
482
+ 6971562441322827021
483
+ 6717151423227858179
484
+ 6884560770525400332
485
+ 6884930389090110734
486
+ 6975145016507387177
487
+ 6722372266396536067
488
+ 6648367305724005645
489
+ 6802604813633785096
490
+ 6802851077705288963
491
+ 6849325235796184333
492
+ 6849139091796282624
493
+ 6876307200378146059
494
+ 6875943585640975629
495
+ 6710765185000361223
496
+ 6691237749439122702
497
+ 6735274778426395916
498
+ 6707521283178958083
499
+ 6708130500130770188
500
+ 6848416927472176391
501
+ 6691461631374888195
502
+ 6690045890444446988
503
+ 6891294237036416263
504
+ 6889960078342982912
505
+ 6889688683054632192
506
+ 6737534985860893965
507
+ 6924929045708705037
508
+ 6925218688496962830
509
+ 6924276158305438983
510
+ 6789764070896585997
511
+ 6858462238185966860
512
+ 6869932962536819983
513
+ 6866352267004611844
514
+ 6774924661470891264
515
+ 6855232520561151244
516
+ 7027873765598055684
517
+ 6883109921852804366
518
+ 6858543833941101836
519
+ 6967304512025529639
520
+ 6820179715064745229
521
+ 6823900927192272141
522
+ 6825143527085772045
523
+ 6836034235967524110
524
+ 6817675724665703692
525
+ 6817979355336117511
526
+ 6968800423142624520
527
+ 6969146657258736934
528
+ 6793448019225267463
529
+ 6969037949920906509
530
+ 6812556773916937480
531
+ 6890096787571445003
532
+ 6880825119963434247
533
+ 6880907739334315275
534
+ 6881087516192050440
535
+ 6880856650178104589
536
+ 6960701115130285346
537
+ 6961635135196351781
538
+ 6961171972868902148
539
+ 6883878275328838920
540
+ 6882572192501026048
541
+ 6924308985721982221
542
+ 6938366074006064414
543
+ 6730005569073106180
544
+ 6883851924790136064
545
+ 6940404918889106722
546
+ 6877826756015852807
547
+ 6939804053744536839
548
+ 6602089727090756872
549
+ 6602092948031016196
550
+ 6854428993400098062
551
+ 6854411205600136455
552
+ 6854466699173842176
553
+ 6854532920569236744
554
+ 6799829298762059021
555
+ 6799592761499700494
556
+ 6863203977656405256
557
+ 6861885697775701248
558
+ 6853626230684650755
559
+ 6883002263124626695
560
+ 6713066052504292616
561
+ 6723140781441322248
562
+ 6717960933538270477
563
+ 6875802829269880077
564
+ 6860043902666198275
565
+ 6763209184528928004
566
+ 6860488338697276687
567
+ 6860665652357631247
568
+ 6960467999165926696
569
+ 6942027436464852254
570
+ 6953206357570915599
571
+ 6819144347590593795
572
+ 6872644808154844424
573
+ 6812356200517127428
574
+ 6810892086141783309
575
+ 6811601588193365255
576
+ 6810183442228088064
577
+ 6963233504134024487
578
+ 6585097411885010189
579
+ 6571231799966436621
580
+ 6584654455793257735
581
+ 6589802305174899972
582
+ 6585751304314817795
583
+ 6589804927680253192
584
+ 6585423557172399363
585
+ 6585701737036778755
586
+ 6589801702977703172
587
+ 6589801198071581960
588
+ 6879925463733652751
589
+ 7020638514916117793
590
+ 6872907441135275278
591
+ 6872900172397989133
592
+ 6911949842147233032
593
+ 6872926439709134083
594
+ 6601418130373741827
595
+ 6601552344368811268
596
+ 6601693670523538701
597
+ 6601509368028466445
598
+ 6601480547455733006
599
+ 6601627338029403395
600
+ 6601505419212885256
601
+ 6752823620881501452
602
+ 6752403969139641612
603
+ 6752500200847265027
604
+ 6752503898239503629
605
+ 6752463521885326600
606
+ 6752769472836259084
607
+ 6752744386607516942
608
+ 6752421543512476931
609
+ 6755378886512495886
610
+ 6798719685182475535
611
+ 6841641009479273742
612
+ 6841738028021599488
613
+ 6841698145173277965
614
+ 6943077802723822881
615
+ 6594392272438037764
616
+ 6594260302991199492
617
+ 6763220699252411655
618
+ 6965948653118704926
619
+ 6709366729115503875
620
+ 6741271306672622852
621
+ 6741307029693926659
622
+ 6961671164758445324
623
+ 6961542946059488542
624
+ 6588057622690139396
625
+ 6810364597237845256
626
+ 6824314763397369101
627
+ 6665860072050150659
628
+ 6584309915597147395
629
+ 6746074256381054215
630
+ 6601651424973557006
631
+ 6601363612395113732
632
+ 6601567618816019725
633
+ 6601367719201737987
634
+ 6601471942249680132
635
+ 6780217047482682635
636
+ 6763127593215577355
637
+ 6974608529348889887
638
+ 6763184473241619719
639
+ 6782769312651431181
640
+ 6902249775282834695
641
+ 6780264564631047438
642
+ 6763131349818707203
643
+ 6862146422674836744
644
+ 6861868178411212046
645
+ 6862632021471005959
646
+ 6861177952336448772
647
+ 6868242677725400320
648
+ 6857248877834194183
649
+ 6855968771857861895
650
+ 6866755739868843276
651
+ 6857064672776949003
652
+ 6836009676849679631
653
+ 6901555943423692036
654
+ 6901991916812979456
655
+ 6901544459809459463
656
+ 6862711949310856456
657
+ 6954728923670318373
658
+ 6966937438413491488
659
+ 6966916807554813222
660
+ 6967168386627407138
661
+ 6966751274033351974
662
+ 6967251039728749855
663
+ 6966595257593007374
664
+ 6967522520727653673
665
+ 6967292987084672267
666
+ 6867810873981897992
667
+ 6841849812283821327
668
+ 6924492691766037760
669
+ 6956472320345066785
670
+ 6958748319191452964
671
+ 6958612363197041931
672
+ 6929818142382247179
673
+ 6910034292022217996
674
+ 6882327798631943435
675
+ 6881900497465380104
676
+ 6917951732773375239
677
+ 6935411196338228495
678
+ 6883481842016603395
679
+ 6884414855001001231
680
+ 6972815906502151463
681
+ 6848425894361517327
682
+ 6848861749949582592
683
+ 6848464753204006155
684
+ 6848579855626292494
685
+ 6848501754376539392
686
+ 6848770518095531277
687
+ 6933984545607863556
688
+ 6975634643404033293
689
+ 6843695846136106255
690
+ 6843212356214967567
691
+ 6845025280160009480
692
+ 6843428070272060686
693
+ 6843028258036976909
694
+ 6843604905266072832
695
+ 6637728366650723592
696
+ 6612183406635650308
697
+ 6722438557987851523
698
+ 6792102270520544516
699
+ 6974326372076473639
700
+ 6750090376167656712
701
+ 6750084855222013188
702
+ 6927088372099927303
703
+ 6927098259127274759
704
+ 6927186101178502408
705
+ 6888561950561684747
706
+ 6926098495787126016
707
+ 6851383928897539336
708
+ 6855409013547470095
709
+ 6852625488393866511
710
+ 6851466996798868744
711
+ 6852295865047026952
712
+ 6946100869813357865
713
+ 6752814648501783812
714
+ 6796269202954095876
715
+ 6796250238131784975
716
+ 6796278439218253056
717
+ 6796892888799186187
718
+ 6795843422155558144
719
+ 6796235429608688900
720
+ 6950140420286385412
721
+ 6613654207608130823
722
+ 6952424015675886855
723
+ 6596996733048196360
724
+ 6843964897949142286
725
+ 6871605448215186701
726
+ 6889334569816853763
727
+ 6736737150169042183
728
+ 6682302034592533768
729
+ 6962281009354149159
730
+ 6822849359667924227
731
+ 6822822191986396431
732
+ 6822799485123579143
733
+ 6824249309484076303
734
+ 6800313787682393357
735
+ 6799487592053181707
736
+ 6799062729790459151
737
+ 6799212507085982990
738
+ 6798877401142070532
739
+ 6910238257267641613
740
+ 6892230838822440195
741
+ 6899240792330718477
742
+ 6899267608013507840
743
+ 6643213295887060238
744
+ 6643257618611571982
745
+ 6642214705265904899
746
+ 6642473378819083527
747
+ 6855475582453484811
748
+ 6858882581929168131
749
+ 6855504368691678472
750
+ 6811750377726283012
751
+ 6963661561554586895
752
+ 7048432073551383846
753
+ 6884213334812527872
754
+ 6847352943386053892
755
+ 6639480431265713421
756
+ 6734952578938883331
757
+ 6839432188866383118
758
+ 6701101433736973575
759
+ 6930058090414951684
760
+ 6851208905821883663
761
+ 6851539649047923968
762
+ 6851131414222490894
763
+ 6851132909647072527
764
+ 6854883426433060096
765
+ 6857344782113508608
766
+ 6851149328103394563
767
+ 6864923280172666125
768
+ 6865153689397497101
769
+ 6865119605233405198
770
+ 6893269628953382144
771
+ 6686481160224230669
772
+ 6749276397937757453
773
+ 6723730118780488971
774
+ 6723476827882425608
775
+ 6723837649523608836
776
+ 6891570229969816845
777
+ 6890730826267413773
778
+ 7020637614898187524
779
+ 6999917049434737924
780
+ 6968710894654197029
781
+ 6894435692538088707
782
+ 6848788248337173760
783
+ 6848853805828803852
784
+ 7018071222957182245
785
+ 6849611318106934536
786
+ 6849273789818113295
787
+ 6848846476597071115
788
+ 6656020525690703118
789
+ 6601309012942130446
790
+ 6656609197859278083
791
+ 6656727039187438861
792
+ 6960636617618967840
793
+ 6656349042290724103
794
+ 6659729914352176395
795
+ 6583481991964921092
796
+ 6582489910870019335
797
+ 6582761311287905543
798
+ 6866197280584699136
799
+ 6789970177502055683
800
+ 6672177708996349196
801
+ 6669681666606337291
802
+ 6670698133162315021
803
+ 6670693135917632771
804
+ 6670418901978959118
805
+ 6670080902330141956
806
+ 6706017108238683403
807
+ 6706025183452351755
808
+ 6706303784215121164
809
+ 6786554322516757773
810
+ 6706733840070659336
811
+ 6706666689691520259
812
+ 6706877877868121352
813
+ 6706307318742584583
814
+ 6709747277369445646
815
+ 6707520442938166539
816
+ 6684799575590587651
817
+ 6873498386075503887
818
+ 6843335747563474187
819
+ 6772392788966378760
820
+ 6837080981480951040
821
+ 6841458671445183744
822
+ 6841898406458182927
823
+ 6748975268213427460
824
+ 6749010896951020808
825
+ 6810563817186036992
826
+ 6853696307836488973
827
+ 6733340523794402574
828
+ 6634052840174128397
829
+ 6801033814048099599
830
+ 6799920478912777487
831
+ 6800390134777842952
832
+ 6866665922355088643
833
+ 6857375682675166478
834
+ 6858255021612469519
835
+ 6838792735034526991
836
+ 6905496338289511688
837
+ 6676824324873243912
838
+ 6690414518859812109
839
+ 6769364663302917389
840
+ 6645815668123897102
841
+ 6723297674604350732
842
+ 6853279754209086724
843
+ 6852869196473306382
844
+ 6854760502371880204
845
+ 6755736301779127559
846
+ 7018090584246160647
847
+ 6895138486022688007
848
+ 6949094701811174692
849
+ 6844484276851952911
850
+ 6741239300479929613
851
+ 6742065740737760526
852
+ 6898989866432908555
853
+ 6940500821041745185
854
+ 6963475755355393315
855
+ 6832185731620867335
856
+ 6831180377688788239
857
+ 6831126629700488451
858
+ 6845253491976457484
859
+ 6831381330450861323
860
+ 6830756581827808523
861
+ 6765832813238357251
862
+ 6922820326267178252
863
+ 6856934489415814407
864
+ 6901945767066455304
865
+ 6725959074594229516
866
+ 6970141632582782208
867
+ 6672333608885193997
868
+ 6672594809124883726
869
+ 6716132354248674563
870
+ 6693371163273399566
871
+ 6968732100300180744
872
+ 6969713655126510879
873
+ 6966460383699782953
874
+ 6828710235448872192
875
+ 6965421764612558091
876
+ 6791424540338605312
877
+ 6693709051819330820
878
+ 6966482095812218144
879
+ 6749387130092424459
880
+ 6749752784016379149
881
+ 6966971745383320847
882
+ 6949076459247963423
883
+ 6786394260695502080
884
+ 6866321876864552203
885
+ 6897530029597527309
886
+ 6871882437987716355
887
+ 6859694525888122112
888
+ 6796616456328072463
889
+ 6796850990931922190
890
+ 6796863411708792071
891
+ 6791783098536217856
892
+ 6910071453115337997
893
+ 6533114736177843470
894
+ 6613318089943551240
895
+ 6672607427034107144
896
+ 6672596808490831108
897
+ 6794990416669330688
898
+ 6999580002933116198
899
+ 6795018932831980800
900
+ 6790828160695946507
901
+ 6790922195494341896
902
+ 6790904987712113934
903
+ 6805794994201332992
904
+ 6805843004675443972
905
+ 6805886136331062536
906
+ 6805754741612629263
907
+ 6805750422867922190
908
+ 6812129190201036043
909
+ 6857772551565839620
910
+ 6588370236414627085
911
+ 6571001202379590925
912
+ 6872205855849221389
913
+ 6867424768560303373
914
+ 6867364396381768967
915
+ 6869287253827521796
916
+ 6900020602325716237
917
+ 6730921689619746059
918
+ 6660784036757196039
919
+ 6660794545132817668
920
+ 6818106186253077760
921
+ 6808699529592868104
922
+ 6690094171123911948
923
+ 7015112781401787656
924
+ 6881463059546672388
925
+ 6881935035121847567
926
+ 6881220567740058883
927
+ 6841313813887831296
928
+ 6907264931377286414
929
+ 6858261421122243848
930
+ 6908203826021534991
931
+ 6838465131337256207
932
+ 6908100104171883791
933
+ 6860315708467711247
934
+ 6942624537611717896
935
+ 6870133525300006147
936
+ 6890842868357958927
937
+ 6837109740330405133
938
+ 6929447653319216398
939
+ 6852598901032160520
940
+ 6844439307940351243
941
+ 6890075704415767819
942
+ 6860077218111016192
943
+ 6842834986417016075
944
+ 6825848797239774475
945
+ 6900901879304211723
946
+ 6850444269824527624
947
+ 6838179907978153230
948
+ 6862580471000288512
949
+ 6851757877980368141
950
+ 6838103289851104526
951
+ 6841176893027339534
952
+ 6862620542722149639
953
+ 6926078836232736015
954
+ 6977896947092819208
955
+ 6845050996394069248
956
+ 6959070097126346025
957
+ 6847109400235166988
958
+ 6861920937609153807
959
+ 6862626165442514179
960
+ 6972703718487756032
961
+ 6855465207934831879
962
+ 6854770358029995279
963
+ 6839197629331541262
964
+ 6838096889913707791
965
+ 6808542878009167107
966
+ 6808539046395038990
967
+ 6808728377600511232
968
+ 6808536938602040590
969
+ 6808538691502476556
970
+ 7015180893803351308
971
+ 6702695933576039688
972
+ 6856761078001552648
973
+ 6941874367362026782
974
+ 6968635495198788864
975
+ 6968612703178853646
976
+ 6968708193165888783
977
+ 6968679974110891300
978
+ 6863350843568065796
979
+ 6964695121380035871
980
+ 6719472095836884235
981
+ 6898648376951311629
982
+ 6962419458421886248
983
+ 6773597400549444877
984
+ 6991494535851330846
985
+ 6843792717835701511
986
+ 6823363913669725448
987
+ 6683804664594517251
988
+ 6683802242291698958
989
+ 6684239798695103755
990
+ 6959943793139256583
991
+ 6991496387909209357
992
+ 6781203276546329863
993
+ 6965941390442351902
994
+ 6896844454724930831
995
+ 6601765814712405251
996
+ 6601707759312309512
997
+ 6637504149732723981
998
+ 6601686537832762637
999
+ 6601845922928266500
1000
+ 6601803968425233671
1001
+ 6601690518281784579
1002
+ 6601810803031035144
1003
+ 6870291697490840840
1004
+ 6958774352036891917
1005
+ 6746097657741118723
1006
+ 6603693731239431431
1007
+ 6702031746860453127
1008
+ 6814451941804952845
1009
+ 6952058686420356366
1010
+ 6791087880077954318
1011
+ 6779859634711809283
1012
+ 6827804688365227264
1013
+ 6857411280916057357
1014
+ 6955367636876152077
1015
+ 6877782422897822990
1016
+ 6681912078522928396
1017
+ 6877516937170144520
1018
+ 6833590376872316168
1019
+ 6848230767944813831
1020
+ 6694947747214265608
1021
+ 6875710565008821504
1022
+ 6720202003189894407
1023
+ 6868092030178839815
1024
+ 6922861288834075908
1025
+ 6925389180478442756
1026
+ 6877333959764757768
1027
+ 6838454773600111880
1028
+ 6839913812527779084
1029
+ 6841818957217795335
1030
+ 6658850835998444804
1031
+ 7008825846341340449
1032
+ 6807575619598142727
1033
+ 6807984321668861184
1034
+ 6807588716341742861
1035
+ 6807550037825015044
1036
+ 6807641056977390848
1037
+ 6807582684005682446
1038
+ 6807641854180461839
1039
+ 6807605833568947471
1040
+ 6807624102896028943
1041
+ 6962697672247627019
1042
+ 6962815025379544350
1043
+ 6962474748638940451
1044
+ 6893044994064600332
1045
+ 6893079981358861581
1046
+ 6787190557866200323
1047
+ 6789737243754974468
1048
+ 6747713690004425998
1049
+ 6786598297932025092
1050
+ 6788717427145428236
1051
+ 6739877973362511115
1052
+ 6909484183282781444
1053
+ 6829659638355479811
1054
+ 6862631381806222595
1055
+ 6827215508593495311
1056
+ 6964273350474550565
1057
+ 6740095929317133582
1058
+ 6632978467921071374
1059
+ 6875518042453953804
1060
+ 6955779828280806664
1061
+ 6671112046978796803
1062
+ 6671495133961276680
1063
+ 6670805620435750147
1064
+ 6670707542898789646
1065
+ 6911886311465045259
1066
+ 6911885762459962639
1067
+ 6911946224694250766
1068
+ 6912653109466647821
1069
+ 6911959319927852295
1070
+ 6911639638021098759
1071
+ 6912372801232047372
1072
+ 6896777878248131855
1073
+ 6807981206370536717
1074
+ 6807962256270200067
1075
+ 6808015877334650127
1076
+ 6808014560423906567
1077
+ 6965921131731651851
1078
+ 6966539647115709708
1079
+ 6855981062661754112
1080
+ 6794048844045765892
1081
+ 6752778390366997764
1082
+ 6755327541562690829
1083
+ 6754986372974611725
1084
+ 6781430354055154944
1085
+ 6867166970853297422
1086
+ 6874376605016280328
1087
+ 6730434516105661700
1088
+ 6805136344969415951
1089
+ 6885972986743033095
1090
+ 6943606158175292679
1091
+ 6945348680832552233
1092
+ 6847061751171714319
1093
+ 6821040396726963460
1094
+ 6850073170922196239
1095
+ 6935430732693146888
1096
+ 6928395135147314439
1097
+ 6922751573672119566
1098
+ 6922777435528285448
1099
+ 6925587022056836366
1100
+ 6922710442745941262
1101
+ 6923111319516269837
1102
+ 6923076210650139912
1103
+ 6930430779285654784
1104
+ 6816602226124033288
1105
+ 6829573964378000652
1106
+ 6829612419829075212
1107
+ 6841814713282661645
1108
+ 6803607344740617479
1109
+ 6968797115782941990
1110
+ 6960894401027575040
1111
+ 6970861964713004291
1112
+ 6967733989947837730
1113
+ 6786601102973439247
1114
+ 6786995810811825408
1115
+ 6787712891559611652
1116
+ 6809107490568015115
1117
+ 6811820983104638212
1118
+ 6897953983655136527
1119
+ 6877678568873168135
1120
+ 3xbzd2raj97hbni
1121
+ 3xfujiz7e7k5ute
1122
+ 3x627meastrtcsg
1123
+ 3xzgq2kcu4xe9ce
1124
+ 3xffthu6xe3z7bq
1125
+ 3xy8gtn8hs9pa2w
1126
+ 3xgestwir9fq7hm
1127
+ 3xjr9cdec5xgw49
1128
+ 3xc46me4rch5p29
1129
+ 3xur32aznsk2sps
1130
+ 3xs2btwmsznp3za
1131
+ 3xsxag23qwd6x8c
1132
+ 3x3683vyxjb8jte
1133
+ 3xdepya4cw8t6t2
1134
+ 3xr87chfid9wvpe
1135
+ 3xmruujz99fcdbk
1136
+ 3xsepbi8enkwmxi
1137
+ 3xtrrhe37egsz7s
1138
+ 3xmxwuq867w95e6
1139
+ 3xv2rkyp2bzajeu
1140
+ 3x3p585pre2uq8c
1141
+ 3xsszurwtabibs4
1142
+ 3xak4byq8e4ke42
1143
+ 3xkuv2uxe6azhm2
1144
+ 3xd44tsqxrjfbaa
1145
+ 3xg73rss3sdqqku
1146
+ 3xbfakcavgfknsi
1147
+ 3xbhduy2wyvnjdk
1148
+ 3xf6gzk8mebxyjm
1149
+ 3xqy7qr4amkp44i
1150
+ 3xt6ngf7ijprstq
1151
+ 3x25ybraqeighzm
1152
+ 3xs9rjfy95uj4ea
1153
+ 3xinbffb49q4fmu
1154
+ 3xmfdvafpnuxhe6
1155
+ 3x5sidac4zdeb99
1156
+ 3xdbu5uxz57diks
1157
+ 3xtnkcm8527zeh4
1158
+ 3xryb33gbmepdes
1159
+ 3xstdsmuasvpwy9
1160
+ 3x9tqsx6ue69guy
1161
+ 3xnyv8ctmhp8zyy
1162
+ 3xdctnctbnzxt6y
1163
+ 3x4tpy4899xiyie
1164
+ 3x2zch5gn4zh9tm
1165
+ 3xdr3mm36zqbm74
1166
+ 3xxewae5afnmura
1167
+ 3x2mm7xmj8wpq5m
1168
+ 3xtavn2cwiez7fu
1169
+ 3xb6yajw26xiumw
1170
+ 3xq2wxtxsj9jut6
1171
+ 3xpjyqpskjxsukq
1172
+ 3xhmq99savp4sxy
1173
+ 3xezr4htuqxmh9c
1174
+ 3xpxazku5zy6hki
1175
+ 3xtj2c37w9gbkyg
1176
+ 3xdf9duhj7279wy
1177
+ 3x3j8ngqac98k5i
1178
+ 3xg2zthjskz768a
1179
+ 3xetaq3xubvsd46
1180
+ 3xvg6dikbufifg2
1181
+ 3xfves7h27ekhb2
1182
+ 3x47b3x2jxzeu9s
1183
+ 3xwr99t37ja3jku
1184
+ 3x2rcnynrkcq2t2
1185
+ 3xsnyqsk2imatxs
1186
+ 3x8qz5767vxkabm
1187
+ 3xr3kfv5dcbqine
1188
+ 3xt6xxcdu46renc
1189
+ 3xyqy7bw625iqmi
1190
+ 3xivk7kre5fg3qq
1191
+ 3xkxw4ypb3z9dua
1192
+ 3xga25kuspsv7tg
1193
+ 3x7fmnb83cu6p8a
1194
+ 3x5e3gp2d87wyqa
1195
+ 3x5ukaaarhwb6mk
1196
+ 3xqvbqu2mwutzqm
1197
+ 3xann9z9p6a9cnk
1198
+ 3xd4q8scnjx7m8s
1199
+ 3xvmqpw3a3acghw
1200
+ 3x2ijm5pkxhhv2i
1201
+ 3xgd7kfphm4dkea
1202
+ 3xwk5szsrzp384q
1203
+ 3xkrcqew9ehghjq
1204
+ 3xynvbi7mwja7zu
1205
+ 3x62d3gz53276vs
1206
+ 3x845w5ghsgk3hy
1207
+ 3xjf9fdcc9f468u
1208
+ 3xgrbg3v4xkw9m9
1209
+ 3xkpprkxwqkt6ys
1210
+ 3xbaix7rtmyz4ak
1211
+ 3xrtjhvvxn9juua
1212
+ 3xs5yyui9eixsis
1213
+ 3xditxafxkx2p52
1214
+ 3xhbvhpsbih94ia
1215
+ 3xtcrmctskmcn9e
1216
+ 3xy4vn77pthun2s
1217
+ 3x67f6wjets7kmy
1218
+ 3x7zfafv64yz3hs
1219
+ 3x4vjn57kdewfhw
1220
+ 3x45r2zhabatrie
1221
+ 3xbp36nyju5yc56
1222
+ 3x9bqung2nu7kc4
1223
+ 3x5yiw5hwys89cm
1224
+ 3x7xvgsxawknjwi
1225
+ 3xr43wnyik4ei9e
1226
+ 3xhx79jtrqtidx2
1227
+ 3xujti347fvjy3s
1228
+ 3xhg6rkhqhrzd2c
1229
+ 3x3q3hahn6m93cw
1230
+ 3xqrdtygummwmr2
1231
+ 3x432tjvxinwezy
1232
+ 3xfwr2gzemrgaxc
1233
+ 3x9hjpwvpvwhnvq
1234
+ 3xgxxwg4bs8hhiq
1235
+ 3xucctxw92h6iy4
1236
+ 3xqi5sx7y8gmj9c
1237
+ 3xaghn65czmtaya
1238
+ 3xvxpdrnhbrfsm6
1239
+ 3x52i9jh8en2xa4
1240
+ 3xym6d6rhbwfvwi
1241
+ 3xtgpgvdjhncxw6
1242
+ 3xrt44jbg25c98e
1243
+ 3x252r556a2924a
1244
+ 3x2cmdj3f78srsm
1245
+ 3x2e58x2qjtxkj6
1246
+ 3x2gz8xbnubcjzu
1247
+ 3x2hqy3c9hdfr46
1248
+ 3x2qbcnaz6iin6a
1249
+ 3x2svp7wtrysakk
1250
+ 3x2td3pk9g35gq2
1251
+ 3x2upyknqurag54
1252
+ 3x2vrs88h8z6szq
1253
+ 3x2x7x8gg67q3be
1254
+ 3x32xpnzvy8zprk
1255
+ 3x34txsgh77wg3a
1256
+ 3x36yd4pq593xgq
1257
+ 3x3844w57698meu
1258
+ 3x3b5qt4kh322tu
1259
+ 3x3bemanmjsg9j9
1260
+ 3x3ckmbkc4fr3b2
1261
+ 3x3d9amy5hstrcw
1262
+ 3x3e2d9kw3d38fc
1263
+ 3x3n7i5r7mx3zqc
1264
+ 3x3nakwg44m3c8q
1265
+ 3x3vr3xw2phwdxg
1266
+ 3x3ybfqfsw8k3kw
1267
+ 3x43idxk5w5vrxw
1268
+ 3x48ret89vhanji
1269
+ 3x497g6axqey4i2
1270
+ 3x4fprj2y3wkpqq
1271
+ 3x4h25rqxf99t7i
1272
+ 3x4hfzaq6dgb4k9
1273
+ 3x4hr9wjkn9q6uw
1274
+ 3x4p7wvtv2pd9bg
1275
+ 3x4q9qnsrpvf4je
1276
+ 3x4u2idyuju97dg
1277
+ 3x4xui9wvr769g6
1278
+ 3x53ac3h93vf3r9
1279
+ 3x5828usxrrqke4
1280
+ 3x58gquvkdiqvmq
1281
+ 3x59uvnx32kkngy
1282
+ 3x5aickpnrpqhds
1283
+ 3x5cu7ezz33wf6y
1284
+ 3x5ibdcizvyit4a
1285
+ 3x5jp5mezdgi4fq
1286
+ 3x5p3pvd8pdky6c
1287
+ 3x5qyy5ckq7swuw
1288
+ 3x5s3h6uyj5xfss
1289
+ 3x68zxc3ic2uk7c
1290
+ 3x6darptsdf5ic9
1291
+ 3x6grrjdmfjcvgs
1292
+ 3x6hfvinryh5j7m
1293
+ 3x6npxgu9kr2sgu
1294
+ 3x6rd6qtetk9b5m
1295
+ 3x6rptbr78izvt6
1296
+ 3x6rt3xnesb4qpe
1297
+ 3x6u8ywhvmp6nww
1298
+ 3x77de6ge8bcspu
1299
+ 3x7a7juzrk3g8ak
1300
+ 3x7abhetbrdcmes
1301
+ 3x7e85f2nh6r2wu
1302
+ 3x7e8w4ccghcery
1303
+ 3x7i6xjvpbrjfzk
1304
+ 3x7kapcdec4yft9
1305
+ 3x7mm4prebqqqym
1306
+ 3x7tg8ssm7zb8g9
1307
+ 3x7tstw5zadfd74
1308
+ 3x7vk8jk8uta35w
1309
+ 3x7wujde7b33mug
1310
+ 3x7xttv9m6zms4w
1311
+ 3x7y3ftb2pw3hk4
1312
+ 3x7yb5v5zsr9iwi
1313
+ 3x83aw2k6kj6ce4
1314
+ 3x84funch5xarre
1315
+ 3x857esmry8jwjm
1316
+ 3x8dp7zscxri5d4
1317
+ 3x8ex48wyuc5uhm
1318
+ 3x8itqvvdgrs4nw
1319
+ 3x8nm8963gqmez2
1320
+ 3x8prc8e4yqbu3i
1321
+ 3x8stnuh4w4z7n2
1322
+ 3x8te6xa787myhq
1323
+ 3x8tfm78zjzuk2i
1324
+ 3x8trva9ykrpdr2
1325
+ 3x8ttrx4hstaer4
1326
+ 3x8v8sbdv5rbjfs
1327
+ 3x8vm4hb5ba66bw
1328
+ 3x8xer3fc5y46dm
1329
+ 3x8xhgx3nrphwgu
1330
+ 3x8y3r78ih2pcea
1331
+ 3x8yvwgeta3enn9
1332
+ 3x94cf2iqnb2y69
1333
+ 3x9dhy9fumft48m
1334
+ 3x9gi9csrtcsg52
1335
+ 3x9jq8jyb5jby82
1336
+ 3x9jss8pgj56ipm
1337
+ 3x9mdqekeuqr634
1338
+ 3x9nwnj84m3cq32
1339
+ 3x9qj3njeezgam9
1340
+ 3x9zd4pmyee5r66
1341
+ 3x9znjfdy6mni56
1342
+ 3xa3247p7my2z96
1343
+ 3xa42zzyg32yq22
1344
+ 3xa4fsmda94hgr9
1345
+ 3xa5iafpjk898ck
1346
+ 3xa9xu44eur6dy6
1347
+ 3xac2wqftvihbu2
1348
+ 3xadd8whdwr4awa
1349
+ 3xai6e23q8ctwkm
1350
+ 3xajber3dnycv4i
1351
+ 3xajn7s22e3bccs
1352
+ 3xajrrry5huesxg
1353
+ 3xaku2fi86cp8ey
1354
+ 3xakxrebxzvt9ym
1355
+ 3xazmuvizcaakxm
1356
+ 3xazqphaqedebx9
1357
+ 3xb22nscgvnff3w
1358
+ 3xb6iv9nfiwviai
1359
+ 3xbdwzq229m2ifi
1360
+ 3xbf77vbekt2azq
1361
+ 3xbncbnmp6bht7m
1362
+ 3xbuujgiy798qk6
1363
+ 3xc3855y9s3ek7m
1364
+ 3xc4ddad3iqv8d4
1365
+ 3xc6kryz6f7669c
1366
+ 3xc7n2yjnjv2bru
1367
+ 3xc8f9m2xq24d82
1368
+ 3xcfp4jvic85w8g
1369
+ 3xcg33em65pw9fi
1370
+ 3xcgbi9d2d8rmmc
1371
+ 3xcgikuji7xnvy9
1372
+ 3xcieg4sgab3wse
1373
+ 3xcjwkhg9a9yz4m
1374
+ 3xckb5udfrjmrq9
1375
+ 3xcqacxk9636cke
1376
+ 3xcskteswkckwn2
1377
+ 3xd2phenmd6jbmc
1378
+ 3xd5tzsfz34vufs
1379
+ 3xd8gse9sunm5rq
1380
+ 3xd8unj8q8q95t2
1381
+ 3xdcfg2npatercy
1382
+ 3xdcjwjrxhwsqcq
1383
+ 3xdcxpqfwesxke4
1384
+ 3xdjh38f4v2bkig
1385
+ 3xdpafj89627ji6
1386
+ 3xduckhwh76ywae
1387
+ 3xducwys6mt3c4y
1388
+ 3xduvt257dpjr52
1389
+ 3xe3er4rmquccza
1390
+ 3xe6si4ifnmtt46
1391
+ 3xeaxug5we475m9
1392
+ 3xehdxv4px2its2
1393
+ 3xehe4cbsrr53vi
1394
+ 3xei8hkqz7i5kxi
1395
+ 3xemxdkexfwj2ui
1396
+ 3xf6cvqp456tjkw
1397
+ 3xfbehbhbfjfi89
1398
+ 3xfd7k6bvnhhebw
1399
+ 3xfdbetmka48eiq
1400
+ 3xfesnh86g47gq6
1401
+ 3xfevhdwe9iejhq
1402
+ 3xfj824arvdbxn6
1403
+ 3xfk4czmbv3psey
1404
+ 3xfrr3t4zkmc5xq
1405
+ 3xfst2mt4spsq99
1406
+ 3xfugyiwur4urtm
1407
+ 3xfw32q4dqkiyyy
1408
+ 3xfyscnma4nsmyc
1409
+ 3xfysd9zwk29ggs
1410
+ 3xg6j28gs333sqg
1411
+ 3xg6jpkp9afa9z4
1412
+ 3xga74hk8bzbgt4
1413
+ 3xgb698hr5jsyq9
1414
+ 3xgfgk5d4pn3j8k
1415
+ 3xgh9hbqa2kcu7e
1416
+ 3xgi3ftmi83ke2w
1417
+ 3xgskjc8s4dj8mi
1418
+ 3xgswq5c8z4d5fm
1419
+ 3xh3mxrd7pj6sbm
1420
+ 3xh9gjxy6rkg5wy
1421
+ 3xhbg824xcqr76s
1422
+ 3xhbwukg4sg52sm
1423
+ 3xhcekjaafetqdu
1424
+ 3xhep9azwbeuwye
1425
+ 3xhf2wrfmycgv3y
1426
+ 3xhfcbjf9z2m6hm
1427
+ 3xhp7c8a3piwgys
1428
+ 3xhzc4225xj2jp4
1429
+ 3xi25a5xuir6966
1430
+ 3xi6ijtrvqft7a6
1431
+ 3xiaejix36a5zjk
1432
+ 3xicq6jv6caqu3s
1433
+ 3xigwzke8wpfjfq
1434
+ 3xikv9ux8yi4cq6
1435
+ 3xingjgp2cywnj2
1436
+ 3xinxitcp8tr4qi
1437
+ 3xiqrgxk4y4ytpu
1438
+ 3xj2mevb7x7c36g
1439
+ 3xj7dnpbsrjnctw
1440
+ 3xj8cwmikj2vbr9
1441
+ 3xj8k42c3vq3xr2
1442
+ 3xjhu2nb82rwc29
1443
+ 3xjkkiwz4i8q5ek
1444
+ 3xjmbb3zj82t4uc
1445
+ 3xjsgikfd6fxf4m
1446
+ 3xjv9ezq4nx68di
1447
+ 3xk5vd4vjixbunm
1448
+ 3xkawfceecgxpgs
1449
+ 3xkca7qz2wrpzq2
1450
+ 3xke8g72prihncq
1451
+ 3xkgamjcnac2m49
1452
+ 3xkkg5828b66b6s
1453
+ 3xkqq4gqv2jwebm
1454
+ 3xkqrvwam36uwke
1455
+ 3xkr5cb62vrqgzg
1456
+ 3xksn2sa94by5ge
1457
+ 3xkyfsn2nqffs5u
1458
+ 3xm3faiugmt6vv4
1459
+ 3xm3ueguexkhez2
1460
+ 3xm6cfgdi87tije
1461
+ 3xm8r468bs4vh2k
1462
+ 3xm96t56etnsz7w
1463
+ 3xmef2pdm6j5iu4
1464
+ 3xmis9yb7m5nfas
1465
+ 3xmnhs7jun9jukk
1466
+ 3xmp52g4njfq6xi
1467
+ 3xmuhasc9stw379
1468
+ 3xmyvj4mppnu28e
1469
+ 3xmzjex75zxr66g
1470
+ 3xn46ahfmzxpkgw
1471
+ 3xn5r5hunm3npwq
1472
+ 3xne9ingv2w954k
1473
+ 3xngyu6br33mbf2
1474
+ 3xnk6im4tswztt4
1475
+ 3xntizpht5qq6ew
1476
+ 3xnttt2cet3x2zq
1477
+ 3xnv3vyayyczw6a
1478
+ 3xnwmfhb5zs943q
1479
+ 3xnytmuxj3q5yeu
1480
+ 3xp8ixgzyzsd9i2
1481
+ 3xp8t98jzm4jf6w
1482
+ 3xpagups3fpvmk9
1483
+ 3xpdjq32v5rzp82
1484
+ 3xpej2n4cvt7keu
1485
+ 3xpeuqgdstzbg4e
1486
+ 3xpfzzsb67hvhiy
1487
+ 3xpgttbxgecyw8c
1488
+ 3xphf5chuf8swak
1489
+ 3xpjkw34pxm5exi
1490
+ 3xppqx27b2354pm
1491
+ 3xptn4sa77yy3x6
1492
+ 3xpvhih995xmmk9
1493
+ 3xpwbyigtq8bxhq
1494
+ 3xpy6jveyc3ddqq
1495
+ 3xq22983ev7ve6k
1496
+ 3xq2sckicwhcfjw
1497
+ 3xqbbtffv6kfquq
1498
+ 3xqbh4dyn9cvpwm
1499
+ 3xqftm6axn73qxk
1500
+ 3xqg8tenvphfzbs
1501
+ 3xqnx3icyq3jvmm
1502
+ 3xqpk3jkqg8qa4y
1503
+ 3xqwycwmnu69dki
1504
+ 3xqxuepyavp3bu2
1505
+ 3xqyfgx636625ag
1506
+ 3xqzd9uhwawt2xi
1507
+ 3xr2jb4vkxvc4ba
1508
+ 3xr3a8wyr7m4b5w
1509
+ 3xr3j2kpcvniegq
1510
+ 3xr9mwqg8dnh9q6
1511
+ 3xrd7zptf8axz4y
1512
+ 3xreagrs6ze2t62
1513
+ 3xrfn5vz6ru7txa
1514
+ 3xrgk8f4vrrsghq
1515
+ 3xrhmg72wuz4wb6
1516
+ 3xrmfsdwarjwyfg
1517
+ 3xrpffa9z5d66uq
1518
+ 3xrrf488kbvfniw
1519
+ 3xrrsjf2rsksk92
1520
+ 3xrvfxubh5jgthg
1521
+ 3xrw9j53ib359fc
1522
+ 3xrwwetz4befca2
1523
+ 3xry52emffxvgeq
1524
+ 3xrz7pxek48nqnm
1525
+ 3xs59mg4ju9adx6
1526
+ 3xs5e3i3a7xygmm
1527
+ 3xs9psqgu52qt2w
1528
+ 3xsbaf8588raa5w
1529
+ 3xsejbt27c6r6i4
1530
+ 3xsgu5dt55qcfhc
1531
+ 3xshwgib3i6dk7k
1532
+ 3xsi8gvqrjis9uc
1533
+ 3xsjsfimkn7f4pu
1534
+ 3xsm3xg5m6b58c6
1535
+ 3xsqpb557r6bjjg
1536
+ 3xsqqbaw8hmytju
1537
+ 3xsr58cwtw5uyjy
1538
+ 3xsrpx7h4g5d9tm
1539
+ 3xt23az557iuvj9
1540
+ 3xt37ijwcw6bmda
1541
+ 3xt4kiqw99t33am
1542
+ 3xt7su5k8aaawy4
1543
+ 3xt9ixupdzyujqq
1544
+ 3xtbidmgsa553v2
1545
+ 3xte5yssxwrciwm
1546
+ 3xtewccrw3578cy
1547
+ 3xtfeta6c3be4p9
1548
+ 3xthxhuyacfred2
1549
+ 3xtj5q9jpwnmgqe
1550
+ 3xtkh89n2uagude
1551
+ 3xtriv8dv8gjwk2
1552
+ 3xtug64ruchdhnu
1553
+ 3xtwsf2e372g64i
1554
+ 3xtxwuvhuxfwda2
1555
+ 3xu52mp9qpgzxii
1556
+ 3xu97ycpgwz45vq
1557
+ 3xu9ax8fa8w39iw
1558
+ 3xu9ry786wge3iy
1559
+ 3xubv38juwkvaqq
1560
+ 3xue2zmk8tyzvc6
1561
+ 3xue5nc32hm4ahw
1562
+ 3xujjxnpnu95mkg
1563
+ 3xukbb7eybxbw5q
1564
+ 3xutd6mridvz6rq
1565
+ 3xuuuke5drurc6y
1566
+ 3xuv9bv7uucx3n6
1567
+ 3xuwiu26x2fzciy
1568
+ 3xuy84jd2yeie79
1569
+ 3xuznjigyifrav2
1570
+ 3xvaagirk8be4b9
1571
+ 3xvcvr2nb4i2g3c
1572
+ 3xvmetj7ig58y82
1573
+ 3xvn2qdxfupbtn2
1574
+ 3xvn6rbbynxbhaq
1575
+ 3xvqmw48imxhge4
1576
+ 3xvuu6r9eersygk
1577
+ 3xw6xz947f7uuvu
1578
+ 3xw9ky58nx44ifq
1579
+ 3xw9u4i4td5kt26
1580
+ 3xwbjveiw8ap69s
1581
+ 3xwcs3a222actke
1582
+ 3xwgej7egf9857u
1583
+ 3xwhr7aqas4k4jy
1584
+ 3xwktrfqyu6az4a
1585
+ 3xwmdn8rh7zym59
1586
+ 3xwpzj888xnjjaw
1587
+ 3xwrd6cqkgyqgt9
1588
+ 3xwsrgmtms5c75s
1589
+ 3xx3izpfnseke8i
1590
+ 3xxd6ngz33pknj2
1591
+ 3xxe2t6fsuzkm3g
1592
+ 3xxgdfjxqf42ui9
1593
+ 3xxqb6xhr5rcq96
1594
+ 3xxs7ag6q2r79qu
1595
+ 3xxsa325kecmpek
1596
+ 3xy2qx99i2t48rk
1597
+ 3xy7jd3smwfm7tw
1598
+ 3xycywheebhjz2a
1599
+ 3xyds2f4bvchnhu
1600
+ 3xyercd6wh8acve
1601
+ 3xyg8i98945uhs9
1602
+ 3xyjd37ta8y88gu
1603
+ 3xypsrhjjk8ygi9
1604
+ 3xyq4zsnhyksrcg
1605
+ 3xyqvxj6ss42t9w
1606
+ 3xyrp5kjzkx6i3e
1607
+ 3xyrsygih6yxfhe
1608
+ 3xyt72fwv379p46
1609
+ 3xythyyv2vcw6wm
1610
+ 3xyweefbzfswbrq
1611
+ 3xyy2c76kfs56gu
1612
+ 3xyyexacpdhqbxc
1613
+ 3xyyxafu83i2d74
1614
+ 3xz4249ie6yzshq
1615
+ 3xz4n9de78h5awk
1616
+ 3xz5ybjrd4we6x9
1617
+ 3xz8he5fpzius8y
1618
+ 3xzesivvcxr6tf2
1619
+ 3xzni2rn9yb2ur4
1620
+ 3xzuwugxup38nri
1621
+ 3xzzegwhwiw7de9
1622
+ 6589356071775636739
1623
+ 6605813001754774798
1624
+ 6632919871975853326
1625
+ 6639931517634088200
1626
+ 6639935519650221316
1627
+ 6639946938441534728
1628
+ 6647411044501163268
1629
+ 6650031854579698948
1630
+ 6655457533551004932
1631
+ 6658859333775838476
1632
+ 6659638348123999492
1633
+ 6661953058412465420
1634
+ 6661955363564309764
1635
+ 6661968458898607368
1636
+ 6662572764358118659
1637
+ 6662628773718019335
1638
+ 6664133446220369165
1639
+ 6670066165177486605
1640
+ 6671891732524829965
1641
+ 6678180553243626764
1642
+ 6680479610414664974
1643
+ 6680484308932726023
1644
+ 6680486383200652551
1645
+ 6680495441294920964
1646
+ 6680725537217957133
1647
+ 6685248402101521672
1648
+ 6685248974707887374
1649
+ 6686810669221825795
1650
+ 6687077401081416967
1651
+ 6687412730971868429
1652
+ 6687415218663935239
1653
+ 6687415441695984900
1654
+ 6687419353547279629
1655
+ 6687811321574051076
1656
+ 6692975444850986251
1657
+ 6693353542767463688
1658
+ 6695230573637635335
1659
+ 6700401364331154696
1660
+ 6700549546591898888
1661
+ 6706693656956374276
1662
+ 6706724761545755908
1663
+ 6706725685160955143
1664
+ 6707438561051839756
1665
+ 6708285613214354691
1666
+ 6708971806499392780
1667
+ 6711600610715733256
1668
+ 6711673130307423499
1669
+ 6714197602209926404
1670
+ 6714844810399747340
1671
+ 6718536657395649803
1672
+ 6719188785428565251
1673
+ 6719367286420983043
1674
+ 6719639684600941836
1675
+ 6720810902158970120
1676
+ 6722341983882333452
1677
+ 6722677705763998979
1678
+ 6723367944341998852
1679
+ 6723520593372957956
1680
+ 6723522583536405774
1681
+ 6723527309363662083
1682
+ 6723540942005046536
1683
+ 6723758691306327307
1684
+ 6723856443524566280
1685
+ 6724072932240379139
1686
+ 6724073013362412807
1687
+ 6725014910033579278
1688
+ 6726863850802597123
1689
+ 6729528749609454856
1690
+ 6731971438481394958
1691
+ 6731998623359339784
1692
+ 6732020059977370894
1693
+ 6732333962821209357
1694
+ 6732370114181598477
1695
+ 6733905101359959300
1696
+ 6737173013730462984
1697
+ 6741270032111701255
1698
+ 6746738577272540424
1699
+ 6746904276045417740
1700
+ 6746905110107933955
1701
+ 6746916482405403911
1702
+ 6747140566040988936
1703
+ 6747974213874814220
1704
+ 6753893273120623886
1705
+ 6753918581664140558
1706
+ 6753966052528508167
1707
+ 6753977989278567683
1708
+ 6753996415292149005
1709
+ 6755341958933155075
1710
+ 6755405727952653580
1711
+ 6755416306075356428
1712
+ 6755768839365053700
1713
+ 6757690178191576323
1714
+ 6758599323153403147
1715
+ 6759121139760483587
1716
+ 6759760505386044680
1717
+ 6761685888939478285
1718
+ 6765476032708381965
1719
+ 6765480777158266115
1720
+ 6765504634174917899
1721
+ 6766217741016763660
1722
+ 6766220299689053444
1723
+ 6766220724072910088
1724
+ 6766222242721434894
1725
+ 6766228423317703940
1726
+ 6766234763129867527
1727
+ 6766248464813722893
1728
+ 6766370765701991687
1729
+ 6766392183114222856
1730
+ 6766397552943287555
1731
+ 6766462015247518980
1732
+ 6766508408339221768
1733
+ 6766592408340729100
1734
+ 6767245097198161160
1735
+ 6767918377714404622
1736
+ 6768748406232943879
1737
+ 6768749535347903755
1738
+ 6769884636668611853
1739
+ 6770980407262399752
1740
+ 6771251306406464781
1741
+ 6771602582063320334
1742
+ 6772786213909843207
1743
+ 6774614259935563021
1744
+ 6775682394864241928
1745
+ 6775705327359839488
1746
+ 6777155234998340872
1747
+ 6777641222413602048
1748
+ 6779517808494578944
1749
+ 6781646180800646403
1750
+ 6781727165240118531
1751
+ 6782224171817635084
1752
+ 6784181585978707204
1753
+ 6784236847154384141
1754
+ 6789799043749989639
1755
+ 6790312812737613063
1756
+ 6790920932694281487
1757
+ 6791023538900978947
1758
+ 6791327276693769476
1759
+ 6791831278296599822
1760
+ 6798683452519533837
1761
+ 6798738016669076750
1762
+ 6798791300012313869
1763
+ 6798838586625019136
1764
+ 6798897058364329229
1765
+ 6799054384429845767
1766
+ 6799070294901263616
1767
+ 6799129732211346688
1768
+ 6799207729966681351
1769
+ 6799438229041958147
1770
+ 6800324239707606287
1771
+ 6800641564394769671
1772
+ 6800697177376083214
1773
+ 6801386212029517069
1774
+ 6802751301202595087
1775
+ 6802770862526319872
1776
+ 6802839353497242893
1777
+ 6802845079288499470
1778
+ 6803138853226990855
1779
+ 6803587758137806088
1780
+ 6803639669138492680
1781
+ 6805904789029817614
1782
+ 6805939478151122191
1783
+ 6806119699898699015
1784
+ 6806154638795050243
1785
+ 6806205657587485952
1786
+ 6806606169847680260
1787
+ 6806817903996914948
1788
+ 6806837820825619712
1789
+ 6806852595315969293
1790
+ 6806876094176759054
1791
+ 6806911175415155980
1792
+ 6807753138548837647
1793
+ 6809915709791931663
1794
+ 6810205219067038983
1795
+ 6810214757627481352
1796
+ 6810227456126094600
1797
+ 6810235766942305539
1798
+ 6810242340108668174
1799
+ 6810244511034379527
1800
+ 6810247544216620303
1801
+ 6810271009959087374
1802
+ 6810275919236812046
1803
+ 6810319473573219595
1804
+ 6810648413433023757
1805
+ 6812584743767493902
1806
+ 6813262520137026827
1807
+ 6813635878624234767
1808
+ 6815055785375108363
1809
+ 6815151234698251523
1810
+ 6815153433662770439
1811
+ 6815763546740116747
1812
+ 6816180936074349839
1813
+ 6816561551626013967
1814
+ 6817955495341542669
1815
+ 6818176700526972175
1816
+ 6818177047186181388
1817
+ 6818178781300165899
1818
+ 6818180586310536459
1819
+ 6818180833631866120
1820
+ 6818182445825903883
1821
+ 6818189045835762957
1822
+ 6818191541836795147
1823
+ 6818194765524389120
1824
+ 6818211739641941259
1825
+ 6818384473957092611
1826
+ 6818456717186157828
1827
+ 6818512388380282115
1828
+ 6819121035665755392
1829
+ 6819136014683032840
1830
+ 6819163384739646732
1831
+ 6819192874383576331
1832
+ 6819209408438914317
1833
+ 6819225937868000523
1834
+ 6819587416542825731
1835
+ 6820341703828884744
1836
+ 6820699058919820556
1837
+ 6821104150999272719
1838
+ 6822179237424925960
1839
+ 6823672276060278028
1840
+ 6823927741784624399
1841
+ 6824006803018353923
1842
+ 6824273888134941966
1843
+ 6824298917363043588
1844
+ 6824303959415557387
1845
+ 6824343107169996035
1846
+ 6824345287847349515
1847
+ 6824447680635309325
1848
+ 6824456540989230344
1849
+ 6824515285085687048
1850
+ 6824693917791833347
1851
+ 6824790268290632968
1852
+ 6824833850066095368
1853
+ 6825418062817152270
1854
+ 6826694516725124363
1855
+ 6826978829282692356
1856
+ 6826987786642509056
1857
+ 6827436705751076110
1858
+ 6827616334147243271
1859
+ 6827719074328349956
1860
+ 6827747092371393796
1861
+ 6827785033965686023
1862
+ 6828063511369813262
1863
+ 6828096382855941376
1864
+ 6829139570873863435
1865
+ 6829168861053537544
1866
+ 6829225780535414024
1867
+ 6829634216347716877
1868
+ 6829946831397506307
1869
+ 6829977515516251404
1870
+ 6830008628045532428
1871
+ 6830025257416428800
1872
+ 6830624718748519687
1873
+ 6830676220544306440
1874
+ 6830735992824155396
1875
+ 6830943686621203715
1876
+ 6830947702365261063
1877
+ 6831092597377780992
1878
+ 6831107091411782916
1879
+ 6831473572704259340
1880
+ 6831546631620463872
1881
+ 6832145810059169036
1882
+ 6832616226582236423
1883
+ 6833266792295697675
1884
+ 6833574345193819404
1885
+ 6833743607174843655
1886
+ 6833986187829562628
1887
+ 6834090217914354956
1888
+ 6834678309704535310
1889
+ 6835438074969853195
1890
+ 6835503656784186639
1891
+ 6835958738646551808
1892
+ 6836168603889405196
1893
+ 6836172690861100303
1894
+ 6836177348363144463
1895
+ 6836179631603846413
1896
+ 6836180902352080132
1897
+ 6836181677300059392
1898
+ 6836183067531463948
1899
+ 6836183231293836556
1900
+ 6836184471495068936
1901
+ 6836185378953694468
1902
+ 6836185591537863947
1903
+ 6836201017860836621
1904
+ 6836221278811114763
1905
+ 6836656871059819784
1906
+ 6836670907902070020
1907
+ 6836924424860601614
1908
+ 6837016406660271371
1909
+ 6837332562436738307
1910
+ 6837363937797803278
1911
+ 6837784250800966920
1912
+ 6837836003022064896
1913
+ 6838012336184298765
1914
+ 6838043239178652936
1915
+ 6838058397108079887
1916
+ 6838108232741866752
1917
+ 6838123554500889867
1918
+ 6838183183779958030
1919
+ 6838356560104803584
1920
+ 6838411054205144328
1921
+ 6838420817282469120
1922
+ 6838431310114016519
1923
+ 6838470532753706240
1924
+ 6838492904399310095
1925
+ 6838517419460332813
1926
+ 6838545142350089486
1927
+ 6838570621010562307
1928
+ 6838779314671029518
1929
+ 6838788578584169739
1930
+ 6839222788197321991
1931
+ 6839291158720433408
1932
+ 6839340370296442127
1933
+ 6839504528132312320
1934
+ 6839631607658220814
1935
+ 6839977126981127437
1936
+ 6840651629285461262
1937
+ 6841202699501980940
1938
+ 6841369965208145156
1939
+ 6842097049127718148
1940
+ 6842189070978813184
1941
+ 6842213274075843853
1942
+ 6842285820909489421
1943
+ 6842302496388517131
1944
+ 6842311648456281348
1945
+ 6842468747228335367
1946
+ 6842634497394035981
1947
+ 6843587287889087755
1948
+ 6843986345631829262
1949
+ 6844116748266917124
1950
+ 6844137104889433358
1951
+ 6844306836745702656
1952
+ 6844722773693074691
1953
+ 6844756518349360392
1954
+ 6844761643717594372
1955
+ 6844773921955400974
1956
+ 6844775384911711500
1957
+ 6844776284652915982
1958
+ 6844776403682987264
1959
+ 6844778284421631247
1960
+ 6844778978494958848
1961
+ 6844791137807420686
1962
+ 6844811072893996301
1963
+ 6845066012333788428
1964
+ 6845080072357989636
1965
+ 6845109782538472711
1966
+ 6845131127754214671
1967
+ 6845297094828281092
1968
+ 6845443361369820430
1969
+ 6845464116518325504
1970
+ 6845554752420318468
1971
+ 6845664512251645199
1972
+ 6845956029348367631
1973
+ 6845958218343091456
1974
+ 6845971406891568391
1975
+ 6846239194554060047
1976
+ 6846270288255044878
1977
+ 6846277571336752384
1978
+ 6846314399595040000
1979
+ 6846941022308683016
1980
+ 6846962776804510988
1981
+ 6846996541232663808
1982
+ 6847022560618482957
1983
+ 6847313184450252040
1984
+ 6848005225207418120
1985
+ 6848177805520293120
1986
+ 6848434489488624911
1987
+ 6848784835973057800
1988
+ 6848860607907695883
1989
+ 6848892717498371336
1990
+ 6848896622001212685
1991
+ 6848899375402421508
1992
+ 6848941907926584591
1993
+ 6848958762087156992
1994
+ 6848960147729960207
1995
+ 6848963030395522317
1996
+ 6849160135001115917
1997
+ 6849177771898440963
1998
+ 6849580996883451150
1999
+ 6851147341253135624
2000
+ 6851398726708186376
2001
+ 6851503683750857988
2002
+ 6851858629604150540
2003
+ 6851858679331884301
2004
+ 6851858895221181710
2005
+ 6851908839277595918
2006
+ 6852229819191676175
2007
+ 6852515832187112712
2008
+ 6852522086913658125
2009
+ 6852539740328168717
2010
+ 6852586988072160512
2011
+ 6852677764353379597
2012
+ 6852876712024280335
2013
+ 6852945157218766091
2014
+ 6852945783688285454
2015
+ 6852973825793985804
2016
+ 6852979877516283151
2017
+ 6852984894365207821
2018
+ 6853029182356753675
2019
+ 6853077464843832583
2020
+ 6853242304224922894
2021
+ 6853279858903092488
2022
+ 6853595702258420999
2023
+ 6853598175782014223
2024
+ 6853649144918084879
2025
+ 6853654661677796622
2026
+ 6853680327718636813
2027
+ 6853696390283922702
2028
+ 6853944547446148364
2029
+ 6853962519736798479
2030
+ 6853972709974494472
2031
+ 6853973226440117517
2032
+ 6853989224878787843
2033
+ 6854042677390904583
2034
+ 6854043084150344974
2035
+ 6854064950038514951
2036
+ 6854069496425073927
2037
+ 6854097139853757704
2038
+ 6854107493627399437
2039
+ 6854141579452484868
2040
+ 6855096922303155471
2041
+ 6855480621616221444
2042
+ 6855577899844635919
2043
+ 6855617331767381256
2044
+ 6856594694877596942
2045
+ 6857307515592396045
2046
+ 6857313418328689935
2047
+ 6857330618292768013
2048
+ 6857423306220457230
2049
+ 6857760867765800195
2050
+ 6857769856498994439
2051
+ 6857787505337535752
2052
+ 6858057926506990862
2053
+ 6858063433804401935
2054
+ 6858157169779477767
2055
+ 6858470103583935751
2056
+ 6858496463324990728
2057
+ 6858568240021409024
2058
+ 6858629768552713486
2059
+ 6858865626597903624
2060
+ 6859189072108260612
2061
+ 6859227229776268555
2062
+ 6859536716722638095
2063
+ 6859578472910671108
2064
+ 6859606107627818254
2065
+ 6859990030639828238
2066
+ 6860312102125456644
2067
+ 6860326519579970819
2068
+ 6860436552699350272
2069
+ 6861501869743770894
2070
+ 6861848484539141384
2071
+ 6862161911828499726
2072
+ 6862170451624447245
2073
+ 6862228172075765007
2074
+ 6862253405146975491
2075
+ 6862492808612154637
2076
+ 6862496739316763908
2077
+ 6862496783692500228
2078
+ 6862603682614185230
2079
+ 6862620046783548686
2080
+ 6862706010994248975
2081
+ 6863261542293441805
2082
+ 6863372774707072263
2083
+ 6863670234700680461
2084
+ 6864421555695406347
2085
+ 6864447937779453198
2086
+ 6864452334915816704
2087
+ 6864464104908803336
2088
+ 6864470920677936399
2089
+ 6864536647506185486
2090
+ 6864558022044241166
2091
+ 6864585830682414336
2092
+ 6864744594102357260
2093
+ 6864830194549591300
2094
+ 6864830459587710211
2095
+ 6865921098651897103
2096
+ 6865979338509126912
2097
+ 6866260665762401550
2098
+ 6866295416246242574
2099
+ 6866360146147265800
2100
+ 6866360691012472067
2101
+ 6866400849942351111
2102
+ 6866629945838275852
2103
+ 6866641073729588494
2104
+ 6866675644713929995
2105
+ 6866707115373825288
2106
+ 6867356883720736011
2107
+ 6867361315111980291
2108
+ 6867415299667315980
2109
+ 6867451579465764108
2110
+ 6868254006939094279
2111
+ 6868404806692719879
2112
+ 6869892868224322830
2113
+ 6871052742379523341
2114
+ 6871564257146785024
2115
+ 6871569249878478094
2116
+ 6871826519736585479
2117
+ 6872158398226418958
2118
+ 6872218356959677704
2119
+ 6872241276243250444
2120
+ 6872270966106459407
2121
+ 6872297877264207117
2122
+ 6872315365985176847
2123
+ 6872543801748016397
2124
+ 6873739404939136268
2125
+ 6873740731245219076
2126
+ 6874895234182941959
2127
+ 6875217471041735939
2128
+ 6875320285118156044
2129
+ 6875518254727580935
2130
+ 6875521596296137991
2131
+ 6876084422584585472
2132
+ 6876220191492148487
2133
+ 6876257542276730120
2134
+ 6877747200793857288
2135
+ 6877905833980726542
2136
+ 6878118954947087623
2137
+ 6879648527568375051
2138
+ 6879657338479922447
2139
+ 6879725157846387975
2140
+ 6882643461967777039
2141
+ 6882908970764242187
2142
+ 6883028290722876679
2143
+ 6883331385835244813
2144
+ 6883425147680804100
2145
+ 6883688654267567372
2146
+ 6883734332104510724
2147
+ 6883768866443414795
2148
+ 6883831030139194637
2149
+ 6884573066844835086
2150
+ 6884872001551404303
2151
+ 6885912598605237507
2152
+ 6886048565702053133
2153
+ 6886296759493020941
2154
+ 6886309004423810307
2155
+ 6886310115218132224
2156
+ 6886317851376913668
2157
+ 6886334348988124430
2158
+ 6886357948747058443
2159
+ 6886430430208298255
2160
+ 6886690524598635784
2161
+ 6887458098420731148
2162
+ 6887468950859435268
2163
+ 6888160891062193411
2164
+ 6888185150035758348
2165
+ 6888255713102105859
2166
+ 6888295653252828424
2167
+ 6888628485665901824
2168
+ 6888873897144454403
2169
+ 6889038655147543822
2170
+ 6889290848429722880
2171
+ 6889304880939306253
2172
+ 6889320431329840399
2173
+ 6889365879549676813
2174
+ 6890005271863627011
2175
+ 6890102205412543751
2176
+ 6890103435056647424
2177
+ 6890346401767623944
2178
+ 6890400107934600448
2179
+ 6890401070326041867
2180
+ 6890529616985869571
2181
+ 6891203642074926350
2182
+ 6891252687153663246
2183
+ 6891542492282359051
2184
+ 6891596634208210187
2185
+ 6893389748480625934
2186
+ 6893761625375902979
2187
+ 6893817237463977223
2188
+ 6894080336926346510
2189
+ 6894123222929902862
2190
+ 6894498895607450894
2191
+ 6894612649531723022
2192
+ 6894776905745042703
2193
+ 6896454994564828428
2194
+ 6896489623871032590
2195
+ 6896644027702152455
2196
+ 6896644309940997389
2197
+ 6896645285833968910
2198
+ 6896645750239808775
2199
+ 6896798684684553487
2200
+ 6896848817627450637
2201
+ 6897034063606058253
2202
+ 6898304240838561035
2203
+ 6898627406563757316
2204
+ 6900287208352189709
2205
+ 6900421259419487495
2206
+ 6901142136364862731
2207
+ 6901513323875978496
2208
+ 6902244200536984835
2209
+ 6902244853975928068
2210
+ 6902612730855869703
2211
+ 6903516292544744717
2212
+ 6904190453969620232
2213
+ 6904831360410602759
2214
+ 6904946721210617092
2215
+ 6905321879456861454
2216
+ 6905628008716029197
2217
+ 6905746694005099791
2218
+ 6905941408226528527
2219
+ 6906270461873622272
2220
+ 6906310378238561549
2221
+ 6907161181887220996
2222
+ 6907416097469910276
2223
+ 6907420193622985997
2224
+ 6907446228024380680
2225
+ 6907898669622660365
2226
+ 6907975848503135488
2227
+ 6908203817863499016
2228
+ 6908248927825382664
2229
+ 6908520057878498572
2230
+ 6908524417744194824
2231
+ 6908546184256834823
2232
+ 6908996925001862407
2233
+ 6909367741052931341
2234
+ 6909380431892794631
2235
+ 6909663625506508032
2236
+ 6910459766439447819
2237
+ 6910821547510926592
2238
+ 6910848869672832263
2239
+ 6911241104876752141
2240
+ 6911597286476811534
2241
+ 6913508533107543309
2242
+ 6914471100944551168
2243
+ 6914570532776103175
2244
+ 6914584068289989902
2245
+ 6915213929752956168
2246
+ 6915359540363939080
2247
+ 6915542827426467086
2248
+ 6915942286828342543
2249
+ 6916043629995887883
2250
+ 6916048903624330500
2251
+ 6916123476306742531
2252
+ 6916438087664962823
2253
+ 6916496093836594447
2254
+ 6916680730785402119
2255
+ 6916693245837806863
2256
+ 6916697301520043264
2257
+ 6916708434427530499
2258
+ 6916735523188952328
2259
+ 6916754377227111688
2260
+ 6917146786058554636
2261
+ 6917413709052660995
2262
+ 6917513241031642380
2263
+ 6917513401027677440
2264
+ 6917514786771160333
2265
+ 6917517499756023052
2266
+ 6917518319717338375
2267
+ 6917519769889541391
2268
+ 6917521385057160455
2269
+ 6917529077662453006
2270
+ 6917530149990698240
2271
+ 6917532912292252943
2272
+ 6917534938292079879
2273
+ 6919101461557202188
2274
+ 6919103246233570564
2275
+ 6919111578998639876
2276
+ 6919633818316066051
2277
+ 6919727281380363527
2278
+ 6919800791696002319
2279
+ 6920392203827268864
2280
+ 6920507291275971844
2281
+ 6920514939933166860
2282
+ 6920826150474222856
2283
+ 6921274634578988292
2284
+ 6921517457811344647
2285
+ 6921530276170550543
2286
+ 6921575944729693447
2287
+ 6921657713025961228
2288
+ 6921677973334543630
2289
+ 6921877001590689038
2290
+ 6921906621920627976
2291
+ 6921984059375766798
2292
+ 6922462128716729615
2293
+ 6922772290446937352
2294
+ 6923031334898158852
2295
+ 6924506575486930176
2296
+ 6924525157621026055
2297
+ 6924686470749965583
2298
+ 6924875295799430415
2299
+ 6924939109215653123
2300
+ 6924956003725364487
2301
+ 6925223734156545287
2302
+ 6925313216381734157
2303
+ 6925366755388886286
2304
+ 6925630911501307147
2305
+ 6925768487881297165
2306
+ 6925771486640819469
2307
+ 6926555529158364423
2308
+ 6927492596331728135
2309
+ 6928624085714914573
2310
+ 6930455911005834508
2311
+ 6932785250984660232
2312
+ 6932788605169487119
2313
+ 6932790651176242447
2314
+ 6932791427265072397
2315
+ 6932793941297270024
2316
+ 6933020013653691656
2317
+ 6933097002435726605
2318
+ 6933945482934832398
2319
+ 6934173790754573568
2320
+ 6934516526846430464
2321
+ 6934517181774302464
2322
+ 6934678435339980046
2323
+ 6935052777273969934
2324
+ 6935427469554093348
2325
+ 6935640384068439332
2326
+ 6935673902374997278
2327
+ 6935740364347149583
2328
+ 6936451574046690598
2329
+ 6937114875189595423
2330
+ 6937568290604682499
2331
+ 6939705680093826340
2332
+ 6939771750569823502
2333
+ 6940414747292486949
2334
+ 6940819252114935079
2335
+ 6940947333114875174
2336
+ 6941945811177606441
2337
+ 6942046714337578253
2338
+ 6942050121597078788
2339
+ 6942111753811627264
2340
+ 6942444605975661858
2341
+ 6942767871684578591
2342
+ 6942865258377694497
2343
+ 6942867105645694216
2344
+ 6943058156968742174
2345
+ 6943114614414609667
2346
+ 6943212523181116713
2347
+ 6943403246866238724
2348
+ 6944180901626563847
2349
+ 6944183348491308318
2350
+ 6944194124060888356
2351
+ 6944252027438468365
2352
+ 6944537695473519883
2353
+ 6945220453338320142
2354
+ 6945371204471573763
2355
+ 6946368506640223519
2356
+ 6946559118064848162
2357
+ 6946922230706097408
2358
+ 6947165100222565663
2359
+ 6947274925078039811
2360
+ 6947275565011438878
2361
+ 6947308827322731779
2362
+ 6947318617755127078
2363
+ 6947639066594790695
2364
+ 6948423138476625182
2365
+ 6948604620235148585
2366
+ 6948678821382081799
2367
+ 6948746414448987404
2368
+ 6948988362430680351
2369
+ 6949057632543968526
2370
+ 6950543663424359693
2371
+ 6950557313144982792
2372
+ 6951669781250542879
2373
+ 6951671537141435679
2374
+ 6951679957756087565
2375
+ 6951694957057002760
2376
+ 6951954708068076813
2377
+ 6951984255584996647
2378
+ 6951984332437245215
2379
+ 6951986198319516939
2380
+ 6951990295361817860
2381
+ 6951992689579576613
2382
+ 6952011958073838856
2383
+ 6952024742920604958
2384
+ 6952063448582737165
2385
+ 6952844502319025416
2386
+ 6953180044663606564
2387
+ 6953603582159506728
2388
+ 6955298325201489166
2389
+ 6955383616880856356
2390
+ 6956010318124404002
2391
+ 6956048707829746974
2392
+ 6956513104595307776
2393
+ 6956861520747760933
2394
+ 6956873877754481957
2395
+ 6956876863784389895
2396
+ 6957332862806871333
2397
+ 6958356118821244190
2398
+ 6958423572402457871
2399
+ 6958444948777749767
2400
+ 6958632363018554656
2401
+ 6958700705565658405
2402
+ 6959100069924654372
2403
+ 6959108100074900769
2404
+ 6959153860627811597
2405
+ 6959445688598023432
2406
+ 6959557935596850435
2407
+ 6959868141245582622
2408
+ 6959882766800407843
2409
+ 6960500262389697806
2410
+ 6960564672554667267
2411
+ 6960565268309445895
2412
+ 6960566438436326693
2413
+ 6960880794919341352
2414
+ 6960982614324874496
2415
+ 6961414337353354531
2416
+ 6961619376055291168
2417
+ 6961679665048096031
2418
+ 6962035654960106766
2419
+ 6962513395006393637
2420
+ 6962719307059006757
2421
+ 6962773069005950244
2422
+ 6963096918754938127
2423
+ 6963127737955470633
2424
+ 6963840071669763342
2425
+ 6963995027122949383
2426
+ 6964307997883403527
2427
+ 6964344406887517471
2428
+ 6964369257022999849
2429
+ 6965376782115572999
2430
+ 6965408559379074340
2431
+ 6965453905228483874
2432
+ 6965764136655539493
2433
+ 6965901953180208423
2434
+ 6965930944154897672
2435
+ 6965939071847779615
2436
+ 6965939647004298499
2437
+ 6965944220968357134
2438
+ 6965944255768513829
2439
+ 6965945917509733635
2440
+ 6965948064905399555
2441
+ 6965949219823734052
2442
+ 6965949499055344927
2443
+ 6965954615594503427
2444
+ 6965969917724101925
2445
+ 6966646454219787560
2446
+ 6966807670456077582
2447
+ 6967239675295616293
2448
+ 6967505700071263524
2449
+ 6967908914419485988
2450
+ 6967963198112713997
2451
+ 6968670645626342686
2452
+ 6968671834694782219
2453
+ 6968679947346939167
2454
+ 6968682298413780236
2455
+ 6968702523637108004
2456
+ 6968705181332557088
2457
+ 6968712359783288103
2458
+ 6968739328969264423
2459
+ 6968999140315450638
2460
+ 6969435715524414756
2461
+ 6969441526204108062
2462
+ 6969600590737378599
2463
+ 6969811065626496293
2464
+ 6971075536311307552
2465
+ 6972355496539868450
2466
+ 6972363800263675151
2467
+ 6972388423386582312
2468
+ 6972402411998678308
2469
+ 6972420491227188487
2470
+ 6972433581129927976
2471
+ 6972447113024146703
2472
+ 6972494564657548583
2473
+ 6972518820296658210
2474
+ 6972788461677972750
2475
+ 6972797607403932966
2476
+ 6972822369048071457
2477
+ 6973093033269087495
2478
+ 6973100059894254859
2479
+ 6973111647816731935
2480
+ 6973131309623332131
2481
+ 6973131558630821128
2482
+ 6973131802902891810
2483
+ 6973132866595130663
2484
+ 6973132914473061644
2485
+ 6973133690469633314
2486
+ 6973134961222143266
2487
+ 6973163491779726607
2488
+ 6973517103378861315
2489
+ 6973583949612256526
2490
+ 6973621961121484068
2491
+ 6974190748006681894
2492
+ 6975525474722270494
2493
+ 6976057009275784460
2494
+ 6976452250612944139
2495
+ 6976553646884490527
2496
+ 6977581008392555784
2497
+ 6991491832731471143
2498
+ 6991492579351203103
2499
+ 6991499503631076612
2500
+ 6991500180289785126
2501
+ 6991510973530033441
2502
+ 6991520662259125518
2503
+ 6996165317244341541
2504
+ 6998389046774959397
2505
+ 6998406307627699467
2506
+ 6999597490399907109
2507
+ 6999606918415273227
2508
+ 6999617935186627847
2509
+ 6999618607625866533
2510
+ 7000990476274830629
2511
+ 7000998985607531780
2512
+ 7005117123030797600
2513
+ 7008814496965741828
2514
+ 7008814789472374054
2515
+ 7008815008708611360
2516
+ 7008828598815591713
2517
+ 7015096155822394631
2518
+ 7015141085047491852
2519
+ 7015162143196613920
2520
+ 7015175549756673293
2521
+ 7015179078063918339
2522
+ 7018140769592675620
2523
+ 7018142188026547467
2524
+ 7018157503468834084
2525
+ 7018167400063372581
2526
+ 7020635036290501921
2527
+ 7020638542674087206
2528
+ 7024506816197365003
2529
+ 7027839508112477473
2530
+ 7027840457686224167
2531
+ 7027841726249209124
2532
+ 7027842098246339843
2533
+ 7027850535449464076
2534
+ 7027857818065669415
2535
+ 7027859856119958820
2536
+ 7027860249763646750
2537
+ 7027862919559925030
2538
+ 7027863154243669281
2539
+ 7027865298359307553
2540
+ 7027865369087872264
2541
+ 7027865610503605508
2542
+ 7027867462083398945
2543
+ 7027874561815252232
2544
+ 7027875719078366476
2545
+ 7027877118893640968
2546
+ 7027879223423503629
2547
+ 7027884760277994760
2548
+ 7027885300571573518
2549
+ 7027888720120384775
2550
+ 7027891515733200132
2551
+ 7027891782197251361
2552
+ 7027894775168634148
2553
+ 7027898091239968031
2554
+ 7027902340577479975
2555
+ 7027902690940177675
2556
+ 7027920751856553219
2557
+ 7027922688245075207
2558
+ 6905545787522993422
2559
+ 6944178066797235469
2560
+ 6903095981676465411
2561
+ 6991477279176101131
2562
+ 6903365245734079748
2563
+ 6902998763892182272
2564
+ 6903330126805699844
2565
+ 6903101676173970696
2566
+ 6883733064015498500
2567
+ 6883056976650046727
2568
+ 6883041428973440267
2569
+ 6883007372814503172
2570
+ 6882992354949598479
2571
+ 6883035443248516355
2572
+ 6883007885299698947
2573
+ 6884121331181292814
2574
+ 6883002774582234383
2575
+ 6883400207422197006
2576
+ 6965906243571485955
2577
+ 7027855528684571907
2578
+ 6849127595091512576
2579
+ 6848894223253523724
2580
+ 6848893667097316623
2581
+ 6813177989962943757
2582
+ 6813679993961450752
2583
+ 6813914791262883072
2584
+ 6813920395746446595
2585
+ 6815562609367043340
2586
+ 6813902497317489923
2587
+ 6813975983490649358
2588
+ 6816267866157894923
2589
+ 6813934868204948739
2590
+ 6813861282865859852
2591
+ 6813944479129619716
2592
+ 6771223353316461832
2593
+ 6771355541286472964
2594
+ 6771300068696788232
2595
+ 6771727162417483016
2596
+ 6709066288955690247
2597
+ 7020642445767511334
2598
+ 3xk784kt7xu5sq2
2599
+ 3x35hdtxh89a7de
2600
+ 3xk53itcrqz432s
2601
+ 3xjczz4dpkdkgcw
2602
+ 3xjdr3jbmdrhm3m
2603
+ 3xmjtdz9jeuagjc
2604
+ 3xfhvpnpwgnnrz2
2605
+ 3xxx8y4wqk53usy
2606
+ 3x626bdepsj6t4c
2607
+ 3xd7xree5gk9su6
2608
+ 3xmvxnbrbyzajfs
2609
+ 3xzwiveqb4683gg
2610
+ 3xskwn3dqvchci6
2611
+ 6675680797694954763
2612
+ 7020643786086763784
2613
+ 6813913047963356419
2614
+ 6821687069878865155
2615
+ 6814026625785580800
2616
+ 6813972150479899908
2617
+ 6813923779555659023
2618
+ 6814044469256621325
2619
+ 6813887204625042688
2620
+ 6813937528492559628
2621
+ 6816625975036480771
2622
+ 6805702587258653967
2623
+ 6754309026638466311
2624
+ 6834678060604820744
2625
+ 6802000980696255751
2626
+ 6890486208653315341
2627
+ 6753603543804005636
2628
+ 6890670354180607243
2629
+ 6849689713515810063
2630
+ 6951934204426898703
2631
+ 6884545191089360136
2632
+ 6890449612604230926
2633
+ 6808837621192723727
2634
+ 6899336054558575872
2635
+ 6909752479127194880
2636
+ 6921909551386103047
2637
+ 6766547180921670924
2638
+ 6894912494519799048
2639
+ 6894438260290964751
2640
+ 6906029310809771277
2641
+ 6894808801057312003
2642
+ 6924202569501920525
2643
+ 6923403368471792907
2644
+ 6923916971721510151
2645
+ 6942864805426416928
2646
+ 6924132750555417864
2647
+ 6923935118297959684
2648
+ 6924190461619932419
2649
+ 6923901827289320715
2650
+ 6991475682643692813
2651
+ 6924182159754267904
2652
+ 6923881986759216388
2653
+ 6924240755338775822
2654
+ 6924113151701159183
2655
+ 6924276047198407951
2656
+ 6924263691001154830
2657
+ 6923906958311427332
2658
+ 6924193678906936591
2659
+ 6923859622524701967
2660
+ 6828955068306427150
2661
+ 6822146399438638348
2662
+ 6977540170237136165
2663
+ 6847625785881218317
2664
+ 6975102472469712162
2665
+ 6843677566914530572
2666
+ 6849674179688615182
2667
+ 7027893113121164583
2668
+ 6853967695642135815
2669
+ 6828816553870413060
2670
+ 6762485768855309575
2671
+ 6853285242413911311
2672
+ 6855571163804863744
2673
+ 6814260029789588747
2674
+ 6813280545036946692
2675
+ 6815218376181288200
2676
+ 6813252139440164111
2677
+ 6966855785523547422
2678
+ 6834140945643080974
2679
+ 6835558642318658829
2680
+ 6834394371866103055
2681
+ 6851844393809218829
2682
+ 7000992974133939470
2683
+ 6837286484110855432
2684
+ 6658097607740558606
2685
+ 6771052622569901319
2686
+ 6761998960384085251
2687
+ 6842842965895941384
2688
+ 6842055637803797768
2689
+ 6929471560252247296
2690
+ 6977627352994041125
2691
+ 6810651602786061580
2692
+ 6811011407258094862
2693
+ 6810767943350242575
2694
+ 6810666368145296654
2695
+ 6788381071135329551
2696
+ 6787684132538387712
2697
+ 7027911935391780110
2698
+ 6660797234772266243
2699
+ 6827524144276589835
2700
+ 6789632187638500622
2701
+ 6789409807355989251
2702
+ 6789386035236195599
2703
+ 6790621001488026895
2704
+ 6789574381082316045
2705
+ 6992376094531898635
2706
+ 6805807308191419656
2707
+ 6805829872481504520
2708
+ 6819227918212943104
2709
+ 6819107059414437128
2710
+ 6819103520705285388
2711
+ 6890208945252732160
2712
+ 6890138864099282176
2713
+ 6890353470595976459
2714
+ 6890129922103201024
2715
+ 6890417090755333380
2716
+ 6891946860613881100
2717
+ 6890422869491354888
2718
+ 6837646196916391179
2719
+ 6798515331057913103
2720
+ 6798063003444055311
2721
+ 6805277630758210823
2722
+ 6806923980981685504
2723
+ 6806993569967131915
2724
+ 6814346432099667200
2725
+ 6814401972507053312
2726
+ 6821776837266427144
2727
+ 6861586134191934733
2728
+ 6779036391969017096
2729
+ 6777539314789207303
2730
+ 6808009573362863374
2731
+ 6807645684875939087
2732
+ 6807768532655377678
2733
+ 6808128149465894157
2734
+ 6807668777627454720
2735
+ 6807968631360687375
2736
+ 6808106877696740619
2737
+ 6807787721994669316
2738
+ 6641159939815378190
2739
+ 6790650616814390535
2740
+ 6790168988090371336
2741
+ 6765587869026290956
2742
+ 6765508874511338755
2743
+ 6851828761348852999
2744
+ 6852482482604969223
2745
+ 6991498016397987084
2746
+ 6922722737173695758
2747
+ 6923593337656134923
2748
+ 6923462909842525448
2749
+ 6922657004334943495
2750
+ 6923346063944404238
2751
+ 6923095665010543872
2752
+ 6922962079888559371
2753
+ 6922418369014582535
2754
+ 6846231993508695304
2755
+ 7027834593717865758
2756
+ 6946970502422351108
2757
+ 6947229316409216291
2758
+ 7027828971857300775
2759
+ 6947215803498417444
2760
+ 6947154821598203148
2761
+ 6925358371902131471
2762
+ 6878115211723689230
2763
+ 6884856957434367246
2764
+ 6876248127704255759
2765
+ 6611022763593305357
2766
+ 6601738553175051533
2767
+ 6601795495725632776
2768
+ 6827409976156310791
2769
+ 6796890396719959304
2770
+ 6792888144355167500
2771
+ 6793099198360341764
2772
+ 6792926161165978893
2773
+ 6876061152921603335
2774
+ 6735318039601958152
2775
+ 6792932367502691597
2776
+ 6792897575553879309
2777
+ 6793092358536744205
2778
+ 6793126744271359246
2779
+ 6814381687825353996
2780
+ 6814639933291056396
2781
+ 6814663526683036943
2782
+ 6821677729226788108
2783
+ 6814409751523233035
2784
+ 6789926310853496076
2785
+ 6789948811964861696
2786
+ 6790325643788750080
2787
+ 6790158463046601992
2788
+ 6790179644109884685
2789
+ 6790306029520358671
2790
+ 6790239252056771840
2791
+ 6893390182687509763
2792
+ 6789862722919058692
2793
+ 7018083054820363552
2794
+ 6800188418136493320
2795
+ 6806074889011825928
2796
+ 6799925026771586312
2797
+ 6797944476640775438
2798
+ 6807213181593718028
2799
+ 6797172611190181120
2800
+ 6837999103167761672
2801
+ 6639551308707663117
2802
+ 6862317109200833806
2803
+ 6849159823892827407
2804
+ 6849577913830952199
2805
+ 6849845731646360832
2806
+ 6948409641793588494
2807
+ 6948391114630073611
2808
+ 6948406300065680675
2809
+ 6948724091415235840
2810
+ 6948628418066009357
2811
+ 6797330904890035471
2812
+ 6797029032643824909
2813
+ 6797199355628637448
2814
+ 6797670636266212615
2815
+ 6797231836675312900
2816
+ 6797409346381827339
2817
+ 6797584517885431053
2818
+ 6797182551938141448
2819
+ 6797286686633004302
2820
+ 6810249864878820623
2821
+ 6790975552841878791
2822
+ 6792115740880276743
2823
+ 6792021786289622276
2824
+ 6790686139385728270
2825
+ 6791326709506411791
2826
+ 6793568165843520768
2827
+ 6791751270374903043
2828
+ 6793581515826646287
2829
+ 6792179522650361091
2830
+ 6737510247499451656
2831
+ 6737593217153305869
2832
+ 6805483052119133453
2833
+ 6807571192761896200
2834
+ 6876028324783607048
2835
+ 6876042827638328590
2836
+ 6881878776549051656
2837
+ 7027898967174204705
2838
+ 6943192848179170595
2839
+ 6827520616497679620
2840
+ 6977682557928213773
2841
+ 6896335616577998087
2842
+ 6898294999373466893
2843
+ 6955662338825391397
2844
+ 6729711347824659719
2845
+ 6730205068865424647
2846
+ 6919042388237241608
2847
+ 6883301375967546632
2848
+ 6883404288052202759
2849
+ 6883362164850101519
2850
+ 6883432516573859086
2851
+ 6883465133973048584
2852
+ 6898624348354071811
2853
+ 6883462157791399183
2854
+ 6883471174009982219
2855
+ 6904550353425943815
2856
+ 6805499391944805639
2857
+ 6804982145879166212
2858
+ 6804778409202421007
2859
+ 6804804465997139211
2860
+ 6805038781247409421
2861
+ 6805340083609144579
2862
+ 6804979457431014670
2863
+ 6804993725136162062
2864
+ 6804855347765873920
2865
+ 6805470549469351183
2866
+ 6723872348761492739
2867
+ 6953511272054885669
2868
+ 6738706568629472523
2869
+ 6920509111247441155
2870
+ 7020647242407120167
2871
+ 6940833081607703822
2872
+ 6845078965565017344
2873
+ 7024489170672405791
2874
+ 6844818233850072331
2875
+ 6845187354110528776
2876
+ 6741328466110631181
2877
+ 6896644192974556424
2878
+ 7027849254236441867
2879
+ 6861787617369853187
2880
+ 6861760820834061579
2881
+ 6861857889590480128
2882
+ 6861855172008643847
2883
+ 6861850949149854983
2884
+ 6950201634651655437
2885
+ 6969895125304626443
2886
+ 6916339179710418189
2887
+ 6915999637065207055
2888
+ 6915956003733310728
2889
+ 6915955190193540352
2890
+ 6916015148125703427
2891
+ 6916020252455259407
2892
+ 6916029513977613576
2893
+ 6813923092897811716
2894
+ 6813905741620006147
2895
+ 6815493038140427535
2896
+ 6813986413353225476
2897
+ 6798717204176129294
2898
+ 6798879929468603652
2899
+ 6857772860224720139
2900
+ 6798691277278825735
2901
+ 6798956295262096648
2902
+ 6821320387473755392
2903
+ 6869689237860584707
2904
+ 6821060814020021516
2905
+ 6822119583529405710
2906
+ 6819497693526641931
2907
+ 6820230527493180684
2908
+ 6821045174345518351
2909
+ 6821054074159435012
2910
+ 6821043905308445956
2911
+ 6821417552393145604
2912
+ 6819870141019360512
2913
+ 6818838190401604879
2914
+ 6756861769332903175
2915
+ 6790631692857052424
2916
+ 6945841715328716046
2917
+ 6746377541260512526
2918
+ 6746403850749594894
2919
+ 6746458637138447623
2920
+ 6991501055104126222
2921
+ 6746471793915170055
2922
+ 6746398138585615623
2923
+ 6746353718834269454
2924
+ 6743389763094498573
2925
+ 6743386932136414471
2926
+ 6743882384711634184
2927
+ 6937986118432345357
2928
+ 6937970125895240973
2929
+ 6848427043013528845
2930
+ 6848497961396079886
2931
+ 6848432357809065230
2932
+ 6848441350808014095
2933
+ 6848434790299864333
2934
+ 6822683682126433548
2935
+ 6817432757610859788
2936
+ 6815091663300513027
2937
+ 6814432741958946063
2938
+ 6814314607973354756
2939
+ 6815161754595642627
2940
+ 6650309954823654663
2941
+ 6778845316692135175
2942
+ 6964976187663846687
2943
+ 7027849348595731720
2944
+ 6887043299828354307
2945
+ 7027921075925191947
2946
+ 6787699220339051783
2947
+ 6860809853275737344
2948
+ 6737484511816305923
2949
+ 6869960490093677831
2950
+ 6867761508810509581
2951
+ 7027859325582396702
2952
+ 6912079237662969102
2953
+ 6951994071409872164
2954
+ 6945723692513004836
2955
+ 6798700787246583040
2956
+ 6796262359921970443
2957
+ 6792168758032026895
2958
+ 6921914834804116749
2959
+ 6795912865799851264
2960
+ 6805453035163225357
2961
+ 6796083454997024000
2962
+ 6805489808991931663
2963
+ 6799132483947384068
2964
+ 6891091253379730691
2965
+ 6890827715792882952
2966
+ 6891204444520811784
2967
+ 6965894116504784164
2968
+ 6890360409749064968
2969
+ 6890364946606001419
2970
+ 6890695267037842699
2971
+ 6890730941820521731
2972
+ 6890886810281594116
2973
+ 6654921390925319436
2974
+ 6834677839309180168
2975
+ 6797265622339177728
2976
+ 6797327565603310848
2977
+ 6798503970345143552
2978
+ 6797362129050537223
2979
+ 6797605608674577678
2980
+ 6896014346149825799
2981
+ 6896300872611990795
2982
+ 6896344156965309708
2983
+ 6896070752374623488
2984
+ 6896297354702408974
2985
+ 6896331262399712526
2986
+ 6844390680626793742
2987
+ 6898626971652148494
2988
+ 6844324970470919437
2989
+ 6844712724732120327
2990
+ 6845102366283369735
2991
+ 6844528060167900430
2992
+ 6844331095178202368
2993
+ 6844043426170686733
2994
+ 6843955504599928071
2995
+ 6838491064731487495
2996
+ 6838396696783834381
2997
+ 6741223148525604108
2998
+ 6739713098640379148
2999
+ 6805075102808476939
3000
+ 6737869139471240456
3001
+ 6737856627552161037
3002
+ 6713699438918962440
3003
+ 7018107870549970183
3004
+ 6888482101704903951
3005
+ 6889070478149913871
3006
+ 6970992334364347684
3007
+ 6849644048446278919
3008
+ 6849965766872173827
3009
+ 6965912113130884365
3010
+ 6849878626674986240
3011
+ 6850019992428104974
3012
+ 6849888470937193728
3013
+ 6845139126321302798
3014
+ 6854088274965728525
3015
+ 6888548536619650311
3016
+ 6846555826107337997
3017
+ 6854700483416689934
3018
+ 6872898807584066830
3019
+ 6911959277749947662
3020
+ 6953524165429267719
3021
+ 6938199208537214238
3022
+ 6875231883303685391
3023
+ 6922496315255459084
3024
+ 6953945680612298021
3025
+ 6943190799110753575
3026
+ 6922589550330088707
3027
+ 6957423894294744328
3028
+ 6806127747971206404
3029
+ 6806135804818214151
3030
+ 6806250764718132480
3031
+ 6965897312216370440
3032
+ 6871604200355187979
3033
+ 6871979527199821063
3034
+ 6871891686469930253
3035
+ 6871968599158967563
3036
+ 6874867342950649095
3037
+ 6834677872515435784
3038
+ 6660788747598040333
3039
+ 6922761154846592271
3040
+ 6845570754923203847
3041
+ 6799618679307898125
3042
+ 6799630403775859979
3043
+ 6799610819052195083
3044
+ 6799723170103348495
3045
+ 6799805646259653892
3046
+ 6799651993712413952
3047
+ 6799618970572836096
3048
+ 6800160905402338560
3049
+ 6800604345059511563
3050
+ 6799632397999574285
3051
+ 6799624923137477896
3052
+ 6809911531942202637
3053
+ 6807943897050860814
3054
+ 6879701440365989135
3055
+ 6807564623181532416
3056
+ 6815059537582755072
3057
+ 6932452023145155855
3058
+ 7015101878870478092
3059
+ 6932873121598885133
3060
+ 6932393385017855244
3061
+ 6932403739726712072
3062
+ 6815586672919530752
3063
+ 6815550496695356685
3064
+ 6815759453888007427
3065
+ 6815576666199297288
3066
+ 6816484174967491851
3067
+ 6815759487308172552
3068
+ 6815767290815122703
3069
+ 6815679346007674127
3070
+ 7027891245288574212
3071
+ 6949363527492668680
3072
+ 6949040102739823902
3073
+ 6948912063838227747
3074
+ 6949045076567870734
3075
+ 6948959854564297984
3076
+ 6949014726668078373
3077
+ 6948864565207747847
3078
+ 6949084147939855620
3079
+ 6901473856729386247
3080
+ 6809413617453206791
3081
+ 6809244629423099136
3082
+ 6809235327530568968
3083
+ 6809243862264057103
3084
+ 6806252071180913935
3085
+ 6861946693567401230
3086
+ 6839860769656524045
3087
+ 6775734701115165952
3088
+ 6952110582992538893
3089
+ 6952027582313270568
3090
+ 6871090374924897539
3091
+ 6803611700953189644
3092
+ 6849178857996684552
3093
+ 6849158025442266368
3094
+ 7027830682206473508
3095
+ 6922305501875260672
3096
+ 6888571174138268942
3097
+ 6888550517874773255
3098
+ 6889204096402803982
3099
+ 6888572108532714759
3100
+ 6889698714387008775
3101
+ 6889451691280813312
3102
+ 6737544416589876494
3103
+ 6738672123256114444
3104
+ 6864425749122780431
3105
+ 6864490065901423884
3106
+ 6864500261952556292
3107
+ 6938907422522182953
3108
+ 6937205315297398053
3109
+ 6935414800474246431
3110
+ 6940113892127395111
3111
+ 6924693693043674383
3112
+ 6924868145664757006
3113
+ 6925331872335580429
3114
+ 6926321497606851855
3115
+ 6950550689575669029
3116
+ 6829194493057600779
3117
+ 6890878727895502093
3118
+ 6644047531472850189
3119
+ 6949428522716843298
3120
+ 6920765266288725262
3121
+ 6872144626912988429
3122
+ 6806996372924009743
3123
+ 6849609968337865997
3124
+ 6851188079722564877
3125
+ 6849631989251788039
3126
+ 6849638472949566733
3127
+ 6922268931537358093
3128
+ 6870387870738156800
3129
+ 6870322803141283075
3130
+ 6870326454131969293
3131
+ 6870404305866853639
3132
+ 6870327383287762187
3133
+ 6960565409749765379
3134
+ 6870367454841834755
3135
+ 6870374324877020430
3136
+ 6870377974160444679
3137
+ 6870788655904984328
3138
+ 6851821668394962183
3139
+ 6851772433146318094
3140
+ 6851920487879019779
3141
+ 6851885248175754508
3142
+ 6851821768022248719
3143
+ 6851864407731981568
3144
+ 6851828536232267008
3145
+ 6851808452554099975
3146
+ 6852975594913746189
3147
+ 6881548700108295427
3148
+ 6881437296684518669
3149
+ 6808883778434436352
3150
+ 6911530033203006733
3151
+ 6831461586289396995
3152
+ 6909239651291237636
3153
+ 6940807933064236318
3154
+ 6721971212425202955
3155
+ 6839905080167222528
3156
+ 6839616162435747087
3157
+ 6991485354473786661
3158
+ 6839624117684161799
3159
+ 6839659012552789263
3160
+ 6839615011430681871
3161
+ 6839627815642615040
3162
+ 6863290362660719875
3163
+ 6685578903391620363
3164
+ 6848399544770776335
3165
+ 6770597144203250958
3166
+ 6938346281408466212
3167
+ 6841129702061509888
3168
+ 6955358950510349605
3169
+ 6961686581413514503
3170
+ 6852309889415646477
3171
+ 6852267252566281483
3172
+ 6852578029697387784
3173
+ 6852700651831512335
3174
+ 6852567165581741319
3175
+ 6852300806042012941
3176
+ 6852319073007586560
3177
+ 6882342391844490504
3178
+ 6790890575043235080
3179
+ 6787568547569650957
3180
+ 6794372223563058444
3181
+ 6787249642703719691
3182
+ 6792441400697867534
3183
+ 6790897675416964366
3184
+ 6786593293561105677
3185
+ 6788032365542296840
3186
+ 6788696561980378381
3187
+ 6813618614193671424
3188
+ 6852235416280501518
3189
+ 7027864292108160293
3190
+ 6851429465201937679
3191
+ 6852212985557978376
3192
+ 6965911626281127204
3193
+ 6851479660241358088
3194
+ 6851515766269889796
3195
+ 6851368542718283023
3196
+ 6851394454142602499
3197
+ 6852536109688294669
3198
+ 6851472103028329742
3199
+ 6877743588093054212
3200
+ 6877802933837188365
3201
+ 6799647050314075392
3202
+ 6799610199901588743
3203
+ 6799784527892925704
3204
+ 6799625871759133967
3205
+ 6799850000609283335
3206
+ 6799691151185071363
3207
+ 6799819319317400845
3208
+ 6799629050215222542
3209
+ 6861525249188515076
3210
+ 6933177280546000132
3211
+ 6933201747838110983
3212
+ 6933178054864997646
3213
+ 6933180011415391499
3214
+ 6933465249299336461
3215
+ 6933471077561601287
3216
+ 6933395999511645453
3217
+ 6933200635462470912
3218
+ 6934164747998874893
3219
+ 6873805237992393987
3220
+ 6873800821826522383
3221
+ 6874103148731059469
3222
+ 6873855139153825039
3223
+ 6873797503909711107
3224
+ 6873800780508417280
3225
+ 6795165747568987406
3226
+ 6799192419960179975
3227
+ 6911198150149655816
3228
+ 6790186788683042062
3229
+ 6793173281542343939
3230
+ 6797589588337528078
3231
+ 6845525542633049352
3232
+ 6922045706962324736
3233
+ 6696480086914256142
3234
+ 6695140584388185348
3235
+ 6818719238392433924
3236
+ 6819470101025131783
3237
+ 6696800873215003907
3238
+ 6873751654743821576
3239
+ 6872915896998825229
3240
+ 7020638488198532356
3241
+ 6873756007982583051
3242
+ 6873021279260249344
3243
+ 6601743307074702599
3244
+ 6601479301512563982
3245
+ 6766558246011407620
3246
+ 6961724093309668641
3247
+ 6959394593934822686
3248
+ 6959483308090658078
3249
+ 6797938572524670220
3250
+ 6797964261302816008
3251
+ 6797999399957007631
3252
+ 6797377024152423680
3253
+ 6795798663940541703
3254
+ 6861811404760960256
3255
+ 6862218894397017344
3256
+ 6916338968522951936
3257
+ 6916123088270773519
3258
+ 6916021122903362823
3259
+ 6916822355301895436
3260
+ 6916316720730803464
3261
+ 6916008038235196676
3262
+ 6916344845338414349
3263
+ 6915973753751047427
3264
+ 6917953707699145988
3265
+ 6916406430404775183
3266
+ 6916041256879623428
3267
+ 6915940919376203023
3268
+ 6712014841738956035
3269
+ 6792402142960323854
3270
+ 6756123326000778507
3271
+ 6704243435131522307
3272
+ 6806202016768019725
3273
+ 6806187842931297544
3274
+ 6730797013505445133
3275
+ 6714092438002208004
3276
+ 6715018056688536844
3277
+ 6703467766516698371
3278
+ 6703372956191493383
3279
+ 6712361417686666503
3280
+ 6961332961169952011
3281
+ 6961240655192427810
3282
+ 6961571213114215718
3283
+ 6961034313479605540
3284
+ 6792075572253052160
3285
+ 6792110699599482126
3286
+ 6792147220427803911
3287
+ 6792044637562440975
3288
+ 6792070099298831628
3289
+ 6792105846483602701
3290
+ 6792077540589702400
3291
+ 6792170863467744512
3292
+ 6603272419895414024
3293
+ 6601472765788687629
3294
+ 6865503736853237005
3295
+ 6974929500131953956
3296
+ 6937103576527375657
3297
+ 6810996687356611855
3298
+ 6810947122804935943
3299
+ 6839336420918824200
3300
+ 6838936556644879624
3301
+ 6801656706309868800
3302
+ 6838835953226763527
3303
+ 6838840500183715080
3304
+ 6838850287176830215
3305
+ 6790970387669863680
3306
+ 6838842973459844366
3307
+ 6921906373647240456
3308
+ 7027860017554525452
3309
+ 6966894118236720414
3310
+ 6789791388394409219
3311
+ 6789829510738021632
3312
+ 6789531100755545351
3313
+ 6789847051132783872
3314
+ 6789916586959555848
3315
+ 6789924810576186631
3316
+ 6789930053380623624
3317
+ 6951982118553668900
3318
+ 6787193354540174605
3319
+ 6965926598709218564
3320
+ 6787294190049971464
3321
+ 6787227223309946127
3322
+ 6787290216873872654
3323
+ 6787009027634121984
3324
+ 6787343711899553028
3325
+ 6772102020393356558
3326
+ 6738599202420509964
3327
+ 6965918690831355167
3328
+ 6738590331861830915
3329
+ 6881252546996948231
3330
+ 6818044692429556995
3331
+ 6965951577681169702
3332
+ 6931586349568888078
3333
+ 6843275177204256013
3334
+ 6843252591242071303
3335
+ 6787553211759873283
3336
+ 6787632205754633487
3337
+ 6787549212172111112
3338
+ 6787602239155490051
3339
+ 6787555980201708815
3340
+ 6965913986537639179
3341
+ 6787742879495228672
3342
+ 6787685019956563212
3343
+ 6787655112333561103
3344
+ 6787680294230117646
3345
+ 6787543516991081732
3346
+ 6787387569265970440
3347
+ 6927271093564656899
3348
+ 6926787983504936205
3349
+ 6926776011698736391
3350
+ 6926794377121516814
3351
+ 6928321333755432207
3352
+ 6926724468861652224
3353
+ 6926695531972480260
3354
+ 6926789867410083075
3355
+ 6926426825312783616
3356
+ 6753509142385822987
3357
+ 6758338671381974280
3358
+ 6752680685108071684
3359
+ 6753124687347305735
3360
+ 6863359952942058765
3361
+ 6753110694356471052
3362
+ 6753922528953011469
3363
+ 6752720428285889803
3364
+ 6797768585096858880
3365
+ 6824382577302850829
3366
+ 6862216481753533710
3367
+ 6862207569679699207
3368
+ 6862195533260410112
3369
+ 6916063467577330948
3370
+ 6916118198064614667
3371
+ 6862983978555641096
3372
+ 6864082334421945604
3373
+ 6837064784911846656
3374
+ 6975369232758394148
3375
+ 6967274962138729758
3376
+ 6959184453356801316
3377
+ 6849695034388892940
3378
+ 6752825528232824067
3379
+ 6936058260545916167
3380
+ 6920531891758140684
3381
+ 6925297643824467212
3382
+ 6559701594739313923
3383
+ 6933420613256105219
3384
+ 6877494103374892288
3385
+ 6991495026689772831
3386
+ 6865237619538676992
3387
+ 6865221230316784900
3388
+ 6865501394292526350
3389
+ 6865251877697752328
3390
+ 6865226364723662093
3391
+ 6865245516364598543
3392
+ 6710876082544971016
3393
+ 6841741058607467784
3394
+ 6711197973943995662
3395
+ 6711259008893766924
3396
+ 6931503676863286531
3397
+ 6931531858614308109
3398
+ 6931928657443278091
3399
+ 6931576389237820684
3400
+ 6931542913079921923
3401
+ 6965881145242275110
3402
+ 6931543679232380167
3403
+ 6931624845666946307
3404
+ 6931981226064481540
3405
+ 6931619431248334094
3406
+ 6956156697769479455
3407
+ 6961708155327778085
3408
+ 6707587902336978189
3409
+ 7027867727146618151
3410
+ 6723853150027025672
3411
+ 6723788368792014091
3412
+ 7018114996051741966
3413
+ 6724097760619957516
3414
+ 6724117106746559756
3415
+ 6724118889342455048
3416
+ 7000988717179473164
3417
+ 6723735765462830343
3418
+ 6883817894984092940
3419
+ 6953858743457156360
3420
+ 6862936331648044303
3421
+ 6862939793072852227
3422
+ 6863485221703060751
3423
+ 6862897682717953295
3424
+ 6849526244967533839
3425
+ 6849259405859425551
3426
+ 6849224773843701004
3427
+ 6849290675947638031
3428
+ 6866662937436769550
3429
+ 6723073099874503940
3430
+ 6723063742726245636
3431
+ 6723845660061273356
3432
+ 6602072754596351240
3433
+ 7027918320322006283
3434
+ 6787662250317581581
3435
+ 6766399412500581636
3436
+ 7013979030231764257
3437
+ 6893160337151937795
3438
+ 6790021335000157440
3439
+ 6843323742291070208
3440
+ 6812873029656333583
3441
+ 6670406765903023372
3442
+ 6670084100352658701
3443
+ 6838841950683155725
3444
+ 6851029739646373135
3445
+ 6936447217305701645
3446
+ 6842471217845275912
3447
+ 6975070371192048904
3448
+ 6970312853245021448
3449
+ 6833681241443732747
3450
+ 6923192287300177167
3451
+ 6969012155500875015
3452
+ 6684708736600263950
3453
+ 6965960306291920158
3454
+ 6920808542286908676
3455
+ 6920567446009105676
3456
+ 6920867079629360395
3457
+ 6920923163559791880
3458
+ 6920767246818151695
3459
+ 6920577560178937101
3460
+ 6920627427848817923
3461
+ 6920756696339975435
3462
+ 6921198227605802252
3463
+ 6920771371236609287
3464
+ 6841465100637883662
3465
+ 6841737153366543629
3466
+ 6842210280110296334
3467
+ 6841448512274566400
3468
+ 6842280784913550592
3469
+ 6841480420991732992
3470
+ 6841447480438131982
3471
+ 6957531501026151693
3472
+ 6951735061276396833
3473
+ 6807733941253049611
3474
+ 6749358587463650568
3475
+ 6749419787849436429
3476
+ 6749412337406561547
3477
+ 7018091209382006029
3478
+ 6749374182297013517
3479
+ 6749357657875860747
3480
+ 6749751267607727373
3481
+ 6782715640990928131
3482
+ 6807801964076846344
3483
+ 6807797821257944324
3484
+ 6807805174174813443
3485
+ 6863746837585743111
3486
+ 6807788935792610574
3487
+ 6807797641095810311
3488
+ 6807793752380427534
3489
+ 6826597464448044301
3490
+ 6800496422627167496
3491
+ 6800490872300375296
3492
+ 6861932604002815247
3493
+ 6859615228825488648
3494
+ 6861768212250414348
3495
+ 6833310225550888207
3496
+ 6906044096951962880
3497
+ 6833682141268725003
3498
+ 6832865186613955854
3499
+ 7020645364705266952
3500
+ 6832543786296511755
3501
+ 6832803460727966976
3502
+ 6833522718025977092
3503
+ 6832795749546298628
3504
+ 6832797631530421512
3505
+ 6833250358454652167
3506
+ 6752292050793729293
3507
+ 6838725076267961608
3508
+ 6838165218330152199
3509
+ 6838726978653179144
3510
+ 6701187302170823949
3511
+ 6693141851832159491
3512
+ 6908608281665654020
3513
+ 6718194044620573966
3514
+ 6691617960399817992
3515
+ 6717967309350243598
3516
+ 6768224569951014156
3517
+ 6891164044552654094
3518
+ 6964231333082057996
3519
+ 6650031791770062084
3520
+ 6656639426464206088
3521
+ 6816633821031648526
3522
+ 7023259885768887563
3523
+ 6826698976511757580
3524
+ 6850609978693274895
3525
+ 6894057371111296269
3526
+ 6862892636479573256
3527
+ 6850044532189351181
3528
+ 6850277640499186959
3529
+ 6917992142367395083
3530
+ 6723112787112971523
3531
+ 6882281700290759936
3532
+ 6883671782910463240
3533
+ 6882982930499554573
3534
+ 6883094325689863424
3535
+ 6882971449695472909
3536
+ 6944229377320160548
3537
+ 6766472450160053507
3538
+ 6766223276566957319
3539
+ 6791773291511188749
3540
+ 6919085706275032335
3541
+ 6919279875232681229
3542
+ 6919108069280484616
3543
+ 6921283686415486221
3544
+ 6919135551345970435
3545
+ 6844072655059062030
3546
+ 6849313247384915215
3547
+ 6916872376953179396
3548
+ 6914540564822166799
3549
+ 6831818591982144783
3550
+ 6908553412116303111
3551
+ 6691403747714764046
3552
+ 6751580201026620686
3553
+ 6891969449671265543
3554
+ 6860685482511060228
3555
+ 6860729619155324171
3556
+ 6860679897543773453
3557
+ 6965898464630738215
3558
+ 6860757306435489031
3559
+ 6860669771843751180
3560
+ 6860695821155896576
3561
+ 6860670563086519566
3562
+ 6849230937071291660
3563
+ 6849294162769071368
3564
+ 6854058194789010700
3565
+ 6868923781004496136
3566
+ 6870066869148093699
3567
+ 6868843771530841347
3568
+ 6867441948416855311
3569
+ 6870812791691939079
3570
+ 6898118038671871247
3571
+ 6898198499792407821
3572
+ 6898334205684632832
3573
+ 6716819704834428167
3574
+ 6843713648347680012
3575
+ 6998357222615043360
3576
+ 6844056515222031623
3577
+ 6593657216513871112
3578
+ 6796982473969503503
3579
+ 6796933052695186696
3580
+ 6833975172467313933
3581
+ 6796688776744750336
3582
+ 6797002300104674560
3583
+ 6796917456901246211
3584
+ 6797017288722648335
3585
+ 6729372447902043405
3586
+ 6727177281124551947
3587
+ 6856977912541859080
3588
+ 6791818457714380040
3589
+ 6791871959547383051
3590
+ 6803581739374595335
3591
+ 6791785443517140232
3592
+ 6792033909237435652
3593
+ 6791839171230174475
3594
+ 6791821286776507648
3595
+ 6533158683369540878
3596
+ 6533110785034423565
3597
+ 6799230700500356356
3598
+ 6796199374910262542
3599
+ 6799128458241920256
3600
+ 6799094002021829891
3601
+ 6799055618486357252
3602
+ 6799146716269448463
3603
+ 6799075872314756360
3604
+ 6799209008679947524
3605
+ 6799133159804931332
3606
+ 6965930318322748710
3607
+ 7020641226827287822
3608
+ 6813621650496490766
3609
+ 6813330207395630347
3610
+ 6813545633639681283
3611
+ 6805830554991250688
3612
+ 6805804945003105536
3613
+ 6805796789485145357
3614
+ 6807999964963163404
3615
+ 6808071882743483648
3616
+ 6872256828034534664
3617
+ 6872234972288142599
3618
+ 6872401891968453899
3619
+ 7015120983669394702
3620
+ 6872190351185087744
3621
+ 6869536675161263371
3622
+ 6867842242145504524
3623
+ 6868085481968651520
3624
+ 6867782011872955660
3625
+ 6732011912634125575
3626
+ 6831818405503454471
3627
+ 6686677511218220299
3628
+ 6748049832067255559
3629
+ 6947293595493731622
3630
+ 6881530799594753288
3631
+ 6881411791398735107
3632
+ 6577878573309234440
3633
+ 6860371441007791368
3634
+ 6894407646229695748
3635
+ 6943976360834534664
3636
+ 6926828154090687752
3637
+ 6852618779000671488
3638
+ 6813906455280897283
3639
+ 6852585647857749263
3640
+ 6854012967072075021
3641
+ 6854004597619494157
3642
+ 6854116310993964301
3643
+ 6853983235765046539
3644
+ 6843390911024565519
3645
+ 6843289161361804544
3646
+ 6843057578625273099
3647
+ 6921902933449772292
3648
+ 6629232297071611139
3649
+ 6846349799248235784
3650
+ 6620647874076085511
3651
+ 6844693085868264718
3652
+ 6844820372278283531
3653
+ 7027913877627079968
3654
+ 6968673100107926816
3655
+ 6943068255921753384
3656
+ 6717908479664786696
3657
+ 6841079945654062344
3658
+ 6841052715305520392
3659
+ 6841427191083945227
3660
+ 6841867097522392327
3661
+ 6841727790639893768
3662
+ 6841119584163073284
3663
+ 6991481644456676621
3664
+ 6841028074826468623
3665
+ 7020644854111767815
3666
+ 6831902410387066124
3667
+ 6831468204724948224
3668
+ 6991485572476980483
3669
+ 6902717793599261967
3670
+ 6901166862713801996
3671
+ 6901270721499106568
3672
+ 6901090507481451789
3673
+ 6901178173300493568
3674
+ 6901504979287231755
3675
+ 6901254564037594371
3676
+ 7013931633732488460
3677
+ 6910833474693762304
3678
+ 6638866344433421582
3679
+ 6628915429882465549
3680
+ 6890084856156507396
3681
+ 6921190861879397640
3682
+ 6951693546537717022
3683
+ 6878254834705779976
3684
+ 6917900060353236238
3685
+ 6971716110651493662
3686
+ 6773569899366288654
3687
+ 6808479201587383560
3688
+ 6961238020578102542
3689
+ 6959858468081749280
3690
+ 6959859820551851268
3691
+ 6959869106610916622
3692
+ 6959872435948735757
3693
+ 6944974457974934798
3694
+ 6851398612367183112
3695
+ 7018110043551730974
3696
+ 6835175832655351043
3697
+ 6916597493333527819
3698
+ 6916375091370642695
3699
+ 6932372049864232196
3700
+ 6916518350227098894
3701
+ 6896766740038962444
3702
+ 6896757248098307328
3703
+ 6896752604198604046
3704
+ 6746744077246647560
3705
+ 6863378128375516420
3706
+ 6863761687258959115
3707
+ 6807576349264399629
3708
+ 6807230416798354691
3709
+ 6807214103493496064
3710
+ 6807219837950037259
3711
+ 6780315764210535694
3712
+ 6998395315200052492
3713
+ 6909330899217747203
3714
+ 6684247203738930443
3715
+ 6891026845853027599
3716
+ 6890422257261268232
3717
+ 6890427735512976654
3718
+ 6876765823755668744
3719
+ 6877326059440786695
3720
+ 6814832612020915464
3721
+ 6815399447917251852
3722
+ 6815005209408867598
3723
+ 6814793030650875151
3724
+ 6991487803968277797
3725
+ 6814798640226258184
3726
+ 6815013686306983183
3727
+ 6814828317355642119
3728
+ 6814662807104130312
3729
+ 6815075604061326604
3730
+ 6814780576629787904
3731
+ 7027875776598936845
3732
+ 6991483840892095751
3733
+ 6812066199619308813
3734
+ 6960828951912566053
3735
+ 6954309525348420879
3736
+ 6954191380344261896
3737
+ 6954245815779036423
3738
+ 6954190991029030158
3739
+ 6954264510387490081
3740
+ 6954198654693477643
3741
+ 6961030643572690183
3742
+ 6956587789840289037
3743
+ 6789803250951474445
3744
+ 6790706866512022792
3745
+ 6756500081135930637
3746
+ 6728639810262617357
3747
+ 6882642585848909060
3748
+ 6865628083257494799
3749
+ 6747622732969643275
3750
+ 6836645255509527816
3751
+ 6747986346847128839
3752
+ 6747963814236409102
3753
+ 6856364710351179022
3754
+ 7018122433488096524
3755
+ 6868192450385546504
3756
+ 6873385637454630158
3757
+ 6917937816848633102
3758
+ 6888241047726607630
3759
+ 6887904016806841600
3760
+ 6887912884517571843
3761
+ 6901477164416371975
3762
+ 6999573895548308774
3763
+ 6679460647836601608
3764
+ 6965893452080909582
3765
+ 6896844772661677316
3766
+ 6896809184545787151
3767
+ 7027848974430227744
3768
+ 7027837603885911303
3769
+ 6897084425113242893
3770
+ 6897119580481801476
3771
+ 6897412643976498440
3772
+ 6808030057936719117
3773
+ 6808025819265518851
3774
+ 6808038875227770125
3775
+ 6808045764657384704
3776
+ 6808063383045197070
3777
+ 6894424143358430472
3778
+ 6894624393306098952
3779
+ 6862165913668439309
3780
+ 6789888904431471884
3781
+ 6991495137964608782
3782
+ 6777562645106150656
3783
+ 6777670369743506701
3784
+ 6777523912323403016
3785
+ 6777376906376416520
3786
+ 6777377636827041038
3787
+ 6753186330311740684
3788
+ 6754534988223450371
3789
+ 6755760910272335116
3790
+ 6965956531066014988
3791
+ 6965922698803383555
3792
+ 6805240788998524168
3793
+ 6872302397465660675
3794
+ 6797622943372365067
3795
+ 6798519495628442880
3796
+ 6857772901957946637
3797
+ 6797281756828503304
3798
+ 6891166905764302084
3799
+ 6931891737308777741
3800
+ 6909004283170147591
3801
+ 6867718792600980749
3802
+ 6763150823938690318
3803
+ 6816651986570661134
3804
+ 6816658765379652875
3805
+ 6819119145527872768
3806
+ 7027884729215094020
3807
+ 6787389570875936000
3808
+ 6935338635327704335
3809
+ 6935367039263477023
3810
+ 6935635261191654691
3811
+ 6935639703148432675
3812
+ 6935979374269254949
3813
+ 6935628072678952230
3814
+ 6935617923834776845
3815
+ 6935347643501612302
3816
+ 6935680362815311134
3817
+ 6976103540099910949
3818
+ 6941179995440073998
3819
+ 3xyrmsa99e4kqhi
3820
+ 3xr9z4a2euei2kk
3821
+ 3x3chuj8nhc47uw
3822
+ 3xed6sthrk9xjj6
3823
+ 3xrk9wt6mvupyzi
3824
+ 3x6mik8fhwdfy22
3825
+ 3xwz5b2yrwzk4aq
3826
+ 3xb5zsmtm53c49m
3827
+ 3xwn3cfueznqjag
3828
+ 3x2btceauwuicmq
3829
+ 3xwej5gfvj7dk42
3830
+ 3xfdm8r68fbhkmc
3831
+ 3x8q576we5iycna
3832
+ 3xk9hfna852igqi
3833
+ 3xxpaf5hjpsb4hs
3834
+ 3xec2tg4va63kvg
3835
+ 3xchybk5ctsdg32
3836
+ 3x9k2629d3hhprm
3837
+ 3xh4gfkidbxuink
3838
+ 3xuc88zq4cyk5zs
3839
+ 3xkarx952igja9s
3840
+ 3xcrsj8vuutz9ms
3841
+ 3xpa7zcrqb7y9ae
3842
+ 3xuskj5xfkmgias
3843
+ 3xxhewhe8g8w9v4
3844
+ 3xu977khz35sipa
3845
+ 3x5hcenysbs57ck
3846
+ 3x9dv2t6kwf45we
3847
+ 3xmbkaqc8zavfwq
3848
+ 3xe9qisa3jqmju9
3849
+ 3x6empvmuai65ci
3850
+ 3xdypr2mia2fs69
3851
+ 3xe83eqthe63p59
3852
+ 3xpmq86nvkmim74
3853
+ 3x9bj2pk8uqafds
3854
+ 3xwr2vb8kr66yxq
3855
+ 3xqfpu5fe22ncdu
3856
+ 3xxz8k2xv5a4vus
3857
+ 3xpuhre9xyv6qtm
3858
+ 3x3jxftb49znrhi
3859
+ 3xn9dj9fvbrfsz2
3860
+ 3xic7kwhfqj4qzg
3861
+ 3xdf4wn23aki6ci
3862
+ 3xdpy97qz539uhk
3863
+ 3xpadqjbmbh7t6s
3864
+ 3x5zdivqbv3ig3m
3865
+ 3xtvsdipskycdkq
3866
+ 3xxqtqisfdhnyq6
3867
+ 3xwais9i694b6ru
3868
+ 3x2qfjm5xf234he
3869
+ 3x4e5f9ym6b3fbk
3870
+ 3xc889p8v3gq5ni
3871
+ 3x69pe5mhab2xsw
3872
+ 3xzeu8j8b25cjqk
3873
+ 3xnaset8jwnyeby
3874
+ 3x6j7pgexvx9yqy
3875
+ 3x9gxn3g9ubui4k
3876
+ 3xrzrtn3kdc2ggg
3877
+ 3xescaef8dqyqye
3878
+ 3xxiuxa7kzhhmam
3879
+ 3xg5v47re8efc4m
3880
+ 3xz3hmxxzdsmvvq
3881
+ 3xttjaazuua5qdu
3882
+ 3xei7kz89xdf5ja
3883
+ 3xix3xusnh9k536
3884
+ 3x7nt3rmar4fgkk
3885
+ 3xh7penfq6teck2
3886
+ 3x6vwx6hgtcckfe
3887
+ 3x87t8ywvvkg98a
3888
+ 3x85bbfn3a7xzza
3889
+ 3x66csnnhkzspp4
3890
+ 3xi7j5x3yfnd95y
3891
+ 3xa2xdx6xjkqbn6
3892
+ 3xmfngcjhkf8v2u
3893
+ 3xfxbvx96t8exwi
3894
+ 3x8cni5a4bdv692
3895
+ 3xmubejmewb3aqy
3896
+ 3xb4f8ixc7mcfs4
3897
+ 3xi54gmx9fsucii
3898
+ 3xhnq4zkfef7ei4
3899
+ 3x6qiykm79uuibw
3900
+ 3xnt2qj955tp79w
3901
+ 3xiqf9ynj4rteci
3902
+ 3x9yakjnpve9pg4
3903
+ 3x8xiugejvmptf2
3904
+ 3xup3xc7d32xtsw
3905
+ 3xwebu3zygidrk6
3906
+ 3x6gdhd96a2snze
3907
+ 3xdmk8qckjkm4k4
3908
+ 3x6mys8ucuhcy9w
3909
+ 3xiibw3b8djvzee
3910
+ 3x8cdude385tekc
3911
+ 3x6tybqfhhcg4g4
3912
+ 3xkg7wzztx2zgew
3913
+ 3ximtbz88hvkcjy
3914
+ 3x9kr4wp45qw53y
3915
+ 3xa8ufmmy6tt46g
3916
+ 3xkuqgu5f44jke9
3917
+ 3x4uszp4feumkzq
3918
+ 3xzii8htr2xwmqk
3919
+ 3x2436bjspkxb99
3920
+ 3x89nyhjrvzwu4w
3921
+ 3xtzy3by3ktdzky
3922
+ 3xn6itkb8szn66a
3923
+ 3xi77n5k9ik2sm6
3924
+ 3xayp4zdg46bvjg
3925
+ 3xszmvkij5m7jm2
3926
+ 3x622i8qqv825ym
3927
+ 3xx8pezfpp78dyq
3928
+ 3xwvuy6vamau8x6
3929
+ 3xivnmiqbuamnus
3930
+ 3x5k4ukqiff2shm
3931
+ 3x97r2jhzyvk3c4
3932
+ 3xj9fhazb88ia7g
3933
+ 3x45cr87xn8vvec
3934
+ 3xzxwfc65txdf4m
3935
+ 3xi7c26x8b2n8xm
3936
+ 3x2btk3372e8fiq
3937
+ 3x7uvc8sb6xsdjk
3938
+ 3xf4u9sitpxktha
3939
+ 3xn6gmb5bjasree
3940
+ 3x3y4f829ya9d29
3941
+ 3xedwtbe3rn3unk
3942
+ 3x9wcf3mzgc7kuw
3943
+ 3xg75yhzg7bnzni
3944
+ 3xrm7b56m78ymde
3945
+ 3x5qke7rpucqpq6
3946
+ 3x45yhhr2hgr8y6
3947
+ 3xf3wg2qak5kvfy
3948
+ 3x9f3hnsdu3n9j2
3949
+ 3xk3m9n8dqnnk2k
3950
+ 3xhq44e6tbqy2w9
3951
+ 3x4zj7hyemptkvm
3952
+ 3xvbezw3vh7xxuy
3953
+ 3xmg6t4bhuc378e
3954
+ 3xz86kniwnn6y4a
3955
+ 3xg4mjmusrkj3m6
3956
+ 3xizwd4e7x7f73q
3957
+ 3xrrjc6tqt4t5a6
3958
+ 3xdfyyaakq5s7fg
3959
+ 3xhexdg3cfkzahy
3960
+ 3xzr8tc3yjan4ns
3961
+ 3xv6kabdrej5z9g
3962
+ 3xcmty3vtsatcki
3963
+ 3x35hgy2xetggua
3964
+ 3x8p9urjt96ac6g
3965
+ 3x5aidy7n7r83cw
3966
+ 3xfic7vvpyd7fxs
3967
+ 3xnnt4cw8qcu5fq
3968
+ 3xrhpucvbx3mbhe
3969
+ 3xbchctc5i6a8jc
3970
+ 3xrs7pys2vnizzg
3971
+ 3xaehza769v2igy
3972
+ 3xmkg8gh4drysa2
3973
+ 3xfdiy36tdkhtgy
3974
+ 3xeds7pwzvhvhqg
3975
+ 3xsjj9m95rtg632
3976
+ 3xhwbmh8jb374ni
3977
+ 3xpsykb4fi2hfa2
3978
+ 3xfg6tucm6cxxv2
3979
+ 3xbmpqvt5ae97ci
3980
+ 3xnswjde2jp96x9
3981
+ 3xtv8krm6zpvh8y
3982
+ 3xkws3vq5f55hxq
3983
+ 3x7m98cncgw25b4
3984
+ 3x5ednv2v7uggb6
3985
+ 3xsrwisvpm4brig
3986
+ 3x87jbq2nhw3qze
3987
+ 3xwey2mvigwxs3m
3988
+ 3x3rbargqjidhyq
3989
+ 3xh9u9wh4hu9wnc
3990
+ 3x5jcn6stnye28u
3991
+ 3xshbr8t8f2x6bs
3992
+ 3xxtzkpexabzngw
3993
+ 3x3kfma3ff6v5mw
3994
+ 3xutqv3t3wgs5h4
3995
+ 3xrdt2ia84kfdsk
3996
+ 3x3m25vpe7hnvhc
3997
+ 3xenrbhf9hryq4q
3998
+ 3x87uxtcwbgsx8k
3999
+ 3xyzbxjqjnb3tk2
4000
+ 3xv5yabnciy5agu
4001
+ 3xd88zg29sgpxde
4002
+ 3xk54x9mqy56dcq
FakeVD/dataset/data-split/temporal/vid_time3_val.txt ADDED
@@ -0,0 +1,773 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 6989433418803186975
2
+ 6989576732403698985
3
+ 6989496406260157703
4
+ 6989484416708005152
5
+ 6989445925752163591
6
+ 6989551730866359564
7
+ 6989452227056258318
8
+ 6989424478283435301
9
+ 6996961870460505352
10
+ 7013643268407741709
11
+ 3xhtptauynmdupm
12
+ 3xj7w4vyyuumr3e
13
+ 3xkv582e67xapjm
14
+ 7000396692839271694
15
+ 7016216852875562271
16
+ 7007029125328178468
17
+ 6987686503098895647
18
+ 6988490986850651425
19
+ 6987628050611588367
20
+ 6988277007628897571
21
+ 6992447450963365128
22
+ 6993691653328489739
23
+ 6984169828995042574
24
+ 6998826355425086756
25
+ 6981097615320468743
26
+ 6988313422119177506
27
+ 7008076204368596255
28
+ 7000288201763982623
29
+ 6992380774750244126
30
+ 6996465978309643527
31
+ 6996888663145696516
32
+ 6988367031007464743
33
+ 6988347682641202465
34
+ 6988347102770335012
35
+ 6988364635367886087
36
+ 6988350632432356616
37
+ 6988332678042995976
38
+ 6988355207474187528
39
+ 6988342947431353604
40
+ 6988376220043955494
41
+ 6988345870337051934
42
+ 6988384134892703012
43
+ 6984397462026997026
44
+ 6991335890241015078
45
+ 6993190210511146243
46
+ 7000560277502659875
47
+ 7000948535936011557
48
+ 7007294950069013775
49
+ 7004612252749794567
50
+ 7004044204104092935
51
+ 7008532276556434726
52
+ 6989623502961757473
53
+ 7007256255601331471
54
+ 7001292102290132262
55
+ 6983145466733120775
56
+ 6979842981633215755
57
+ 6980156179301387533
58
+ 7012049416127270184
59
+ 6998054384126954752
60
+ 6983341699493874983
61
+ 7003652634578046222
62
+ 7016925919562501389
63
+ 6978378060353539341
64
+ 6990172593567321374
65
+ 7014507425130761479
66
+ 7005217766269619469
67
+ 7003774950452497703
68
+ 7005708253988506894
69
+ 7006505596249738530
70
+ 7007335568988212515
71
+ 7007025077606714635
72
+ 7000551278275300608
73
+ 6992166958540148004
74
+ 6998697010668784910
75
+ 6992174785912425736
76
+ 7013334169975606561
77
+ 7013527137529384226
78
+ 7013535575290481950
79
+ 7013491373680758050
80
+ 7013493792384797982
81
+ 7005542053106961677
82
+ 7010731047281331489
83
+ 7008360046098746664
84
+ 6991423203205713160
85
+ 6994992929060277507
86
+ 6992536341691010304
87
+ 6992104868131458337
88
+ 6993172696712482062
89
+ 6993667558448696589
90
+ 6993897539623800100
91
+ 6989987731669617957
92
+ 6991877895970884896
93
+ 7009133406340631842
94
+ 6981724915720310057
95
+ 7016082793277033758
96
+ 7000613000121945351
97
+ 7001004084434078976
98
+ 6998453571247164685
99
+ 7002406832895577383
100
+ 7001135709012741410
101
+ 7001496580188572961
102
+ 6997617707092856064
103
+ 6979490643181620516
104
+ 6992930408786644258
105
+ 6984729526995586345
106
+ 7011798479798324520
107
+ 6988105022747807011
108
+ 6988040278133296419
109
+ 7005031876503014692
110
+ 7003880241902947615
111
+ 7004324389533633830
112
+ 7004593652139855143
113
+ 7004401905539566885
114
+ 7013640580437658919
115
+ 7007951328680971555
116
+ 7004610133938425129
117
+ 7003640350795435298
118
+ 6984060939821714691
119
+ 7003565889027067175
120
+ 6989209196025728259
121
+ 7009640844173085956
122
+ 6989542437265935629
123
+ 6987344677544398113
124
+ 6991221279806229797
125
+ 6981376202854370600
126
+ 6978447063453273352
127
+ 7009610933437746468
128
+ 7012512283138018564
129
+ 7012408088154115362
130
+ 7012365954877295885
131
+ 7012836080856681736
132
+ 7013557383226051872
133
+ 7004711785823472936
134
+ 6988806768662957312
135
+ 6988492921263787300
136
+ 7008903037779479849
137
+ 7002498473455045902
138
+ 6994985239529426206
139
+ 6994715205578149152
140
+ 6990601021982543104
141
+ 7003940340956761381
142
+ 7015592826054479138
143
+ 7014880697168973094
144
+ 7009838697545813260
145
+ 6987965120089525516
146
+ 7016158173178481928
147
+ 6992864494305217792
148
+ 7007322146288504096
149
+ 6986771327285726500
150
+ 7010799760575647006
151
+ 7011714515356159246
152
+ 7016886917191044392
153
+ 6999789925893737735
154
+ 7001836155834567968
155
+ 7007602560160877859
156
+ 7000724523041541414
157
+ 6995176277158169870
158
+ 7007543428665838852
159
+ 7015120049664970023
160
+ 7012774343679724841
161
+ 7007553697945324803
162
+ 7016712547759967523
163
+ 6991420442137447687
164
+ 7003606994833771806
165
+ 6994584141287165219
166
+ 6989014784683429124
167
+ 7002792013359811870
168
+ 7002772527424589092
169
+ 6988569067028303141
170
+ 6988398931788975391
171
+ 6988524874654289184
172
+ 7003283121558899999
173
+ 6988731721214594308
174
+ 6988654591785061672
175
+ 6988083209904934179
176
+ 7009103145875819817
177
+ 7012226315784899881
178
+ 7011435340359552268
179
+ 7015866922952641800
180
+ 7010716223960812834
181
+ 7012377268827802895
182
+ 6998925550685261067
183
+ 6999202660243033351
184
+ 7001793175912205608
185
+ 7013676560733556004
186
+ 7013619339924360483
187
+ 7013648410569936166
188
+ 7013637183722507533
189
+ 7014124247391931688
190
+ 7013617655517056293
191
+ 7013628745391033614
192
+ 7013606549541227807
193
+ 6980163382900952352
194
+ 6980688326005214476
195
+ 6986508597135969576
196
+ 6989245926250532137
197
+ 6988731395401059591
198
+ 6988823542125137192
199
+ 6988822051410742561
200
+ 6981017729503431973
201
+ 7001781542766775583
202
+ 6993132366109641988
203
+ 7000234313220476167
204
+ 7015944426862152963
205
+ 7009449459268537637
206
+ 7012550052149349671
207
+ 6993680509851192615
208
+ 6997255056294677791
209
+ 6993695176057277704
210
+ 6991053959905479948
211
+ 7004708327485754660
212
+ 7006471084102978851
213
+ 6988682262237793550
214
+ 6988446831701282080
215
+ 6988470819655666956
216
+ 6996975047013354793
217
+ 6996149984123014411
218
+ 6996960184220339496
219
+ 6996180288422415656
220
+ 6990274939051986206
221
+ 7002009621653130496
222
+ 6979582520740318497
223
+ 6985499664539831593
224
+ 6986149633626049796
225
+ 6985718689903545641
226
+ 7016653111951478027
227
+ 7016295347622366504
228
+ 6988475024562720033
229
+ 6997215310415662375
230
+ 6988717281333251335
231
+ 6988500375594749214
232
+ 6990396523871767844
233
+ 6989223095152217356
234
+ 7016857783479979301
235
+ 6998450830852541708
236
+ 6998644293661429003
237
+ 6998418311407062272
238
+ 6998757889745718536
239
+ 6998537799976619295
240
+ 6998441704458161444
241
+ 6998682545118367013
242
+ 7012839691653369118
243
+ 6998348900516039971
244
+ 7002137220622699812
245
+ 7002483964787035422
246
+ 7002790840036822286
247
+ 7003220612894199078
248
+ 7003139927860907271
249
+ 7002881545740586251
250
+ 6988362750644784423
251
+ 6990508795952713000
252
+ 3xbvqhdas3sb89s
253
+ 3xdn98c7ghbj74c
254
+ 3xx4yy4qwzfmc8w
255
+ 3xf849a5v87bxnw
256
+ 3x2qdx6vwrnaeqy
257
+ 3xhucc7we6iihi9
258
+ 3x565u5rqzmdk2k
259
+ 3xyv9ycbzi426r4
260
+ 3xumtzkn6772xci
261
+ 3xwkd4bdkd3yft4
262
+ 3x8ft3yny3j9nqs
263
+ 3xesx39h9s7x9bw
264
+ 3xbp92npgu2ppeu
265
+ 3xcvxd8bvp5xys2
266
+ 3x9d6k674j8newk
267
+ 3xh3bvqxk5dzyag
268
+ 3xngtmpr3darssi
269
+ 3x7rav9yzk3whvw
270
+ 3xhjur3q2exjqw9
271
+ 3xu6chvjsunkf5e
272
+ 3xhhpqq7hw82wqy
273
+ 3x65sbt4v37rncy
274
+ 3xknypu3m4w37g2
275
+ 3xttzee8t79whbi
276
+ 3xritiscbi6w5jm
277
+ 3x27f5qs8sye8jy
278
+ 3x29qa3tdevpjby
279
+ 3x2j4qjgpky2tfw
280
+ 3x3r8a3maezknyw
281
+ 3x3tsjvcbd8wzpi
282
+ 3x44qdubkgakpya
283
+ 3x47nmzxjjrrxjw
284
+ 3x4f6tcsx5eg5me
285
+ 3x4wzqhpf2pr23u
286
+ 3x5bsx7my8yx29u
287
+ 3x5x5miprkvphbw
288
+ 3x67v5cyrwg7ifq
289
+ 3x6wgga2ph3jxza
290
+ 3x6x7szqy97ixya
291
+ 3x6zszjue2kspb9
292
+ 3x7269wyyimyzm4
293
+ 3x7f6bxg4j46cdk
294
+ 3x83d33mbekpx9e
295
+ 3x83zw7z59qpfx9
296
+ 3x8w26udth22cu2
297
+ 3xadc32fxiy998g
298
+ 3xafa6w6iksyr9u
299
+ 3xahzbnw59bgiv2
300
+ 3xcub57ub6j9jus
301
+ 3xcv2rrgq6hxs6q
302
+ 3xdhivth2efuws9
303
+ 3xdipwd5nde7586
304
+ 3xf9bm4943xu8z2
305
+ 3xfdxig3uwizb8c
306
+ 3xffg69x86g3sy9
307
+ 3xfqd2936x56sa6
308
+ 3xg97d5m8rgd4eq
309
+ 3xh38ex6a5q7fp4
310
+ 3xh3yqpexshcm3y
311
+ 3xhcrgpx67qcxy4
312
+ 3xhqddfy9c767cc
313
+ 3xiibwtmpm2ddc6
314
+ 3xiickbjafrcsjm
315
+ 3xj5igrhtitfruq
316
+ 3xj847b9ksyfiu2
317
+ 3xjm82mkej2cppc
318
+ 3xkc68r7sikqn6w
319
+ 3xkw4nmdf2aqaai
320
+ 3xmefydzub9tuj6
321
+ 3xmiinxjrd4pa69
322
+ 3xmquur95nbnq6e
323
+ 3xne59yy72ac7ms
324
+ 3xnju8srvdbjgwa
325
+ 3xnq42svbhe8sg4
326
+ 3xnuy4rkufkecmm
327
+ 3xpe7ec2c8vxbqc
328
+ 3xpvqxh8jt8fsvg
329
+ 3xqf9t4tsqbgw5w
330
+ 3xqgjjvh67txs3w
331
+ 3xr8w76sn8v8uhq
332
+ 3xrrssc3euy6gvy
333
+ 3xrt92ujdh8b9ti
334
+ 3xs2zix577c8dt4
335
+ 3xs4zww7ccki8y2
336
+ 3xtcj6m7jy4dec4
337
+ 3xtrxrpz8cvkpt2
338
+ 3xtzz8mxtfz4wc4
339
+ 3xubjmdsfgj26m4
340
+ 3xubrwrx6ik7eyk
341
+ 3xv86srjimxszvy
342
+ 3xvdy99nxdp8agm
343
+ 3xvh3yfxgn2sude
344
+ 3xvivcpu8atrg3i
345
+ 3xvme6jhzggeckc
346
+ 3xvqu8etsfb5rbu
347
+ 3xxtwntdnjjduwi
348
+ 3xyssmnfkp3zvh2
349
+ 3xyu78psjmtc77k
350
+ 3xzgybrcpf8zwfm
351
+ 3xzsm73a8bw4t5s
352
+ 6977934327946464548
353
+ 6978451541418069281
354
+ 6978466384560803103
355
+ 6978679609512529159
356
+ 6978809243185073423
357
+ 6979087409996664071
358
+ 6979954800599371039
359
+ 6980603426870742279
360
+ 6982133029397482789
361
+ 6982426156553260301
362
+ 6983295000121511208
363
+ 6984057954035109150
364
+ 6984321731674541319
365
+ 6984415781287169291
366
+ 6984420646168169736
367
+ 6984709257069399309
368
+ 6984730768262188301
369
+ 6984774738744790285
370
+ 6984780877502942499
371
+ 6985123823758675230
372
+ 6985148688599452959
373
+ 6985416918224129284
374
+ 6986257142642691342
375
+ 6986540295076859144
376
+ 6986561598680878372
377
+ 6986823108564897065
378
+ 6986831637665402148
379
+ 6987023271656967428
380
+ 6987030561093192972
381
+ 6987545166991084813
382
+ 6987554046303407391
383
+ 6987652076654316830
384
+ 6987692817392979233
385
+ 6987694426378358030
386
+ 6987756426290531624
387
+ 6987765025024773380
388
+ 6987926512364277007
389
+ 6987961460941016334
390
+ 6987976900471770399
391
+ 6987990211426815245
392
+ 6988011078420647198
393
+ 6988028759072967940
394
+ 6988034393491246350
395
+ 6988058857863941383
396
+ 6988085268494552356
397
+ 6988160063231888675
398
+ 6988303473049734437
399
+ 6988319574223555847
400
+ 6988355283214929155
401
+ 6988398982594596103
402
+ 6988417863581256990
403
+ 6988436971450371342
404
+ 6988463734175943967
405
+ 6988538403017035044
406
+ 6988539797950319908
407
+ 6988633278005644578
408
+ 6988648445850455335
409
+ 6988655021533564168
410
+ 6988658583508487432
411
+ 6988677562289458432
412
+ 6988685306669092129
413
+ 6988686083613543716
414
+ 6988722921858518276
415
+ 6988727422384344333
416
+ 6988748341433601287
417
+ 6988749025277136159
418
+ 6988767219563941157
419
+ 6988778497846152488
420
+ 6988783850839133471
421
+ 6988795106719468808
422
+ 6989050946466630920
423
+ 6989054254346456327
424
+ 6989056563323358501
425
+ 6989068562510007590
426
+ 6989072004984999199
427
+ 6989073697432816933
428
+ 6989095482073025806
429
+ 6989144378392497415
430
+ 6989233489522527503
431
+ 6989478568946388260
432
+ 6989484406104689957
433
+ 6989553415466634509
434
+ 6989830805723811076
435
+ 6989838370146979083
436
+ 6989865099649355048
437
+ 6989873964189240584
438
+ 6989879848529333512
439
+ 6989906160413445406
440
+ 6990227614799514891
441
+ 6990231897909562635
442
+ 6990235515492502787
443
+ 6990242302790880543
444
+ 6990245576285768997
445
+ 6990259339986603276
446
+ 6990259916208393486
447
+ 6990277053945777439
448
+ 6990277333823343879
449
+ 6990288935809273120
450
+ 6990315589604625703
451
+ 6990642579951947038
452
+ 6991047652259499275
453
+ 6991063619983166733
454
+ 6991271392138317059
455
+ 6991315650144767269
456
+ 6991483878930124044
457
+ 6992030934585347336
458
+ 6992068947063459085
459
+ 6992111449275501838
460
+ 6992127030460501255
461
+ 6992154335161486600
462
+ 6992188699207339305
463
+ 6992396704175639849
464
+ 6992530636137352481
465
+ 6992786592934956325
466
+ 6992805039286930729
467
+ 6992868961725599008
468
+ 6992870723819801887
469
+ 6993940443503365383
470
+ 6994408225005145378
471
+ 6994735251490704675
472
+ 6994787235748924703
473
+ 6995034911715495181
474
+ 6995042411118333215
475
+ 6995111532946328845
476
+ 6995183568620195103
477
+ 6995453847942499615
478
+ 6995458080293031198
479
+ 6995471139426274571
480
+ 6995926599174507783
481
+ 6996208267248536865
482
+ 6996260709923425574
483
+ 6997606856353008911
484
+ 6998461234035150117
485
+ 6998866339808955659
486
+ 7000946768321989901
487
+ 7002013336548297992
488
+ 7002783251727142174
489
+ 7002787673081449741
490
+ 7002792398082411790
491
+ 7003174376501693704
492
+ 7003323274218261790
493
+ 7003588006300896519
494
+ 7003597350492982565
495
+ 7003604300123442436
496
+ 7003633195887381797
497
+ 7003728090253774115
498
+ 7004128355888958753
499
+ 7004304973991365919
500
+ 7004371861605764365
501
+ 7005070507431169288
502
+ 7005715166004268323
503
+ 7006256451161214221
504
+ 7006550296226712862
505
+ 7006966963960286477
506
+ 7007318985393851678
507
+ 7007607583020240164
508
+ 7007625423093796132
509
+ 7007689008151055630
510
+ 7007696528345173252
511
+ 7007725023771331844
512
+ 7008191125190151439
513
+ 7008243555298774285
514
+ 7008444285003648291
515
+ 7008444769395281165
516
+ 7008543910867848479
517
+ 7008759062632434944
518
+ 7009442450586520843
519
+ 7009810928149548318
520
+ 7010563690705538335
521
+ 7010619156492061965
522
+ 7010720850617879845
523
+ 7011347681729629448
524
+ 7012816937730313502
525
+ 7012823302880185607
526
+ 7012842517238533406
527
+ 7012901246478667011
528
+ 7012977027187821838
529
+ 7013170559047568673
530
+ 7013226060045110558
531
+ 7013533576759086366
532
+ 7013592085433535785
533
+ 7013641819443563810
534
+ 7013654980955557150
535
+ 7013670245978148132
536
+ 7014037343271177485
537
+ 7014771785946172676
538
+ 7015088065521683744
539
+ 7015088330807217416
540
+ 7015397821289352455
541
+ 7015413269745700134
542
+ 7015504911643299108
543
+ 7015819288053402912
544
+ 7015912615247383815
545
+ 7016269741698354467
546
+ 7016541340636941599
547
+ 7016544513078431006
548
+ 7020632717368888615
549
+ 7015202113118620959
550
+ 6989547032058875144
551
+ 6989541145835621632
552
+ 3x3665kxn7w2ta6
553
+ 3xsvi2h3yqbv6ak
554
+ 6978712054056111394
555
+ 6994719783769902366
556
+ 6989896036709829895
557
+ 6988696286669163814
558
+ 6988721320443858190
559
+ 6989077653521206564
560
+ 6989128960202296609
561
+ 6989066521876253984
562
+ 6985038171369213220
563
+ 6985340825995578655
564
+ 6985418535661030686
565
+ 6982837789981199620
566
+ 6979431537439804675
567
+ 6995175214296419592
568
+ 7012795113373994275
569
+ 6985460372656360718
570
+ 6985778997154123043
571
+ 6985828770481540388
572
+ 7012560184845274376
573
+ 7010713814769388841
574
+ 6985171993607949598
575
+ 6985415411915377960
576
+ 6989122943116741919
577
+ 6985410472111541534
578
+ 6988730177106791688
579
+ 6988961508529065224
580
+ 6988675439631797512
581
+ 6989087827808029966
582
+ 6986534708200869133
583
+ 6984722695246187791
584
+ 6984714535508708649
585
+ 6986087792380022030
586
+ 6985040821099711779
587
+ 6985039130690342180
588
+ 6985070566512282887
589
+ 6985074182656675102
590
+ 6986283794873535747
591
+ 6984335281902177540
592
+ 7000286374658067742
593
+ 7005517016425696551
594
+ 7001733023242685730
595
+ 7000365514274999559
596
+ 7005158631259802894
597
+ 7000323040957467940
598
+ 7000590689583025412
599
+ 7008192506793905442
600
+ 6998403864667950373
601
+ 7002934975695785229
602
+ 6988363802492308772
603
+ 6988328883036654855
604
+ 6988265709788843271
605
+ 6988157324527439136
606
+ 7006174117300817192
607
+ 7001820598901017856
608
+ 6988666769787325733
609
+ 6988533578246147358
610
+ 6988507083100458244
611
+ 6989044780927864100
612
+ 6988502550131608846
613
+ 6988493829875813644
614
+ 6988877168315092237
615
+ 6989230274286505223
616
+ 6983501462441577735
617
+ 6983461700552953126
618
+ 6983493122789543182
619
+ 6995809692031208717
620
+ 6988843334437489950
621
+ 6982495627968040199
622
+ 7004364385879706884
623
+ 7010565935555677448
624
+ 7010690139517242654
625
+ 7012504350744464654
626
+ 6989159538079321352
627
+ 7010377197328305443
628
+ 6992504568466705677
629
+ 6998264200103546148
630
+ 6988868759876406532
631
+ 6996206890208251167
632
+ 6989005682024484137
633
+ 6989060500944424225
634
+ 6995054065151528228
635
+ 6995410327370304776
636
+ 6995124013987155236
637
+ 6995446519545580832
638
+ 6995799448039263527
639
+ 7011014853523492134
640
+ 7011020549832871179
641
+ 7011067025330048271
642
+ 7011015618052754696
643
+ 7011078517974666528
644
+ 7011099480573398302
645
+ 7011100223518805263
646
+ 7011127684596059431
647
+ 7010956818679598375
648
+ 7011041941697727782
649
+ 6993528130094763303
650
+ 7016914704752725263
651
+ 7015553248283217190
652
+ 7016168109925027106
653
+ 7013548667487423781
654
+ 6992522488815045925
655
+ 6991405664719473956
656
+ 6997292529616030979
657
+ 6997638901053590791
658
+ 6997354476185095428
659
+ 6997681180728413480
660
+ 6987255212268326174
661
+ 6987250779623099679
662
+ 6987299086055509284
663
+ 6987239986227580172
664
+ 6987155145125629198
665
+ 6987068815955856640
666
+ 6987074211915255054
667
+ 6987167360440470820
668
+ 6987269943318285575
669
+ 6994299672613457190
670
+ 6989192977625124127
671
+ 6998443161127243039
672
+ 6989194726918360360
673
+ 7016917914628459780
674
+ 6994736483995225384
675
+ 6984717399920561442
676
+ 7007324838620695849
677
+ 6998804603148029221
678
+ 7013610683375930656
679
+ 7001120093753117963
680
+ 7012927911468584228
681
+ 7013202227137465600
682
+ 7012889322860858661
683
+ 7013183704063429918
684
+ 7013196391501581608
685
+ 7012999037653732621
686
+ 7013187959037889805
687
+ 7013238471317884172
688
+ 7013277357838568736
689
+ 7013148682111569159
690
+ 6996469806635486499
691
+ 6987240652522179880
692
+ 6988024962309311777
693
+ 6987634397486812423
694
+ 6987293759205543180
695
+ 6987343694307396878
696
+ 6987189994980936999
697
+ 6987289704173407527
698
+ 6987338951585467687
699
+ 6988802654352739597
700
+ 7007038642271341831
701
+ 6988817977604853006
702
+ 7007295825713892639
703
+ 6988704735511530790
704
+ 6988717700398746910
705
+ 6991375428766141710
706
+ 6984348965202365726
707
+ 7006270525844639016
708
+ 7006998909260254495
709
+ 7006990709114883335
710
+ 7007690572982996239
711
+ 7007300231033343243
712
+ 7007244586905111840
713
+ 7007204828061437215
714
+ 7007273401526013197
715
+ 7007015295009262878
716
+ 7006988973381881124
717
+ 7012892455079054606
718
+ 6980739705507745039
719
+ 6980502388239076645
720
+ 7008405522030349598
721
+ 7007444518358256929
722
+ 6987583696945597704
723
+ 6994767955527552286
724
+ 7005007047766854951
725
+ 7016609006760267021
726
+ 7016264548525018404
727
+ 7016244744804207879
728
+ 7016289788491812126
729
+ 7016143714800258340
730
+ 7016189155830959374
731
+ 6981628375173500191
732
+ 6981385008921595166
733
+ 6981393104481897742
734
+ 7009653416536313088
735
+ 7009808880716860710
736
+ 7009669243214040360
737
+ 7003678106271730981
738
+ 7003984110536461608
739
+ 7013271930069454120
740
+ 7013276693343292702
741
+ 7013298773266910494
742
+ 7013328080789949731
743
+ 6998796781681151271
744
+ 6998759857868295455
745
+ 7003548840510950656
746
+ 7003600690048257316
747
+ 7003708537570348324
748
+ 6985053559876275491
749
+ 6985444431231077671
750
+ 6984680840756284712
751
+ 6984592880685845793
752
+ 6979542434015415588
753
+ 6989249951263919395
754
+ 3xhae2nb5zauym2
755
+ 3xffe5ccc587w8m
756
+ 3x889we27b5x66m
757
+ 3xzxj5g4ipuxajs
758
+ 3xghjkhs2cvupk2
759
+ 3xr4ig77fbwhn9e
760
+ 3xnw94dj3fmcztu
761
+ 3xjpdcaywncs5a2
762
+ 3x6inzb55at7vcq
763
+ 3xt67pft5fxj72m
764
+ 3xzademm6p8bavs
765
+ 3xvi3p9tgn6kzwu
766
+ 3xnkrpjqn83u3ke
767
+ 3xp73acpftqcwci
768
+ 3xrz3zshr9f4y8s
769
+ 3xz2cnpttneewfi
770
+ 3x4drgghzvdvi3k
771
+ 3xu2j24qcpvmpgq
772
+ 3xs5tnjjnigwbhi
773
+ 3x6mic55dwjzfb6
FakeVD/dataset/data.json ADDED
The diff for this file is too large to render. See raw diff
 
FakeVD/dataset/my_datajson/all_1.json ADDED
The diff for this file is too large to render. See raw diff
 
FakeVD/dataset/my_datajson/all_1_modified.json ADDED
The diff for this file is too large to render. See raw diff
 
FakeVD/dataset/my_datajson/missing_vids_test.txt ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 6998443161127243039
2
+ 6799647050314075392
3
+ 6953945680612298021
4
+ 6985053559876275491
5
+ 6985444431231077671
6
+ 6911959277749947662
7
+ 6872898807584066830
8
+ 6799723170103348495
9
+ 6799630403775859979
10
+ 6807576349264399629
11
+ 7028151349657242894
12
+ 6943976360834534664
13
+ 6890422869491354888
14
+ 6921198227605802252
15
+ 6670084100352658701
16
+ 6948406300065680675
17
+ 6864490065901423884
18
+ 7034493169253305607
19
+ 7039258154135342366
20
+ 6815399447917251852
21
+ 6876248127704255759
22
+ 7020642445767511334
23
+ 6862936331648044303
24
+ 7020726223252851998
25
+ 7051521837817269545
26
+ 6871968599158967563
27
+ 6915940919376203023
28
+ 6945841715328716046
29
+ 6952110582992538893
30
+ 7010690139517242654
31
+ 6959869106610916622
32
+ 6603272419895414024
33
+ 6601472765788687629
34
+ 6838835953226763527
35
+ 6838840500183715080
36
+ 6838850287176830215
37
+ 6816658765379652875
38
+ 6792110699599482126
39
+ 6792147220427803911
40
+ 6981393104481897742
41
+ 6985778997154123043
42
+ 6947154821598203148
43
+ 6815586672919530752
44
+ 6860669771843751180
45
+ 7000590689583025412
46
+ 6735318039601958152
47
+ 6991375428766141710
48
+ 6845525542633049352
49
+ 6797589588337528078
50
+ 6766399412500581636
51
+ 6922761154846592271
52
+ 6789386035236195599
53
+ 6894407646229695748
54
+ 6791839171230174475
55
+ 7034713552313126175
56
+ 6920765266288725262
57
+ 7018122433488096524
58
+ 6890878727895502093
59
+ 7052941172393774367
60
+ 6903101676173970696
61
+ 6944178066797235469
62
+ 6902998763892182272
63
+ 6814314607973354756
64
+ 6815091663300513027
65
+ 6865251877697752328
66
+ 6852482482604969223
67
+ 7002934975695785229
68
+ 6933465249299336461
69
+ 7027918320322006283
70
+ 6919135551345970435
71
+ 6729711347824659719
72
+ 6805796789485145357
73
+ 6792115740880276743
74
+ 6790975552841878791
75
+ 6935414800474246431
76
+ 6966855785523547422
77
+ 7023259885768887563
78
+ 6826698976511757580
79
+ 6863761687258959115
80
+ 6712361417686666503
81
+ 6756500081135930637
82
+ 6808038875227770125
83
+ 7040444501629947143
84
+ 7040693836997332258
85
+ 6863359952942058765
86
+ 6753110694356471052
87
+ 6753922528953011469
88
+ 6932403739726712072
89
+ 6815493038140427535
90
+ 6848399544770776335
91
+ 7040430639207714061
92
+ 6797286686633004302
93
+ 6797231836675312900
94
+ 6797584517885431053
95
+ 6860371441007791368
96
+ 6813545633639681283
97
+ 6790306029520358671
98
+ 6746458637138447623
99
+ 6896766740038962444
100
+ 6896752604198604046
101
+ 6872144626912988429
102
+ 6872234972288142599
103
+ 6873021279260249344
104
+ 7020727263180229888
105
+ 7029239969403112711
106
+ 6926724468861652224
107
+ 7009653416536313088
108
+ 7016264548525018404
109
+ 7016609006760267021
110
+ 6798063003444055311
111
+ 6988024962309311777
112
+ 6987338951585467687
113
+ 6787662250317581581
114
+ 6902717793599261967
115
+ 6901254564037594371
116
+ 6789888904431471884
117
+ 6797281756828503304
118
+ 6850277640499186959
119
+ 6874867342950649095
120
+ 6870404305866853639
121
+ 6960565409749765379
122
+ 6771052622569901319
123
+ 6961571213114215718
124
+ 6778845316692135175
125
+ 6654921390925319436
126
+ 6985038171369213220
127
+ 6849695034388892940
128
+ 6751580201026620686
129
+ 7020643786086763784
130
+ 6831818591982144783
131
+ 6843713648347680012
132
+ 6716819704834428167
133
+ 6813934868204948739
134
+ 6813972150479899908
135
+ 6813937528492559628
136
+ 6945723692513004836
137
+ 6792897575553879309
138
+ 6813280545036946692
139
+ 6808479201587383560
140
+ 6878254834705779976
141
+ 6923906958311427332
142
+ 6923859622524701967
143
+ 6991475682643692813
144
+ 6873385637454630158
145
+ 6831902410387066124
146
+ 6629232297071611139
147
+ 7024033337564007695
148
+ 6975102472469712162
149
+ 6696800873215003907
150
+ 7045954176899124488
151
+ 7046319176570375464
152
+ 6805240788998524168
153
+ 6766223276566957319
154
+ 6861787617369853187
155
+ 6861760820834061579
156
+ 6890827715792882952
157
+ 6999573895548308774
158
+ 6807943897050860814
159
+ 6954264510387490081
160
+ 6883035443248516355
161
+ 6884121331181292814
162
+ 6883002774582234383
163
+ 6841867097522392327
164
+ 6991481644456676621
165
+ 6995175214296419592
166
+ 6876042827638328590
167
+ 6883362164850101519
168
+ 6851821668394962183
169
+ 7006998909260254495
170
+ 7007204828061437215
171
+ 6839615011430681871
172
+ 6991485354473786661
173
+ 6849845731646360832
174
+ 7027913877627079968
175
+ 6949014726668078373
176
+ 7040301554716527907
177
+ 6723788368792014091
178
+ 6691617960399817992
179
+ 6994719783769902366
180
+ 6890449612604230926
181
+ 6787555980201708815
182
+ 6787742879495228672
183
+ 7047409022496017672
184
+ 6860809853275737344
185
+ 6922962079888559371
186
+ 6923462909842525448
187
+ 6988717700398746910
188
+ 7008192506793905442
189
+ 6834678060604820744
190
+ 6765587869026290956
191
+ 6988328883036654855
192
+ 6988265709788843271
193
+ 6794372223563058444
194
+ 6788032365542296840
195
+ 6994767955527552286
FakeVD/dataset/my_datajson/missing_vids_train.txt ADDED
@@ -0,0 +1,780 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 6782715640990928131
2
+ 6732011912634125575
3
+ 6799691151185071363
4
+ 6799625871759133967
5
+ 6799629050215222542
6
+ 6799610199901588743
7
+ 6953524165429267719
8
+ 6922496315255459084
9
+ 6807668777627454720
10
+ 6807968631360687375
11
+ 6808106877696740619
12
+ 6807787721994669316
13
+ 6988868759876406532
14
+ 6951982118553668900
15
+ 6855571163804863744
16
+ 6984680840756284712
17
+ 6979542434015415588
18
+ 6846555826107337997
19
+ 6845139126321302798
20
+ 6854700483416689934
21
+ 6805702587258653967
22
+ 6799651993712413952
23
+ 6799618970572836096
24
+ 6799618679307898125
25
+ 6800160905402338560
26
+ 6799632397999574285
27
+ 6800604345059511563
28
+ 6807230416798354691
29
+ 6807214103493496064
30
+ 6864082334421945604
31
+ 6862983978555641096
32
+ 7016168109925027106
33
+ 6849965766872173827
34
+ 6849888470937193728
35
+ 6849644048446278919
36
+ 6850019992428104974
37
+ 7020647242407120167
38
+ 6890353470595976459
39
+ 6890129922103201024
40
+ 6890417090755333380
41
+ 6898118038671871247
42
+ 6996469806635486499
43
+ 7027830682206473508
44
+ 6920567446009105676
45
+ 6920771371236609287
46
+ 6920867079629360395
47
+ 6920577560178937101
48
+ 6920923163559791880
49
+ 6920627427848817923
50
+ 6920808542286908676
51
+ 6670406765903023372
52
+ 6948391114630073611
53
+ 6984722695246187791
54
+ 6986087792380022030
55
+ 6985070566512282887
56
+ 6985074182656675102
57
+ 6986534708200869133
58
+ 6805489808991931663
59
+ 6796083454997024000
60
+ 6795912865799851264
61
+ 6921914834804116749
62
+ 6798700787246583040
63
+ 6792168758032026895
64
+ 6861946693567401230
65
+ 7047804013378538767
66
+ 7033967174477679885
67
+ 7033239918134578467
68
+ 7033220858864815373
69
+ 7033948294485249310
70
+ 7033301501661547806
71
+ 6814793030650875151
72
+ 6814662807104130312
73
+ 6814828317355642119
74
+ 6814780576629787904
75
+ 6815075604061326604
76
+ 6815005209408867598
77
+ 6815059537582755072
78
+ 6984348965202365726
79
+ 6884856957434367246
80
+ 6611022763593305357
81
+ 6878115211723689230
82
+ 6827409976156310791
83
+ 7012795113373994275
84
+ 6989159538079321352
85
+ 6709066288955690247
86
+ 6863485221703060751
87
+ 7020398566292213006
88
+ 7020413584433810722
89
+ 7020709911310978312
90
+ 6898294999373466893
91
+ 7052154339044986120
92
+ 6955662338825391397
93
+ 6937103576527375657
94
+ 6974929500131953956
95
+ 6871979527199821063
96
+ 6804855347765873920
97
+ 6805340083609144579
98
+ 6804778409202421007
99
+ 6888482101704903951
100
+ 6889070478149913871
101
+ 7050791880774241551
102
+ 6983501462441577735
103
+ 6995809692031208717
104
+ 6983461700552953126
105
+ 6916041256879623428
106
+ 6916344845338414349
107
+ 6916338968522951936
108
+ 6916316720730803464
109
+ 6819497693526641931
110
+ 6822119583529405710
111
+ 6821320387473755392
112
+ 6819870141019360512
113
+ 6821045174345518351
114
+ 6820230527493180684
115
+ 6821043905308445956
116
+ 6821054074159435012
117
+ 7027911935391780110
118
+ 6660797234772266243
119
+ 6952027582313270568
120
+ 6852319073007586560
121
+ 6852700651831512335
122
+ 6852309889415646477
123
+ 6852567165581741319
124
+ 6873855139153825039
125
+ 6873805237992393987
126
+ 6873797503909711107
127
+ 6808883778434436352
128
+ 6959859820551851268
129
+ 6959872435948735757
130
+ 6951735061276396833
131
+ 7032815054210731296
132
+ 6711197973943995662
133
+ 7018107870549970183
134
+ 6713699438918962440
135
+ 6838726978653179144
136
+ 6838725076267961608
137
+ 6921906373647240456
138
+ 6838936556644879624
139
+ 6839336420918824200
140
+ 7027884729215094020
141
+ 6819119145527872768
142
+ 6797768585096858880
143
+ 6865503736853237005
144
+ 6792077540589702400
145
+ 6792105846483602701
146
+ 6792170863467744512
147
+ 6792070099298831628
148
+ 6842055637803797768
149
+ 6981628375173500191
150
+ 6981385008921595166
151
+ 6985828770481540388
152
+ 7027828971857300775
153
+ 6947215803498417444
154
+ 7027834593717865758
155
+ 6947229316409216291
156
+ 6861811404760960256
157
+ 6953858743457156360
158
+ 6849638472949566733
159
+ 6851188079722564877
160
+ 6849609968337865997
161
+ 6849631989251788039
162
+ 6915999637065207055
163
+ 6916029513977613576
164
+ 6916020252455259407
165
+ 6915955190193540352
166
+ 6915956003733310728
167
+ 6838396696783834381
168
+ 6815759487308172552
169
+ 6815767290815122703
170
+ 6815550496695356685
171
+ 6816484174967491851
172
+ 6860695821155896576
173
+ 7005158631259802894
174
+ 7000323040957467940
175
+ 7001733023242685730
176
+ 6779036391969017096
177
+ 6743386932136414471
178
+ 6800188418136493320
179
+ 6806074889011825928
180
+ 7011020549832871179
181
+ 7010956818679598375
182
+ 6723845660061273356
183
+ 6723073099874503940
184
+ 6989128960202296609
185
+ 6988721320443858190
186
+ 6723112787112971523
187
+ 7007324838620695849
188
+ 6998804603148029221
189
+ 6882281700290759936
190
+ 6883671782910463240
191
+ 6882982930499554573
192
+ 6881411791398735107
193
+ 7022241756792081672
194
+ 6998759857868295455
195
+ 6998796781681151271
196
+ 6877326059440786695
197
+ 6876765823755668744
198
+ 6848497961396079886
199
+ 6848434790299864333
200
+ 6808071882743483648
201
+ 6807999964963163404
202
+ 6916518350227098894
203
+ 6916597493333527819
204
+ 6932372049864232196
205
+ 6790186788683042062
206
+ 6795165747568987406
207
+ 6799192419960179975
208
+ 6992504568466705677
209
+ 6922045706962324736
210
+ 6876061152921603335
211
+ 6935639703148432675
212
+ 6935680362815311134
213
+ 6935617923834776845
214
+ 6935628072678952230
215
+ 6935635261191654691
216
+ 6935367039263477023
217
+ 6935338635327704335
218
+ 6805483052119133453
219
+ 7051519784583728397
220
+ 7006174117300817192
221
+ 6845570754923203847
222
+ 7023313508917972261
223
+ 7038594783354359075
224
+ 6805829872481504520
225
+ 6771727162417483016
226
+ 6771300068696788232
227
+ 6771223353316461832
228
+ 6819227918212943104
229
+ 6841465100637883662
230
+ 6841737153366543629
231
+ 6841480420991732992
232
+ 7029459999575346444
233
+ 7031153271658040590
234
+ 7029398660622454046
235
+ 7029547154922310943
236
+ 6992376094531898635
237
+ 6789409807355989251
238
+ 6881437296684518669
239
+ 6857772860224720139
240
+ 6798717204176129294
241
+ 6798691277278825735
242
+ 6798879929468603652
243
+ 6798956295262096648
244
+ 6919042388237241608
245
+ 7019183807249108254
246
+ 7019203424432475395
247
+ 6791821286776507648
248
+ 6791871959547383051
249
+ 6792033909237435652
250
+ 6791785443517140232
251
+ 6803581739374595335
252
+ 6867441948416855311
253
+ 6868843771530841347
254
+ 6868923781004496136
255
+ 6749358587463650568
256
+ 6749751267607727373
257
+ 6749412337406561547
258
+ 6832795749546298628
259
+ 6833522718025977092
260
+ 6832803460727966976
261
+ 6833250358454652167
262
+ 6832543786296511755
263
+ 7020645364705266952
264
+ 6832865186613955854
265
+ 6833310225550888207
266
+ 6826597464448044301
267
+ 6894438260290964751
268
+ 7039270843121208584
269
+ 7034731648927255819
270
+ 7035612977793387812
271
+ 6966894118236720414
272
+ 6988802654352739597
273
+ 6959483308090658078
274
+ 6961724093309668641
275
+ 6877494103374892288
276
+ 6800490872300375296
277
+ 6800496422627167496
278
+ 6831818405503454471
279
+ 6950550689575669029
280
+ 7017625601167166751
281
+ 6829194493057600779
282
+ 6949428522716843298
283
+ 7029188960945589511
284
+ 6989230274286505223
285
+ 6703372956191493383
286
+ 6903330126805699844
287
+ 6903095981676465411
288
+ 6903365245734079748
289
+ 6991477279176101131
290
+ 7003678106271730981
291
+ 7003984110536461608
292
+ 7013328080789949731
293
+ 7013298773266910494
294
+ 7013276693343292702
295
+ 7013271930069454120
296
+ 7003600690048257316
297
+ 7003708537570348324
298
+ 7003548840510950656
299
+ 6641159939815378190
300
+ 6814432741958946063
301
+ 6815161754595642627
302
+ 6865221230316784900
303
+ 6865245516364598543
304
+ 6865237619538676992
305
+ 6991495026689772831
306
+ 6851828761348852999
307
+ 6956156697769479455
308
+ 6961708155327778085
309
+ 7027898967174204705
310
+ 7010713814769388841
311
+ 7018099873065028899
312
+ 7018060154117639432
313
+ 7018011675534101798
314
+ 7017854651475283233
315
+ 7017801758168648990
316
+ 6933178054864997646
317
+ 6934164747998874893
318
+ 6933200635462470912
319
+ 6933471077561601287
320
+ 6737544416589876494
321
+ 6834677872515435784
322
+ 6868085481968651520
323
+ 6867842242145504524
324
+ 6684247203738930443
325
+ 6891026845853027599
326
+ 6890422257261268232
327
+ 6890427735512976654
328
+ 6919279875232681229
329
+ 6919085706275032335
330
+ 6919108069280484616
331
+ 6730205068865424647
332
+ 6805804945003105536
333
+ 6792021786289622276
334
+ 6793581515826646287
335
+ 7039027275118972167
336
+ 6940113892127395111
337
+ 6982495627968040199
338
+ 6937205315297398053
339
+ 6834394371866103055
340
+ 6835558642318658829
341
+ 7027891245288574212
342
+ 6737510247499451656
343
+ 6970992334364347684
344
+ 6931586349568888078
345
+ 6984335281902177540
346
+ 6861525249188515076
347
+ 6985460372656360718
348
+ 6818044692429556995
349
+ 6969895125304626443
350
+ 6950201634651655437
351
+ 6656639426464206088
352
+ 6994736483995225384
353
+ 6964231333082057996
354
+ 6816633821031648526
355
+ 6984717399920561442
356
+ 6863378128375516420
357
+ 6883817894984092940
358
+ 7051483674377768199
359
+ 6739713098640379148
360
+ 6805075102808476939
361
+ 6737856627552161037
362
+ 6940833081607703822
363
+ 7031454072850894116
364
+ 6797938572524670220
365
+ 6795798663940541703
366
+ 6797377024152423680
367
+ 6797999399957007631
368
+ 6797964261302816008
369
+ 7029662763786046750
370
+ 7013979030231764257
371
+ 6854058194789010700
372
+ 6788381071135329551
373
+ 6872302397465660675
374
+ 6808045764657384704
375
+ 6808030057936719117
376
+ 6808025819265518851
377
+ 6808063383045197070
378
+ 6729372447902043405
379
+ 6727177281124551947
380
+ 6777376906376416520
381
+ 6777377636827041038
382
+ 6842471217845275912
383
+ 6838841950683155725
384
+ 6975070371192048904
385
+ 6851029739646373135
386
+ 6994299672613457190
387
+ 6969012155500875015
388
+ 6833681241443732747
389
+ 6985171993607949598
390
+ 6985415411915377960
391
+ 7040434586077105420
392
+ 6988730177106791688
393
+ 6988675439631797512
394
+ 6989087827808029966
395
+ 6991483840892095751
396
+ 6812066199619308813
397
+ 7027875776598936845
398
+ 6932393385017855244
399
+ 6932452023145155855
400
+ 7015101878870478092
401
+ 6932873121598885133
402
+ 6813923092897811716
403
+ 6989122943116741919
404
+ 6770597144203250958
405
+ 7051581860945644833
406
+ 6685578903391620363
407
+ 6791773291511188749
408
+ 6797330904890035471
409
+ 6797670636266212615
410
+ 6797409346381827339
411
+ 6797182551938141448
412
+ 6793099198360341764
413
+ 6792888144355167500
414
+ 6796890396719959304
415
+ 6790168988090371336
416
+ 6813621650496490766
417
+ 6813330207395630347
418
+ 7047432439307816192
419
+ 6814409751523233035
420
+ 6821677729226788108
421
+ 6827520616497679620
422
+ 6844331095178202368
423
+ 6844390680626793742
424
+ 6844043426170686733
425
+ 6844528060167900430
426
+ 6844712724732120327
427
+ 6844324970470919437
428
+ 6893390182687509763
429
+ 6789926310853496076
430
+ 7018083054820363552
431
+ 6790158463046601992
432
+ 6789948811964861696
433
+ 6789862722919058692
434
+ 6912079237662969102
435
+ 6852585647857749263
436
+ 6852618779000671488
437
+ 6926828154090687752
438
+ 6746398138585615623
439
+ 6746471793915170055
440
+ 6746403850749594894
441
+ 6991501055104126222
442
+ 6752292050793729293
443
+ 7013277357838568736
444
+ 7013183704063429918
445
+ 7013202227137465600
446
+ 7012999037653732621
447
+ 7013187959037889805
448
+ 6896757248098307328
449
+ 6746744077246647560
450
+ 7013931633732488460
451
+ 6997292529616030979
452
+ 6997354476185095428
453
+ 6686677511218220299
454
+ 6931624845666946307
455
+ 6931619431248334094
456
+ 6931981226064481540
457
+ 6931928657443278091
458
+ 6931542913079921923
459
+ 6872401891968453899
460
+ 6872256828034534664
461
+ 6768224569951014156
462
+ 6872915896998825229
463
+ 7020638488198532356
464
+ 6873751654743821576
465
+ 7001120093753117963
466
+ 6844072655059062030
467
+ 6849313247384915215
468
+ 6914540564822166799
469
+ 6916872376953179396
470
+ 6927271093564656899
471
+ 6928321333755432207
472
+ 7009808880716860710
473
+ 7016289788491812126
474
+ 7016244744804207879
475
+ 7016143714800258340
476
+ 7016189155830959374
477
+ 6798515331057913103
478
+ 6741328466110631181
479
+ 6989194726918360360
480
+ 6987189994980936999
481
+ 6987293759205543180
482
+ 7008405522030349598
483
+ 6980502388239076645
484
+ 7007444518358256929
485
+ 6747963814236409102
486
+ 6856364710351179022
487
+ 6747622732969643275
488
+ 6601795495725632776
489
+ 6601738553175051533
490
+ 7020372442556239108
491
+ 7020685349001235712
492
+ 7020327493135568158
493
+ 6901166862713801996
494
+ 6901090507481451789
495
+ 6901504979287231755
496
+ 6862165913668439309
497
+ 6660788747598040333
498
+ 6797622943372365067
499
+ 6857772901957946637
500
+ 6850044532189351181
501
+ 6850609978693274895
502
+ 7035539245003459880
503
+ 6862892636479573256
504
+ 6917992142367395083
505
+ 6849526244967533839
506
+ 6849290675947638031
507
+ 6849224773843701004
508
+ 6849259405859425551
509
+ 7024489170672405791
510
+ 6845187354110528776
511
+ 6844818233850072331
512
+ 6870367454841834755
513
+ 6870788655904984328
514
+ 6870377974160444679
515
+ 6870322803141283075
516
+ 6870327383287762187
517
+ 6807797641095810311
518
+ 6807801964076846344
519
+ 6863746837585743111
520
+ 6789791388394409219
521
+ 6789916586959555848
522
+ 6961240655192427810
523
+ 6961034313479605540
524
+ 7027849348595731720
525
+ 6964976187663846687
526
+ 6988666769787325733
527
+ 6988877168315092237
528
+ 6988493829875813644
529
+ 6988502550131608846
530
+ 6989044780927864100
531
+ 6988507083100458244
532
+ 6810249864878820623
533
+ 7000992974133939470
534
+ 6931891737308777741
535
+ 6811011407258094862
536
+ 6843323742291070208
537
+ 7027848974430227744
538
+ 7027837603885911303
539
+ 6897084425113242893
540
+ 6897119580481801476
541
+ 6756861769332903175
542
+ 6818838190401604879
543
+ 6975369232758394148
544
+ 6837064784911846656
545
+ 6752825528232824067
546
+ 7057138706146200840
547
+ 6991405664719473956
548
+ 6967274962138729758
549
+ 6814346432099667200
550
+ 6821776837266427144
551
+ 6998403864667950373
552
+ 7023676304637660446
553
+ 7023913788961230080
554
+ 6891969449671265543
555
+ 6995054065151528228
556
+ 6675680797694954763
557
+ 6960828951912566053
558
+ 6748049832067255559
559
+ 6947293595493731622
560
+ 6989249951263919395
561
+ 6805277630758210823
562
+ 6601743307074702599
563
+ 6813902497317489923
564
+ 6813920395746446595
565
+ 6813914791262883072
566
+ 6813861282865859852
567
+ 6813944479129619716
568
+ 6813887204625042688
569
+ 6814044469256621325
570
+ 6816625975036480771
571
+ 6806202016768019725
572
+ 6715018056688536844
573
+ 6730797013505445133
574
+ 6792402142960323854
575
+ 6798503970345143552
576
+ 6797605608674577678
577
+ 6797265622339177728
578
+ 6797362129050537223
579
+ 6793092358536744205
580
+ 6793126744271359246
581
+ 6814260029789588747
582
+ 6813252139440164111
583
+ 6921190861879397640
584
+ 6890084856156507396
585
+ 6951693546537717022
586
+ 6971716110651493662
587
+ 6924182159754267904
588
+ 6923403368471792907
589
+ 6924202569501920525
590
+ 6924240755338775822
591
+ 6942864805426416928
592
+ 6924263691001154830
593
+ 6923935118297959684
594
+ 6924132750555417864
595
+ 6868192450385546504
596
+ 6887912884517571843
597
+ 6887904016806841600
598
+ 7022088019901517092
599
+ 6937986118432345357
600
+ 6988817977604853006
601
+ 6944974457974934798
602
+ 6638866344433421582
603
+ 6628915429882465549
604
+ 6559701594739313923
605
+ 6991485572476980483
606
+ 6921902933449772292
607
+ 6620647874076085511
608
+ 7024747530642672937
609
+ 7024410573861293342
610
+ 7024330692058287395
611
+ 6828955068306427150
612
+ 6847625785881218317
613
+ 6822146399438638348
614
+ 6862207569679699207
615
+ 6862195533260410112
616
+ 7027867727146618151
617
+ 6707587902336978189
618
+ 6819470101025131783
619
+ 6818719238392433924
620
+ 7045606193452141837
621
+ 7046558613795605796
622
+ 7045580936322256158
623
+ 6944229377320160548
624
+ 6861857889590480128
625
+ 7027849254236441867
626
+ 6891204444520811784
627
+ 6890360409749064968
628
+ 6890886810281594116
629
+ 6890695267037842699
630
+ 6890730941820521731
631
+ 6890364946606001419
632
+ 6861932604002815247
633
+ 6679460647836601608
634
+ 6684708736600263950
635
+ 6879701440365989135
636
+ 6807564623181532416
637
+ 6809911531942202637
638
+ 6924693693043674383
639
+ 6926321497606851855
640
+ 6956587789840289037
641
+ 6954198654693477643
642
+ 6954191380344261896
643
+ 6851479660241358088
644
+ 6851368542718283023
645
+ 6851429465201937679
646
+ 6851394454142602499
647
+ 6851472103028329742
648
+ 6851515766269889796
649
+ 6852212985557978376
650
+ 7026358663065390348
651
+ 6987068815955856640
652
+ 6987299086055509284
653
+ 6987155145125629198
654
+ 6883733064015498500
655
+ 6883400207422197006
656
+ 6883007372814503172
657
+ 6882992354949598479
658
+ 6841119584163073284
659
+ 6982837789981199620
660
+ 7010377197328305443
661
+ 6843275177204256013
662
+ 6843057578625273099
663
+ 6843289161361804544
664
+ 6843390911024565519
665
+ 6889204096402803982
666
+ 6889451691280813312
667
+ 6888550517874773255
668
+ 6881878776549051656
669
+ 6863290362660719875
670
+ 6639551308707663117
671
+ 7036297725415050532
672
+ 7041107787190979848
673
+ 7041842334916545828
674
+ 6883465133973048584
675
+ 6883404288052202759
676
+ 6883462157791399183
677
+ 6883301375967546632
678
+ 6851828536232267008
679
+ 6852975594913746189
680
+ 6851885248175754508
681
+ 6851821768022248719
682
+ 6851808452554099975
683
+ 6851864407731981568
684
+ 7007015295009262878
685
+ 7007690572982996239
686
+ 7007300231033343243
687
+ 7007244586905111840
688
+ 7006988973381881124
689
+ 7007273401526013197
690
+ 6789803250951474445
691
+ 7039273612599250176
692
+ 7039277351741574435
693
+ 7039243135662165259
694
+ 7044820339284610319
695
+ 7048402405158849826
696
+ 6799209008679947524
697
+ 6799146716269448463
698
+ 6799094002021829891
699
+ 6799128458241920256
700
+ 6796199374910262542
701
+ 6799230700500356356
702
+ 6839624117684161799
703
+ 6839616162435747087
704
+ 6839659012552789263
705
+ 6839905080167222528
706
+ 7045134379881975051
707
+ 6849577913830952199
708
+ 6968673100107926816
709
+ 6810996687356611855
710
+ 6896331262399712526
711
+ 6896070752374623488
712
+ 6896300872611990795
713
+ 6896344156965309708
714
+ 7012504350744464654
715
+ 6948959854564297984
716
+ 6949045076567870734
717
+ 6949084147939855620
718
+ 6796917456901246211
719
+ 6796982473969503503
720
+ 6797017288722648335
721
+ 6796688776744750336
722
+ 6796933052695186696
723
+ 7051726184639499523
724
+ 7047041238498905347
725
+ 6724118889342455048
726
+ 7000988717179473164
727
+ 7054136830056271141
728
+ 7021086903294364964
729
+ 6701187302170823949
730
+ 6908608281665654020
731
+ 6787009027634121984
732
+ 6787193354540174605
733
+ 6787343711899553028
734
+ 6787294190049971464
735
+ 6787227223309946127
736
+ 7039205282525760776
737
+ 6890486208653315341
738
+ 6951934204426898703
739
+ 6884545191089360136
740
+ 6989896036709829895
741
+ 6766547180921670924
742
+ 6921909551386103047
743
+ 6909752479127194880
744
+ 6899336054558575872
745
+ 7020353840985804069
746
+ 6717908479664786696
747
+ 6787602239155490051
748
+ 6787387569265970440
749
+ 6787680294230117646
750
+ 6787685019956563212
751
+ 6787632205754633487
752
+ 6787549212172111112
753
+ 6787655112333561103
754
+ 6854004597619494157
755
+ 6854012967072075021
756
+ 6854116310993964301
757
+ 6853983235765046539
758
+ 6849230937071291660
759
+ 6849294162769071368
760
+ 6755760910272335116
761
+ 6989547032058875144
762
+ 6849127595091512576
763
+ 6848893667097316623
764
+ 6923095665010543872
765
+ 6922418369014582535
766
+ 6922657004334943495
767
+ 6922722737173695758
768
+ 7019211791964163340
769
+ 6923346063944404238
770
+ 6761998960384085251
771
+ 6988704735511530790
772
+ 6806996372924009743
773
+ 6988157324527439136
774
+ 6790890575043235080
775
+ 6792441400697867534
776
+ 6787249642703719691
777
+ 6894424143358430472
778
+ 6987583696945597704
779
+ 6894624393306098952
780
+ 7005007047766854951
FakeVD/dataset/my_datajson/test_1.json ADDED
The diff for this file is too large to render. See raw diff
 
FakeVD/dataset/my_datajson/test_1.txt ADDED
@@ -0,0 +1,545 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 6853696307836488973
2
+ 6998443161127243039
3
+ 6799647050314075392
4
+ 7009810928149548318
5
+ 6885912598605237507
6
+ 6953945680612298021
7
+ 6846256034172964111
8
+ 7015131742344350984
9
+ 6723367944341998852
10
+ 6846239194554060047
11
+ 6985053559876275491
12
+ 6985444431231077671
13
+ 6911959277749947662
14
+ 6872898807584066830
15
+ 6799533163812048136
16
+ 6800199936664292608
17
+ 6799723170103348495
18
+ 6799630403775859979
19
+ 6807576349264399629
20
+ 7039973983286054179
21
+ 6868092030178839815
22
+ 7031891728529394982
23
+ 7042498832483028257
24
+ 6692975444850986251
25
+ 6848416927472176391
26
+ 7028151349657242894
27
+ 6943976360834534664
28
+ 6890422869491354888
29
+ 7003728090253774115
30
+ 6711673130307423499
31
+ 6877782422897822990
32
+ 6650031854579698948
33
+ 6862706010994248975
34
+ 6921198227605802252
35
+ 6670084100352658701
36
+ 6670693135917632771
37
+ 6669681666606337291
38
+ 6670418901978959118
39
+ 6948406300065680675
40
+ 6864536647506185486
41
+ 6864470920677936399
42
+ 6864490065901423884
43
+ 6859606107627818254
44
+ 6693353542767463688
45
+ 6707438561051839756
46
+ 7034493169253305607
47
+ 7039258154135342366
48
+ 7027945823648435488
49
+ 6815399447917251852
50
+ 6702031746860453127
51
+ 7003774950452497703
52
+ 6610821466466290958
53
+ 6876248127704255759
54
+ 7000948535936011557
55
+ 6724073013362412807
56
+ 6773597400549444877
57
+ 6988539797950319908
58
+ 7020642445767511334
59
+ 6862936331648044303
60
+ 7020726223252851998
61
+ 7051521837817269545
62
+ 6871968599158967563
63
+ 6804741575374015752
64
+ 6889304880939306253
65
+ 7037740090369625379
66
+ 6882376493612289295
67
+ 6900073008388459784
68
+ 7047031603356388621
69
+ 7034629754259098916
70
+ 6958612363197041931
71
+ 6915940919376203023
72
+ 6945841715328716046
73
+ 6958700705565658405
74
+ 6959153860627811597
75
+ 7047470404633480462
76
+ 6952110582992538893
77
+ 7010690139517242654
78
+ 6959869106610916622
79
+ 6603272419895414024
80
+ 6601472765788687629
81
+ 6662628773718019335
82
+ 6838792735034526991
83
+ 6838835953226763527
84
+ 6838840500183715080
85
+ 6838850287176830215
86
+ 6816658765379652875
87
+ 6796269202954095876
88
+ 6796892888799186187
89
+ 6796235429608688900
90
+ 6811243864851025156
91
+ 6789893745149086990
92
+ 6789943769178311948
93
+ 6973163491779726607
94
+ 6973132866595130663
95
+ 6973134961222143266
96
+ 6898627406563757316
97
+ 6792110699599482126
98
+ 6792147220427803911
99
+ 6981393104481897742
100
+ 6985778997154123043
101
+ 6947154821598203148
102
+ 6854428993400098062
103
+ 6849139091796282624
104
+ 6848892717498371336
105
+ 6932785250984660232
106
+ 6902612730855869703
107
+ 6916438087664962823
108
+ 6916754377227111688
109
+ 6916708434427530499
110
+ 6916680730785402119
111
+ 6838108232741866752
112
+ 6838517419460332813
113
+ 6838123554500889867
114
+ 6956876863784389895
115
+ 6883109921852804366
116
+ 6867356883720736011
117
+ 6722341983882333452
118
+ 6815586672919530752
119
+ 6860669771843751180
120
+ 7000590689583025412
121
+ 6806900594234854664
122
+ 7007725023771331844
123
+ 7036319814654151947
124
+ 6934516526846430464
125
+ 6855480621616221444
126
+ 6735318039601958152
127
+ 6995453847942499615
128
+ 6858865626597903624
129
+ 6847352943386053892
130
+ 6986823108564897065
131
+ 7043686053001186567
132
+ 6991375428766141710
133
+ 6845525542633049352
134
+ 6797589588337528078
135
+ 6658859333775838476
136
+ 6683804664594517251
137
+ 6771036010101918987
138
+ 7014124247391931688
139
+ 7013619339924360483
140
+ 6766399412500581636
141
+ 6958423364281175331
142
+ 6845443361369820430
143
+ 6999618607625866533
144
+ 6922761154846592271
145
+ 6714197602209926404
146
+ 6767485224801684747
147
+ 6894776905745042703
148
+ 6789386035236195599
149
+ 6789212420637232392
150
+ 6917532912292252943
151
+ 6741271306672622852
152
+ 6894407646229695748
153
+ 6791839171230174475
154
+ 6740095929317133582
155
+ 6891252687153663246
156
+ 7027992116609453350
157
+ 6894418284972641549
158
+ 7034713552313126175
159
+ 6693371163273399566
160
+ 6789764070896585997
161
+ 6920765266288725262
162
+ 6967251039728749855
163
+ 6966595257593007374
164
+ 7022452124336262414
165
+ 6966937438413491488
166
+ 6988655021533564168
167
+ 7004401905539566885
168
+ 6845109782538472711
169
+ 7018122433488096524
170
+ 6908248927825382664
171
+ 6800390134777842952
172
+ 6857760867765800195
173
+ 6890878727895502093
174
+ 7052941172393774367
175
+ 6903101676173970696
176
+ 6944178066797235469
177
+ 6902998763892182272
178
+ 7002483964787035422
179
+ 7002137220622699812
180
+ 6814314607973354756
181
+ 6815091663300513027
182
+ 6865251877697752328
183
+ 6775437618655005965
184
+ 6775001928356121870
185
+ 6594260302991199492
186
+ 6852322189618842888
187
+ 6852482482604969223
188
+ 7048883103657381159
189
+ 7010720850617879845
190
+ 6883425147680804100
191
+ 6883734332104510724
192
+ 7017611679143906568
193
+ 6838431310114016519
194
+ 6838420817282469120
195
+ 6838788578584169739
196
+ 7002934975695785229
197
+ 7017695556092890376
198
+ 6933465249299336461
199
+ 6992188699207339305
200
+ 6992030934585347336
201
+ 6737534985860893965
202
+ 7027918320322006283
203
+ 6656349042290724103
204
+ 6837080981480951040
205
+ 6922462128716729615
206
+ 6758599323153403147
207
+ 6919135551345970435
208
+ 6729711347824659719
209
+ 6844776403682987264
210
+ 6746916482405403911
211
+ 6805843004675443972
212
+ 6805796789485145357
213
+ 6792115740880276743
214
+ 6790975552841878791
215
+ 6935414800474246431
216
+ 6966855785523547422
217
+ 6873739404939136268
218
+ 6990242302790880543
219
+ 7015088330807217416
220
+ 6854043084150344974
221
+ 6853696390283922702
222
+ 6853680327718636813
223
+ 6853595702258420999
224
+ 6807588716341742861
225
+ 6810861641392000259
226
+ 6805904789029817614
227
+ 6796086977654557960
228
+ 7021306852726050052
229
+ 6819144347590593795
230
+ 6812356200517127428
231
+ 6863203977656405256
232
+ 6844116748266917124
233
+ 6819163384739646732
234
+ 6819209408438914317
235
+ 7023259885768887563
236
+ 6826698976511757580
237
+ 6863761687258959115
238
+ 7020637614898187524
239
+ 6890730826267413773
240
+ 6872882461475376392
241
+ 6749276397937757453
242
+ 7027894775168634148
243
+ 6821462506544991496
244
+ 6787931864230399247
245
+ 6753977989278567683
246
+ 6874376605016280328
247
+ 6871605448215186701
248
+ 6682302034592533768
249
+ 7001836155834567968
250
+ 6648940727432645901
251
+ 6712361417686666503
252
+ 6756500081135930637
253
+ 6808014560423906567
254
+ 6808038875227770125
255
+ 7027850535449464076
256
+ 7001781542766775583
257
+ 7016925919562501389
258
+ 7040444501629947143
259
+ 7040693836997332258
260
+ 7041471601153559815
261
+ 6877826756015852807
262
+ 6863359952942058765
263
+ 6753110694356471052
264
+ 6753922528953011469
265
+ 6932403739726712072
266
+ 7000990476274830629
267
+ 6815493038140427535
268
+ 6902244200536984835
269
+ 7027867462083398945
270
+ 6680486383200652551
271
+ 6940947333114875174
272
+ 6848399544770776335
273
+ 7040430639207714061
274
+ 6797286686633004302
275
+ 6797231836675312900
276
+ 6797584517885431053
277
+ 6791442371943910670
278
+ 6906310378238561549
279
+ 6860371441007791368
280
+ 6789411863441558799
281
+ 6789446985515601166
282
+ 6813545633639681283
283
+ 6836185591537863947
284
+ 6836184471495068936
285
+ 6836185378953694468
286
+ 6836172690861100303
287
+ 6795136003800567043
288
+ 6794816030641327363
289
+ 6894080336926346510
290
+ 7037720351664590120
291
+ 6790306029520358671
292
+ 7043587064008281358
293
+ 6746458637138447623
294
+ 6849580996883451150
295
+ 6848464753204006155
296
+ 6896766740038962444
297
+ 6896752604198604046
298
+ 6988398931788975391
299
+ 6882908970764242187
300
+ 6968671834694782219
301
+ 6968999140315450638
302
+ 6872144626912988429
303
+ 6872234972288142599
304
+ 6873021279260249344
305
+ 6872926439709134083
306
+ 6992447450963365128
307
+ 6802839353497242893
308
+ 6803138853226990855
309
+ 7020727263180229888
310
+ 7029239969403112711
311
+ 6926724468861652224
312
+ 6690045890444446988
313
+ 7009653416536313088
314
+ 7016264548525018404
315
+ 7016609006760267021
316
+ 6797925040911305987
317
+ 6798063003444055311
318
+ 6862496739316763908
319
+ 6988806768662957312
320
+ 6987692817392979233
321
+ 7015175549756673293
322
+ 6706693656956374276
323
+ 6706725685160955143
324
+ 7029969757415673119
325
+ 7044719543280848141
326
+ 6766248464813722893
327
+ 6766220299689053444
328
+ 6988024962309311777
329
+ 6987338951585467687
330
+ 6787662250317581581
331
+ 6601707759312309512
332
+ 6601845922928266500
333
+ 6902717793599261967
334
+ 6901254564037594371
335
+ 6752811707518749966
336
+ 6892957721037901056
337
+ 6789888904431471884
338
+ 6867119524294954248
339
+ 7050313098820947207
340
+ 6605897306417925389
341
+ 6797281756828503304
342
+ 6850277640499186959
343
+ 6736398192516107528
344
+ 6735787083878780173
345
+ 7053378834468474149
346
+ 6864820920872127758
347
+ 6849273789818113295
348
+ 6874867342950649095
349
+ 6848963030395522317
350
+ 6870404305866853639
351
+ 6960565409749765379
352
+ 6771052622569901319
353
+ 6867810873981897992
354
+ 6961571213114215718
355
+ 6969101155754364160
356
+ 6969113905746496806
357
+ 6969132100066839840
358
+ 6951679957756087565
359
+ 6930455911005834508
360
+ 6988783850839133471
361
+ 6988463734175943967
362
+ 6935430732693146888
363
+ 6917529077662453006
364
+ 7055532121758158112
365
+ 6810214757627481352
366
+ 6810247544216620303
367
+ 6824303959415557387
368
+ 6824790268290632968
369
+ 6778845316692135175
370
+ 6865979338509126912
371
+ 6908100104171883791
372
+ 6968679974110891300
373
+ 6654921390925319436
374
+ 6866641073729588494
375
+ 6858629768552713486
376
+ 6858057926506990862
377
+ 6985038171369213220
378
+ 6849695034388892940
379
+ 6972797607403932966
380
+ 6984774738744790285
381
+ 6751580201026620686
382
+ 7020643786086763784
383
+ 6962474748638940451
384
+ 6831818591982144783
385
+ 6765832813238357251
386
+ 6843713648347680012
387
+ 6716819704834428167
388
+ 7025167215913667851
389
+ 6901945767066455304
390
+ 6894435692538088707
391
+ 6812182561956089101
392
+ 6813934868204948739
393
+ 7037462720379211011
394
+ 7027674089112341795
395
+ 6897953983655136527
396
+ 6960880794919341352
397
+ 6813972150479899908
398
+ 6813937528492559628
399
+ 6993172696712482062
400
+ 6945723692513004836
401
+ 7010619156492061965
402
+ 7010563690705538335
403
+ 6838454773600111880
404
+ 6857772616908934404
405
+ 6792571347609505024
406
+ 6792897575553879309
407
+ 6589356071775636739
408
+ 6947308827322731779
409
+ 7036960164108324109
410
+ 6813280545036946692
411
+ 6808479201587383560
412
+ 6878254834705779976
413
+ 6923906958311427332
414
+ 6923859622524701967
415
+ 6991475682643692813
416
+ 7002009621653130496
417
+ 6873385637454630158
418
+ 6896798684684553487
419
+ 6986561598680878372
420
+ 6984709257069399309
421
+ 6706017108238683403
422
+ 6706877877868121352
423
+ 6709747277369445646
424
+ 6835438074969853195
425
+ 6940414747292486949
426
+ 6925768487881297165
427
+ 6988362750644784423
428
+ 6988376220043955494
429
+ 6999606918415273227
430
+ 6886334348988124430
431
+ 6831902410387066124
432
+ 6962513395006393637
433
+ 6907975848503135488
434
+ 6629232297071611139
435
+ 7024033337564007695
436
+ 7031123988202016039
437
+ 7030342786935246084
438
+ 7031865728416468236
439
+ 7008903037779479849
440
+ 7007029125328178468
441
+ 6975102472469712162
442
+ 7024060485381147918
443
+ 6809086139736034572
444
+ 6696800873215003907
445
+ 7045954176899124488
446
+ 7046319176570375464
447
+ 7048461958416305448
448
+ 6805240788998524168
449
+ 6766223276566957319
450
+ 6861787617369853187
451
+ 6861760820834061579
452
+ 6967239675295616293
453
+ 6890827715792882952
454
+ 7019229281704250662
455
+ 7010799760575647006
456
+ 7016886917191044392
457
+ 6905941408226528527
458
+ 6966646454219787560
459
+ 6862626165442514179
460
+ 6999573895548308774
461
+ 6807943897050860814
462
+ 6924525157621026055
463
+ 6974190748006681894
464
+ 6818180833631866120
465
+ 6818178781300165899
466
+ 6818211739641941259
467
+ 6954264510387490081
468
+ 6755327541562690829
469
+ 6883035443248516355
470
+ 6884121331181292814
471
+ 6882982172739783939
472
+ 6882958721719323916
473
+ 6883002774582234383
474
+ 6841867097522392327
475
+ 6991481644456676621
476
+ 6995175214296419592
477
+ 6841721529869323520
478
+ 6924308985721982221
479
+ 6876042827638328590
480
+ 6964344406887517471
481
+ 6888561950561684747
482
+ 6888873897144454403
483
+ 6883362164850101519
484
+ 6799438229041958147
485
+ 6799207729966681351
486
+ 6851821668394962183
487
+ 7006998909260254495
488
+ 7007204828061437215
489
+ 6839615011430681871
490
+ 6991485354473786661
491
+ 6849845731646360832
492
+ 6775705327359839488
493
+ 7027913877627079968
494
+ 7039192061043576100
495
+ 6904946721210617092
496
+ 6879725157846387975
497
+ 6968732100300180744
498
+ 6860312102125456644
499
+ 6927186101178502408
500
+ 6750084855222013188
501
+ 6949014726668078373
502
+ 7040301554716527907
503
+ 6720810902158970120
504
+ 7029478371427912973
505
+ 7029504216238427431
506
+ 6723476827882425608
507
+ 6723788368792014091
508
+ 6691617960399817992
509
+ 7002792398082411790
510
+ 6588370236414627085
511
+ 6843587287889087755
512
+ 6820699058919820556
513
+ 6815153433662770439
514
+ 6816561551626013967
515
+ 6994719783769902366
516
+ 6890449612604230926
517
+ 7015180893803351308
518
+ 6787555980201708815
519
+ 6787742879495228672
520
+ 7047409022496017672
521
+ 6860809853275737344
522
+ 6942046714337578253
523
+ 7030541499603455247
524
+ 6752403969139641612
525
+ 6755378886512495886
526
+ 6996961870460505352
527
+ 7032287848623639840
528
+ 6930202412284153102
529
+ 6848874136572349709
530
+ 6922962079888559371
531
+ 6923462909842525448
532
+ 6618027963864583427
533
+ 6988717700398746910
534
+ 7008192506793905442
535
+ 7008360046098746664
536
+ 6857423306220457230
537
+ 6857313418328689935
538
+ 6834678060604820744
539
+ 6765587869026290956
540
+ 6988328883036654855
541
+ 6979954800599371039
542
+ 6988265709788843271
543
+ 6794372223563058444
544
+ 6788032365542296840
545
+ 6994767955527552286
FakeVD/dataset/my_datajson/test_1_1.txt ADDED
@@ -0,0 +1,350 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 6853696307836488973
2
+ 7009810928149548318
3
+ 6885912598605237507
4
+ 6846256034172964111
5
+ 7015131742344350984
6
+ 6723367944341998852
7
+ 6846239194554060047
8
+ 6799533163812048136
9
+ 6800199936664292608
10
+ 7039973983286054179
11
+ 6868092030178839815
12
+ 7031891728529394982
13
+ 7042498832483028257
14
+ 6692975444850986251
15
+ 6848416927472176391
16
+ 7003728090253774115
17
+ 6711673130307423499
18
+ 6877782422897822990
19
+ 6650031854579698948
20
+ 6862706010994248975
21
+ 6670693135917632771
22
+ 6669681666606337291
23
+ 6670418901978959118
24
+ 6864536647506185486
25
+ 6864470920677936399
26
+ 6859606107627818254
27
+ 6693353542767463688
28
+ 6707438561051839756
29
+ 7027945823648435488
30
+ 6702031746860453127
31
+ 7003774950452497703
32
+ 6610821466466290958
33
+ 7000948535936011557
34
+ 6724073013362412807
35
+ 6773597400549444877
36
+ 6988539797950319908
37
+ 6804741575374015752
38
+ 6889304880939306253
39
+ 7037740090369625379
40
+ 6882376493612289295
41
+ 6900073008388459784
42
+ 7047031603356388621
43
+ 7034629754259098916
44
+ 6958612363197041931
45
+ 6958700705565658405
46
+ 6959153860627811597
47
+ 7047470404633480462
48
+ 6662628773718019335
49
+ 6838792735034526991
50
+ 6796269202954095876
51
+ 6796892888799186187
52
+ 6796235429608688900
53
+ 6811243864851025156
54
+ 6789893745149086990
55
+ 6789943769178311948
56
+ 6973163491779726607
57
+ 6973132866595130663
58
+ 6973134961222143266
59
+ 6898627406563757316
60
+ 6854428993400098062
61
+ 6849139091796282624
62
+ 6848892717498371336
63
+ 6932785250984660232
64
+ 6902612730855869703
65
+ 6916438087664962823
66
+ 6916754377227111688
67
+ 6916708434427530499
68
+ 6916680730785402119
69
+ 6838108232741866752
70
+ 6838517419460332813
71
+ 6838123554500889867
72
+ 6956876863784389895
73
+ 6883109921852804366
74
+ 6867356883720736011
75
+ 6722341983882333452
76
+ 6806900594234854664
77
+ 7007725023771331844
78
+ 7036319814654151947
79
+ 6934516526846430464
80
+ 6855480621616221444
81
+ 6995453847942499615
82
+ 6858865626597903624
83
+ 6847352943386053892
84
+ 6986823108564897065
85
+ 7043686053001186567
86
+ 6658859333775838476
87
+ 6683804664594517251
88
+ 6771036010101918987
89
+ 7014124247391931688
90
+ 7013619339924360483
91
+ 6958423364281175331
92
+ 6845443361369820430
93
+ 6999618607625866533
94
+ 6714197602209926404
95
+ 6767485224801684747
96
+ 6894776905745042703
97
+ 6789212420637232392
98
+ 6917532912292252943
99
+ 6741271306672622852
100
+ 6740095929317133582
101
+ 6891252687153663246
102
+ 7027992116609453350
103
+ 6894418284972641549
104
+ 6693371163273399566
105
+ 6789764070896585997
106
+ 6967251039728749855
107
+ 6966595257593007374
108
+ 7022452124336262414
109
+ 6966937438413491488
110
+ 6988655021533564168
111
+ 7004401905539566885
112
+ 6845109782538472711
113
+ 6908248927825382664
114
+ 6800390134777842952
115
+ 6857760867765800195
116
+ 7002483964787035422
117
+ 7002137220622699812
118
+ 6775437618655005965
119
+ 6775001928356121870
120
+ 6594260302991199492
121
+ 6852322189618842888
122
+ 7048883103657381159
123
+ 7010720850617879845
124
+ 6883425147680804100
125
+ 6883734332104510724
126
+ 7017611679143906568
127
+ 6838431310114016519
128
+ 6838420817282469120
129
+ 6838788578584169739
130
+ 7017695556092890376
131
+ 6992188699207339305
132
+ 6992030934585347336
133
+ 6737534985860893965
134
+ 6656349042290724103
135
+ 6837080981480951040
136
+ 6922462128716729615
137
+ 6758599323153403147
138
+ 6844776403682987264
139
+ 6746916482405403911
140
+ 6805843004675443972
141
+ 6873739404939136268
142
+ 6990242302790880543
143
+ 7015088330807217416
144
+ 6854043084150344974
145
+ 6853696390283922702
146
+ 6853680327718636813
147
+ 6853595702258420999
148
+ 6807588716341742861
149
+ 6810861641392000259
150
+ 6805904789029817614
151
+ 6796086977654557960
152
+ 7021306852726050052
153
+ 6819144347590593795
154
+ 6812356200517127428
155
+ 6863203977656405256
156
+ 6844116748266917124
157
+ 6819163384739646732
158
+ 6819209408438914317
159
+ 7020637614898187524
160
+ 6890730826267413773
161
+ 6872882461475376392
162
+ 6749276397937757453
163
+ 7027894775168634148
164
+ 6821462506544991496
165
+ 6787931864230399247
166
+ 6753977989278567683
167
+ 6874376605016280328
168
+ 6871605448215186701
169
+ 6682302034592533768
170
+ 7001836155834567968
171
+ 6648940727432645901
172
+ 6808014560423906567
173
+ 7027850535449464076
174
+ 7001781542766775583
175
+ 7016925919562501389
176
+ 7041471601153559815
177
+ 6877826756015852807
178
+ 7000990476274830629
179
+ 6902244200536984835
180
+ 7027867462083398945
181
+ 6680486383200652551
182
+ 6940947333114875174
183
+ 6791442371943910670
184
+ 6906310378238561549
185
+ 6789411863441558799
186
+ 6789446985515601166
187
+ 6836185591537863947
188
+ 6836184471495068936
189
+ 6836185378953694468
190
+ 6836172690861100303
191
+ 6795136003800567043
192
+ 6794816030641327363
193
+ 6894080336926346510
194
+ 7037720351664590120
195
+ 7043587064008281358
196
+ 6849580996883451150
197
+ 6848464753204006155
198
+ 6988398931788975391
199
+ 6882908970764242187
200
+ 6968671834694782219
201
+ 6968999140315450638
202
+ 6872926439709134083
203
+ 6992447450963365128
204
+ 6802839353497242893
205
+ 6803138853226990855
206
+ 6690045890444446988
207
+ 6797925040911305987
208
+ 6862496739316763908
209
+ 6988806768662957312
210
+ 6987692817392979233
211
+ 7015175549756673293
212
+ 6706693656956374276
213
+ 6706725685160955143
214
+ 7029969757415673119
215
+ 7044719543280848141
216
+ 6766248464813722893
217
+ 6766220299689053444
218
+ 6601707759312309512
219
+ 6601845922928266500
220
+ 6752811707518749966
221
+ 6892957721037901056
222
+ 6867119524294954248
223
+ 7050313098820947207
224
+ 6605897306417925389
225
+ 6736398192516107528
226
+ 6735787083878780173
227
+ 7053378834468474149
228
+ 6864820920872127758
229
+ 6849273789818113295
230
+ 6848963030395522317
231
+ 6867810873981897992
232
+ 6969101155754364160
233
+ 6969113905746496806
234
+ 6969132100066839840
235
+ 6951679957756087565
236
+ 6930455911005834508
237
+ 6988783850839133471
238
+ 6988463734175943967
239
+ 6935430732693146888
240
+ 6917529077662453006
241
+ 7055532121758158112
242
+ 6810214757627481352
243
+ 6810247544216620303
244
+ 6824303959415557387
245
+ 6824790268290632968
246
+ 6865979338509126912
247
+ 6908100104171883791
248
+ 6968679974110891300
249
+ 6866641073729588494
250
+ 6858629768552713486
251
+ 6858057926506990862
252
+ 6972797607403932966
253
+ 6984774738744790285
254
+ 6962474748638940451
255
+ 6765832813238357251
256
+ 7025167215913667851
257
+ 6901945767066455304
258
+ 6894435692538088707
259
+ 6812182561956089101
260
+ 7037462720379211011
261
+ 7027674089112341795
262
+ 6897953983655136527
263
+ 6960880794919341352
264
+ 6993172696712482062
265
+ 7010619156492061965
266
+ 7010563690705538335
267
+ 6838454773600111880
268
+ 6857772616908934404
269
+ 6792571347609505024
270
+ 6589356071775636739
271
+ 6947308827322731779
272
+ 7036960164108324109
273
+ 7002009621653130496
274
+ 6896798684684553487
275
+ 6986561598680878372
276
+ 6984709257069399309
277
+ 6706017108238683403
278
+ 6706877877868121352
279
+ 6709747277369445646
280
+ 6835438074969853195
281
+ 6940414747292486949
282
+ 6925768487881297165
283
+ 6988362750644784423
284
+ 6988376220043955494
285
+ 6999606918415273227
286
+ 6886334348988124430
287
+ 6962513395006393637
288
+ 6907975848503135488
289
+ 7031123988202016039
290
+ 7030342786935246084
291
+ 7031865728416468236
292
+ 7008903037779479849
293
+ 7007029125328178468
294
+ 7024060485381147918
295
+ 6809086139736034572
296
+ 7048461958416305448
297
+ 6967239675295616293
298
+ 7019229281704250662
299
+ 7010799760575647006
300
+ 7016886917191044392
301
+ 6905941408226528527
302
+ 6966646454219787560
303
+ 6862626165442514179
304
+ 6924525157621026055
305
+ 6974190748006681894
306
+ 6818180833631866120
307
+ 6818178781300165899
308
+ 6818211739641941259
309
+ 6755327541562690829
310
+ 6882982172739783939
311
+ 6882958721719323916
312
+ 6841721529869323520
313
+ 6924308985721982221
314
+ 6964344406887517471
315
+ 6888561950561684747
316
+ 6888873897144454403
317
+ 6799438229041958147
318
+ 6799207729966681351
319
+ 6775705327359839488
320
+ 7039192061043576100
321
+ 6904946721210617092
322
+ 6879725157846387975
323
+ 6968732100300180744
324
+ 6860312102125456644
325
+ 6927186101178502408
326
+ 6750084855222013188
327
+ 6720810902158970120
328
+ 7029478371427912973
329
+ 7029504216238427431
330
+ 6723476827882425608
331
+ 7002792398082411790
332
+ 6588370236414627085
333
+ 6843587287889087755
334
+ 6820699058919820556
335
+ 6815153433662770439
336
+ 6816561551626013967
337
+ 7015180893803351308
338
+ 6942046714337578253
339
+ 7030541499603455247
340
+ 6752403969139641612
341
+ 6755378886512495886
342
+ 6996961870460505352
343
+ 7032287848623639840
344
+ 6930202412284153102
345
+ 6848874136572349709
346
+ 6618027963864583427
347
+ 7008360046098746664
348
+ 6857423306220457230
349
+ 6857313418328689935
350
+ 6979954800599371039
FakeVD/dataset/my_datajson/test_1_modified.json ADDED
The diff for this file is too large to render. See raw diff
 
FakeVD/dataset/my_datajson/train_1.json ADDED
The diff for this file is too large to render. See raw diff
 
FakeVD/dataset/my_datajson/train_1.txt ADDED
@@ -0,0 +1,2130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 7041921581278416158
2
+ 6782715640990928131
3
+ 6671891732524829965
4
+ 6732011912634125575
5
+ 6799691151185071363
6
+ 6799625871759133967
7
+ 6799629050215222542
8
+ 6799610199901588743
9
+ 6799829298762059021
10
+ 6799592761499700494
11
+ 6989830805723811076
12
+ 7049184364088823053
13
+ 6886430430208298255
14
+ 6915359540363939080
15
+ 6804705458432003328
16
+ 6980603426870742279
17
+ 6731971438481394958
18
+ 6732370114181598477
19
+ 6975525474722270494
20
+ 7016544513078431006
21
+ 6993940443503365383
22
+ 6953524165429267719
23
+ 6922496315255459084
24
+ 6807668777627454720
25
+ 6807968631360687375
26
+ 6808106877696740619
27
+ 6807787721994669316
28
+ 7042975466105343271
29
+ 7036952898252639503
30
+ 6853306188751277324
31
+ 6988868759876406532
32
+ 6723527309363662083
33
+ 7028536210775723272
34
+ 6951982118553668900
35
+ 6808728377600511232
36
+ 6808542878009167107
37
+ 6808539046395038990
38
+ 6846278828227136781
39
+ 6846393271279783183
40
+ 6846279291731315981
41
+ 6846302822405803268
42
+ 6846303393753992448
43
+ 6855571163804863744
44
+ 6631908657430793476
45
+ 6984680840756284712
46
+ 6979542434015415588
47
+ 6846555826107337997
48
+ 6846696067157855501
49
+ 6845139126321302798
50
+ 6854700483416689934
51
+ 6799610832528477454
52
+ 6799481768757054733
53
+ 6799632132231728391
54
+ 6799592807204949259
55
+ 6799408811812736268
56
+ 6805702587258653967
57
+ 6799192188782742795
58
+ 6799214625020710144
59
+ 6799285650232282368
60
+ 6799871964044397832
61
+ 6799567742367255823
62
+ 6799842434990755079
63
+ 6799804611491302669
64
+ 6799630077681356032
65
+ 6799651993712413952
66
+ 6799618970572836096
67
+ 6799618679307898125
68
+ 6800160905402338560
69
+ 6799632397999574285
70
+ 6800604345059511563
71
+ 6810563817186036992
72
+ 6807230416798354691
73
+ 6807214103493496064
74
+ 7018071054258031876
75
+ 7003652634578046222
76
+ 6998054384126954752
77
+ 6804199355738869004
78
+ 6864082334421945604
79
+ 6862983978555641096
80
+ 7028054479111015692
81
+ 7016168109925027106
82
+ 6849965766872173827
83
+ 6849888470937193728
84
+ 6849644048446278919
85
+ 6850019992428104974
86
+ 6924506575486930176
87
+ 6852945157218766091
88
+ 6948678821382081799
89
+ 7034494607262059776
90
+ 6925389180478442756
91
+ 7060231048436665640
92
+ 6596996733048196360
93
+ 7019257441250544904
94
+ 6826694516725124363
95
+ 6829139570873863435
96
+ 6626546582256880904
97
+ 6875943585640975629
98
+ 6691237749439122702
99
+ 7023193130031713575
100
+ 7021444066311179560
101
+ 7023245555539184931
102
+ 7020647242407120167
103
+ 6890103435056647424
104
+ 6890353470595976459
105
+ 6891596634208210187
106
+ 6890129922103201024
107
+ 6890417090755333380
108
+ 6898118038671871247
109
+ 6996469806635486499
110
+ 6876084422584585472
111
+ 6921530276170550543
112
+ 6955367636876152077
113
+ 6998406307627699467
114
+ 6916048903624330500
115
+ 6962719307059006757
116
+ 7023287644146633995
117
+ 7015866922952641800
118
+ 7010716223960812834
119
+ 7027830682206473508
120
+ 6789799043749989639
121
+ 6920567446009105676
122
+ 6920771371236609287
123
+ 6920867079629360395
124
+ 6920577560178937101
125
+ 6920923163559791880
126
+ 6920627427848817923
127
+ 6920808542286908676
128
+ 6670406765903023372
129
+ 6948391114630073611
130
+ 6864447937779453198
131
+ 6868404806692719879
132
+ 6864585830682414336
133
+ 6864464104908803336
134
+ 6864421555695406347
135
+ 7044821798168399141
136
+ 6852515832187112712
137
+ 6944194124060888356
138
+ 6861501869743770894
139
+ 6984722695246187791
140
+ 6986087792380022030
141
+ 6985070566512282887
142
+ 6985074182656675102
143
+ 6986534708200869133
144
+ 6708285613214354691
145
+ 6720202003189894407
146
+ 6875710565008821504
147
+ 6694947747214265608
148
+ 6848005225207418120
149
+ 6848230767944813831
150
+ 6805489808991931663
151
+ 6796083454997024000
152
+ 6795912865799851264
153
+ 6921914834804116749
154
+ 6798700787246583040
155
+ 6792168758032026895
156
+ 6861946693567401230
157
+ 7047804013378538767
158
+ 7033967174477679885
159
+ 7033239918134578467
160
+ 7033220858864815373
161
+ 7033948294485249310
162
+ 7033301501661547806
163
+ 6992930408786644258
164
+ 7029590123297754371
165
+ 6814793030650875151
166
+ 6814662807104130312
167
+ 6814828317355642119
168
+ 6814780576629787904
169
+ 6815075604061326604
170
+ 6815005209408867598
171
+ 7007256255601331471
172
+ 6815059537582755072
173
+ 6984348965202365726
174
+ 6603693731239431431
175
+ 6609092980735216909
176
+ 6617393568547867908
177
+ 6683813797590863117
178
+ 7005708253988506894
179
+ 6614033953328205069
180
+ 6884856957434367246
181
+ 6611022763593305357
182
+ 7000560277502659875
183
+ 7004612252749794567
184
+ 6878115211723689230
185
+ 7007294950069013775
186
+ 6723520593372957956
187
+ 6723758691306327307
188
+ 6723540942005046536
189
+ 7027902340577479975
190
+ 6724072932240379139
191
+ 6806876094176759054
192
+ 6964695121380035871
193
+ 7022913322009890051
194
+ 6719472095836884235
195
+ 6898648376951311629
196
+ 6962419458421886248
197
+ 7006471084102978851
198
+ 6827409976156310791
199
+ 6729863166571908359
200
+ 7012795113373994275
201
+ 6850073170922196239
202
+ 6989159538079321352
203
+ 6709066288955690247
204
+ 6863485221703060751
205
+ 6998866339808955659
206
+ 6896644027702152455
207
+ 6862228172075765007
208
+ 7020398566292213006
209
+ 7020413584433810722
210
+ 7021151306094038307
211
+ 7020709911310978312
212
+ 6898294999373466893
213
+ 7052154339044986120
214
+ 6955662338825391397
215
+ 6954728923670318373
216
+ 6937103576527375657
217
+ 7009838697545813260
218
+ 6974929500131953956
219
+ 6871979527199821063
220
+ 6804855347765873920
221
+ 6805340083609144579
222
+ 6804697484024139023
223
+ 6804778409202421007
224
+ 6888482101704903951
225
+ 6890005271863627011
226
+ 6889070478149913871
227
+ 6821722703318289668
228
+ 6810364597237845256
229
+ 6824314763397369101
230
+ 6665860072050150659
231
+ 6588057622690139396
232
+ 6642214705265904899
233
+ 6943606158175292679
234
+ 7050791880774241551
235
+ 7053608466006510880
236
+ 6983501462441577735
237
+ 6995809692031208717
238
+ 6983461700552953126
239
+ 6883309663887052045
240
+ 6882335565744721160
241
+ 6882019900957707535
242
+ 6881996672826641679
243
+ 6882688817216687360
244
+ 6882261368679025932
245
+ 6887537198124567808
246
+ 6882179308740234510
247
+ 6884233572681567488
248
+ 6935428450366803230
249
+ 6900018298834930957
250
+ 6962773069005950244
251
+ 6991491832731471143
252
+ 6632919871975853326
253
+ 6913508533107543309
254
+ 6888185150035758348
255
+ 6888160891062193411
256
+ 7044335645887712548
257
+ 6826906406629788942
258
+ 6834678309704535310
259
+ 6912653109466647821
260
+ 6911886311465045259
261
+ 6912372801232047372
262
+ 6916041256879623428
263
+ 6916344845338414349
264
+ 6916338968522951936
265
+ 6916316720730803464
266
+ 6819497693526641931
267
+ 6822119583529405710
268
+ 6821320387473755392
269
+ 6819870141019360512
270
+ 6821045174345518351
271
+ 6820230527493180684
272
+ 6821043905308445956
273
+ 6821054074159435012
274
+ 6923791489453575439
275
+ 6906797838299090184
276
+ 6933945482934832398
277
+ 6988778497846152488
278
+ 6661953058412465420
279
+ 7053657591594962210
280
+ 6652318431716691203
281
+ 6959108100074900769
282
+ 6958444948777749767
283
+ 6948423138476625182
284
+ 6977581008392555784
285
+ 6851908839277595918
286
+ 7027022221763824926
287
+ 7046643645541403941
288
+ 6955760886380367141
289
+ 7027911935391780110
290
+ 6773826654889364743
291
+ 6864306556071087367
292
+ 6660797234772266243
293
+ 6775508012497964303
294
+ 6952027582313270568
295
+ 6852319073007586560
296
+ 6852700651831512335
297
+ 6852309889415646477
298
+ 6852567165581741319
299
+ 6873855139153825039
300
+ 6761685888939478285
301
+ 6873805237992393987
302
+ 6873797503909711107
303
+ 6808883778434436352
304
+ 6959859820551851268
305
+ 6959872435948735757
306
+ 6601651424973557006
307
+ 6601363612395113732
308
+ 6951735061276396833
309
+ 7032815054210731296
310
+ 6711197973943995662
311
+ 7018107870549970183
312
+ 6713699438918962440
313
+ 6661968458898607368
314
+ 6661955363564309764
315
+ 6838726978653179144
316
+ 6838725076267961608
317
+ 6921906373647240456
318
+ 6838936556644879624
319
+ 6839336420918824200
320
+ 7027884729215094020
321
+ 6907898669622660365
322
+ 7021897732549823758
323
+ 6819119145527872768
324
+ 6797768585096858880
325
+ 6795843422155558144
326
+ 6796278439218253056
327
+ 6800979777382649095
328
+ 6792797475833990400
329
+ 6795781027680898304
330
+ 6792897401788091660
331
+ 6789837915535969544
332
+ 7008076204368596255
333
+ 6791347567276854543
334
+ 6973131309623332131
335
+ 6973583949612256526
336
+ 6973132914473061644
337
+ 6973621961121484068
338
+ 6988058857863941383
339
+ 6973133690469633314
340
+ 6973131802902891810
341
+ 6973131558630821128
342
+ 6973100059894254859
343
+ 6766462015247518980
344
+ 6766397552943287555
345
+ 6868242677725400320
346
+ 6861177952336448772
347
+ 6862146422674836744
348
+ 6857064672776949003
349
+ 6866755739868843276
350
+ 6857248877834194183
351
+ 6865503736853237005
352
+ 6836670907902070020
353
+ 6792077540589702400
354
+ 6792105846483602701
355
+ 6792170863467744512
356
+ 6792070099298831628
357
+ 7004711785823472936
358
+ 6842468747228335367
359
+ 6845664512251645199
360
+ 6845464116518325504
361
+ 6942867105645694216
362
+ 6842097049127718148
363
+ 6842189070978813184
364
+ 6842285820909489421
365
+ 6842302496388517131
366
+ 6842055637803797768
367
+ 6910821547510926592
368
+ 7037659286041906439
369
+ 6981628375173500191
370
+ 6981385008921595166
371
+ 6794990416669330688
372
+ 6999580002933116198
373
+ 6985828770481540388
374
+ 7027828971857300775
375
+ 6947215803498417444
376
+ 7027834593717865758
377
+ 6947229316409216291
378
+ 6818384473957092611
379
+ 6861811404760960256
380
+ 6818191541836795147
381
+ 6890557139635473668
382
+ 6953858743457156360
383
+ 7027841726249209124
384
+ 6823672276060278028
385
+ 6882643461967777039
386
+ 6925630911501307147
387
+ 6935673902374997278
388
+ 6854532920569236744
389
+ 6849638472949566733
390
+ 6851188079722564877
391
+ 6849609968337865997
392
+ 6849631989251788039
393
+ 6848960147729960207
394
+ 6961679665048096031
395
+ 6932791427265072397
396
+ 6932790651176242447
397
+ 6772786213909843207
398
+ 7017697773889834276
399
+ 7008814789472374054
400
+ 6933020013653691656
401
+ 7027839508112477473
402
+ 7018081523995888903
403
+ 6916735523188952328
404
+ 6916697301520043264
405
+ 6916496093836594447
406
+ 6915999637065207055
407
+ 6916029513977613576
408
+ 6915942286828342543
409
+ 6916020252455259407
410
+ 6915955190193540352
411
+ 6915956003733310728
412
+ 6849160135001115917
413
+ 6848434489488624911
414
+ 6844722773693074691
415
+ 6838396696783834381
416
+ 7027865369087872264
417
+ 6839340370296442127
418
+ 6877328562022583559
419
+ 7011347681729629448
420
+ 6995042411118333215
421
+ 6753918581664140558
422
+ 6753893273120623886
423
+ 6883028290722876679
424
+ 6877905833980726542
425
+ 7015162143196613920
426
+ 6956010318124404002
427
+ 6815759487308172552
428
+ 6815767290815122703
429
+ 6815487937636060428
430
+ 6815550496695356685
431
+ 6816484174967491851
432
+ 6860695821155896576
433
+ 7005158631259802894
434
+ 7000323040957467940
435
+ 7001733023242685730
436
+ 7039979927290039588
437
+ 7039904064364088608
438
+ 7042982526268362015
439
+ 6779036391969017096
440
+ 6806184441392680195
441
+ 6806994272903122184
442
+ 6806940383621270796
443
+ 6808073686147419399
444
+ 6967963198112713997
445
+ 6743386932136414471
446
+ 6968670645626342686
447
+ 6803587758137806088
448
+ 6800188418136493320
449
+ 6806074889011825928
450
+ 6826634159990017291
451
+ 7011020549832871179
452
+ 7010956818679598375
453
+ 6723845660061273356
454
+ 6723073099874503940
455
+ 7007607583020240164
456
+ 7007689008151055630
457
+ 7007625423093796132
458
+ 6989128960202296609
459
+ 6988721320443858190
460
+ 6723112787112971523
461
+ 6723297674604350732
462
+ 7007324838620695849
463
+ 6999202660243033351
464
+ 6998804603148029221
465
+ 6882281700290759936
466
+ 6883671782910463240
467
+ 6882982930499554573
468
+ 6934173790754573568
469
+ 6952024742920604958
470
+ 7015112781401787656
471
+ 6881411791398735107
472
+ 6881935035121847567
473
+ 6991492579351203103
474
+ 6757690178191576323
475
+ 6908996925001862407
476
+ 6755405727952653580
477
+ 7022241756792081672
478
+ 6969441526204108062
479
+ 6953603582159506728
480
+ 6948988362430680351
481
+ 6810648413433023757
482
+ 6966807670456077582
483
+ 6995458080293031198
484
+ 7043746381047008545
485
+ 6989478568946388260
486
+ 6992154335161486600
487
+ 7043426723593014562
488
+ 6896489623871032590
489
+ 6896848817627450637
490
+ 6982133029397482789
491
+ 7027662208859393313
492
+ 7000724523041541414
493
+ 6998759857868295455
494
+ 6998644293661429003
495
+ 6998537799976619295
496
+ 6998682545118367013
497
+ 7012839691653369118
498
+ 6998348900516039971
499
+ 6998796781681151271
500
+ 6945220453338320142
501
+ 6877326059440786695
502
+ 6876765823755668744
503
+ 7008543910867848479
504
+ 6848497961396079886
505
+ 6848434790299864333
506
+ 6808071882743483648
507
+ 6857772551565839620
508
+ 6807999964963163404
509
+ 6916518350227098894
510
+ 6916597493333527819
511
+ 6932372049864232196
512
+ 6790186788683042062
513
+ 6795165747568987406
514
+ 6799192419960179975
515
+ 6992504568466705677
516
+ 6922045706962324736
517
+ 7027877118893640968
518
+ 7004128355888958753
519
+ 6863261542293441805
520
+ 6695230573637635335
521
+ 6770980407262399752
522
+ 6658113316042345736
523
+ 6659638348123999492
524
+ 7028138502562860301
525
+ 6845297094828281092
526
+ 6823363913669725448
527
+ 6684239798695103755
528
+ 6876061152921603335
529
+ 6935639703148432675
530
+ 6935680362815311134
531
+ 6935617923834776845
532
+ 6935628072678952230
533
+ 6935635261191654691
534
+ 6935367039263477023
535
+ 6935338635327704335
536
+ 6991499503631076612
537
+ 7027920751856553219
538
+ 6613318089943551240
539
+ 7013606549541227807
540
+ 7013628745391033614
541
+ 7013637183722507533
542
+ 7013676560733556004
543
+ 6995111532946328845
544
+ 7043022295295593763
545
+ 6804747267786935560
546
+ 6804780254742236419
547
+ 6804689338765430031
548
+ 6805483052119133453
549
+ 6804990192773025037
550
+ 6590972352731811075
551
+ 7020263243776019748
552
+ 6958568570905201920
553
+ 6990172593567321374
554
+ 6958984117077773601
555
+ 6971045158452235535
556
+ 7014507425130761479
557
+ 6830947702365261063
558
+ 6943403246866238724
559
+ 6943058156968742174
560
+ 6884872001551404303
561
+ 6771602582063320334
562
+ 6761524739673558285
563
+ 7051519784583728397
564
+ 6977225430944255244
565
+ 7006174117300817192
566
+ 6845570754923203847
567
+ 7023313508917972261
568
+ 7038594783354359075
569
+ 6903516292544744717
570
+ 6986831637665402148
571
+ 6846962776804510988
572
+ 6790987860217482504
573
+ 6789596785385000205
574
+ 6790698483734039823
575
+ 6790994130337090823
576
+ 6790377354146467087
577
+ 6791071587224292615
578
+ 6790610269031664904
579
+ 6791042788709469448
580
+ 6841738028021599488
581
+ 6946368506640223519
582
+ 6934517181774302464
583
+ 7016295347622366504
584
+ 6966539647115709708
585
+ 6989553415466634509
586
+ 6872297877264207117
587
+ 6812556773916937480
588
+ 6793448019225267463
589
+ 7033568781016239400
590
+ 6805829872481504520
591
+ 7025213002756394276
592
+ 6771727162417483016
593
+ 6771300068696788232
594
+ 6771223353316461832
595
+ 6771036373781646605
596
+ 6815763546740116747
597
+ 6819227918212943104
598
+ 6841465100637883662
599
+ 6841737153366543629
600
+ 6841480420991732992
601
+ 7029459999575346444
602
+ 7031153271658040590
603
+ 7029398660622454046
604
+ 7029547154922310943
605
+ 6855096922303155471
606
+ 6903409421183995149
607
+ 6992376094531898635
608
+ 6789409807355989251
609
+ 6881437296684518669
610
+ 6857772860224720139
611
+ 6798738016669076750
612
+ 6798717204176129294
613
+ 6799129732211346688
614
+ 6798897058364329229
615
+ 6798838586625019136
616
+ 6798691277278825735
617
+ 6798791300012313869
618
+ 6798879929468603652
619
+ 6798956295262096648
620
+ 6917521385057160455
621
+ 6917513241031642380
622
+ 6919042388237241608
623
+ 6917518319717338375
624
+ 6917519769889541391
625
+ 6917513401027677440
626
+ 6917534938292079879
627
+ 7019183807249108254
628
+ 7019203424432475395
629
+ 6924939109215653123
630
+ 6929447653319216398
631
+ 6850243506976328975
632
+ 6969811065626496293
633
+ 6791821286776507648
634
+ 6791871959547383051
635
+ 6792033909237435652
636
+ 6791785443517140232
637
+ 6803581739374595335
638
+ 6875217471041735939
639
+ 6874895234182941959
640
+ 6964273350474550565
641
+ 6739877973362511115
642
+ 6909484183282781444
643
+ 6827215508593495311
644
+ 6979582520740318497
645
+ 6867441948416855311
646
+ 6868843771530841347
647
+ 6868923781004496136
648
+ 6990396523871767844
649
+ 6960894401027575040
650
+ 6749358587463650568
651
+ 6749751267607727373
652
+ 6749412337406561547
653
+ 6748975268213427460
654
+ 6890401070326041867
655
+ 7046999925455916318
656
+ 6891542492282359051
657
+ 6832795749546298628
658
+ 6833522718025977092
659
+ 6832803460727966976
660
+ 6833250358454652167
661
+ 6832543786296511755
662
+ 7020645364705266952
663
+ 6832865186613955854
664
+ 6833310225550888207
665
+ 6826597464448044301
666
+ 6894438260290964751
667
+ 7013655059615583492
668
+ 6894123336046005507
669
+ 7039270843121208584
670
+ 7034840731491634446
671
+ 7034731648927255819
672
+ 7035612977793387812
673
+ 7035068206834355469
674
+ 6716132354248674563
675
+ 6768748406232943879
676
+ 6858462238185966860
677
+ 6966751274033351974
678
+ 6966894118236720414
679
+ 6967522520727653673
680
+ 6988731395401059591
681
+ 6988823542125137192
682
+ 6988822051410742561
683
+ 6989245926250532137
684
+ 6988748341433601287
685
+ 6988749025277136159
686
+ 6989095482073025806
687
+ 6988686083613543716
688
+ 6988685306669092129
689
+ 6988538403017035044
690
+ 6988648445850455335
691
+ 6988658583508487432
692
+ 6991063619983166733
693
+ 6991053959905479948
694
+ 6988802654352739597
695
+ 7035041510471093508
696
+ 6989865099649355048
697
+ 6988795106719468808
698
+ 7003880241902947615
699
+ 7004610133938425129
700
+ 7005031876503014692
701
+ 7038808265320418563
702
+ 6959483308090658078
703
+ 6961724093309668641
704
+ 6943077802723822881
705
+ 6851132909647072527
706
+ 7012774343679724841
707
+ 6851208905821883663
708
+ 6930058090414951684
709
+ 6854883426433060096
710
+ 6877494103374892288
711
+ 6851149328103394563
712
+ 6851539649047923968
713
+ 6857344782113508608
714
+ 6815055785375108363
715
+ 6800490872300375296
716
+ 6800496422627167496
717
+ 6799920478912777487
718
+ 6801033814048099599
719
+ 6660784036757196039
720
+ 6831818405503454471
721
+ 6951990295361817860
722
+ 6950550689575669029
723
+ 7017625601167166751
724
+ 6829194493057600779
725
+ 6949428522716843298
726
+ 7029188960945589511
727
+ 6989230274286505223
728
+ 6920392203827268864
729
+ 6703372956191493383
730
+ 6903330126805699844
731
+ 6903095981676465411
732
+ 6903365245734079748
733
+ 6991477279176101131
734
+ 7044544101886332167
735
+ 7044536903693110536
736
+ 7044789589755612427
737
+ 6949076459247963423
738
+ 7044814190552321287
739
+ 7018090584246160647
740
+ 6755736301779127559
741
+ 6837363937797803278
742
+ 7003678106271730981
743
+ 7003984110536461608
744
+ 7013328080789949731
745
+ 7013298773266910494
746
+ 7013276693343292702
747
+ 7013271930069454120
748
+ 7003600690048257316
749
+ 7003708537570348324
750
+ 7003548840510950656
751
+ 7002790840036822286
752
+ 7003220612894199078
753
+ 7003139927860907271
754
+ 7029994065131277598
755
+ 6641159939815378190
756
+ 6991335890241015078
757
+ 6814432741958946063
758
+ 6815161754595642627
759
+ 6865221230316784900
760
+ 6865245516364598543
761
+ 6865237619538676992
762
+ 6864923280172666125
763
+ 6865153689397497101
764
+ 6775010520979311886
765
+ 6775337505085525259
766
+ 6775038723521383693
767
+ 7029845929318436132
768
+ 6910848869672832263
769
+ 7017441632828067109
770
+ 6991495026689772831
771
+ 6897034063606058253
772
+ 6960500262389697806
773
+ 6827436705751076110
774
+ 6827747092371393796
775
+ 6827616334147243271
776
+ 6831546631620463872
777
+ 6851828761348852999
778
+ 6851867018145090819
779
+ 6866360691012472067
780
+ 6956156697769479455
781
+ 6961708155327778085
782
+ 7049581887957896480
783
+ 7048783060040551710
784
+ 7048861382715936035
785
+ 7048891249478192420
786
+ 7048915245552782607
787
+ 7048879953420569893
788
+ 7048926901884259621
789
+ 6883331385835244813
790
+ 7027898967174204705
791
+ 6951954708068076813
792
+ 7010713814769388841
793
+ 6872270966106459407
794
+ 7034683697068592424
795
+ 7017739552920014116
796
+ 7017589177361435936
797
+ 6837109740330405133
798
+ 7017716576472321315
799
+ 7017986654732340521
800
+ 6838570621010562307
801
+ 7049528744184204574
802
+ 7002406832895577383
803
+ 6998453571247164685
804
+ 7000613000121945351
805
+ 7001496580188572961
806
+ 7017442227408473385
807
+ 7017414510847724836
808
+ 7018099873065028899
809
+ 7018060154117639432
810
+ 7018011675534101798
811
+ 7017526065920789800
812
+ 7017854651475283233
813
+ 7017801758168648990
814
+ 6933178054864997646
815
+ 6934164747998874893
816
+ 6933200635462470912
817
+ 6933471077561601287
818
+ 6992068947063459085
819
+ 6992111449275501838
820
+ 6992127030460501255
821
+ 6861904335417232653
822
+ 6582489910870019335
823
+ 6583481991964921092
824
+ 6866197280584699136
825
+ 6737544416589876494
826
+ 6919103246233570564
827
+ 6960636617618967840
828
+ 6601309012942130446
829
+ 6656727039187438861
830
+ 6834677872515435784
831
+ 7048471469944327464
832
+ 7027490498361265443
833
+ 6900020602325716237
834
+ 6868085481968651520
835
+ 6867842242145504524
836
+ 6869287253827521796
837
+ 6867424768560303373
838
+ 6684247203738930443
839
+ 6891026845853027599
840
+ 6890422257261268232
841
+ 6890427735512976654
842
+ 6971562441322827021
843
+ 6759121139760483587
844
+ 6919279875232681229
845
+ 6919085706275032335
846
+ 6919108069280484616
847
+ 6732286238021160199
848
+ 6729400686074760460
849
+ 6730205068865424647
850
+ 6924597177310350592
851
+ 6844756518349360392
852
+ 6844776284652915982
853
+ 6844778284421631247
854
+ 6844778978494958848
855
+ 6844791137807420686
856
+ 6845080072357989636
857
+ 6746904276045417740
858
+ 6747974213874814220
859
+ 6999617935186627847
860
+ 6746738577272540424
861
+ 6746905110107933955
862
+ 7027891782197251361
863
+ 6947275565011438878
864
+ 7027891515733200132
865
+ 7027885300571573518
866
+ 7027879223423503629
867
+ 6805794994201332992
868
+ 6805804945003105536
869
+ 6805750422867922190
870
+ 6805886136331062536
871
+ 6792021786289622276
872
+ 6793581515826646287
873
+ 7039027275118972167
874
+ 6940113892127395111
875
+ 6982495627968040199
876
+ 6937205315297398053
877
+ 6834394371866103055
878
+ 6984169828995042574
879
+ 6835558642318658829
880
+ 6921984059375766798
881
+ 6886357948747058443
882
+ 7027891245288574212
883
+ 6940819252114935079
884
+ 6855577899844635919
885
+ 6921657713025961228
886
+ 7027873765598055684
887
+ 6990227614799514891
888
+ 6990231897909562635
889
+ 6990315589604625703
890
+ 6990288935809273120
891
+ 6990245576285768997
892
+ 6990259916208393486
893
+ 6990277053945777439
894
+ 7009442450586520843
895
+ 7027863154243669281
896
+ 6854141579452484868
897
+ 6853654661677796622
898
+ 7027842098246339843
899
+ 6853649144918084879
900
+ 6853598175782014223
901
+ 6609176747055254797
902
+ 6737510247499451656
903
+ 6737250162667834627
904
+ 6807550037825015044
905
+ 6807641056977390848
906
+ 6807582684005682446
907
+ 6807605833568947471
908
+ 6807624102896028943
909
+ 6807575619598142727
910
+ 6810766098741480717
911
+ 6817453297524313357
912
+ 6970992334364347684
913
+ 7042467822664043783
914
+ 6991877895970884896
915
+ 6810892177149922567
916
+ 6820072082794171652
917
+ 6810434722972355854
918
+ 6810751381972995336
919
+ 6805939478151122191
920
+ 6806119699898699015
921
+ 6806154638795050243
922
+ 6809422948814818574
923
+ 6806606169847680260
924
+ 7020242118274764046
925
+ 7021440042019179791
926
+ 7019851942029561091
927
+ 7021067470937001254
928
+ 7021159338882370855
929
+ 6810183442228088064
930
+ 6810892086141783309
931
+ 6933984545607863556
932
+ 6931586349568888078
933
+ 7024047971012480293
934
+ 6984335281902177540
935
+ 6835161375895997710
936
+ 6962035654960106766
937
+ 6873110086781275403
938
+ 6643668413828828424
939
+ 6870028793084480780
940
+ 6878118954947087623
941
+ 6914595715704458511
942
+ 6861525249188515076
943
+ 6861885697775701248
944
+ 6920826150474222856
945
+ 6819121035665755392
946
+ 6686481160224230669
947
+ 6893269628953382144
948
+ 7027874561815252232
949
+ 6985460372656360718
950
+ 6818044692429556995
951
+ 6897483952299314443
952
+ 6969895125304626443
953
+ 6947553212157152542
954
+ 6950201634651655437
955
+ 6645815668123897102
956
+ 6656639426464206088
957
+ 6994736483995225384
958
+ 6964231333082057996
959
+ 6816633821031648526
960
+ 6984717399920561442
961
+ 6863378128375516420
962
+ 7052522725612489992
963
+ 6891570229969816845
964
+ 6883817894984092940
965
+ 7051483674377768199
966
+ 6737562768133721348
967
+ 6739713098640379148
968
+ 6805075102808476939
969
+ 6737856627552161037
970
+ 6950171571306695976
971
+ 6884896887976021256
972
+ 6940833081607703822
973
+ 7031454072850894116
974
+ 6797938572524670220
975
+ 6795798663940541703
976
+ 6797377024152423680
977
+ 6797999399957007631
978
+ 6990601021982543104
979
+ 7028207119946059040
980
+ 6797964261302816008
981
+ 6854064950038514951
982
+ 6851147341253135624
983
+ 6854042677390904583
984
+ 6853989224878787843
985
+ 6852979877516283151
986
+ 6828312624011185423
987
+ 6853657007828847886
988
+ 7000396692839271694
989
+ 7029662763786046750
990
+ 7016216852875562271
991
+ 6700861687563570439
992
+ 6659729914352176395
993
+ 7013979030231764257
994
+ 6854058194789010700
995
+ 7008825846341340449
996
+ 6658850835998444804
997
+ 6788381071135329551
998
+ 6792710074407062784
999
+ 6925406534285495565
1000
+ 6824457136597110027
1001
+ 6789239936978652429
1002
+ 6909380431892794631
1003
+ 6872302397465660675
1004
+ 6730434516105661700
1005
+ 6885972986743033095
1006
+ 6805136344969415951
1007
+ 7038944755274829096
1008
+ 6781430354055154944
1009
+ 6867166970853297422
1010
+ 6736737150169042183
1011
+ 6989014784683429124
1012
+ 6853279754209086724
1013
+ 6852869196473306382
1014
+ 6991494535851330846
1015
+ 6988470819655666956
1016
+ 6988446831701282080
1017
+ 6988682262237793550
1018
+ 6808045764657384704
1019
+ 6808015877334650127
1020
+ 6808030057936719117
1021
+ 6808025819265518851
1022
+ 6808063383045197070
1023
+ 6729372447902043405
1024
+ 6727177281124551947
1025
+ 6896645750239808775
1026
+ 6826987786642509056
1027
+ 6919800791696002319
1028
+ 6777376906376416520
1029
+ 6777377636827041038
1030
+ 6993132366109641988
1031
+ 6790828160695946507
1032
+ 6790922195494341896
1033
+ 6842471217845275912
1034
+ 6838841950683155725
1035
+ 6975070371192048904
1036
+ 6851029739646373135
1037
+ 6994299672613457190
1038
+ 6969012155500875015
1039
+ 6833681241443732747
1040
+ 6985171993607949598
1041
+ 6888628485665901824
1042
+ 6985415411915377960
1043
+ 7040434586077105420
1044
+ 7007318985393851678
1045
+ 6723522583536405774
1046
+ 6988730177106791688
1047
+ 6988675439631797512
1048
+ 6846277571336752384
1049
+ 6989087827808029966
1050
+ 6991483840892095751
1051
+ 6812066199619308813
1052
+ 7027875776598936845
1053
+ 6849733324701846792
1054
+ 7043725834615606564
1055
+ 6752814648501783812
1056
+ 6650290449728720132
1057
+ 6650290016838864142
1058
+ 7003565889027067175
1059
+ 6932393385017855244
1060
+ 6932452023145155855
1061
+ 7015101878870478092
1062
+ 6932873121598885133
1063
+ 6917413709052660995
1064
+ 6835503656784186639
1065
+ 6813923092897811716
1066
+ 6814350072894065935
1067
+ 6814223358167649547
1068
+ 6814290877805006094
1069
+ 6960566438436326693
1070
+ 6862496783692500228
1071
+ 6947318617755127078
1072
+ 6680725537217957133
1073
+ 6838183183779958030
1074
+ 6969600590737378599
1075
+ 6893761625375902979
1076
+ 6716849310362848523
1077
+ 6989122943116741919
1078
+ 7006505596249738530
1079
+ 7007335568988212515
1080
+ 6992166958540148004
1081
+ 6992174785912425736
1082
+ 6847061751171714319
1083
+ 7028133155794111757
1084
+ 6903417736039271688
1085
+ 6903391663654259975
1086
+ 6903482569623375117
1087
+ 6770597144203250958
1088
+ 7051581860945644833
1089
+ 6685578903391620363
1090
+ 6791773291511188749
1091
+ 6797330904890035471
1092
+ 6797670636266212615
1093
+ 6797409346381827339
1094
+ 6797182551938141448
1095
+ 6793099198360341764
1096
+ 6792888144355167500
1097
+ 6796890396719959304
1098
+ 6906270461873622272
1099
+ 6790168988090371336
1100
+ 6789396303777467660
1101
+ 6789515540890275072
1102
+ 6789269241737563405
1103
+ 6789179815841844494
1104
+ 6813621650496490766
1105
+ 6813330207395630347
1106
+ 6863670234700680461
1107
+ 7027884760277994760
1108
+ 7047432439307816192
1109
+ 6814409751523233035
1110
+ 6821677729226788108
1111
+ 6836201017860836621
1112
+ 6836183231293836556
1113
+ 6836183067531463948
1114
+ 6836221278811114763
1115
+ 6837016406660271371
1116
+ 6836168603889405196
1117
+ 6836177348363144463
1118
+ 6836179631603846413
1119
+ 6836181677300059392
1120
+ 6827520616497679620
1121
+ 6795726406232886540
1122
+ 6795764790707932431
1123
+ 6795769343574674695
1124
+ 6802916932044508430
1125
+ 7012842517238533406
1126
+ 7012823302880185607
1127
+ 7012977027187821838
1128
+ 7013654980955557150
1129
+ 7012901246478667011
1130
+ 7013170559047568673
1131
+ 7013226060045110558
1132
+ 6844331095178202368
1133
+ 6844390680626793742
1134
+ 6844043426170686733
1135
+ 6844528060167900430
1136
+ 6844712724732120327
1137
+ 6844324970470919437
1138
+ 6893390182687509763
1139
+ 6789926310853496076
1140
+ 7018083054820363552
1141
+ 6790158463046601992
1142
+ 6789948811964861696
1143
+ 6789862722919058692
1144
+ 7010731047281331489
1145
+ 6912079237662969102
1146
+ 6852585647857749263
1147
+ 6852618779000671488
1148
+ 6926828154090687752
1149
+ 6809915709791931663
1150
+ 6876257542276730120
1151
+ 7007696528345173252
1152
+ 6884213334812527872
1153
+ 7032869305435933963
1154
+ 6680479610414664974
1155
+ 6680484308932726023
1156
+ 6746398138585615623
1157
+ 6746471793915170055
1158
+ 6746403850749594894
1159
+ 6991501055104126222
1160
+ 6752292050793729293
1161
+ 6848770518095531277
1162
+ 6848501754376539392
1163
+ 6848579855626292494
1164
+ 6848941907926584591
1165
+ 6848784835973057800
1166
+ 7013277357838568736
1167
+ 7013183704063429918
1168
+ 7013202227137465600
1169
+ 7012999037653732621
1170
+ 7013187959037889805
1171
+ 7039894871749987621
1172
+ 6896844454724930831
1173
+ 6896757248098307328
1174
+ 6746744077246647560
1175
+ 6852522086913658125
1176
+ 6852539740328168717
1177
+ 6848177805520293120
1178
+ 7013931633732488460
1179
+ 6852586988072160512
1180
+ 6866352267004611844
1181
+ 6988569067028303141
1182
+ 6997292529616030979
1183
+ 6997354476185095428
1184
+ 6686677511218220299
1185
+ 6680495441294920964
1186
+ 6931624845666946307
1187
+ 6931619431248334094
1188
+ 6931981226064481540
1189
+ 6931928657443278091
1190
+ 6931542913079921923
1191
+ 6968739328969264423
1192
+ 6869932962536819983
1193
+ 7015504911643299108
1194
+ 6872205855849221389
1195
+ 6872401891968453899
1196
+ 6872256828034534664
1197
+ 6820179715064745229
1198
+ 6836034235967524110
1199
+ 7043312251079576864
1200
+ 6823900927192272141
1201
+ 6817979355336117511
1202
+ 6768224569951014156
1203
+ 6872915896998825229
1204
+ 7020638488198532356
1205
+ 6872900172397989133
1206
+ 6873751654743821576
1207
+ 6911949842147233032
1208
+ 6852677764353379597
1209
+ 6852984894365207821
1210
+ 6852973825793985804
1211
+ 6987628050611588367
1212
+ 6987686503098895647
1213
+ 7020632717368888615
1214
+ 6988490986850651425
1215
+ 6802770862526319872
1216
+ 6803639669138492680
1217
+ 6802851077705288963
1218
+ 7020425430473706765
1219
+ 7020553684987809032
1220
+ 7020439365021224195
1221
+ 7023692039996919080
1222
+ 6921575944729693447
1223
+ 7021764129945898271
1224
+ 7001120093753117963
1225
+ 6844072655059062030
1226
+ 6849313247384915215
1227
+ 6914540564822166799
1228
+ 6916872376953179396
1229
+ 6940500821041745185
1230
+ 6999597490399907109
1231
+ 7008828598815591713
1232
+ 7027898091239968031
1233
+ 6866360146147265800
1234
+ 6927271093564656899
1235
+ 6928321333755432207
1236
+ 6926098495787126016
1237
+ 6691461631374888195
1238
+ 7009640844173085956
1239
+ 6723878732349721868
1240
+ 6881232398978223373
1241
+ 7020638542674087206
1242
+ 7009808880716860710
1243
+ 7016289788491812126
1244
+ 7016244744804207879
1245
+ 7016143714800258340
1246
+ 7016189155830959374
1247
+ 6797977154782006542
1248
+ 6797946717984525576
1249
+ 6797955890583555328
1250
+ 6797937482760490240
1251
+ 6798008311460433159
1252
+ 6798440875786587406
1253
+ 6797924760434003200
1254
+ 6798515331057913103
1255
+ 6741328466110631181
1256
+ 6988083209904934179
1257
+ 6988654591785061672
1258
+ 6988731721214594308
1259
+ 6989194726918360360
1260
+ 6838058397108079887
1261
+ 7027865298359307553
1262
+ 7027860249763646750
1263
+ 6837784250800966920
1264
+ 6706724761545755908
1265
+ 6972494564657548583
1266
+ 7044849883752320270
1267
+ 6925313216381734157
1268
+ 6853242304224922894
1269
+ 6924686470749965583
1270
+ 6924875295799430415
1271
+ 6924956003725364487
1272
+ 6925223734156545287
1273
+ 6766370765701991687
1274
+ 6766217741016763660
1275
+ 6766228423317703940
1276
+ 6766234763129867527
1277
+ 6987189994980936999
1278
+ 6987293759205543180
1279
+ 6777155234998340872
1280
+ 6988028759072967940
1281
+ 6905628008716029197
1282
+ 7008405522030349598
1283
+ 6980502388239076645
1284
+ 7007444518358256929
1285
+ 6747963814236409102
1286
+ 6856364710351179022
1287
+ 6747622732969643275
1288
+ 6936451574046690598
1289
+ 7003588006300896519
1290
+ 7003597350492982565
1291
+ 7003633195887381797
1292
+ 6767918377714404622
1293
+ 6990642579951947038
1294
+ 6992396704175639849
1295
+ 6898304240838561035
1296
+ 6601765814712405251
1297
+ 6601686537832762637
1298
+ 6601803968425233671
1299
+ 6601690518281784579
1300
+ 6601795495725632776
1301
+ 6601738553175051533
1302
+ 7020372442556239108
1303
+ 7020685349001235712
1304
+ 7020327493135568158
1305
+ 6901166862713801996
1306
+ 6901090507481451789
1307
+ 6901504979287231755
1308
+ 6901142136364862731
1309
+ 6893077965429591311
1310
+ 6891553112411196685
1311
+ 6893477906882874639
1312
+ 6947274925078039811
1313
+ 6862165913668439309
1314
+ 6830008628045532428
1315
+ 6959100069924654372
1316
+ 6922317442479869199
1317
+ 6895999377542745351
1318
+ 6872543801748016397
1319
+ 6771251306406464781
1320
+ 7020684985111809310
1321
+ 6866979815686294798
1322
+ 6866678444009327884
1323
+ 7035978396383431976
1324
+ 6660788747598040333
1325
+ 7032213017500732680
1326
+ 7011798479798324520
1327
+ 6984729526995586345
1328
+ 6964305242070469922
1329
+ 6797622943372365067
1330
+ 6857772901957946637
1331
+ 6850044532189351181
1332
+ 6850609978693274895
1333
+ 7035539245003459880
1334
+ 6862892636479573256
1335
+ 6917992142367395083
1336
+ 7007553697945324803
1337
+ 6860436552699350272
1338
+ 6996149984123014411
1339
+ 6849611318106934536
1340
+ 6848846476597071115
1341
+ 6849526244967533839
1342
+ 6849290675947638031
1343
+ 6849224773843701004
1344
+ 6849259405859425551
1345
+ 6848853805828803852
1346
+ 7024489170672405791
1347
+ 7027865610503605508
1348
+ 6845187354110528776
1349
+ 6844818233850072331
1350
+ 6844743558939806991
1351
+ 7015179078063918339
1352
+ 6849177771898440963
1353
+ 6848958762087156992
1354
+ 6848896622001212685
1355
+ 6794048844045765892
1356
+ 6870367454841834755
1357
+ 6870788655904984328
1358
+ 6870377974160444679
1359
+ 6870322803141283075
1360
+ 6870327383287762187
1361
+ 6965408559379074340
1362
+ 7037346913875709197
1363
+ 7037347520925715720
1364
+ 6965764136655539493
1365
+ 6807797641095810311
1366
+ 6807801964076846344
1367
+ 6863746837585743111
1368
+ 6789791388394409219
1369
+ 6789916586959555848
1370
+ 6961671164758445324
1371
+ 6961240655192427810
1372
+ 6961034313479605540
1373
+ 7027849348595731720
1374
+ 6687077401081416967
1375
+ 6686810669221825795
1376
+ 6886683690433383692
1377
+ 6964976187663846687
1378
+ 7016857783479979301
1379
+ 7017376717115264286
1380
+ 6763184473241619719
1381
+ 6782769312651431181
1382
+ 6902249775282834695
1383
+ 6780264564631047438
1384
+ 6969087488023448871
1385
+ 6970158017438387464
1386
+ 6952063448582737165
1387
+ 7038958429158870280
1388
+ 6951671537141435679
1389
+ 6928624085714914573
1390
+ 7035424396676320515
1391
+ 6844306836745702656
1392
+ 6937114875189595423
1393
+ 6935640384068439332
1394
+ 6891203642074926350
1395
+ 6844773921955400974
1396
+ 6824006803018353923
1397
+ 6845971406891568391
1398
+ 6989050946466630920
1399
+ 6989073697432816933
1400
+ 6989144378392497415
1401
+ 6989054254346456327
1402
+ 6989056563323358501
1403
+ 6989072004984999199
1404
+ 6987694426378358030
1405
+ 6987990211426815245
1406
+ 6988727422384344333
1407
+ 6988666769787325733
1408
+ 6988877168315092237
1409
+ 6988493829875813644
1410
+ 6988502550131608846
1411
+ 6989044780927864100
1412
+ 6988507083100458244
1413
+ 7027611337324858659
1414
+ 7029209861531520294
1415
+ 7030430491962527014
1416
+ 7033613488576679168
1417
+ 7029522681917689091
1418
+ 7031444334620757255
1419
+ 6892230838822440195
1420
+ 6952058686420356366
1421
+ 6814451941804952845
1422
+ 6862161911828499726
1423
+ 6866707115373825288
1424
+ 6864830459587710211
1425
+ 6866295416246242574
1426
+ 6840651629285461262
1427
+ 6718536657395649803
1428
+ 6914584068289989902
1429
+ 6914570532776103175
1430
+ 6942865258377694497
1431
+ 6935427469554093348
1432
+ 6835822316132240651
1433
+ 6810319473573219595
1434
+ 6810235766942305539
1435
+ 6810244511034379527
1436
+ 6810227456126094600
1437
+ 6810249864878820623
1438
+ 6810271009959087374
1439
+ 6875518042453953804
1440
+ 6824515285085687048
1441
+ 6824273888134941966
1442
+ 6824298917363043588
1443
+ 6825418062817152270
1444
+ 6824456540989230344
1445
+ 6824447680635309325
1446
+ 6942624537611717896
1447
+ 6870133525300006147
1448
+ 6844439307940351243
1449
+ 7009449459268537637
1450
+ 7020750371622554913
1451
+ 7038857031654182148
1452
+ 6866260665762401550
1453
+ 7039925672155860265
1454
+ 7050683268659727646
1455
+ 6657315189093862668
1456
+ 6854704649019198727
1457
+ 7000992974133939470
1458
+ 7000288201763982623
1459
+ 6968635495198788864
1460
+ 6968612703178853646
1461
+ 7017344287406886181
1462
+ 6950140420286385412
1463
+ 6931891737308777741
1464
+ 6922751573672119566
1465
+ 6930430779285654784
1466
+ 6923111319516269837
1467
+ 6922710442745941262
1468
+ 6811011407258094862
1469
+ 7057257608880655650
1470
+ 7056176038535056651
1471
+ 6843323742291070208
1472
+ 6852295865047026952
1473
+ 6851466996798868744
1474
+ 6852625488393866511
1475
+ 7027848974430227744
1476
+ 7027837603885911303
1477
+ 6897084425113242893
1478
+ 6897119580481801476
1479
+ 6950543663424359693
1480
+ 7056404286284090662
1481
+ 6822849359667924227
1482
+ 6822822191986396431
1483
+ 6824249309484076303
1484
+ 6756861769332903175
1485
+ 6818838190401604879
1486
+ 6975369232758394148
1487
+ 6837064784911846656
1488
+ 6752825528232824067
1489
+ 7057138706146200840
1490
+ 6991405664719473956
1491
+ 6967274962138729758
1492
+ 6987545166991084813
1493
+ 6833590376872316168
1494
+ 6894123222929902862
1495
+ 6815608457887010063
1496
+ 7032253745689857317
1497
+ 7029229563137821989
1498
+ 7029482339818392863
1499
+ 7056313944817945856
1500
+ 6893817237463977223
1501
+ 6814346432099667200
1502
+ 6821776837266427144
1503
+ 6998403864667950373
1504
+ 7023676304637660446
1505
+ 7023913788961230080
1506
+ 7016158173178481928
1507
+ 7049986028387568935
1508
+ 6972815906502151463
1509
+ 7007322146288504096
1510
+ 7045264001541917966
1511
+ 7023492285463612708
1512
+ 7057098924561108262
1513
+ 7014037343271177485
1514
+ 6972402411998678308
1515
+ 6972363800263675151
1516
+ 6972420491227188487
1517
+ 6960565268309445895
1518
+ 7033979808505777411
1519
+ 6824693917791833347
1520
+ 6925771486640819469
1521
+ 6942027436464852254
1522
+ 6887458098420731148
1523
+ 6819587416542825731
1524
+ 7004304973991365919
1525
+ 6914868017910320384
1526
+ 6786601102973439247
1527
+ 6786995810811825408
1528
+ 6839432188866383118
1529
+ 6891969449671265543
1530
+ 7055540654083935523
1531
+ 6749752784016379149
1532
+ 6995926599174507783
1533
+ 6995054065151528228
1534
+ 6994985239529426206
1535
+ 6995034911715495181
1536
+ 6994715205578149152
1537
+ 6675680797694954763
1538
+ 6962815025379544350
1539
+ 6962697672247627019
1540
+ 6960828951912566053
1541
+ 6748049832067255559
1542
+ 6947293595493731622
1543
+ 6890529616985869571
1544
+ 6832185731620867335
1545
+ 6963475755355393315
1546
+ 6831381330450861323
1547
+ 6831126629700488451
1548
+ 6830756581827808523
1549
+ 6845253491976457484
1550
+ 6859694525888122112
1551
+ 6989249951263919395
1552
+ 7024927766906719518
1553
+ 7024885711677525260
1554
+ 7024872299543235874
1555
+ 7025399661116525854
1556
+ 7018009000729988352
1557
+ 7018087007637359876
1558
+ 6672333608885193997
1559
+ 6725959074594229516
1560
+ 7018389998277774606
1561
+ 6807197079044246784
1562
+ 6801975907172044032
1563
+ 6901555943423692036
1564
+ 7003940340956761381
1565
+ 7015912615247383815
1566
+ 7014880697168973094
1567
+ 6853077464843832583
1568
+ 6951984255584996647
1569
+ 6857787505337535752
1570
+ 6961619376055291168
1571
+ 7015096155822394631
1572
+ 6799054384429845767
1573
+ 6799070294901263616
1574
+ 6805429938464804110
1575
+ 7054804462501776651
1576
+ 6996465978309643527
1577
+ 6805277630758210823
1578
+ 6601552344368811268
1579
+ 6601418130373741827
1580
+ 6601743307074702599
1581
+ 6672596808490831108
1582
+ 6672607427034107144
1583
+ 6872225881922800903
1584
+ 6813902497317489923
1585
+ 6813920395746446595
1586
+ 6813914791262883072
1587
+ 6812205450403073288
1588
+ 6852471007010180352
1589
+ 6813861282865859852
1590
+ 6813944479129619716
1591
+ 7009133406340631842
1592
+ 6981724915720310057
1593
+ 7035566006554643751
1594
+ 7030354324840566029
1595
+ 6990508795952713000
1596
+ 7045383922292641031
1597
+ 6992380774750244126
1598
+ 6907420193622985997
1599
+ 6813887204625042688
1600
+ 6814044469256621325
1601
+ 6816625975036480771
1602
+ 6813960385436142862
1603
+ 6993667558448696589
1604
+ 6962470014104423712
1605
+ 6961335020694867240
1606
+ 6991423203205713160
1607
+ 6639931517634088200
1608
+ 7015088065521683744
1609
+ 7027875719078366476
1610
+ 6639935519650221316
1611
+ 6998389046774959397
1612
+ 6806202016768019725
1613
+ 6715018056688536844
1614
+ 6730797013505445133
1615
+ 6792402142960323854
1616
+ 6838545142350089486
1617
+ 6839504528132312320
1618
+ 6839913812527779084
1619
+ 6745966833112730892
1620
+ 6798503970345143552
1621
+ 6797605608674577678
1622
+ 6797265622339177728
1623
+ 6797317471222222088
1624
+ 6797362129050537223
1625
+ 6873624092294073608
1626
+ 6873624365544574216
1627
+ 6793092358536744205
1628
+ 6793126744271359246
1629
+ 6818456717186157828
1630
+ 7050479213098388777
1631
+ 6973517103378861315
1632
+ 6829225780535414024
1633
+ 6670066165177486605
1634
+ 7024788820474318094
1635
+ 7046943614638787872
1636
+ 6979842981633215755
1637
+ 7029577288278641927
1638
+ 6907161181887220996
1639
+ 6956861520747760933
1640
+ 7045236629421690153
1641
+ 7013533576759086366
1642
+ 6904831360410602759
1643
+ 7043265905731620103
1644
+ 6814260029789588747
1645
+ 6813252139440164111
1646
+ 6813127019132423431
1647
+ 7021437448987102471
1648
+ 7020645164867702055
1649
+ 6921190861879397640
1650
+ 6890084856156507396
1651
+ 6951693546537717022
1652
+ 6971716110651493662
1653
+ 6924182159754267904
1654
+ 6923403368471792907
1655
+ 6924202569501920525
1656
+ 6924240755338775822
1657
+ 6942864805426416928
1658
+ 6924263691001154830
1659
+ 6923935118297959684
1660
+ 6924132750555417864
1661
+ 6923392226127121672
1662
+ 6747713690004425998
1663
+ 6786598297932025092
1664
+ 6955779828280806664
1665
+ 6868192450385546504
1666
+ 6887912884517571843
1667
+ 6887904016806841600
1668
+ 6844137104889433358
1669
+ 7022088019901517092
1670
+ 6937986118432345357
1671
+ 6988817977604853006
1672
+ 6944974457974934798
1673
+ 6863350843568065796
1674
+ 6638866344433421582
1675
+ 6628915429882465549
1676
+ 7004708327485754660
1677
+ 6921677973334543630
1678
+ 6905746694005099791
1679
+ 6741270032111701255
1680
+ 6984057954035109150
1681
+ 6984321731674541319
1682
+ 6984415781287169291
1683
+ 6984420646168169736
1684
+ 6722677705763998979
1685
+ 6875521596296137991
1686
+ 6800641564394769671
1687
+ 7052861203307056414
1688
+ 6559701594739313923
1689
+ 7017791130548833536
1690
+ 6855475582453484811
1691
+ 6706025183452351755
1692
+ 6706303784215121164
1693
+ 6786554322516757773
1694
+ 6706666689691520259
1695
+ 6706307318742584583
1696
+ 6706733840070659336
1697
+ 6833266792295697675
1698
+ 6894498895607450894
1699
+ 6864830194549591300
1700
+ 6834090217914354956
1701
+ 6944180901626563847
1702
+ 6939705680093826340
1703
+ 6915542827426467086
1704
+ 6953180044663606564
1705
+ 7026682604434902276
1706
+ 6845554752420318468
1707
+ 6988384134892703012
1708
+ 6988347682641202465
1709
+ 6988355207474187528
1710
+ 6988345870337051934
1711
+ 6988350632432356616
1712
+ 6730005569073106180
1713
+ 6886296759493020941
1714
+ 6886310115218132224
1715
+ 6798661547246832907
1716
+ 6894612649531723022
1717
+ 6991485572476980483
1718
+ 6963995027122949383
1719
+ 7037678639407713544
1720
+ 6994408225005145378
1721
+ 6963096918754938127
1722
+ 6921877001590689038
1723
+ 6921902933449772292
1724
+ 6620647874076085511
1725
+ 7028529035609148676
1726
+ 7024747530642672937
1727
+ 7024410573861293342
1728
+ 7024330692058287395
1729
+ 6763209184528928004
1730
+ 6860488338697276687
1731
+ 6717960933538270477
1732
+ 7022645150371433732
1733
+ 7025198307337063721
1734
+ 6828955068306427150
1735
+ 6847625785881218317
1736
+ 6734183552138644750
1737
+ 6822146399438638348
1738
+ 7031042923403726118
1739
+ 6839197629331541262
1740
+ 6854770358029995279
1741
+ 6862207569679699207
1742
+ 6862195533260410112
1743
+ 7027867727146618151
1744
+ 6707587902336978189
1745
+ 7024386092619025676
1746
+ 6809107490568015115
1747
+ 7045925414622989605
1748
+ 6811820983104638212
1749
+ 6811731857701358848
1750
+ 6819470101025131783
1751
+ 6818719238392433924
1752
+ 6781646180800646403
1753
+ 7045606193452141837
1754
+ 7046558613795605796
1755
+ 7045580936322256158
1756
+ 7048279986280598819
1757
+ 6989879848529333512
1758
+ 6989838370146979083
1759
+ 6989484406104689957
1760
+ 7048576318459497742
1761
+ 6893389748480625934
1762
+ 6944229377320160548
1763
+ 7047824234395045156
1764
+ 6712816336973647116
1765
+ 6863372774707072263
1766
+ 6858496463324990728
1767
+ 6861857889590480128
1768
+ 7027849254236441867
1769
+ 6784236847154384141
1770
+ 6784181585978707204
1771
+ 6891204444520811784
1772
+ 6890360409749064968
1773
+ 6890886810281594116
1774
+ 6890695267037842699
1775
+ 6890730941820521731
1776
+ 6890364946606001419
1777
+ 6988319574223555847
1778
+ 6988492921263787300
1779
+ 6602092948031016196
1780
+ 6602089727090756872
1781
+ 6861932604002815247
1782
+ 6857375682675166478
1783
+ 6637728366650723592
1784
+ 6612183406635650308
1785
+ 6722438557987851523
1786
+ 6974326372076473639
1787
+ 6905321879456861454
1788
+ 6972703718487756032
1789
+ 6959070097126346025
1790
+ 6847109400235166988
1791
+ 6993680509851192615
1792
+ 7008243555298774285
1793
+ 6883688654267567372
1794
+ 6816602226124033288
1795
+ 6829612419829075212
1796
+ 6841814713282661645
1797
+ 6670805620435750147
1798
+ 6679460647836601608
1799
+ 6671112046978796803
1800
+ 6670707542898789646
1801
+ 6684799575590587651
1802
+ 6684708736600263950
1803
+ 7056960971734109476
1804
+ 6879701440365989135
1805
+ 6807564623181532416
1806
+ 6809911531942202637
1807
+ 6924693693043674383
1808
+ 6924929045708705037
1809
+ 6926321497606851855
1810
+ 6925218688496962830
1811
+ 6924276158305438983
1812
+ 6972788461677972750
1813
+ 6972822369048071457
1814
+ 6972518820296658210
1815
+ 6818172291185216771
1816
+ 6818254662957812996
1817
+ 6818183900867693831
1818
+ 6818189045835762957
1819
+ 6818176700526972175
1820
+ 6818177047186181388
1821
+ 6956587789840289037
1822
+ 6954198654693477643
1823
+ 6954191380344261896
1824
+ 6851479660241358088
1825
+ 6851368542718283023
1826
+ 6851429465201937679
1827
+ 6851394454142602499
1828
+ 6851472103028329742
1829
+ 6851515766269889796
1830
+ 6852212985557978376
1831
+ 6957332862806871333
1832
+ 6922772290446937352
1833
+ 6889365879549676813
1834
+ 6766392183114222856
1835
+ 7051877619251318023
1836
+ 6857769856498994439
1837
+ 7032175363627240744
1838
+ 7026358663065390348
1839
+ 6987068815955856640
1840
+ 6987299086055509284
1841
+ 6987155145125629198
1842
+ 6883002263124626695
1843
+ 6883733064015498500
1844
+ 6883400207422197006
1845
+ 6882995145646673166
1846
+ 6883007372814503172
1847
+ 6882992354949598479
1848
+ 6883093359997635854
1849
+ 6841119584163073284
1850
+ 6982837789981199620
1851
+ 6841157087737810183
1852
+ 6843223547012320524
1853
+ 6841513596141276423
1854
+ 6841757602284604687
1855
+ 6882572192501026048
1856
+ 6883878275328838920
1857
+ 7010377197328305443
1858
+ 6843212356214967567
1859
+ 6843695846136106255
1860
+ 6845025280160009480
1861
+ 6843275177204256013
1862
+ 6975634643404033293
1863
+ 6986771327285726500
1864
+ 6843428070272060686
1865
+ 6843057578625273099
1866
+ 6843289161361804544
1867
+ 6843390911024565519
1868
+ 6850444269824527624
1869
+ 6851757877980368141
1870
+ 6838103289851104526
1871
+ 7019176421272718604
1872
+ 6889960078342982912
1873
+ 6889204096402803982
1874
+ 6889451691280813312
1875
+ 6888550517874773255
1876
+ 6891294237036416263
1877
+ 6889688683054632192
1878
+ 6881878776549051656
1879
+ 6863290362660719875
1880
+ 6884560770525400332
1881
+ 6985148688599452959
1882
+ 6828096382855941376
1883
+ 6859578472910671108
1884
+ 7002792013359811870
1885
+ 6639551308707663117
1886
+ 7036297725415050532
1887
+ 7041107787190979848
1888
+ 7041842334916545828
1889
+ 7025218023657114910
1890
+ 7024876615393938724
1891
+ 6883465133973048584
1892
+ 6883404288052202759
1893
+ 6883462157791399183
1894
+ 6883301375967546632
1895
+ 6733905101359959300
1896
+ 6732333962821209357
1897
+ 6799062729790459151
1898
+ 6799487592053181707
1899
+ 6800313787682393357
1900
+ 6799212507085982990
1901
+ 6851828536232267008
1902
+ 6852975594913746189
1903
+ 6851885248175754508
1904
+ 6851821768022248719
1905
+ 6851808452554099975
1906
+ 6851864407731981568
1907
+ 7007015295009262878
1908
+ 7007690572982996239
1909
+ 7007300231033343243
1910
+ 7007244586905111840
1911
+ 7006988973381881124
1912
+ 7007273401526013197
1913
+ 6789803250951474445
1914
+ 7039273612599250176
1915
+ 7039277351741574435
1916
+ 7039243135662165259
1917
+ 7044820339284610319
1918
+ 7048402405158849826
1919
+ 6799209008679947524
1920
+ 6799146716269448463
1921
+ 6799094002021829891
1922
+ 6799128458241920256
1923
+ 6796199374910262542
1924
+ 6799230700500356356
1925
+ 6839624117684161799
1926
+ 6839616162435747087
1927
+ 6839659012552789263
1928
+ 6839905080167222528
1929
+ 7050760867020934414
1930
+ 7045134379881975051
1931
+ 7050033675534208256
1932
+ 7050407300435053832
1933
+ 6983145466733120775
1934
+ 6849577913830952199
1935
+ 6775682394864241928
1936
+ 6717151423227858179
1937
+ 6647411044501163268
1938
+ 6968673100107926816
1939
+ 6700401364331154696
1940
+ 6810996687356611855
1941
+ 6896331262399712526
1942
+ 6896293361062251780
1943
+ 6896070752374623488
1944
+ 6896300872611990795
1945
+ 6896344156965309708
1946
+ 7040074834931354914
1947
+ 7040267067081133326
1948
+ 7038557817552293123
1949
+ 7039183851284860197
1950
+ 6952011958073838856
1951
+ 6879657338479922447
1952
+ 6879648527568375051
1953
+ 6879925463733652751
1954
+ 7012504350744464654
1955
+ 7012408088154115362
1956
+ 7012365954877295885
1957
+ 6828710235448872192
1958
+ 6965421764612558091
1959
+ 6969713655126510879
1960
+ 6966482095812218144
1961
+ 6927088372099927303
1962
+ 6983295000121511208
1963
+ 6819225937868000523
1964
+ 6948959854564297984
1965
+ 6949045076567870734
1966
+ 6949084147939855620
1967
+ 6708971806499392780
1968
+ 6687412730971868429
1969
+ 6687415441695984900
1970
+ 6687811321574051076
1971
+ 6781727165240118531
1972
+ 6687419353547279629
1973
+ 6796917456901246211
1974
+ 6796982473969503503
1975
+ 6797017288722648335
1976
+ 6796688776744750336
1977
+ 6796933052695186696
1978
+ 6796850990931922190
1979
+ 6977896947092819208
1980
+ 7051726184639499523
1981
+ 7047041238498905347
1982
+ 7029602985692941572
1983
+ 6881900497465380104
1984
+ 7047561614614187264
1985
+ 6944252027438468365
1986
+ 6790920932694281487
1987
+ 6827719074328349956
1988
+ 6791023538900978947
1989
+ 6791327276693769476
1990
+ 6791831278296599822
1991
+ 7029591662020070691
1992
+ 7027888720120384775
1993
+ 6723837649523608836
1994
+ 6724118889342455048
1995
+ 7000988717179473164
1996
+ 6904190453969620232
1997
+ 7054136830056271141
1998
+ 6924115033282596111
1999
+ 6810857820892728583
2000
+ 7021086903294364964
2001
+ 6701187302170823949
2002
+ 6908608281665654020
2003
+ 6691220078169427214
2004
+ 6692770651482164488
2005
+ 7003174376501693704
2006
+ 7003323274218261790
2007
+ 6571001202379590925
2008
+ 7002783251727142174
2009
+ 6787009027634121984
2010
+ 6787193354540174605
2011
+ 6787343711899553028
2012
+ 6787294190049971464
2013
+ 6787227223309946127
2014
+ 7015141085047491852
2015
+ 6815151234698251523
2016
+ 7039205282525760776
2017
+ 6890486208653315341
2018
+ 6951934204426898703
2019
+ 6884545191089360136
2020
+ 6989896036709829895
2021
+ 6874220865987415304
2022
+ 6766547180921670924
2023
+ 6921909551386103047
2024
+ 6909752479127194880
2025
+ 6899336054558575872
2026
+ 7020353840985804069
2027
+ 6714844810399747340
2028
+ 6700549546591898888
2029
+ 6941874367362026782
2030
+ 6717908479664786696
2031
+ 6702695933576039688
2032
+ 6759760505386044680
2033
+ 6787602239155490051
2034
+ 6787387569265970440
2035
+ 6787680294230117646
2036
+ 6787685019956563212
2037
+ 6787632205754633487
2038
+ 6787549212172111112
2039
+ 6787655112333561103
2040
+ 7027862919559925030
2041
+ 6853972709974494472
2042
+ 6854004597619494157
2043
+ 6854069496425073927
2044
+ 6853944547446148364
2045
+ 6854097139853757704
2046
+ 6854012967072075021
2047
+ 6853973226440117517
2048
+ 6854116310993964301
2049
+ 6853962519736798479
2050
+ 6853983235765046539
2051
+ 6849230937071291660
2052
+ 6849294162769071368
2053
+ 6943114614414609667
2054
+ 6942767871684578591
2055
+ 6752823620881501452
2056
+ 6752500200847265027
2057
+ 6752503898239503629
2058
+ 6752769472836259084
2059
+ 6752744386607516942
2060
+ 6755760910272335116
2061
+ 7013643268407741709
2062
+ 6989445925752163591
2063
+ 6989496406260157703
2064
+ 6989433418803186975
2065
+ 6989547032058875144
2066
+ 6803631659339009287
2067
+ 6803630413559385358
2068
+ 6803550951979388160
2069
+ 6803906422519237891
2070
+ 6803680340402539789
2071
+ 6803220050435214605
2072
+ 6828472686629473551
2073
+ 6833180805523655936
2074
+ 6858543833941101836
2075
+ 6967304512025529639
2076
+ 6981376202854370600
2077
+ 6849127595091512576
2078
+ 6895645115327548683
2079
+ 6848868667233471744
2080
+ 6848893667097316623
2081
+ 6848922685674704128
2082
+ 6848850561106808078
2083
+ 7015126847277124878
2084
+ 6848835923430345997
2085
+ 6848898037788560647
2086
+ 6923095665010543872
2087
+ 6922418369014582535
2088
+ 6922657004334943495
2089
+ 6922722737173695758
2090
+ 7019211791964163340
2091
+ 6922285670010473740
2092
+ 6923346063944404238
2093
+ 6761998960384085251
2094
+ 6617561143990816007
2095
+ 6615513758447979780
2096
+ 6988303473049734437
2097
+ 6992805039286930729
2098
+ 6988704735511530790
2099
+ 6988160063231888675
2100
+ 6987961460941016334
2101
+ 6987926512364277007
2102
+ 6992870723819801887
2103
+ 7008191125190151439
2104
+ 7008444285003648291
2105
+ 6806996372924009743
2106
+ 6857307515592396045
2107
+ 6951984332437245215
2108
+ 6896644309940997389
2109
+ 6908203817863499016
2110
+ 6765480777158266115
2111
+ 6765476032708381965
2112
+ 6988157324527439136
2113
+ 6988040278133296419
2114
+ 6790890575043235080
2115
+ 6792441400697867534
2116
+ 6787249642703719691
2117
+ 6871564257146785024
2118
+ 6976057009275784460
2119
+ 6961171972868902148
2120
+ 6961414337353354531
2121
+ 6985499664539831593
2122
+ 6894424143358430472
2123
+ 6987583696945597704
2124
+ 6985718689903545641
2125
+ 6894624393306098952
2126
+ 7005007047766854951
2127
+ 6986149633626049796
2128
+ 6994787235748924703
2129
+ 7041376892577991973
2130
+ 6831107091411782916
FakeVD/dataset/my_datajson/train_1_1.txt ADDED
@@ -0,0 +1,1350 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 7041921581278416158
2
+ 6671891732524829965
3
+ 6799829298762059021
4
+ 6799592761499700494
5
+ 6989830805723811076
6
+ 7049184364088823053
7
+ 6886430430208298255
8
+ 6915359540363939080
9
+ 6804705458432003328
10
+ 6980603426870742279
11
+ 6731971438481394958
12
+ 6732370114181598477
13
+ 6975525474722270494
14
+ 7016544513078431006
15
+ 6993940443503365383
16
+ 7042975466105343271
17
+ 7036952898252639503
18
+ 6853306188751277324
19
+ 6723527309363662083
20
+ 7028536210775723272
21
+ 6808728377600511232
22
+ 6808542878009167107
23
+ 6808539046395038990
24
+ 6846278828227136781
25
+ 6846393271279783183
26
+ 6846279291731315981
27
+ 6846302822405803268
28
+ 6846303393753992448
29
+ 6631908657430793476
30
+ 6846696067157855501
31
+ 6799610832528477454
32
+ 6799481768757054733
33
+ 6799632132231728391
34
+ 6799592807204949259
35
+ 6799408811812736268
36
+ 6799192188782742795
37
+ 6799214625020710144
38
+ 6799285650232282368
39
+ 6799871964044397832
40
+ 6799567742367255823
41
+ 6799842434990755079
42
+ 6799804611491302669
43
+ 6799630077681356032
44
+ 6810563817186036992
45
+ 7018071054258031876
46
+ 7003652634578046222
47
+ 6998054384126954752
48
+ 6804199355738869004
49
+ 7028054479111015692
50
+ 6924506575486930176
51
+ 6852945157218766091
52
+ 6948678821382081799
53
+ 7034494607262059776
54
+ 6925389180478442756
55
+ 7060231048436665640
56
+ 6596996733048196360
57
+ 7019257441250544904
58
+ 6826694516725124363
59
+ 6829139570873863435
60
+ 6626546582256880904
61
+ 6875943585640975629
62
+ 6691237749439122702
63
+ 7023193130031713575
64
+ 7021444066311179560
65
+ 7023245555539184931
66
+ 6890103435056647424
67
+ 6891596634208210187
68
+ 6876084422584585472
69
+ 6921530276170550543
70
+ 6955367636876152077
71
+ 6998406307627699467
72
+ 6916048903624330500
73
+ 6962719307059006757
74
+ 7023287644146633995
75
+ 7015866922952641800
76
+ 7010716223960812834
77
+ 6789799043749989639
78
+ 6864447937779453198
79
+ 6868404806692719879
80
+ 6864585830682414336
81
+ 6864464104908803336
82
+ 6864421555695406347
83
+ 7044821798168399141
84
+ 6852515832187112712
85
+ 6944194124060888356
86
+ 6861501869743770894
87
+ 6708285613214354691
88
+ 6720202003189894407
89
+ 6875710565008821504
90
+ 6694947747214265608
91
+ 6848005225207418120
92
+ 6848230767944813831
93
+ 6992930408786644258
94
+ 7029590123297754371
95
+ 7007256255601331471
96
+ 6603693731239431431
97
+ 6609092980735216909
98
+ 6617393568547867908
99
+ 6683813797590863117
100
+ 7005708253988506894
101
+ 6614033953328205069
102
+ 7000560277502659875
103
+ 7004612252749794567
104
+ 7007294950069013775
105
+ 6723520593372957956
106
+ 6723758691306327307
107
+ 6723540942005046536
108
+ 7027902340577479975
109
+ 6724072932240379139
110
+ 6806876094176759054
111
+ 6964695121380035871
112
+ 7022913322009890051
113
+ 6719472095836884235
114
+ 6898648376951311629
115
+ 6962419458421886248
116
+ 7006471084102978851
117
+ 6729863166571908359
118
+ 6850073170922196239
119
+ 6998866339808955659
120
+ 6896644027702152455
121
+ 6862228172075765007
122
+ 7021151306094038307
123
+ 6954728923670318373
124
+ 7009838697545813260
125
+ 6804697484024139023
126
+ 6890005271863627011
127
+ 6821722703318289668
128
+ 6810364597237845256
129
+ 6824314763397369101
130
+ 6665860072050150659
131
+ 6588057622690139396
132
+ 6642214705265904899
133
+ 6943606158175292679
134
+ 7053608466006510880
135
+ 6883309663887052045
136
+ 6882335565744721160
137
+ 6882019900957707535
138
+ 6881996672826641679
139
+ 6882688817216687360
140
+ 6882261368679025932
141
+ 6887537198124567808
142
+ 6882179308740234510
143
+ 6884233572681567488
144
+ 6935428450366803230
145
+ 6900018298834930957
146
+ 6962773069005950244
147
+ 6991491832731471143
148
+ 6632919871975853326
149
+ 6913508533107543309
150
+ 6888185150035758348
151
+ 6888160891062193411
152
+ 7044335645887712548
153
+ 6826906406629788942
154
+ 6834678309704535310
155
+ 6912653109466647821
156
+ 6911886311465045259
157
+ 6912372801232047372
158
+ 6923791489453575439
159
+ 6906797838299090184
160
+ 6933945482934832398
161
+ 6988778497846152488
162
+ 6661953058412465420
163
+ 7053657591594962210
164
+ 6652318431716691203
165
+ 6959108100074900769
166
+ 6958444948777749767
167
+ 6948423138476625182
168
+ 6977581008392555784
169
+ 6851908839277595918
170
+ 7027022221763824926
171
+ 7046643645541403941
172
+ 6955760886380367141
173
+ 6773826654889364743
174
+ 6864306556071087367
175
+ 6775508012497964303
176
+ 6761685888939478285
177
+ 6601651424973557006
178
+ 6601363612395113732
179
+ 6661968458898607368
180
+ 6661955363564309764
181
+ 6907898669622660365
182
+ 7021897732549823758
183
+ 6795843422155558144
184
+ 6796278439218253056
185
+ 6800979777382649095
186
+ 6792797475833990400
187
+ 6795781027680898304
188
+ 6792897401788091660
189
+ 6789837915535969544
190
+ 7008076204368596255
191
+ 6791347567276854543
192
+ 6973131309623332131
193
+ 6973583949612256526
194
+ 6973132914473061644
195
+ 6973621961121484068
196
+ 6988058857863941383
197
+ 6973133690469633314
198
+ 6973131802902891810
199
+ 6973131558630821128
200
+ 6973100059894254859
201
+ 6766462015247518980
202
+ 6766397552943287555
203
+ 6868242677725400320
204
+ 6861177952336448772
205
+ 6862146422674836744
206
+ 6857064672776949003
207
+ 6866755739868843276
208
+ 6857248877834194183
209
+ 6836670907902070020
210
+ 7004711785823472936
211
+ 6842468747228335367
212
+ 6845664512251645199
213
+ 6845464116518325504
214
+ 6942867105645694216
215
+ 6842097049127718148
216
+ 6842189070978813184
217
+ 6842285820909489421
218
+ 6842302496388517131
219
+ 6910821547510926592
220
+ 7037659286041906439
221
+ 6794990416669330688
222
+ 6999580002933116198
223
+ 6818384473957092611
224
+ 6818191541836795147
225
+ 6890557139635473668
226
+ 7027841726249209124
227
+ 6823672276060278028
228
+ 6882643461967777039
229
+ 6925630911501307147
230
+ 6935673902374997278
231
+ 6854532920569236744
232
+ 6848960147729960207
233
+ 6961679665048096031
234
+ 6932791427265072397
235
+ 6932790651176242447
236
+ 6772786213909843207
237
+ 7017697773889834276
238
+ 7008814789472374054
239
+ 6933020013653691656
240
+ 7027839508112477473
241
+ 7018081523995888903
242
+ 6916735523188952328
243
+ 6916697301520043264
244
+ 6916496093836594447
245
+ 6915942286828342543
246
+ 6849160135001115917
247
+ 6848434489488624911
248
+ 6844722773693074691
249
+ 7027865369087872264
250
+ 6839340370296442127
251
+ 6877328562022583559
252
+ 7011347681729629448
253
+ 6995042411118333215
254
+ 6753918581664140558
255
+ 6753893273120623886
256
+ 6883028290722876679
257
+ 6877905833980726542
258
+ 7015162143196613920
259
+ 6956010318124404002
260
+ 6815487937636060428
261
+ 7039979927290039588
262
+ 7039904064364088608
263
+ 7042982526268362015
264
+ 6806184441392680195
265
+ 6806994272903122184
266
+ 6806940383621270796
267
+ 6808073686147419399
268
+ 6967963198112713997
269
+ 6968670645626342686
270
+ 6803587758137806088
271
+ 6826634159990017291
272
+ 7007607583020240164
273
+ 7007689008151055630
274
+ 7007625423093796132
275
+ 6723297674604350732
276
+ 6999202660243033351
277
+ 6934173790754573568
278
+ 6952024742920604958
279
+ 7015112781401787656
280
+ 6881935035121847567
281
+ 6991492579351203103
282
+ 6757690178191576323
283
+ 6908996925001862407
284
+ 6755405727952653580
285
+ 6969441526204108062
286
+ 6953603582159506728
287
+ 6948988362430680351
288
+ 6810648413433023757
289
+ 6966807670456077582
290
+ 6995458080293031198
291
+ 7043746381047008545
292
+ 6989478568946388260
293
+ 6992154335161486600
294
+ 7043426723593014562
295
+ 6896489623871032590
296
+ 6896848817627450637
297
+ 6982133029397482789
298
+ 7027662208859393313
299
+ 7000724523041541414
300
+ 6998644293661429003
301
+ 6998537799976619295
302
+ 6998682545118367013
303
+ 7012839691653369118
304
+ 6998348900516039971
305
+ 6945220453338320142
306
+ 7008543910867848479
307
+ 6857772551565839620
308
+ 7027877118893640968
309
+ 7004128355888958753
310
+ 6863261542293441805
311
+ 6695230573637635335
312
+ 6770980407262399752
313
+ 6658113316042345736
314
+ 6659638348123999492
315
+ 7028138502562860301
316
+ 6845297094828281092
317
+ 6823363913669725448
318
+ 6684239798695103755
319
+ 6991499503631076612
320
+ 7027920751856553219
321
+ 6613318089943551240
322
+ 7013606549541227807
323
+ 7013628745391033614
324
+ 7013637183722507533
325
+ 7013676560733556004
326
+ 6995111532946328845
327
+ 7043022295295593763
328
+ 6804747267786935560
329
+ 6804780254742236419
330
+ 6804689338765430031
331
+ 6804990192773025037
332
+ 6590972352731811075
333
+ 7020263243776019748
334
+ 6958568570905201920
335
+ 6990172593567321374
336
+ 6958984117077773601
337
+ 6971045158452235535
338
+ 7014507425130761479
339
+ 6830947702365261063
340
+ 6943403246866238724
341
+ 6943058156968742174
342
+ 6884872001551404303
343
+ 6771602582063320334
344
+ 6761524739673558285
345
+ 6977225430944255244
346
+ 6903516292544744717
347
+ 6986831637665402148
348
+ 6846962776804510988
349
+ 6790987860217482504
350
+ 6789596785385000205
351
+ 6790698483734039823
352
+ 6790994130337090823
353
+ 6790377354146467087
354
+ 6791071587224292615
355
+ 6790610269031664904
356
+ 6791042788709469448
357
+ 6841738028021599488
358
+ 6946368506640223519
359
+ 6934517181774302464
360
+ 7016295347622366504
361
+ 6966539647115709708
362
+ 6989553415466634509
363
+ 6872297877264207117
364
+ 6812556773916937480
365
+ 6793448019225267463
366
+ 7033568781016239400
367
+ 7025213002756394276
368
+ 6771036373781646605
369
+ 6815763546740116747
370
+ 6855096922303155471
371
+ 6903409421183995149
372
+ 6798738016669076750
373
+ 6799129732211346688
374
+ 6798897058364329229
375
+ 6798838586625019136
376
+ 6798791300012313869
377
+ 6917521385057160455
378
+ 6917513241031642380
379
+ 6917518319717338375
380
+ 6917519769889541391
381
+ 6917513401027677440
382
+ 6917534938292079879
383
+ 6924939109215653123
384
+ 6929447653319216398
385
+ 6850243506976328975
386
+ 6969811065626496293
387
+ 6875217471041735939
388
+ 6874895234182941959
389
+ 6964273350474550565
390
+ 6739877973362511115
391
+ 6909484183282781444
392
+ 6827215508593495311
393
+ 6979582520740318497
394
+ 6990396523871767844
395
+ 6960894401027575040
396
+ 6748975268213427460
397
+ 6890401070326041867
398
+ 7046999925455916318
399
+ 6891542492282359051
400
+ 7013655059615583492
401
+ 6894123336046005507
402
+ 7034840731491634446
403
+ 7035068206834355469
404
+ 6716132354248674563
405
+ 6768748406232943879
406
+ 6858462238185966860
407
+ 6966751274033351974
408
+ 6967522520727653673
409
+ 6988731395401059591
410
+ 6988823542125137192
411
+ 6988822051410742561
412
+ 6989245926250532137
413
+ 6988748341433601287
414
+ 6988749025277136159
415
+ 6989095482073025806
416
+ 6988686083613543716
417
+ 6988685306669092129
418
+ 6988538403017035044
419
+ 6988648445850455335
420
+ 6988658583508487432
421
+ 6991063619983166733
422
+ 6991053959905479948
423
+ 7035041510471093508
424
+ 6989865099649355048
425
+ 6988795106719468808
426
+ 7003880241902947615
427
+ 7004610133938425129
428
+ 7005031876503014692
429
+ 7038808265320418563
430
+ 6943077802723822881
431
+ 6851132909647072527
432
+ 7012774343679724841
433
+ 6851208905821883663
434
+ 6930058090414951684
435
+ 6854883426433060096
436
+ 6851149328103394563
437
+ 6851539649047923968
438
+ 6857344782113508608
439
+ 6815055785375108363
440
+ 6799920478912777487
441
+ 6801033814048099599
442
+ 6660784036757196039
443
+ 6951990295361817860
444
+ 6920392203827268864
445
+ 7044544101886332167
446
+ 7044536903693110536
447
+ 7044789589755612427
448
+ 6949076459247963423
449
+ 7044814190552321287
450
+ 7018090584246160647
451
+ 6755736301779127559
452
+ 6837363937797803278
453
+ 7002790840036822286
454
+ 7003220612894199078
455
+ 7003139927860907271
456
+ 7029994065131277598
457
+ 6991335890241015078
458
+ 6864923280172666125
459
+ 6865153689397497101
460
+ 6775010520979311886
461
+ 6775337505085525259
462
+ 6775038723521383693
463
+ 7029845929318436132
464
+ 6910848869672832263
465
+ 7017441632828067109
466
+ 6897034063606058253
467
+ 6960500262389697806
468
+ 6827436705751076110
469
+ 6827747092371393796
470
+ 6827616334147243271
471
+ 6831546631620463872
472
+ 6851867018145090819
473
+ 6866360691012472067
474
+ 7049581887957896480
475
+ 7048783060040551710
476
+ 7048861382715936035
477
+ 7048891249478192420
478
+ 7048915245552782607
479
+ 7048879953420569893
480
+ 7048926901884259621
481
+ 6883331385835244813
482
+ 6951954708068076813
483
+ 6872270966106459407
484
+ 7034683697068592424
485
+ 7017739552920014116
486
+ 7017589177361435936
487
+ 6837109740330405133
488
+ 7017716576472321315
489
+ 7017986654732340521
490
+ 6838570621010562307
491
+ 7049528744184204574
492
+ 7002406832895577383
493
+ 6998453571247164685
494
+ 7000613000121945351
495
+ 7001496580188572961
496
+ 7017442227408473385
497
+ 7017414510847724836
498
+ 7017526065920789800
499
+ 6992068947063459085
500
+ 6992111449275501838
501
+ 6992127030460501255
502
+ 6861904335417232653
503
+ 6582489910870019335
504
+ 6583481991964921092
505
+ 6866197280584699136
506
+ 6919103246233570564
507
+ 6960636617618967840
508
+ 6601309012942130446
509
+ 6656727039187438861
510
+ 7048471469944327464
511
+ 7027490498361265443
512
+ 6900020602325716237
513
+ 6869287253827521796
514
+ 6867424768560303373
515
+ 6971562441322827021
516
+ 6759121139760483587
517
+ 6732286238021160199
518
+ 6729400686074760460
519
+ 6924597177310350592
520
+ 6844756518349360392
521
+ 6844776284652915982
522
+ 6844778284421631247
523
+ 6844778978494958848
524
+ 6844791137807420686
525
+ 6845080072357989636
526
+ 6746904276045417740
527
+ 6747974213874814220
528
+ 6999617935186627847
529
+ 6746738577272540424
530
+ 6746905110107933955
531
+ 7027891782197251361
532
+ 6947275565011438878
533
+ 7027891515733200132
534
+ 7027885300571573518
535
+ 7027879223423503629
536
+ 6805794994201332992
537
+ 6805750422867922190
538
+ 6805886136331062536
539
+ 6984169828995042574
540
+ 6921984059375766798
541
+ 6886357948747058443
542
+ 6940819252114935079
543
+ 6855577899844635919
544
+ 6921657713025961228
545
+ 7027873765598055684
546
+ 6990227614799514891
547
+ 6990231897909562635
548
+ 6990315589604625703
549
+ 6990288935809273120
550
+ 6990245576285768997
551
+ 6990259916208393486
552
+ 6990277053945777439
553
+ 7009442450586520843
554
+ 7027863154243669281
555
+ 6854141579452484868
556
+ 6853654661677796622
557
+ 7027842098246339843
558
+ 6853649144918084879
559
+ 6853598175782014223
560
+ 6609176747055254797
561
+ 6737250162667834627
562
+ 6807550037825015044
563
+ 6807641056977390848
564
+ 6807582684005682446
565
+ 6807605833568947471
566
+ 6807624102896028943
567
+ 6807575619598142727
568
+ 6810766098741480717
569
+ 6817453297524313357
570
+ 7042467822664043783
571
+ 6991877895970884896
572
+ 6810892177149922567
573
+ 6820072082794171652
574
+ 6810434722972355854
575
+ 6810751381972995336
576
+ 6805939478151122191
577
+ 6806119699898699015
578
+ 6806154638795050243
579
+ 6809422948814818574
580
+ 6806606169847680260
581
+ 7020242118274764046
582
+ 7021440042019179791
583
+ 7019851942029561091
584
+ 7021067470937001254
585
+ 7021159338882370855
586
+ 6810183442228088064
587
+ 6810892086141783309
588
+ 6933984545607863556
589
+ 7024047971012480293
590
+ 6835161375895997710
591
+ 6962035654960106766
592
+ 6873110086781275403
593
+ 6643668413828828424
594
+ 6870028793084480780
595
+ 6878118954947087623
596
+ 6914595715704458511
597
+ 6861885697775701248
598
+ 6920826150474222856
599
+ 6819121035665755392
600
+ 6686481160224230669
601
+ 6893269628953382144
602
+ 7027874561815252232
603
+ 6897483952299314443
604
+ 6947553212157152542
605
+ 6645815668123897102
606
+ 7052522725612489992
607
+ 6891570229969816845
608
+ 6737562768133721348
609
+ 6950171571306695976
610
+ 6884896887976021256
611
+ 6990601021982543104
612
+ 7028207119946059040
613
+ 6854064950038514951
614
+ 6851147341253135624
615
+ 6854042677390904583
616
+ 6853989224878787843
617
+ 6852979877516283151
618
+ 6828312624011185423
619
+ 6853657007828847886
620
+ 7000396692839271694
621
+ 7016216852875562271
622
+ 6700861687563570439
623
+ 6659729914352176395
624
+ 7008825846341340449
625
+ 6658850835998444804
626
+ 6792710074407062784
627
+ 6925406534285495565
628
+ 6824457136597110027
629
+ 6789239936978652429
630
+ 6909380431892794631
631
+ 6730434516105661700
632
+ 6885972986743033095
633
+ 6805136344969415951
634
+ 7038944755274829096
635
+ 6781430354055154944
636
+ 6867166970853297422
637
+ 6736737150169042183
638
+ 6989014784683429124
639
+ 6853279754209086724
640
+ 6852869196473306382
641
+ 6991494535851330846
642
+ 6988470819655666956
643
+ 6988446831701282080
644
+ 6988682262237793550
645
+ 6808015877334650127
646
+ 6896645750239808775
647
+ 6826987786642509056
648
+ 6919800791696002319
649
+ 6993132366109641988
650
+ 6790828160695946507
651
+ 6790922195494341896
652
+ 6888628485665901824
653
+ 7007318985393851678
654
+ 6723522583536405774
655
+ 6846277571336752384
656
+ 6849733324701846792
657
+ 7043725834615606564
658
+ 6752814648501783812
659
+ 6650290449728720132
660
+ 6650290016838864142
661
+ 7003565889027067175
662
+ 6917413709052660995
663
+ 6835503656784186639
664
+ 6814350072894065935
665
+ 6814223358167649547
666
+ 6814290877805006094
667
+ 6960566438436326693
668
+ 6862496783692500228
669
+ 6947318617755127078
670
+ 6680725537217957133
671
+ 6838183183779958030
672
+ 6969600590737378599
673
+ 6893761625375902979
674
+ 6716849310362848523
675
+ 7006505596249738530
676
+ 7007335568988212515
677
+ 6992166958540148004
678
+ 6992174785912425736
679
+ 6847061751171714319
680
+ 7028133155794111757
681
+ 6903417736039271688
682
+ 6903391663654259975
683
+ 6903482569623375117
684
+ 6906270461873622272
685
+ 6789396303777467660
686
+ 6789515540890275072
687
+ 6789269241737563405
688
+ 6789179815841844494
689
+ 6863670234700680461
690
+ 7027884760277994760
691
+ 6836201017860836621
692
+ 6836183231293836556
693
+ 6836183067531463948
694
+ 6836221278811114763
695
+ 6837016406660271371
696
+ 6836168603889405196
697
+ 6836177348363144463
698
+ 6836179631603846413
699
+ 6836181677300059392
700
+ 6795726406232886540
701
+ 6795764790707932431
702
+ 6795769343574674695
703
+ 6802916932044508430
704
+ 7012842517238533406
705
+ 7012823302880185607
706
+ 7012977027187821838
707
+ 7013654980955557150
708
+ 7012901246478667011
709
+ 7013170559047568673
710
+ 7013226060045110558
711
+ 7010731047281331489
712
+ 6809915709791931663
713
+ 6876257542276730120
714
+ 7007696528345173252
715
+ 6884213334812527872
716
+ 7032869305435933963
717
+ 6680479610414664974
718
+ 6680484308932726023
719
+ 6848770518095531277
720
+ 6848501754376539392
721
+ 6848579855626292494
722
+ 6848941907926584591
723
+ 6848784835973057800
724
+ 7039894871749987621
725
+ 6896844454724930831
726
+ 6852522086913658125
727
+ 6852539740328168717
728
+ 6848177805520293120
729
+ 6852586988072160512
730
+ 6866352267004611844
731
+ 6988569067028303141
732
+ 6680495441294920964
733
+ 6968739328969264423
734
+ 6869932962536819983
735
+ 7015504911643299108
736
+ 6872205855849221389
737
+ 6820179715064745229
738
+ 6836034235967524110
739
+ 7043312251079576864
740
+ 6823900927192272141
741
+ 6817979355336117511
742
+ 6872900172397989133
743
+ 6911949842147233032
744
+ 6852677764353379597
745
+ 6852984894365207821
746
+ 6852973825793985804
747
+ 6987628050611588367
748
+ 6987686503098895647
749
+ 7020632717368888615
750
+ 6988490986850651425
751
+ 6802770862526319872
752
+ 6803639669138492680
753
+ 6802851077705288963
754
+ 7020425430473706765
755
+ 7020553684987809032
756
+ 7020439365021224195
757
+ 7023692039996919080
758
+ 6921575944729693447
759
+ 7021764129945898271
760
+ 6940500821041745185
761
+ 6999597490399907109
762
+ 7008828598815591713
763
+ 7027898091239968031
764
+ 6866360146147265800
765
+ 6926098495787126016
766
+ 6691461631374888195
767
+ 7009640844173085956
768
+ 6723878732349721868
769
+ 6881232398978223373
770
+ 7020638542674087206
771
+ 6797977154782006542
772
+ 6797946717984525576
773
+ 6797955890583555328
774
+ 6797937482760490240
775
+ 6798008311460433159
776
+ 6798440875786587406
777
+ 6797924760434003200
778
+ 6988083209904934179
779
+ 6988654591785061672
780
+ 6988731721214594308
781
+ 6838058397108079887
782
+ 7027865298359307553
783
+ 7027860249763646750
784
+ 6837784250800966920
785
+ 6706724761545755908
786
+ 6972494564657548583
787
+ 7044849883752320270
788
+ 6925313216381734157
789
+ 6853242304224922894
790
+ 6924686470749965583
791
+ 6924875295799430415
792
+ 6924956003725364487
793
+ 6925223734156545287
794
+ 6766370765701991687
795
+ 6766217741016763660
796
+ 6766228423317703940
797
+ 6766234763129867527
798
+ 6777155234998340872
799
+ 6988028759072967940
800
+ 6905628008716029197
801
+ 6936451574046690598
802
+ 7003588006300896519
803
+ 7003597350492982565
804
+ 7003633195887381797
805
+ 6767918377714404622
806
+ 6990642579951947038
807
+ 6992396704175639849
808
+ 6898304240838561035
809
+ 6601765814712405251
810
+ 6601686537832762637
811
+ 6601803968425233671
812
+ 6601690518281784579
813
+ 6901142136364862731
814
+ 6893077965429591311
815
+ 6891553112411196685
816
+ 6893477906882874639
817
+ 6947274925078039811
818
+ 6830008628045532428
819
+ 6959100069924654372
820
+ 6922317442479869199
821
+ 6895999377542745351
822
+ 6872543801748016397
823
+ 6771251306406464781
824
+ 7020684985111809310
825
+ 6866979815686294798
826
+ 6866678444009327884
827
+ 7035978396383431976
828
+ 7032213017500732680
829
+ 7011798479798324520
830
+ 6984729526995586345
831
+ 6964305242070469922
832
+ 7007553697945324803
833
+ 6860436552699350272
834
+ 6996149984123014411
835
+ 6849611318106934536
836
+ 6848846476597071115
837
+ 6848853805828803852
838
+ 7027865610503605508
839
+ 6844743558939806991
840
+ 7015179078063918339
841
+ 6849177771898440963
842
+ 6848958762087156992
843
+ 6848896622001212685
844
+ 6794048844045765892
845
+ 6965408559379074340
846
+ 7037346913875709197
847
+ 7037347520925715720
848
+ 6965764136655539493
849
+ 6961671164758445324
850
+ 6687077401081416967
851
+ 6686810669221825795
852
+ 6886683690433383692
853
+ 7016857783479979301
854
+ 7017376717115264286
855
+ 6763184473241619719
856
+ 6782769312651431181
857
+ 6902249775282834695
858
+ 6780264564631047438
859
+ 6969087488023448871
860
+ 6970158017438387464
861
+ 6952063448582737165
862
+ 7038958429158870280
863
+ 6951671537141435679
864
+ 6928624085714914573
865
+ 7035424396676320515
866
+ 6844306836745702656
867
+ 6937114875189595423
868
+ 6935640384068439332
869
+ 6891203642074926350
870
+ 6844773921955400974
871
+ 6824006803018353923
872
+ 6845971406891568391
873
+ 6989050946466630920
874
+ 6989073697432816933
875
+ 6989144378392497415
876
+ 6989054254346456327
877
+ 6989056563323358501
878
+ 6989072004984999199
879
+ 6987694426378358030
880
+ 6987990211426815245
881
+ 6988727422384344333
882
+ 7027611337324858659
883
+ 7029209861531520294
884
+ 7030430491962527014
885
+ 7033613488576679168
886
+ 7029522681917689091
887
+ 7031444334620757255
888
+ 6892230838822440195
889
+ 6952058686420356366
890
+ 6814451941804952845
891
+ 6862161911828499726
892
+ 6866707115373825288
893
+ 6864830459587710211
894
+ 6866295416246242574
895
+ 6840651629285461262
896
+ 6718536657395649803
897
+ 6914584068289989902
898
+ 6914570532776103175
899
+ 6942865258377694497
900
+ 6935427469554093348
901
+ 6835822316132240651
902
+ 6810319473573219595
903
+ 6810235766942305539
904
+ 6810244511034379527
905
+ 6810227456126094600
906
+ 6810271009959087374
907
+ 6875518042453953804
908
+ 6824515285085687048
909
+ 6824273888134941966
910
+ 6824298917363043588
911
+ 6825418062817152270
912
+ 6824456540989230344
913
+ 6824447680635309325
914
+ 6942624537611717896
915
+ 6870133525300006147
916
+ 6844439307940351243
917
+ 7009449459268537637
918
+ 7020750371622554913
919
+ 7038857031654182148
920
+ 6866260665762401550
921
+ 7039925672155860265
922
+ 7050683268659727646
923
+ 6657315189093862668
924
+ 6854704649019198727
925
+ 7000288201763982623
926
+ 6968635495198788864
927
+ 6968612703178853646
928
+ 7017344287406886181
929
+ 6950140420286385412
930
+ 6922751573672119566
931
+ 6930430779285654784
932
+ 6923111319516269837
933
+ 6922710442745941262
934
+ 7057257608880655650
935
+ 7056176038535056651
936
+ 6852295865047026952
937
+ 6851466996798868744
938
+ 6852625488393866511
939
+ 6950543663424359693
940
+ 7056404286284090662
941
+ 6822849359667924227
942
+ 6822822191986396431
943
+ 6824249309484076303
944
+ 6987545166991084813
945
+ 6833590376872316168
946
+ 6894123222929902862
947
+ 6815608457887010063
948
+ 7032253745689857317
949
+ 7029229563137821989
950
+ 7029482339818392863
951
+ 7056313944817945856
952
+ 6893817237463977223
953
+ 7016158173178481928
954
+ 7049986028387568935
955
+ 6972815906502151463
956
+ 7007322146288504096
957
+ 7045264001541917966
958
+ 7023492285463612708
959
+ 7057098924561108262
960
+ 7014037343271177485
961
+ 6972402411998678308
962
+ 6972363800263675151
963
+ 6972420491227188487
964
+ 6960565268309445895
965
+ 7033979808505777411
966
+ 6824693917791833347
967
+ 6925771486640819469
968
+ 6942027436464852254
969
+ 6887458098420731148
970
+ 6819587416542825731
971
+ 7004304973991365919
972
+ 6914868017910320384
973
+ 6786601102973439247
974
+ 6786995810811825408
975
+ 6839432188866383118
976
+ 7055540654083935523
977
+ 6749752784016379149
978
+ 6995926599174507783
979
+ 6994985239529426206
980
+ 6995034911715495181
981
+ 6994715205578149152
982
+ 6962815025379544350
983
+ 6962697672247627019
984
+ 6890529616985869571
985
+ 6832185731620867335
986
+ 6963475755355393315
987
+ 6831381330450861323
988
+ 6831126629700488451
989
+ 6830756581827808523
990
+ 6845253491976457484
991
+ 6859694525888122112
992
+ 7024927766906719518
993
+ 7024885711677525260
994
+ 7024872299543235874
995
+ 7025399661116525854
996
+ 7018009000729988352
997
+ 7018087007637359876
998
+ 6672333608885193997
999
+ 6725959074594229516
1000
+ 7018389998277774606
1001
+ 6807197079044246784
1002
+ 6801975907172044032
1003
+ 6901555943423692036
1004
+ 7003940340956761381
1005
+ 7015912615247383815
1006
+ 7014880697168973094
1007
+ 6853077464843832583
1008
+ 6951984255584996647
1009
+ 6857787505337535752
1010
+ 6961619376055291168
1011
+ 7015096155822394631
1012
+ 6799054384429845767
1013
+ 6799070294901263616
1014
+ 6805429938464804110
1015
+ 7054804462501776651
1016
+ 6996465978309643527
1017
+ 6601552344368811268
1018
+ 6601418130373741827
1019
+ 6672596808490831108
1020
+ 6672607427034107144
1021
+ 6872225881922800903
1022
+ 6812205450403073288
1023
+ 6852471007010180352
1024
+ 7009133406340631842
1025
+ 6981724915720310057
1026
+ 7035566006554643751
1027
+ 7030354324840566029
1028
+ 6990508795952713000
1029
+ 7045383922292641031
1030
+ 6992380774750244126
1031
+ 6907420193622985997
1032
+ 6813960385436142862
1033
+ 6993667558448696589
1034
+ 6962470014104423712
1035
+ 6961335020694867240
1036
+ 6991423203205713160
1037
+ 6639931517634088200
1038
+ 7015088065521683744
1039
+ 7027875719078366476
1040
+ 6639935519650221316
1041
+ 6998389046774959397
1042
+ 6838545142350089486
1043
+ 6839504528132312320
1044
+ 6839913812527779084
1045
+ 6745966833112730892
1046
+ 6797317471222222088
1047
+ 6873624092294073608
1048
+ 6873624365544574216
1049
+ 6818456717186157828
1050
+ 7050479213098388777
1051
+ 6973517103378861315
1052
+ 6829225780535414024
1053
+ 6670066165177486605
1054
+ 7024788820474318094
1055
+ 7046943614638787872
1056
+ 6979842981633215755
1057
+ 7029577288278641927
1058
+ 6907161181887220996
1059
+ 6956861520747760933
1060
+ 7045236629421690153
1061
+ 7013533576759086366
1062
+ 6904831360410602759
1063
+ 7043265905731620103
1064
+ 6813127019132423431
1065
+ 7021437448987102471
1066
+ 7020645164867702055
1067
+ 6923392226127121672
1068
+ 6747713690004425998
1069
+ 6786598297932025092
1070
+ 6955779828280806664
1071
+ 6844137104889433358
1072
+ 6863350843568065796
1073
+ 7004708327485754660
1074
+ 6921677973334543630
1075
+ 6905746694005099791
1076
+ 6741270032111701255
1077
+ 6984057954035109150
1078
+ 6984321731674541319
1079
+ 6984415781287169291
1080
+ 6984420646168169736
1081
+ 6722677705763998979
1082
+ 6875521596296137991
1083
+ 6800641564394769671
1084
+ 7052861203307056414
1085
+ 7017791130548833536
1086
+ 6855475582453484811
1087
+ 6706025183452351755
1088
+ 6706303784215121164
1089
+ 6786554322516757773
1090
+ 6706666689691520259
1091
+ 6706307318742584583
1092
+ 6706733840070659336
1093
+ 6833266792295697675
1094
+ 6894498895607450894
1095
+ 6864830194549591300
1096
+ 6834090217914354956
1097
+ 6944180901626563847
1098
+ 6939705680093826340
1099
+ 6915542827426467086
1100
+ 6953180044663606564
1101
+ 7026682604434902276
1102
+ 6845554752420318468
1103
+ 6988384134892703012
1104
+ 6988347682641202465
1105
+ 6988355207474187528
1106
+ 6988345870337051934
1107
+ 6988350632432356616
1108
+ 6730005569073106180
1109
+ 6886296759493020941
1110
+ 6886310115218132224
1111
+ 6798661547246832907
1112
+ 6894612649531723022
1113
+ 6963995027122949383
1114
+ 7037678639407713544
1115
+ 6994408225005145378
1116
+ 6963096918754938127
1117
+ 6921877001590689038
1118
+ 7028529035609148676
1119
+ 6763209184528928004
1120
+ 6860488338697276687
1121
+ 6717960933538270477
1122
+ 7022645150371433732
1123
+ 7025198307337063721
1124
+ 6734183552138644750
1125
+ 7031042923403726118
1126
+ 6839197629331541262
1127
+ 6854770358029995279
1128
+ 7024386092619025676
1129
+ 6809107490568015115
1130
+ 7045925414622989605
1131
+ 6811820983104638212
1132
+ 6811731857701358848
1133
+ 6781646180800646403
1134
+ 7048279986280598819
1135
+ 6989879848529333512
1136
+ 6989838370146979083
1137
+ 6989484406104689957
1138
+ 7048576318459497742
1139
+ 6893389748480625934
1140
+ 7047824234395045156
1141
+ 6712816336973647116
1142
+ 6863372774707072263
1143
+ 6858496463324990728
1144
+ 6784236847154384141
1145
+ 6784181585978707204
1146
+ 6988319574223555847
1147
+ 6988492921263787300
1148
+ 6602092948031016196
1149
+ 6602089727090756872
1150
+ 6857375682675166478
1151
+ 6637728366650723592
1152
+ 6612183406635650308
1153
+ 6722438557987851523
1154
+ 6974326372076473639
1155
+ 6905321879456861454
1156
+ 6972703718487756032
1157
+ 6959070097126346025
1158
+ 6847109400235166988
1159
+ 6993680509851192615
1160
+ 7008243555298774285
1161
+ 6883688654267567372
1162
+ 6816602226124033288
1163
+ 6829612419829075212
1164
+ 6841814713282661645
1165
+ 6670805620435750147
1166
+ 6671112046978796803
1167
+ 6670707542898789646
1168
+ 6684799575590587651
1169
+ 7056960971734109476
1170
+ 6924929045708705037
1171
+ 6925218688496962830
1172
+ 6924276158305438983
1173
+ 6972788461677972750
1174
+ 6972822369048071457
1175
+ 6972518820296658210
1176
+ 6818172291185216771
1177
+ 6818254662957812996
1178
+ 6818183900867693831
1179
+ 6818189045835762957
1180
+ 6818176700526972175
1181
+ 6818177047186181388
1182
+ 6957332862806871333
1183
+ 6922772290446937352
1184
+ 6889365879549676813
1185
+ 6766392183114222856
1186
+ 7051877619251318023
1187
+ 6857769856498994439
1188
+ 7032175363627240744
1189
+ 6883002263124626695
1190
+ 6882995145646673166
1191
+ 6883093359997635854
1192
+ 6841157087737810183
1193
+ 6843223547012320524
1194
+ 6841513596141276423
1195
+ 6841757602284604687
1196
+ 6882572192501026048
1197
+ 6883878275328838920
1198
+ 6843212356214967567
1199
+ 6843695846136106255
1200
+ 6845025280160009480
1201
+ 6975634643404033293
1202
+ 6986771327285726500
1203
+ 6843428070272060686
1204
+ 6850444269824527624
1205
+ 6851757877980368141
1206
+ 6838103289851104526
1207
+ 7019176421272718604
1208
+ 6889960078342982912
1209
+ 6891294237036416263
1210
+ 6889688683054632192
1211
+ 6884560770525400332
1212
+ 6985148688599452959
1213
+ 6828096382855941376
1214
+ 6859578472910671108
1215
+ 7002792013359811870
1216
+ 7025218023657114910
1217
+ 7024876615393938724
1218
+ 6733905101359959300
1219
+ 6732333962821209357
1220
+ 6799062729790459151
1221
+ 6799487592053181707
1222
+ 6800313787682393357
1223
+ 6799212507085982990
1224
+ 7050760867020934414
1225
+ 7050033675534208256
1226
+ 7050407300435053832
1227
+ 6983145466733120775
1228
+ 6775682394864241928
1229
+ 6717151423227858179
1230
+ 6647411044501163268
1231
+ 6700401364331154696
1232
+ 6896293361062251780
1233
+ 7040074834931354914
1234
+ 7040267067081133326
1235
+ 7038557817552293123
1236
+ 7039183851284860197
1237
+ 6952011958073838856
1238
+ 6879657338479922447
1239
+ 6879648527568375051
1240
+ 6879925463733652751
1241
+ 7012408088154115362
1242
+ 7012365954877295885
1243
+ 6828710235448872192
1244
+ 6965421764612558091
1245
+ 6969713655126510879
1246
+ 6966482095812218144
1247
+ 6927088372099927303
1248
+ 6983295000121511208
1249
+ 6819225937868000523
1250
+ 6708971806499392780
1251
+ 6687412730971868429
1252
+ 6687415441695984900
1253
+ 6687811321574051076
1254
+ 6781727165240118531
1255
+ 6687419353547279629
1256
+ 6796850990931922190
1257
+ 6977896947092819208
1258
+ 7029602985692941572
1259
+ 6881900497465380104
1260
+ 7047561614614187264
1261
+ 6944252027438468365
1262
+ 6790920932694281487
1263
+ 6827719074328349956
1264
+ 6791023538900978947
1265
+ 6791327276693769476
1266
+ 6791831278296599822
1267
+ 7029591662020070691
1268
+ 7027888720120384775
1269
+ 6723837649523608836
1270
+ 6904190453969620232
1271
+ 6924115033282596111
1272
+ 6810857820892728583
1273
+ 6691220078169427214
1274
+ 6692770651482164488
1275
+ 7003174376501693704
1276
+ 7003323274218261790
1277
+ 6571001202379590925
1278
+ 7002783251727142174
1279
+ 7015141085047491852
1280
+ 6815151234698251523
1281
+ 6874220865987415304
1282
+ 6714844810399747340
1283
+ 6700549546591898888
1284
+ 6941874367362026782
1285
+ 6702695933576039688
1286
+ 6759760505386044680
1287
+ 7027862919559925030
1288
+ 6853972709974494472
1289
+ 6854069496425073927
1290
+ 6853944547446148364
1291
+ 6854097139853757704
1292
+ 6853973226440117517
1293
+ 6853962519736798479
1294
+ 6943114614414609667
1295
+ 6942767871684578591
1296
+ 6752823620881501452
1297
+ 6752500200847265027
1298
+ 6752503898239503629
1299
+ 6752769472836259084
1300
+ 6752744386607516942
1301
+ 7013643268407741709
1302
+ 6989445925752163591
1303
+ 6989496406260157703
1304
+ 6989433418803186975
1305
+ 6803631659339009287
1306
+ 6803630413559385358
1307
+ 6803550951979388160
1308
+ 6803906422519237891
1309
+ 6803680340402539789
1310
+ 6803220050435214605
1311
+ 6828472686629473551
1312
+ 6833180805523655936
1313
+ 6858543833941101836
1314
+ 6967304512025529639
1315
+ 6981376202854370600
1316
+ 6895645115327548683
1317
+ 6848868667233471744
1318
+ 6848922685674704128
1319
+ 6848850561106808078
1320
+ 7015126847277124878
1321
+ 6848835923430345997
1322
+ 6848898037788560647
1323
+ 6922285670010473740
1324
+ 6617561143990816007
1325
+ 6615513758447979780
1326
+ 6988303473049734437
1327
+ 6992805039286930729
1328
+ 6988160063231888675
1329
+ 6987961460941016334
1330
+ 6987926512364277007
1331
+ 6992870723819801887
1332
+ 7008191125190151439
1333
+ 7008444285003648291
1334
+ 6857307515592396045
1335
+ 6951984332437245215
1336
+ 6896644309940997389
1337
+ 6908203817863499016
1338
+ 6765480777158266115
1339
+ 6765476032708381965
1340
+ 6988040278133296419
1341
+ 6871564257146785024
1342
+ 6976057009275784460
1343
+ 6961171972868902148
1344
+ 6961414337353354531
1345
+ 6985499664539831593
1346
+ 6985718689903545641
1347
+ 6986149633626049796
1348
+ 6994787235748924703
1349
+ 7041376892577991973
1350
+ 6831107091411782916
FakeVD/dataset/my_datajson/train_1_modified.json ADDED
The diff for this file is too large to render. See raw diff