Datasets:
Adds parsed ork and rkt files
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- README.md +2 -0
- pyproject.toml +1 -0
- scripts/designs/01a_parse_files.py +87 -0
- source/designs/files/json/004683.json +3 -0
- source/designs/files/json/004684.json +3 -0
- source/designs/files/json/004685.json +3 -0
- source/designs/files/json/004686.json +3 -0
- source/designs/files/json/004687.json +3 -0
- source/designs/files/json/004688.json +3 -0
- source/designs/files/json/004689.json +3 -0
- source/designs/files/json/004690.json +3 -0
- source/designs/files/json/004691.json +3 -0
- source/designs/files/json/004692.json +3 -0
- source/designs/files/json/004693.json +3 -0
- source/designs/files/json/004694.json +3 -0
- source/designs/files/json/004695.json +3 -0
- source/designs/files/json/004696.json +3 -0
- source/designs/files/json/004697.json +3 -0
- source/designs/files/json/004698.json +3 -0
- source/designs/files/json/004699.json +3 -0
- source/designs/files/json/004700.json +3 -0
- source/designs/files/json/004701.json +3 -0
- source/designs/files/json/004702.json +3 -0
- source/designs/files/json/004703.json +3 -0
- source/designs/files/json/004704.json +3 -0
- source/designs/files/json/004705.json +3 -0
- source/designs/files/json/004706.json +3 -0
- source/designs/files/json/004707.json +3 -0
- source/designs/files/json/004708.json +3 -0
- source/designs/files/json/004709.json +3 -0
- source/designs/files/json/004710.json +3 -0
- source/designs/files/json/004711.json +3 -0
- source/designs/files/json/004712.json +3 -0
- source/designs/files/json/004713.json +3 -0
- source/designs/files/json/004714.json +3 -0
- source/designs/files/json/004715.json +3 -0
- source/designs/files/json/004716.json +3 -0
- source/designs/files/json/004717.json +3 -0
- source/designs/files/json/004718.json +3 -0
- source/designs/files/json/004719.json +3 -0
- source/designs/files/json/004720.json +3 -0
- source/designs/files/json/004721.json +3 -0
- source/designs/files/json/004722.json +3 -0
- source/designs/files/json/004723.json +3 -0
- source/designs/files/json/004724.json +3 -0
- source/designs/files/json/004725.json +3 -0
- source/designs/files/json/004726.json +3 -0
- source/designs/files/json/004727.json +3 -0
- source/designs/files/json/004728.json +3 -0
- source/designs/files/json/004729.json +3 -0
README.md
CHANGED
|
@@ -17,6 +17,7 @@ Legend: `[ ]` not started · `[~]` in progress · `[x]` complete
|
|
| 17 |
| `products` | Full product catalog (kits, motors, components, software, etc.) | `scripts/products/01_scrape.py` | `source/products/` | `[ ]` |
|
| 18 |
| `motors` | Motor specifications with thrust and performance data | `scripts/motors/01_scrape.py` | `source/motors/` | `[~]` |
|
| 19 |
| `designs` | OpenRocket (.ork) and RockSim (.rkt) design files | `scripts/designs/01_scrape.py` | `source/designs/` | `[~]` |
|
|
|
|
| 20 |
| `plans` | Rocket plans and build instructions | `scripts/plans/01_scrape.py` | `source/plans/` | `[~]` |
|
| 21 |
| `clubs` | Rocketry clubs directory | `scripts/clubs/01_scrape.py` | `source/clubs/` | `[~]` |
|
| 22 |
| `glossary` | Rocketry terms and definitions | `scripts/glossary/01_scrape.py` | `source/glossary/` | `[~]` |
|
|
@@ -62,6 +63,7 @@ source/
|
|
| 62 |
files/
|
| 63 |
ork/
|
| 64 |
rkt/
|
|
|
|
| 65 |
flights/
|
| 66 |
index.jsonl
|
| 67 |
detail/{shard}/{id}.json
|
|
|
|
| 17 |
| `products` | Full product catalog (kits, motors, components, software, etc.) | `scripts/products/01_scrape.py` | `source/products/` | `[ ]` |
|
| 18 |
| `motors` | Motor specifications with thrust and performance data | `scripts/motors/01_scrape.py` | `source/motors/` | `[~]` |
|
| 19 |
| `designs` | OpenRocket (.ork) and RockSim (.rkt) design files | `scripts/designs/01_scrape.py` | `source/designs/` | `[~]` |
|
| 20 |
+
| `design_parsing` | High-fidelity JSON conversion of design files | `scripts/designs/02_parse_files.py` | `source/designs/files/json/` | `[~]` |
|
| 21 |
| `plans` | Rocket plans and build instructions | `scripts/plans/01_scrape.py` | `source/plans/` | `[~]` |
|
| 22 |
| `clubs` | Rocketry clubs directory | `scripts/clubs/01_scrape.py` | `source/clubs/` | `[~]` |
|
| 23 |
| `glossary` | Rocketry terms and definitions | `scripts/glossary/01_scrape.py` | `source/glossary/` | `[~]` |
|
|
|
|
| 63 |
files/
|
| 64 |
ork/
|
| 65 |
rkt/
|
| 66 |
+
json/
|
| 67 |
flights/
|
| 68 |
index.jsonl
|
| 69 |
detail/{shard}/{id}.json
|
pyproject.toml
CHANGED
|
@@ -9,4 +9,5 @@ dependencies = [
|
|
| 9 |
"beautifulsoup4>=4.12.0",
|
| 10 |
"urllib3>=2.0.0",
|
| 11 |
"lxml>=4.9.0",
|
|
|
|
| 12 |
]
|
|
|
|
| 9 |
"beautifulsoup4>=4.12.0",
|
| 10 |
"urllib3>=2.0.0",
|
| 11 |
"lxml>=4.9.0",
|
| 12 |
+
"rocketsmith>=0.0.11",
|
| 13 |
]
|
scripts/designs/01a_parse_files.py
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
parse_design_files.py — Extract high-fidelity structured data from OpenRocket (.ork)
|
| 4 |
+
and RockSim (.rkt) files using the rocketsmith API.
|
| 5 |
+
|
| 6 |
+
Output
|
| 7 |
+
------
|
| 8 |
+
source/designs/files/json/ork/{id}.json
|
| 9 |
+
source/designs/files/json/rkt/{id}.json
|
| 10 |
+
"""
|
| 11 |
+
|
| 12 |
+
import json
|
| 13 |
+
import logging
|
| 14 |
+
import sys
|
| 15 |
+
from pathlib import Path
|
| 16 |
+
from rocketsmith.openrocket.components import inspect_rocket_file
|
| 17 |
+
from rocketsmith.openrocket.utils import get_openrocket_path
|
| 18 |
+
|
| 19 |
+
# ---------------------------------------------------------------------------
|
| 20 |
+
# Logging
|
| 21 |
+
# ---------------------------------------------------------------------------
|
| 22 |
+
|
| 23 |
+
logging.basicConfig(
|
| 24 |
+
level=logging.INFO,
|
| 25 |
+
format="%(asctime)s %(levelname)s %(message)s",
|
| 26 |
+
handlers=[logging.StreamHandler(sys.stdout)],
|
| 27 |
+
)
|
| 28 |
+
log = logging.getLogger(__name__)
|
| 29 |
+
|
| 30 |
+
# ---------------------------------------------------------------------------
|
| 31 |
+
# Main
|
| 32 |
+
# ---------------------------------------------------------------------------
|
| 33 |
+
|
| 34 |
+
def main():
|
| 35 |
+
try:
|
| 36 |
+
jar_path = get_openrocket_path()
|
| 37 |
+
log.info(f"Using OpenRocket JAR at: {jar_path}")
|
| 38 |
+
except FileNotFoundError as e:
|
| 39 |
+
log.error(f"Could not find OpenRocket JAR: {e}")
|
| 40 |
+
sys.exit(1)
|
| 41 |
+
|
| 42 |
+
root_dir = Path("source/designs/files")
|
| 43 |
+
dst_dir = root_dir / "json"
|
| 44 |
+
dst_dir.mkdir(parents=True, exist_ok=True)
|
| 45 |
+
|
| 46 |
+
formats = ['ork', 'rkt']
|
| 47 |
+
|
| 48 |
+
for fmt in formats:
|
| 49 |
+
src_dir = root_dir / fmt
|
| 50 |
+
|
| 51 |
+
if not src_dir.exists():
|
| 52 |
+
log.warning(f"Source directory {src_dir} does not exist. Skipping.")
|
| 53 |
+
continue
|
| 54 |
+
|
| 55 |
+
files = sorted(list(src_dir.glob(f"*.{fmt}")))
|
| 56 |
+
total = len(files)
|
| 57 |
+
log.info(f"Processing {total} {fmt} files...")
|
| 58 |
+
|
| 59 |
+
ok = failed = skipped = 0
|
| 60 |
+
|
| 61 |
+
for i, f in enumerate(files):
|
| 62 |
+
# Using same filename pattern as binary files: {id}.json
|
| 63 |
+
dst_file = dst_dir / f"{f.stem}.json"
|
| 64 |
+
|
| 65 |
+
if dst_file.exists():
|
| 66 |
+
skipped += 1
|
| 67 |
+
continue
|
| 68 |
+
|
| 69 |
+
try:
|
| 70 |
+
result = inspect_rocket_file(f, jar_path)
|
| 71 |
+
# Add the file_extension field
|
| 72 |
+
result["file_extension"] = fmt
|
| 73 |
+
|
| 74 |
+
with dst_file.open('w', encoding='utf-8') as out:
|
| 75 |
+
json.dump(result, out, indent=2, ensure_ascii=False)
|
| 76 |
+
ok += 1
|
| 77 |
+
except Exception as e:
|
| 78 |
+
log.error(f"Failed to parse {f.name}: {e}")
|
| 79 |
+
failed += 1
|
| 80 |
+
|
| 81 |
+
if (i + 1) % 50 == 0 or (i + 1) == total:
|
| 82 |
+
log.info(f"Progress ({fmt}): {i+1}/{total} — ok={ok} skipped={skipped} failed={failed}")
|
| 83 |
+
|
| 84 |
+
log.info("Finished processing all design files.")
|
| 85 |
+
|
| 86 |
+
if __name__ == "__main__":
|
| 87 |
+
main()
|
source/designs/files/json/004683.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a52ae4d5e1987918fe8ab637dc03e15029b54ded1fe56717ddaf21600e3d3e4a
|
| 3 |
+
size 1344
|
source/designs/files/json/004684.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc08cca21ef2c2f7032d0caaadd3469c4ca108d60014710d5387c34d956c283b
|
| 3 |
+
size 2613
|
source/designs/files/json/004685.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ecaf1eb2926fc60e5fe7a29d37eb8abe707d0339215d214559d63464ec98c4ab
|
| 3 |
+
size 5250
|
source/designs/files/json/004686.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f0e6df63571ad6d46e6c1da8ecb4ad486cb4269f57965f8ae767c1f54b28873
|
| 3 |
+
size 4843
|
source/designs/files/json/004687.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:612f03339e1cede829d4f7d595ea34cb03e7678303ceb8b4e008a1ce728a6802
|
| 3 |
+
size 3457
|
source/designs/files/json/004688.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1091777d0e2715afa60ed1f779a08e8fbb1c240264212f20caa26f0fa116a095
|
| 3 |
+
size 3698
|
source/designs/files/json/004689.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac60023ee1b62c7be3c1c889865cd3c8c39e807ef21146b7e52fd56929e00441
|
| 3 |
+
size 5276
|
source/designs/files/json/004690.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f094f644a0487e2cb08178ecae39e42906f3b196664b7ed0343eb9cf80f0ff3
|
| 3 |
+
size 6301
|
source/designs/files/json/004691.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f67839927510b104039edb49f6cfccc4218739746c12557f515ac9923eb31fda
|
| 3 |
+
size 4473
|
source/designs/files/json/004692.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd6ecbdee11b2f55f71e78f9747a9eca1f93b58ce9e3871881e007afa81f9bd5
|
| 3 |
+
size 4093
|
source/designs/files/json/004693.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51897626ce965a7b133bd48d529756115180f2a1054e567c059b2e3b2155d6ff
|
| 3 |
+
size 6253
|
source/designs/files/json/004694.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa9988d809c3635aabc9fa69b0872365c5269dc3e46962fb3f1d2d2998451a0a
|
| 3 |
+
size 5401
|
source/designs/files/json/004695.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:edab536ab272450ee6f8517af6bb628d6da54d43710fe6c53d65c5f5bd20af58
|
| 3 |
+
size 5990
|
source/designs/files/json/004696.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7660a1015c6d23f473358ec4f9523c20f9fc923ce2086eb7d6863346472de51b
|
| 3 |
+
size 3854
|
source/designs/files/json/004697.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd161ee6f727daae7bd73b2a5073bdb6055d2873ef9f35707373be1e3b51f75f
|
| 3 |
+
size 3168
|
source/designs/files/json/004698.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b77e570f5f37556defe0bcfff3831a2921083748cef6102bc1104f5a4a5f3ca
|
| 3 |
+
size 4666
|
source/designs/files/json/004699.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85ca87cc20b487cb5e0d17468f01ba80b4a7d47aa7662583674cd2d4185c697d
|
| 3 |
+
size 4093
|
source/designs/files/json/004700.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:805b525d35ea96b9801e560e2dd690dd38ec82073a8329ab340dd05a0265281d
|
| 3 |
+
size 5841
|
source/designs/files/json/004701.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:84d659675d0f706a37ad1e7c1c7bfc3863c3fab6665a69f5dddd78d308009e41
|
| 3 |
+
size 4220
|
source/designs/files/json/004702.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c534736e41350b2fe2fff89aa02ac0fc3b81d41c81364a0229ad8166be25e33
|
| 3 |
+
size 3279
|
source/designs/files/json/004703.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81361cb289f69c1b69285918979dc9b541401e76c34eb136cc2b9fb824c233f0
|
| 3 |
+
size 2474
|
source/designs/files/json/004704.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f3935edbdd699c1e73ee02c9b0293ade0616c2d0c33808a4d46b35158f540b9
|
| 3 |
+
size 11348
|
source/designs/files/json/004705.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:158f82a4963bfe0f245014b4f7b121ef8f0ee4a307f69d5c44d33091d3641f60
|
| 3 |
+
size 4053
|
source/designs/files/json/004706.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:040e6c4c592d90f2caf2d8db95ea9aeab61e830ab663ec9c88def1b5c5885f8a
|
| 3 |
+
size 4274
|
source/designs/files/json/004707.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:acb428fa04256504b646c827cdf788a53c660788ea7bec1f8a25ffa1d30fae86
|
| 3 |
+
size 2687
|
source/designs/files/json/004708.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a396a1a5f13a842939f7098c29eb19318f0c4e2e41fa681cea0a323f6b9da160
|
| 3 |
+
size 3641
|
source/designs/files/json/004709.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:720aadc5f2957da158874efab182ce2a6e524bcbd54d9b6ee45603d095d7b180
|
| 3 |
+
size 3641
|
source/designs/files/json/004710.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:56f02a0ac838a81ba17a8f0e93464299c0c5c94dec8cc82b5d2b19602bc6ff6f
|
| 3 |
+
size 3642
|
source/designs/files/json/004711.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fcf2c1fa1b83a4bd97d41cbe78a7fc62db9b6ebe8acd5913b723c36a6b53c09
|
| 3 |
+
size 3216
|
source/designs/files/json/004712.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb4421aabe1b702bd5cb59a79420cbceae2bd8bfb8f04c4034635b816392c463
|
| 3 |
+
size 3771
|
source/designs/files/json/004713.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b00f01c524a595319b00dbe56502760760e34df07338461b8dc3ade84e114a3
|
| 3 |
+
size 6054
|
source/designs/files/json/004714.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e4c6b82f183d3c62c596c60bbaeb41651ac7a938ac839c26e2031c480275efe
|
| 3 |
+
size 4339
|
source/designs/files/json/004715.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:55c3113723a8199e793349b5bc9c2c428a8cfe9cde993117177a3966e79ee4fc
|
| 3 |
+
size 3814
|
source/designs/files/json/004716.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d81857661b723b5d8a978068e9b667398af6bd92c16b3759e8522145b5af401
|
| 3 |
+
size 3814
|
source/designs/files/json/004717.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff7181e6cc2dbeace65149ff3ad94ca0bdac9aee59c551ba462a7bcc9f256e7c
|
| 3 |
+
size 4204
|
source/designs/files/json/004718.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb0c513174db7089db0382e3d21bf88a6feaeb448ccf397517365e148b9eef22
|
| 3 |
+
size 4205
|
source/designs/files/json/004719.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08722c54c0fc89109dee4933bcf895307f98580c5388f2a598abc88f9d6af24e
|
| 3 |
+
size 2798
|
source/designs/files/json/004720.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b69f8ed5269d292cc31913a52a8bbadef894bfe1076bee8337c99ab582acfcd
|
| 3 |
+
size 10425
|
source/designs/files/json/004721.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc4de4ffd8baf34c9abb66a97b708237a900a82759deb0b8645f2a6dfe18058a
|
| 3 |
+
size 17779
|
source/designs/files/json/004722.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:acf699a04d0a5b7504861f4f0726f195c0800076e8f7b568f0b9c57548f8006e
|
| 3 |
+
size 4134
|
source/designs/files/json/004723.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c790fc10f8794f5891739795e8248776f12779cdc12f93830feca26f167f1065
|
| 3 |
+
size 3346
|
source/designs/files/json/004724.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f967ec2fb31b9f25d5ea85388c9227910a225b2b9d1c37353bf0bd57f1e663f
|
| 3 |
+
size 5878
|
source/designs/files/json/004725.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38a23dd09da4b0da64bb38d1339be08cfa6fcf342d6adabe38703f474c1b3694
|
| 3 |
+
size 3123
|
source/designs/files/json/004726.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16ef30c508fa86ea6ba032ab3f5ea3e20a5540cb64ec5d65af8483f9aa940c10
|
| 3 |
+
size 5657
|
source/designs/files/json/004727.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b13376765bce571a7426272a99567dab122866d979a3bf92b631a3c6f978cf92
|
| 3 |
+
size 5483
|
source/designs/files/json/004728.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9bc2ce862942a4751361672a12a963652d195fd9f6a0cfe574ebdff2b94bfa6d
|
| 3 |
+
size 7923
|
source/designs/files/json/004729.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ae256207d6f1458699a74915d50ae8ce7c2c02634a0858c99a2cf0e6a87967b
|
| 3 |
+
size 1700
|