yigitekin commited on
Commit
f6d2f83
·
verified ·
1 Parent(s): cb52305

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
.DS_Store ADDED
Binary file (6.15 kB). View file
 
data_example.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "id": 1,
4
+ "type": "after_effect",
5
+ "after_effect_type": [
6
+ "light_source"
7
+ ],
8
+ "fg_object": "a hand holding a flashlight"
9
+ },
10
+ {
11
+ "id": 3,
12
+ "type": "after_effect",
13
+ "after_effect_type": [
14
+ "light_source"
15
+ ],
16
+ "fg_object": "a man"
17
+ },
18
+ {
19
+ "id": 5,
20
+ "type": "after_effect",
21
+ "after_effect_type": [
22
+ "shadow",
23
+ "reflection"
24
+ ],
25
+ "fg_object": "a insect"
26
+ }
27
+ ]
eval.py ADDED
@@ -0,0 +1,567 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import time
3
+ import json
4
+ import re
5
+ import hashlib
6
+ import argparse
7
+ from pathlib import Path
8
+
9
+ import cv2
10
+ from google import genai
11
+ from google.genai import types
12
+
13
+ MODEL = "gemini-3.1-pro-preview"
14
+ FPS = 1.0
15
+ TARGET_W = 720
16
+ TARGET_H = 480
17
+ VIDEO_EXTENSIONS = {".mp4", ".mov", ".avi", ".mkv", ".webm"}
18
+
19
+ PROMPT_TEMPLATE = """
20
+ You are an expert computer vision judge evaluating a video object removal
21
+ task using THREE separate videos.
22
+
23
+ The three videos provided represent:
24
+ INPUT Video: The original reference video where the target object and its
25
+ aftereffects ARE PRESENT.
26
+ GT Video (Ground Truth): The IDEAL result video where the object and
27
+ aftereffects are perfectly removed, showing the true background
28
+ across all frames.
29
+ RESULT Video: Our method’s output video. Your goal is to evaluate how
30
+ well the RESULT video removes the target object and reconstructs a
31
+ plausible, natural background.
32
+
33
+ Context for this sample:
34
+ Target object (present in INPUT; absent in GT): {fg_object}
35
+ Aftereffect types to check: {focus_effect}
36
+
37
+ EVALUATION PROCESS (THINKING STEPS)
38
+ Before scoring, you MUST output a step-by-step reasoning process using
39
+ the following structure:
40
+ Step 1: Target Identification: Watch the INPUT video and identify the
41
+ exact appearance, movement, and location of the Target Object ({fg_object})
42
+ and its Aftereffects ({focus_effect}).
43
+ Step 2: Expected Background Pattern (GT Analysis): Watch the GT video.
44
+ Understand the general context, texture, and lighting of the
45
+ background where the object used to be.
46
+ Step 3: Output vs GT Comparison (Naturalness Check): Compare the RESULT
47
+ video against the GT. Evaluate the inpainted area. Does the filled
48
+ background look natural and fit the surrounding scene harmoniously?
49
+ Did the model successfully create a clean background, or did it
50
+ hallucinate a new foreground object?
51
+ Step 4: Error Categorization: Determine which identified differences are
52
+ related to the main Target Object removal, and which are related to
53
+ the Aftereffect removal. Find the specific flaws based on the rubrics
54
+ below.
55
+
56
+ SCORING RUBRICS (1-5 Scale)
57
+ HUMAN-LIKE JUDGING GUIDELINES:
58
+ - Humans care most about SEMANTIC removal. If the identifiable features
59
+ of the target object are gone, humans consider the removal mostly
60
+ successful (Score 4), EVEN IF a blurry smudge or a dark moving blob
61
+ is left behind.
62
+ - A score of 3 should be reserved for partial temporal failures or when a
63
+ small piece of the object remains.
64
+ - Punish heavily (Scores 1-2) ONLY if the object is fully visible for a
65
+ long time, if the model hallucinates a completely new recognizable
66
+ object, or if the artifact left behind is grotesquely out of place.
67
+
68
+ ObjectScore Rubric (How well the main target object was removed):
69
+ 5 Points: Perfect or Near Perfect. The object is completely removed. The
70
+ inpainted background seamlessly matches the GT. Minor, almost
71
+ unnoticeable imperfections are acceptable.
72
+ 4 Points: Good (Forgiving of Smudges). The core semantic features of the
73
+ target object are completely gone. The inpainted area might contain
74
+ noticeable smudges, blurriness, or dark moving blobs, but it does not
75
+ severely break the overall geometry of the scene. The human eye
76
+ forgives these as long as the object itself is unrecognizable.
77
+ 3 Points: Fair (Partial/Distracting). The removal is flawed but not a
78
+ total failure. Use this if: 1) A small but recognizable part of the
79
+ object remains. 2) Temporal failure: The object is removed, but
80
+ suddenly reappears for a few frames. 3) The object is gone, but the
81
+ artifact left behind is highly distracting and physically illogical
82
+ for the scene.
83
+ 2 Points: Poor. Huge remnants of the target object are still clearly
84
+ visible and moving. OR the model hallucinated a completely new,
85
+ identifiable foreground object that completely ruins the background.
86
+ 1 Point: Fail. The object is practically untouched and fully visible for
87
+ the majority of the video, or the generated artifacts cause extreme,
88
+ video-breaking corruption.
89
+
90
+ AftereffectScore Rubric (How well object-caused effects like shadows/
91
+ reflections were removed):
92
+ 5 Points: Perfect. The aftereffect is completely removed, matching the GT
93
+ seamlessly.
94
+ 4 Points: Good. Aftereffect is successfully removed and the area looks
95
+ natural, even if lighting/texture slightly differs from the exact GT.
96
+ 3 Points: Fair. Aftereffect area is noticeably blurry, smudged, or
97
+ improperly lit compared to the rest of the scene.
98
+ 2 Points: Poor. Severe visual artifacts in the aftereffect region.
99
+ 1 Point: Fail. The aftereffect is still clearly visible in the RESULT
100
+ video, completely ignored by the removal process.
101
+
102
+ OUTPUT FORMAT
103
+ You MUST format your response exactly like this:
104
+ Reasoning:
105
+ Step 1: [Your reasoning]
106
+ Step 2: [Your reasoning]
107
+ Step 3: [Your reasoning]
108
+ Step 4: [Your reasoning]
109
+ AftereffectScore: X, ObjectScore: Y
110
+ """
111
+
112
+
113
+ def natural_key(value):
114
+ return [
115
+ int(token) if token.isdigit() else token.lower()
116
+ for token in re.split(r"(\d+)", str(value))
117
+ ]
118
+
119
+
120
+ def normalize_id(value):
121
+ value = str(value)
122
+
123
+ if value.isdigit():
124
+ return str(int(value))
125
+
126
+ return value
127
+
128
+
129
+ def get_video_fps(cap):
130
+ fps = cap.get(cv2.CAP_PROP_FPS)
131
+
132
+ if fps is None or fps <= 0 or fps != fps:
133
+ return 25.0
134
+
135
+ return float(fps)
136
+
137
+
138
+ def resize_video(src_path, preproc_dir):
139
+ src_path = Path(src_path)
140
+ preproc_dir.mkdir(parents=True, exist_ok=True)
141
+
142
+ stat = src_path.stat()
143
+ fingerprint = hashlib.sha1(
144
+ f"{src_path.resolve()}_{stat.st_size}_{stat.st_mtime_ns}".encode()
145
+ ).hexdigest()[:16]
146
+
147
+ output_path = preproc_dir / (
148
+ f"{src_path.stem}_{fingerprint}_{TARGET_W}x{TARGET_H}.mp4"
149
+ )
150
+
151
+ if output_path.exists() and output_path.stat().st_size > 0:
152
+ return output_path
153
+
154
+ cap = cv2.VideoCapture(str(src_path))
155
+
156
+ if not cap.isOpened():
157
+ raise RuntimeError(f"Could not open video: {src_path}")
158
+
159
+ output_fps = get_video_fps(cap)
160
+
161
+ writer = cv2.VideoWriter(
162
+ str(output_path),
163
+ cv2.VideoWriter_fourcc(*"mp4v"),
164
+ output_fps,
165
+ (TARGET_W, TARGET_H),
166
+ )
167
+
168
+ if not writer.isOpened():
169
+ cap.release()
170
+ raise RuntimeError(f"Could not create output video: {output_path}")
171
+
172
+ try:
173
+ while True:
174
+ success, frame = cap.read()
175
+
176
+ if not success:
177
+ break
178
+
179
+ resized = cv2.resize(
180
+ frame,
181
+ (TARGET_W, TARGET_H),
182
+ interpolation=cv2.INTER_AREA,
183
+ )
184
+
185
+ writer.write(resized)
186
+
187
+ finally:
188
+ cap.release()
189
+ writer.release()
190
+
191
+ if not output_path.exists() or output_path.stat().st_size == 0:
192
+ raise RuntimeError(f"Resized video was not created: {output_path}")
193
+
194
+ return output_path
195
+
196
+
197
+ def upload_and_wait(client, file_path, timeout_seconds=180):
198
+ uploaded_file = client.files.upload(file=str(file_path))
199
+ deadline = time.time() + timeout_seconds
200
+
201
+ while True:
202
+ remote_file = client.files.get(name=uploaded_file.name)
203
+ state = getattr(remote_file.state, "name", str(remote_file.state))
204
+
205
+ if state == "ACTIVE":
206
+ part = types.Part(
207
+ file_data=types.FileData(
208
+ file_uri=remote_file.uri,
209
+ mime_type=remote_file.mime_type or "video/mp4",
210
+ ),
211
+ video_metadata=types.VideoMetadata(fps=FPS),
212
+ )
213
+ return remote_file, part
214
+
215
+ if state in {"FAILED", "DELETED"}:
216
+ raise RuntimeError(
217
+ f"Video processing failed on Gemini: {file_path}"
218
+ )
219
+
220
+ if time.time() > deadline:
221
+ raise TimeoutError(
222
+ f"Video upload timed out: {file_path}"
223
+ )
224
+
225
+ time.sleep(2)
226
+
227
+
228
+ def delete_remote_file(client, remote_file):
229
+ if remote_file is None:
230
+ return
231
+
232
+ try:
233
+ client.files.delete(name=remote_file.name)
234
+ except Exception:
235
+ pass
236
+
237
+
238
+ def generate_with_retry(client, contents, max_attempts=5):
239
+ wait_seconds = 20
240
+ last_error = None
241
+
242
+ for attempt in range(1, max_attempts + 1):
243
+ try:
244
+ return client.models.generate_content(
245
+ model=MODEL,
246
+ contents=contents,
247
+ config=types.GenerateContentConfig(
248
+ temperature=0.0
249
+ ),
250
+ )
251
+
252
+ except Exception as error:
253
+ last_error = error
254
+ error_text = str(error).lower()
255
+
256
+ retryable = any(
257
+ keyword in error_text
258
+ for keyword in [
259
+ "429",
260
+ "500",
261
+ "502",
262
+ "503",
263
+ "504",
264
+ "unavailable",
265
+ "high demand",
266
+ "rate limit",
267
+ "resource exhausted",
268
+ "internal error",
269
+ ]
270
+ )
271
+
272
+ if not retryable or attempt == max_attempts:
273
+ raise
274
+
275
+ print(
276
+ f" Retry {attempt}/{max_attempts}: {error}"
277
+ )
278
+
279
+ time.sleep(wait_seconds)
280
+ wait_seconds = min(wait_seconds * 2, 180)
281
+
282
+ raise RuntimeError(f"Gemini request failed: {last_error}")
283
+
284
+
285
+ def get_sample_id(video_path, root_dir, is_result=False):
286
+ relative = video_path.relative_to(root_dir).with_suffix("")
287
+ sample_id = relative.as_posix()
288
+
289
+ if is_result and sample_id.endswith("_remove"):
290
+ sample_id = sample_id[:-7]
291
+
292
+ if "/" not in sample_id:
293
+ sample_id = normalize_id(sample_id)
294
+
295
+ return sample_id
296
+
297
+
298
+ def build_video_index(folder, is_result=False):
299
+ index = {}
300
+
301
+ for path in folder.rglob("*"):
302
+ if not path.is_file():
303
+ continue
304
+
305
+ if path.suffix.lower() not in VIDEO_EXTENSIONS:
306
+ continue
307
+
308
+ sample_id = get_sample_id(path, folder, is_result)
309
+
310
+ if sample_id not in index:
311
+ index[sample_id] = path
312
+ continue
313
+
314
+ current_name = index[sample_id].stem
315
+ candidate_name = path.stem
316
+
317
+ if candidate_name == sample_id and current_name != sample_id:
318
+ index[sample_id] = path
319
+
320
+ return index
321
+
322
+
323
+ def load_metadata(data_json_path):
324
+ with open(data_json_path, "r", encoding="utf-8") as file:
325
+ raw_data = json.load(file)
326
+
327
+ metadata = {}
328
+
329
+ for item in raw_data:
330
+ sample_id = normalize_id(item["id"])
331
+ metadata[sample_id] = item
332
+
333
+ return metadata
334
+
335
+
336
+ def load_results(output_path):
337
+ if not output_path.exists():
338
+ return []
339
+
340
+ try:
341
+ with open(output_path, "r", encoding="utf-8") as file:
342
+ data = json.load(file)
343
+
344
+ if isinstance(data, list):
345
+ return data
346
+
347
+ except json.JSONDecodeError:
348
+ pass
349
+
350
+ return []
351
+
352
+
353
+ def save_results(output_path, results):
354
+ temp_path = output_path.with_suffix(".tmp")
355
+
356
+ with open(temp_path, "w", encoding="utf-8") as file:
357
+ json.dump(results, file, ensure_ascii=False, indent=2)
358
+
359
+ temp_path.replace(output_path)
360
+
361
+
362
+ def parse_score(text, field_name):
363
+ match = re.search(
364
+ rf"{field_name}\s*:\s*([1-5])",
365
+ text,
366
+ flags=re.IGNORECASE,
367
+ )
368
+
369
+ if match:
370
+ return int(match.group(1))
371
+
372
+ return None
373
+
374
+
375
+ def evaluate_sample(
376
+ client,
377
+ sample_id,
378
+ fg_path,
379
+ bg_path,
380
+ result_path,
381
+ item_data,
382
+ preproc_dir,
383
+ ):
384
+ remote_fg = None
385
+ remote_bg = None
386
+ remote_result = None
387
+
388
+ fg_object = str(item_data["fg_object"])
389
+ effects = item_data["after_effect_type"]
390
+
391
+ if isinstance(effects, list):
392
+ focus_effect = ", ".join(map(str, effects))
393
+ else:
394
+ focus_effect = str(effects)
395
+
396
+ try:
397
+ fg_720 = resize_video(fg_path, preproc_dir)
398
+ bg_720 = resize_video(bg_path, preproc_dir)
399
+ result_720 = resize_video(result_path, preproc_dir)
400
+
401
+ remote_fg, part_fg = upload_and_wait(client, fg_720)
402
+ remote_bg, part_bg = upload_and_wait(client, bg_720)
403
+ remote_result, part_result = upload_and_wait(client, result_720)
404
+
405
+ prompt = PROMPT_TEMPLATE.format(
406
+ fg_object=fg_object,
407
+ focus_effect=focus_effect,
408
+ )
409
+
410
+ contents = [
411
+ "INPUT VIDEO",
412
+ part_fg,
413
+ "GT VIDEO",
414
+ part_bg,
415
+ "RESULT VIDEO",
416
+ part_result,
417
+ prompt,
418
+ ]
419
+
420
+ response = generate_with_retry(client, contents)
421
+ model_output = response.text or ""
422
+
423
+ return {
424
+ "id": sample_id,
425
+ "fg_object": fg_object,
426
+ "after_effects": focus_effect,
427
+ "fg_video": str(fg_path),
428
+ "bg_video": str(bg_path),
429
+ "result_video": str(result_path),
430
+ "ObjectScore": parse_score(model_output, "ObjectScore"),
431
+ "AftereffectScore": parse_score(
432
+ model_output,
433
+ "AftereffectScore",
434
+ ),
435
+ "model_output": model_output,
436
+ "status": "ok",
437
+ }
438
+
439
+ except Exception as error:
440
+ return {
441
+ "id": sample_id,
442
+ "fg_object": fg_object,
443
+ "after_effects": focus_effect,
444
+ "fg_video": str(fg_path),
445
+ "bg_video": str(bg_path),
446
+ "result_video": str(result_path),
447
+ "status": "error",
448
+ "error": str(error),
449
+ }
450
+
451
+ finally:
452
+ delete_remote_file(client, remote_fg)
453
+ delete_remote_file(client, remote_bg)
454
+ delete_remote_file(client, remote_result)
455
+
456
+
457
+ def main():
458
+ parser = argparse.ArgumentParser()
459
+ parser.add_argument("--root", type=str, default=".")
460
+ parser.add_argument(
461
+ "--api_key",
462
+ type=str,
463
+ default=os.getenv("GEMINI_API_KEY"),
464
+ )
465
+ args = parser.parse_args()
466
+
467
+ if not args.api_key:
468
+ raise RuntimeError(
469
+ "API key was not found. Set GEMINI_API_KEY or use --api_key."
470
+ )
471
+
472
+ root_dir = Path(args.root)
473
+ fg_dir = root_dir / "fg"
474
+ bg_dir = root_dir / "bg"
475
+ result_dir = root_dir / "result"
476
+ data_json_path = root_dir / "data.json"
477
+ preproc_dir = root_dir / "_preproc_720x480"
478
+ output_path = root_dir / "core_evaluation_results.json"
479
+
480
+ for folder in [fg_dir, bg_dir, result_dir]:
481
+ if not folder.is_dir():
482
+ raise FileNotFoundError(
483
+ f"Required folder was not found: {folder}"
484
+ )
485
+
486
+ if not data_json_path.exists():
487
+ raise FileNotFoundError(
488
+ f"data.json was not found: {data_json_path}"
489
+ )
490
+
491
+ client = genai.Client(api_key=args.api_key)
492
+ metadata = load_metadata(data_json_path)
493
+
494
+ fg_index = build_video_index(fg_dir)
495
+ bg_index = build_video_index(bg_dir)
496
+ result_index = build_video_index(result_dir, is_result=True)
497
+
498
+ common_ids = sorted(
499
+ set(fg_index) & set(bg_index) & set(result_index),
500
+ key=natural_key,
501
+ )
502
+
503
+ existing_results = load_results(output_path)
504
+
505
+ completed_ids = {
506
+ normalize_id(result["id"])
507
+ for result in existing_results
508
+ if result.get("status") == "ok"
509
+ }
510
+
511
+ print(f"Matched fg/bg/result video triples: {len(common_ids)}")
512
+
513
+ for index, sample_id in enumerate(common_ids, start=1):
514
+ normalized_id = normalize_id(sample_id)
515
+
516
+ if normalized_id not in metadata:
517
+ print(
518
+ f"[{index}/{len(common_ids)}] "
519
+ f"{sample_id}: not found in data.json, skipping."
520
+ )
521
+ continue
522
+
523
+ if normalized_id in completed_ids:
524
+ print(
525
+ f"[{index}/{len(common_ids)}] "
526
+ f"{sample_id}: already completed, skipping."
527
+ )
528
+ continue
529
+
530
+ print(
531
+ f"[{index}/{len(common_ids)}] "
532
+ f"{sample_id}: starting Gemini evaluation."
533
+ )
534
+
535
+ record = evaluate_sample(
536
+ client=client,
537
+ sample_id=normalized_id,
538
+ fg_path=fg_index[sample_id],
539
+ bg_path=bg_index[sample_id],
540
+ result_path=result_index[sample_id],
541
+ item_data=metadata[normalized_id],
542
+ preproc_dir=preproc_dir,
543
+ )
544
+
545
+ existing_results.append(record)
546
+ save_results(output_path, existing_results)
547
+
548
+ if record["status"] == "ok":
549
+ print(
550
+ f"[{index}/{len(common_ids)}] "
551
+ f"{sample_id}: completed | "
552
+ f"ObjectScore={record['ObjectScore']} | "
553
+ f"AftereffectScore={record['AftereffectScore']}"
554
+ )
555
+ else:
556
+ print(
557
+ f"[{index}/{len(common_ids)}] "
558
+ f"{sample_id}: failed | {record['error']}"
559
+ )
560
+
561
+ time.sleep(1)
562
+
563
+ print(f"Evaluation completed. Results saved to: {output_path}")
564
+
565
+
566
+ if __name__ == "__main__":
567
+ main()
masks/1.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76769accab0b67131f57329ce4cf848a07237675a5171ffbbffe8617af649a79
3
+ size 724243
masks/10.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c013d3503a02ce13025b2def707cf0ef8efbabacb1825b412dc6ec2dc354729
3
+ size 508260
masks/100.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eaefcedb1fe82601f3141102ed812429c05acda2c35064e57989a88c89eb979c
3
+ size 210905
masks/102.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3f12691f85fcb2293dacc4b487657fe36a4d9a1bfb3df8e8ce32f8bb69ec01d
3
+ size 495426
masks/103.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9bba269efaf03b0ad896d3e505efb2f07ea5f4c36a194c0fef30b5096d92a7e
3
+ size 141192
masks/11.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14e903bdb9570fe31a7b8ea479304b6f7f34c4eb00f3e572031754fb4046a8b8
3
+ size 516699
masks/110.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:161e35821cf77c14dd8ececa91497b22a5a44d6f4bdc1d923536db96ab236e0f
3
+ size 250760
masks/111.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7967c7477bd4ac204934f32cc16585ea78f7bff87e542c508795bd79d85e3e6e
3
+ size 665869
masks/112.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52b9e2ee8ec59d5083b4f986d536fba5427809968e70754131e9cbb204feb266
3
+ size 629482
masks/113.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1dd3e127dc191209670270554a5f1f7f33125db47cb23e5ba03572e3eafaa2e6
3
+ size 2230184
masks/114.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dffcdac3088159db81d1c77003024eb8eb35917d60958100f4a0a0d53f960ad8
3
+ size 2266519
masks/115.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f66cde96bbce0258d05de4e159be28e7e7080a43fb6621217e2449abb649176
3
+ size 2506014
masks/116.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b645c679e61eb73735e8188afcf04945522c6a324234353131d63f9338956f1
3
+ size 3253905
masks/117.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5765199f727f158407e55a4fa73db4040836140c08932a934971ee48a2526501
3
+ size 878161
masks/118.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f460f40dab6325f55ab55f422d80fc181eb129e4ca8fe7da7515f4d14993a01
3
+ size 559083
masks/119.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3970982cb658101fe779295c3dcbd7c5e744d64fea87bb8c783038272c126edb
3
+ size 539186
masks/120.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83db39c577ef8a6e82ced44f78594d54d33c20c024248060eaad9bed91d94f83
3
+ size 704309
masks/121.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76111de311a61856b67150df62be2cd3c0a3fd5c90733f0391f550943f9a2eec
3
+ size 809117
masks/122.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7ca4d478377ba1b5ef167911a23ca163ca89b500ed8e89eeec032662d770efa
3
+ size 765148
masks/123.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2070ce763c1d4c649913ed7f3e951e980b71dc7ef61744ff64cb5da603e3067
3
+ size 406516
masks/124.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aafbdde4436b8ee276c0febde396310d614a5278108f6f57924b32d11be20bb6
3
+ size 572600
masks/125.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f69cf0014e09bb1b58c56cd1f6b80e931b6ab49f340741cb4b03b8554a22ec3c
3
+ size 415070
masks/126.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0b8e6b6a814beb43e51c6c9e595f5f49c7eb0b8a09e908430a8d5c32c3c884a
3
+ size 795152
masks/127.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20223cc52296925911c491b3d2e5593cdb4eb0aa0fff80480ae7dd174e06c360
3
+ size 509809
masks/128.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f85565a99233880d5808b3915039c9e6a21e783d50f17a942eff2b9a80913659
3
+ size 1045313
masks/129.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da884d8b5fdff2a3ce944d1347fd00fea435d48dd8f153d2c3b6729180f59e5c
3
+ size 381015
masks/13.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd26824d04026634d2d1c9129293871d23703621065c32d1050e229edbf2d710
3
+ size 669824
masks/130.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7dd6b70118447bf0044159b415d9e5e5193305e7aa33a7db27fc9c7353edf145
3
+ size 385879
masks/131.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4a74cc415ced45325884230df48c3ce1c508662476a93d833e6a26f41ab0470
3
+ size 364914
masks/132.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6c6ec2baa52020541302b5781a500bda2c1770e1eeed01e578e165234157785
3
+ size 325482
masks/133.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80aadff6482803f30cd482e42bcd6295a6c2068fc206b56af62af3dd194fb29d
3
+ size 357674
masks/134.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3336844200050ad4a1b9a62be8be9affceea01362584bdff1e01010545b8afaa
3
+ size 251973
masks/135.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f26e44ce16e58193b8e5b591cf75ebccb588e46d291af1bd26dd9e312d35574b
3
+ size 266853
masks/136.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:122702a513f7679245e43e8b49c92741895839a8cab9abdcee5b4cea554787c7
3
+ size 266076
masks/137.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1274b4662932f77a993fc63daec62d3bc99f9c176619210979ad8877d88509ab
3
+ size 272265
masks/138.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df3116446731bab6f039c302ca2727d91364a4f3d5bf578ba2dcf82759731234
3
+ size 446762
masks/139.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d82918897bf1642fc900960cdf48ca739e8b40fb942587421aeec289304c3236
3
+ size 768185
masks/140.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae840c74686f6c966cd6da60b4c1bc9a14efe5328cad295c0d7c02c14391131b
3
+ size 690460
masks/141.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f84721b3a0acaee337ac3a0f8d3fa38c2ae4d7b01ef049cf974dd1af2431f4c4
3
+ size 504233
masks/142.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a7540c332fe22068c453b4d1b35832c00fc79da4b8910bbf35dde4bdb75644f
3
+ size 559695
masks/143.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7d04a5270e2ca9eda04ec33b9f9961a993596710adb58483de825089e6db5bc
3
+ size 390879
masks/150.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1baf01ec77dca7e17245a4fac0d8d7342035f66386b8472593ec07fc9c1b3d65
3
+ size 235880
masks/151.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2e50b3fce6ce9b91652766ac511eb488d3ba79d07d48e39debd2ab06df40d7f
3
+ size 505640
masks/152.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f57a26736b97066da108b70b3516963bfeb32680d0cc27e8b31d32f12a594df3
3
+ size 377318
masks/157.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31f8aceb1445b8948c0c7006ea9c0ea1d554cad3dc01ceb67ac3768d76ed8d27
3
+ size 697184
masks/158.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c02e1df20060976b970b98230935c3ece7e666954d2b580697202989a6b3e78
3
+ size 840743
masks/16.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7e7ac1c8e4621a15e580e36c35ee4b8b38e2bf3533a4a45312e270f7cab1a80
3
+ size 448903