Add files using upload-large-folder tool
Browse files- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/_tabdiff_gen.py +36 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/_tabdiff_train.py +21 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/gen_20260501_180141.log +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/input_snapshot.json +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/runtime_result.json +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/staged/public/staged_features.json +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/staged/public/test.csv +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/staged/public/train.csv +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/staged/public/val.csv +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabdiff-n4-1595-20260501_180141.csv +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabdiff_train_meta.json +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/X_cat_test.npy +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/X_cat_train.npy +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/X_cat_val.npy +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/X_num_test.npy +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/X_num_train.npy +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/X_num_val.npy +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/info.json +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/real.csv +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/test.csv +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/val.csv +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/y_test.npy +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/y_train.npy +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/y_val.npy +3 -0
- syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/train_20260501_175729.log +3 -0
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n4"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4"
|
| 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_n4/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(1595)),
|
| 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/n4/tabdiff/tabdiff-n4-20260501_175728/tabdiff-n4-1595-20260501_180141.csv")
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n4"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4"
|
| 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/n4/tabdiff/tabdiff-n4-20260501_175728/gen_20260501_180141.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9464e6c95e314108b6e9fb239cd3fb498c365a5a370e259a4a89d7bd4bd68832
|
| 3 |
+
size 5934
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:599f64666c0a7983d8182f98206f1cd8bdf266f755896ee38f8e0a7710e52c90
|
| 3 |
+
size 1350
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/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/n4/tabdiff/tabdiff-n4-20260501_175728/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4a51e0665dadfbffebdf82b417fe43fa562204275dc2da832b4493e71b17a14
|
| 3 |
+
size 60257
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d82af407145ddf93aed8488407a5600dcb12b75cfbf3b9ac3a2a5531586587e
|
| 3 |
+
size 909
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:25ab41b6c6074dbcafde78c1e5ceee7daa6bd68ec7a43d14fea00485c7c95e06
|
| 3 |
+
size 61063
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1493a30a3e4ee68ecef50930e370051a60ed805c2e1ee6b1ea033a2fd2a6e523
|
| 3 |
+
size 908
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b0659495a3ed560d31ee16ac86c232a810e297e56b2bc8da97d5de72e0c774e
|
| 3 |
+
size 12433
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:caa60b496a1710d39671c1777212c13b0a2d4833e15858913d1e3b6743f7fd09
|
| 3 |
+
size 110901
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d231783209c86c6e6cdb1f56f30fba81c3163dc137fc5cfbd0dd1b7360767acc
|
| 3 |
+
size 878053
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fee3c941aad07723b15b7e43c645c70742e10ae08f8b1e6e837d64212886ef22
|
| 3 |
+
size 111232
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f369aaf65943d3ea26a27cf0b8879ec19354b3149a11680cfe31f7b3202ece70
|
| 3 |
+
size 321
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/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/n4/tabdiff/tabdiff-n4-20260501_175728/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b27566e2b740bb4ec83a144125729f5d195b05bebb8d9ce6d4f4d5e634bd20dd
|
| 3 |
+
size 61260
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabdiff-n4-1595-20260501_180141.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e0c3b505973b792a77c3a7b3c6d71d9434decf1d5d0b4870df7d469cf4b7bdea
|
| 3 |
+
size 1908475
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6b3cbac5f6565306854ba00b294dfa58817531bc597d650a2a79e2cd092778e
|
| 3 |
+
size 82
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da2ddb506e19666c4105614bf3b622264428bcd3cc183810a5c6f817090ea5f4
|
| 3 |
+
size 12888
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da2ddb506e19666c4105614bf3b622264428bcd3cc183810a5c6f817090ea5f4
|
| 3 |
+
size 12888
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da2ddb506e19666c4105614bf3b622264428bcd3cc183810a5c6f817090ea5f4
|
| 3 |
+
size 12888
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30f995663aa7effcbce21f8297f2ac62a8345d0b035c673078111ef72da1242d
|
| 3 |
+
size 804008
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30f995663aa7effcbce21f8297f2ac62a8345d0b035c673078111ef72da1242d
|
| 3 |
+
size 804008
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30f995663aa7effcbce21f8297f2ac62a8345d0b035c673078111ef72da1242d
|
| 3 |
+
size 804008
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6f4b6a2ee02254343b7fa228bb503bb0c96de70a9a0ca6416313491c7c02fc2
|
| 3 |
+
size 23091
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a1a0fe0402444754074a2e2b538b9ef0c325108df3c727cc9d2afad2122905d
|
| 3 |
+
size 861213
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a1a0fe0402444754074a2e2b538b9ef0c325108df3c727cc9d2afad2122905d
|
| 3 |
+
size 861213
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a1a0fe0402444754074a2e2b538b9ef0c325108df3c727cc9d2afad2122905d
|
| 3 |
+
size 861213
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b61b31fdda1d46f1bf1c7be0825001a411290f2d487269d5f2719cbc96eeeaf7
|
| 3 |
+
size 6508
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b61b31fdda1d46f1bf1c7be0825001a411290f2d487269d5f2719cbc96eeeaf7
|
| 3 |
+
size 6508
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/tabular_bundle/pipeline_n4/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b61b31fdda1d46f1bf1c7be0825001a411290f2d487269d5f2719cbc96eeeaf7
|
| 3 |
+
size 6508
|
syntheticSuccess/n4/tabdiff/tabdiff-n4-20260501_175728/train_20260501_175729.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:245ff82cdaa21a589f97489dec271718e7c125b11a246e216dd8273810341547
|
| 3 |
+
size 328980
|