Add files using upload-large-folder tool
Browse files- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/_tabdiff_gen.py +36 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/_tabdiff_train.py +21 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/gen_20260501_184256.log +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/input_snapshot.json +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/models_tabdiff/trained.pt +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/public_gate/normalized_schema_snapshot.json +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/public_gate/public_gate_report.json +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/public_gate/staged_input_manifest.json +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/runtime_result.json +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/staged/public/staged_features.json +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/staged/public/test.csv +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/staged/public/train.csv +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/staged/public/val.csv +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/staged/tabdiff/adapter_report.json +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/staged/tabdiff/adapter_transforms_applied.json +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/staged/tabdiff/model_input_manifest.json +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabdiff-n10-10888-20260501_184256.csv +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabdiff_train_meta.json +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/X_cat_test.npy +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/X_cat_train.npy +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/X_cat_val.npy +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/X_num_test.npy +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/X_num_train.npy +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/X_num_val.npy +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/info.json +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/real.csv +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/test.csv +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/val.csv +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/y_test.npy +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/y_train.npy +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/y_val.npy +3 -0
- syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/train_20260501_183728.log +3 -0
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/_tabdiff_gen.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n10"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10"
|
| 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_n10/adapter_learnable/model_500.pt",
|
| 20 |
+
"--num_samples_to_generate", str(int(10888)),
|
| 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/n10/tabdiff/tabdiff-n10-20260501_183727/tabdiff-n10-10888-20260501_184256.csv")
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/_tabdiff_train.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
import os, shutil, subprocess, sys
|
| 3 |
+
td = r"/workspace/TabDiff"
|
| 4 |
+
name = r"pipeline_n10"
|
| 5 |
+
src = r"/work/output-Benchmark-trainonly-v1/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10"
|
| 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/n10/tabdiff/tabdiff-n10-20260501_183727/gen_20260501_184256.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c139ca9e0afaeb6c56d2c644d363dc2691e3f13b89bb6344cce4d3db30c449af
|
| 3 |
+
size 5398
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/input_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d29eb3104bb1f97301e30c2666de8cfbde1d8dd7fbd947767af86c6323a444f8
|
| 3 |
+
size 1360
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/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/n10/tabdiff/tabdiff-n10-20260501_183727/public_gate/normalized_schema_snapshot.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fee895fc1a117cbaab0b9758f74f0febe347530390032f18a87436840b7e0e60
|
| 3 |
+
size 9156
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/public_gate/public_gate_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87f8c64c4d9bc38ef958e44448ab68f27898efd364be9f735a4de45615f1900d
|
| 3 |
+
size 919
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/public_gate/staged_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:55c72a74f3796b414cbf298cbe8fbfcc4bf7392f722c797c87b5f556ef92e7d4
|
| 3 |
+
size 9972
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/runtime_result.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1fbce239e7f3eb480a5e8528f2a2278d1bb7637afba7845b52dca326b76befbf
|
| 3 |
+
size 915
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/staged/public/staged_features.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7d8641c4ae826d5fd344143623ff2fb6bff4f650e4dde3268bee6b5441b32a2a
|
| 3 |
+
size 1658
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/staged/public/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19ba1cede34438e7c99e1e5b51c660cd2422bf4cb24556d5a54bcd1574d4dab9
|
| 3 |
+
size 379709
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/staged/public/train.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d264cc48e17ff398df7edeb6819e5f66b3dbf14935184253bf21ac0cbb1d84e
|
| 3 |
+
size 3036991
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/staged/public/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:158fe1f6049fb53cca70e222d76ff7901731586869da103df04b314ad2f195e1
|
| 3 |
+
size 379595
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/staged/tabdiff/adapter_report.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d687dce5fbbffcdcea77b401a5c54e8e84f2961276ef1556c274e043c09ab3ee
|
| 3 |
+
size 323
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/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/n10/tabdiff/tabdiff-n10-20260501_183727/staged/tabdiff/model_input_manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4db5961309793e3849a777ca432bc296a3461b76b8dd43e130e3046aba64c470
|
| 3 |
+
size 10171
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabdiff-n10-10888-20260501_184256.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:efec6244f205d65740c2fa1b93f72c3fd445b30915cf763c715563c2faaab23c
|
| 3 |
+
size 1822695
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabdiff_train_meta.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48635ff003c782bb99b52b3c8df9bbe2399939796a641404d541f9914ec2d358
|
| 3 |
+
size 83
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/X_cat_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38b8ad5e8efadbb77ad97050d9671086e522ea00697ef8c3520b29cec15c264f
|
| 3 |
+
size 128
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/X_cat_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38b8ad5e8efadbb77ad97050d9671086e522ea00697ef8c3520b29cec15c264f
|
| 3 |
+
size 128
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/X_cat_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38b8ad5e8efadbb77ad97050d9671086e522ea00697ef8c3520b29cec15c264f
|
| 3 |
+
size 128
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/X_num_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bfad1d15886cf21273bd1d59ba14eba75a867e5d09be8236ef2ae29de3eac27c
|
| 3 |
+
size 696960
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/X_num_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bfad1d15886cf21273bd1d59ba14eba75a867e5d09be8236ef2ae29de3eac27c
|
| 3 |
+
size 696960
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/X_num_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bfad1d15886cf21273bd1d59ba14eba75a867e5d09be8236ef2ae29de3eac27c
|
| 3 |
+
size 696960
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/info.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b30167151ad53a3af46a3594af1bdca038df895a819172e0c2ac9eb0811489ec
|
| 3 |
+
size 3474
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/real.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9c48c3f6c8c65c8796bb741317c64b38aa3510f008100a21e6380f34fad469f
|
| 3 |
+
size 2980822
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/test.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9c48c3f6c8c65c8796bb741317c64b38aa3510f008100a21e6380f34fad469f
|
| 3 |
+
size 2980822
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/val.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9c48c3f6c8c65c8796bb741317c64b38aa3510f008100a21e6380f34fad469f
|
| 3 |
+
size 2980822
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/y_test.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2de98f44ad1cb27938b91b070c8ea71292c22e292b8733eda5f1783374e596e3
|
| 3 |
+
size 87232
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/y_train.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2de98f44ad1cb27938b91b070c8ea71292c22e292b8733eda5f1783374e596e3
|
| 3 |
+
size 87232
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/tabular_bundle/pipeline_n10/y_val.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2de98f44ad1cb27938b91b070c8ea71292c22e292b8733eda5f1783374e596e3
|
| 3 |
+
size 87232
|
syntheticSuccess/n10/tabdiff/tabdiff-n10-20260501_183727/train_20260501_183728.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:931c370ee6325a6d879bc7e2ae74a62d464ec8846ef39085e93e598bd9c5397b
|
| 3 |
+
size 445800
|