Add files using upload-large-folder tool
Browse files- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/_tabdiff_gen.py +36 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/_tabdiff_train.py +21 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/gen_20260501_180817.log +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/input_snapshot.json +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/runtime_result.json +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/staged/public/staged_features.json +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/staged/public/test.csv +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/staged/public/train.csv +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/staged/public/val.csv +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabdiff-n5-17010-20260501_180817.csv +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabdiff_train_meta.json +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/X_cat_test.npy +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/X_cat_train.npy +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/X_cat_val.npy +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/X_num_test.npy +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/X_num_train.npy +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/X_num_val.npy +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/info.json +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/real.csv +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/test.csv +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/val.csv +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/y_test.npy +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/y_train.npy +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/y_val.npy +3 -0
- syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/train_20260501_180205.log +3 -0
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n5"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5"
|
| 6 |
+
dst_data = os.path.join(td, "data", name)
|
| 7 |
+
dst_syn = os.path.join(td, "synthetic", name)
|
| 8 |
+
shutil.rmtree(dst_data, ignore_errors=True)
|
| 9 |
+
shutil.copytree(src, dst_data)
|
| 10 |
+
os.makedirs(dst_syn, exist_ok=True)
|
| 11 |
+
for fn in ("real.csv", "test.csv", "val.csv"):
|
| 12 |
+
shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn))
|
| 13 |
+
os.chdir(td)
|
| 14 |
+
os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "")
|
| 15 |
+
subprocess.check_call([
|
| 16 |
+
sys.executable, "-m", "tabdiff.main",
|
| 17 |
+
"--dataname", name, "--mode", "test", "--gpu", "0",
|
| 18 |
+
"--no_wandb", "--exp_name", r"adapter_learnable",
|
| 19 |
+
"--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_n5/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(17010)),
|
| 21 |
+
])
|
| 22 |
+
# test() 写入 tabdiff/result/<dataname>/<exp>/<epoch>/samples.csv
|
| 23 |
+
import glob as g
|
| 24 |
+
base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable")
|
| 25 |
+
best = None
|
| 26 |
+
best_t = -1.0
|
| 27 |
+
for root, _, files in os.walk(base):
|
| 28 |
+
if "samples.csv" in files:
|
| 29 |
+
p = os.path.join(root, "samples.csv")
|
| 30 |
+
t = os.path.getmtime(p)
|
| 31 |
+
if t > best_t:
|
| 32 |
+
best_t = t
|
| 33 |
+
best = p
|
| 34 |
+
if not best:
|
| 35 |
+
raise SystemExit("tabdiff: no samples.csv under " + base)
|
| 36 |
+
shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n5/tabdiff/tabdiff-n5-20260501_180159/tabdiff-n5-17010-20260501_180817.csv")
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n5"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5"
|
| 6 |
+
dst_data = os.path.join(td, "data", name)
|
| 7 |
+
dst_syn = os.path.join(td, "synthetic", name)
|
| 8 |
+
shutil.rmtree(dst_data, ignore_errors=True)
|
| 9 |
+
shutil.copytree(src, dst_data)
|
| 10 |
+
os.makedirs(dst_syn, exist_ok=True)
|
| 11 |
+
for fn in ("real.csv", "test.csv", "val.csv"):
|
| 12 |
+
shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn))
|
| 13 |
+
os.chdir(td)
|
| 14 |
+
os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "")
|
| 15 |
+
os.environ["TABDIFF_SMOKE_STEPS"] = "500"
|
| 16 |
+
os.environ["TABDIFF_ADAPTER_TRAIN"] = "1"
|
| 17 |
+
subprocess.check_call([
|
| 18 |
+
sys.executable, "-m", "tabdiff.main",
|
| 19 |
+
"--dataname", name, "--mode", "train", "--gpu", "0",
|
| 20 |
+
"--no_wandb", "--exp_name", r"adapter_learnable",
|
| 21 |
+
])
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/gen_20260501_180817.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6ac862dce526f38aec5fef2a7192e8c19dc02be80f7d551f6733e72915835463
|
| 3 |
+
size 6756
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab64339b0ba3ede1dd958d8cf4355032322e6a5a26202a7cbe907bd89c36da0a
|
| 3 |
+
size 1354
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/models_tabdiff/trained.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb
|
| 3 |
+
size 74
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1040c08505d7d12423246ff5edb775aa195afb74ff3a306f09e495c391bf3797
|
| 3 |
+
size 42956
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76af8b848ed7d082ee20fd4ce7773a17ddbaac6f11b93aeb5d4acd5fd0a9146b
|
| 3 |
+
size 922
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b39e23e0cc41b07091f8b36ae4f980c1b63072c4124aa8430b698ca96c1a6cd2
|
| 3 |
+
size 43762
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b91b7153b4bbdb42677a21ac4cd6703c5cc2e770315bce947d7f653c4982673
|
| 3 |
+
size 909
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eed8a8509e7adba3169b6a451170f1d5c52adc97fe7669ef197ac560954c45bb
|
| 3 |
+
size 8650
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16efa6819477c1d61f1a80a9e480021d1814a8076e1c0f3182769e7e31fc5142
|
| 3 |
+
size 2403226
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c15cea644970e0d6a9c73d949153a38425fa473a8d0b4e2e70cfcdc7d09ec440
|
| 3 |
+
size 19205735
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c0a9b6eb141b64fcd162a8de3c3c11047c60f0d92a250663ea03cfc688bce3a
|
| 3 |
+
size 2412771
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9abbb659bf39d547ac949ad2711315961d562ccbc150a4b333db3fc43014ebe1
|
| 3 |
+
size 321
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/staged/tabdiff/adapter_transforms_applied.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945
|
| 3 |
+
size 2
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fdd41965c56b33767252f064108e8a8d48dc9f334f85c19b56e8176036dab58
|
| 3 |
+
size 43959
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabdiff-n5-17010-20260501_180817.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1fa80c1d6edca71ca7b0e0db2be2ac1cb376afdaf60f73c2620f8ad8fc1b0954
|
| 3 |
+
size 12834900
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d0eac30d1ce6fbc8554375217c2afc0ef7636ffcec58c5ef0c54b3eeb4bac770
|
| 3 |
+
size 82
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c217e9fa2eb58a5bf8256d8debac889f88bff8995f4ca2d68cb92de0983c3508
|
| 3 |
+
size 128
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c217e9fa2eb58a5bf8256d8debac889f88bff8995f4ca2d68cb92de0983c3508
|
| 3 |
+
size 128
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c217e9fa2eb58a5bf8256d8debac889f88bff8995f4ca2d68cb92de0983c3508
|
| 3 |
+
size 128
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70742374c706536dd52d5f7ec8528d05e1be277472224d9ad495e6a8d4c07e7a
|
| 3 |
+
size 5511368
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70742374c706536dd52d5f7ec8528d05e1be277472224d9ad495e6a8d4c07e7a
|
| 3 |
+
size 5511368
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70742374c706536dd52d5f7ec8528d05e1be277472224d9ad495e6a8d4c07e7a
|
| 3 |
+
size 5511368
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:389d7a6500207aa649768aad9aacd7de8085abc4221beb80ad342627c32b883f
|
| 3 |
+
size 16248
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:84ccc678144250bdc8fc05564a0878df581747124f79944b3a724ae137ec6173
|
| 3 |
+
size 19204374
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:84ccc678144250bdc8fc05564a0878df581747124f79944b3a724ae137ec6173
|
| 3 |
+
size 19204374
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:84ccc678144250bdc8fc05564a0878df581747124f79944b3a724ae137ec6173
|
| 3 |
+
size 19204374
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba6a3d466951752d1548e2ee4c8a47227974e225e3e909e3d098245eb0dc1b73
|
| 3 |
+
size 68168
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba6a3d466951752d1548e2ee4c8a47227974e225e3e909e3d098245eb0dc1b73
|
| 3 |
+
size 68168
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/tabular_bundle/pipeline_n5/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba6a3d466951752d1548e2ee4c8a47227974e225e3e909e3d098245eb0dc1b73
|
| 3 |
+
size 68168
|
syntheticSuccess/n5/tabdiff/tabdiff-n5-20260501_180159/train_20260501_180205.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:adacb7552540b0f59131c405774cf4764aeba9e940da33a51b009e6e10d8def1
|
| 3 |
+
size 696531
|