diff --git a/tooling/fill-missing-globes.py b/tooling/fill-missing-globes.py new file mode 100644 index 000000000..60104d614 --- /dev/null +++ b/tooling/fill-missing-globes.py @@ -0,0 +1,176 @@ +#!/usr/bin/env python3 +""" +One-shot script: fill missing globe.png files in the wiki by copying a donor +globe from the same planet_class + body_type pool. + +Donor selection: + - Hash body_id to pick deterministically from the pool + - Track used donors per system to avoid visual repetition + - Skip oort_cloud and asteroid_belt (handled by generic images) + +Run once, then the files are baked into the wiki like authored content. + +Usage: + python3 tooling/fill-missing-globes.py [--dry-run] +""" + +import hashlib +import os +import shutil +import sqlite3 +import sys +from collections import defaultdict +from pathlib import Path + +REPO_ROOT = Path(__file__).resolve().parent.parent +WIKI_ROOT = REPO_ROOT / "wiki" / "star-systems" +DB_PATH = REPO_ROOT / "server" / "data" / "systems.db" + +GENERIC_TYPES = {"oort_cloud", "asteroid_belt"} +GENERIC_DIR = WIKI_ROOT / "_generics" + + +def globe_path(system_id: str, body_id: str) -> Path: + sys_dir = system_id.replace(" ", "-") + return WIKI_ROOT / sys_dir / "bodies" / body_id / "globe.png" + + +def body_hash(body_id: str) -> int: + return int(hashlib.sha256(body_id.encode()).hexdigest()[:8], 16) + + +def main(): + dry_run = "--dry-run" in sys.argv + + conn = sqlite3.connect(str(DB_PATH)) + conn.row_factory = sqlite3.Row + + bodies = conn.execute( + "SELECT body_id, system_id, body_type, planet_class FROM bodies" + ).fetchall() + + # Build pools of existing globes by (body_type, planet_class) + pools: dict[tuple[str, str], list[Path]] = defaultdict(list) + missing: list[dict] = [] + + for b in bodies: + bid = b["body_id"] + bt = b["body_type"] or "unknown" + pc = (b["planet_class"] or "unknown").lower() + path = globe_path(b["system_id"], bid) + + if bt in GENERIC_TYPES: + # Handled by generic images, not donors + if not path.exists(): + generic = GENERIC_DIR / bt / "globe.png" + if generic.exists(): + missing.append({ + "body_id": bid, + "system_id": b["system_id"], + "body_type": bt, + "planet_class": pc, + "donor_path": generic, + "source": "generic", + }) + continue + + if path.exists(): + pools[(bt, pc)].append(path) + else: + missing.append({ + "body_id": bid, + "system_id": b["system_id"], + "body_type": bt, + "planet_class": pc, + "donor_path": None, + "source": "donor", + }) + + # For each missing body, pick a donor + used_per_system: dict[str, set[str]] = defaultdict(set) + assigned = 0 + skipped = 0 + log_lines = [] + + for m in missing: + if m["source"] == "generic": + # Generic image copy + target = globe_path(m["system_id"], m["body_id"]) + if dry_run: + log_lines.append( + f"[GENERIC] {m['body_id']} <- {m['donor_path'].name} ({m['body_type']})" + ) + else: + target.parent.mkdir(parents=True, exist_ok=True) + shutil.copy2(m["donor_path"], target) + log_lines.append( + f"[GENERIC] {m['body_id']} <- {m['donor_path']}" + ) + assigned += 1 + continue + + bt = m["body_type"] + pc = m["planet_class"] + key = (bt, pc) + + pool = pools.get(key, []) + if not pool: + # Try broader match: same body_type, any class + for (pbt, ppc), p in pools.items(): + if pbt == bt and p: + pool = p + break + + if not pool: + log_lines.append( + f"[SKIP] {m['body_id']} — no donors for {bt}/{pc}" + ) + skipped += 1 + continue + + # Pick donor by hash, avoid repeats in same system + sys_id = m["system_id"] + h = body_hash(m["body_id"]) + pool_size = len(pool) + used = used_per_system[sys_id] + + donor = None + for offset in range(pool_size): + candidate = pool[(h + offset) % pool_size] + candidate_key = str(candidate) + if candidate_key not in used: + donor = candidate + used.add(candidate_key) + break + + if donor is None: + # All donors used in this system — allow repeat from least-used + donor = pool[h % pool_size] + + target = globe_path(sys_id, m["body_id"]) + donor_bid = donor.parent.name + + if dry_run: + log_lines.append( + f"[DONOR] {m['body_id']} <- {donor_bid} ({bt}/{pc})" + ) + else: + target.parent.mkdir(parents=True, exist_ok=True) + shutil.copy2(donor, target) + log_lines.append( + f"[DONOR] {m['body_id']} <- {donor_bid} ({bt}/{pc})" + ) + assigned += 1 + + conn.close() + + # Report + prefix = "[DRY RUN] " if dry_run else "" + print(f"{prefix}Assigned: {assigned}, Skipped: {skipped}") + print() + for line in log_lines: + print(line) + + +if __name__ == "__main__": + main() diff --git a/wiki/star-systems/GJ-0/bodies/GJ0-belt/globe.png b/wiki/star-systems/GJ-0/bodies/GJ0-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-0/bodies/GJ0-belt/globe.png differ diff --git a/wiki/star-systems/GJ-0/bodies/GJ0-oort/globe.png b/wiki/star-systems/GJ-0/bodies/GJ0-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-0/bodies/GJ0-oort/globe.png differ diff --git a/wiki/star-systems/GJ-0/bodies/GJ0b/globe.png b/wiki/star-systems/GJ-0/bodies/GJ0b/globe.png new file mode 100644 index 000000000..9a4d65aa3 Binary files /dev/null and b/wiki/star-systems/GJ-0/bodies/GJ0b/globe.png differ diff --git a/wiki/star-systems/GJ-0/bodies/GJ0c/globe.png b/wiki/star-systems/GJ-0/bodies/GJ0c/globe.png new file mode 100644 index 000000000..31399c2c9 Binary files /dev/null and b/wiki/star-systems/GJ-0/bodies/GJ0c/globe.png differ diff --git a/wiki/star-systems/GJ-0/bodies/GJ0e-1/globe.png b/wiki/star-systems/GJ-0/bodies/GJ0e-1/globe.png new file mode 100644 index 000000000..6ae909b0f Binary files /dev/null and b/wiki/star-systems/GJ-0/bodies/GJ0e-1/globe.png differ diff --git a/wiki/star-systems/GJ-0/bodies/GJ0e-2/globe.png b/wiki/star-systems/GJ-0/bodies/GJ0e-2/globe.png new file mode 100644 index 000000000..d12de0d8e Binary files /dev/null and b/wiki/star-systems/GJ-0/bodies/GJ0e-2/globe.png differ diff --git a/wiki/star-systems/GJ-0/bodies/GJ0f-1/globe.png b/wiki/star-systems/GJ-0/bodies/GJ0f-1/globe.png new file mode 100644 index 000000000..8575b2e09 Binary files /dev/null and b/wiki/star-systems/GJ-0/bodies/GJ0f-1/globe.png differ diff --git a/wiki/star-systems/GJ-0/bodies/GJ0f-3/globe.png b/wiki/star-systems/GJ-0/bodies/GJ0f-3/globe.png new file mode 100644 index 000000000..0674974e7 Binary files /dev/null and b/wiki/star-systems/GJ-0/bodies/GJ0f-3/globe.png differ diff --git a/wiki/star-systems/GJ-0/bodies/GJ0f-4/globe.png b/wiki/star-systems/GJ-0/bodies/GJ0f-4/globe.png new file mode 100644 index 000000000..45e3aad0d Binary files /dev/null and b/wiki/star-systems/GJ-0/bodies/GJ0f-4/globe.png differ diff --git a/wiki/star-systems/GJ-0/bodies/GJ0f/globe.png b/wiki/star-systems/GJ-0/bodies/GJ0f/globe.png new file mode 100644 index 000000000..8243ead0c Binary files /dev/null and b/wiki/star-systems/GJ-0/bodies/GJ0f/globe.png differ diff --git a/wiki/star-systems/GJ-0/bodies/GJ0g-1/globe.png b/wiki/star-systems/GJ-0/bodies/GJ0g-1/globe.png new file mode 100644 index 000000000..d329b99df Binary files /dev/null and b/wiki/star-systems/GJ-0/bodies/GJ0g-1/globe.png differ diff --git a/wiki/star-systems/GJ-0/bodies/GJ0g-2/globe.png b/wiki/star-systems/GJ-0/bodies/GJ0g-2/globe.png new file mode 100644 index 000000000..f8bdbe42c Binary files /dev/null and b/wiki/star-systems/GJ-0/bodies/GJ0g-2/globe.png differ diff --git a/wiki/star-systems/GJ-0/bodies/GJ0g/globe.png b/wiki/star-systems/GJ-0/bodies/GJ0g/globe.png new file mode 100644 index 000000000..be8b44142 Binary files /dev/null and b/wiki/star-systems/GJ-0/bodies/GJ0g/globe.png differ diff --git a/wiki/star-systems/GJ-0/bodies/GJ0h/globe.png b/wiki/star-systems/GJ-0/bodies/GJ0h/globe.png new file mode 100644 index 000000000..6c3e620d6 Binary files /dev/null and b/wiki/star-systems/GJ-0/bodies/GJ0h/globe.png differ diff --git a/wiki/star-systems/GJ-0/bodies/GJ0i/globe.png b/wiki/star-systems/GJ-0/bodies/GJ0i/globe.png new file mode 100644 index 000000000..dd9f988c6 Binary files /dev/null and b/wiki/star-systems/GJ-0/bodies/GJ0i/globe.png differ diff --git a/wiki/star-systems/GJ-1/bodies/GJ1-belt/globe.png b/wiki/star-systems/GJ-1/bodies/GJ1-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1/bodies/GJ1-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1/bodies/GJ1-oort/globe.png b/wiki/star-systems/GJ-1/bodies/GJ1-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1/bodies/GJ1-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1002/bodies/GJ1002-belt/globe.png b/wiki/star-systems/GJ-1002/bodies/GJ1002-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1002/bodies/GJ1002-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1002/bodies/GJ1002-oort/globe.png b/wiki/star-systems/GJ-1002/bodies/GJ1002-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1002/bodies/GJ1002-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1005A/bodies/GJ1005A-belt/globe.png b/wiki/star-systems/GJ-1005A/bodies/GJ1005A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1005A/bodies/GJ1005A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1005A/bodies/GJ1005A-oort/globe.png b/wiki/star-systems/GJ-1005A/bodies/GJ1005A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1005A/bodies/GJ1005A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-103/bodies/GJ103-belt/globe.png b/wiki/star-systems/GJ-103/bodies/GJ103-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-103/bodies/GJ103-belt/globe.png differ diff --git a/wiki/star-systems/GJ-103/bodies/GJ103-oort/globe.png b/wiki/star-systems/GJ-103/bodies/GJ103-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-103/bodies/GJ103-oort/globe.png differ diff --git a/wiki/star-systems/GJ-105A/bodies/GJ105A-belt/globe.png b/wiki/star-systems/GJ-105A/bodies/GJ105A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-105A/bodies/GJ105A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-105A/bodies/GJ105A-oort/globe.png b/wiki/star-systems/GJ-105A/bodies/GJ105A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-105A/bodies/GJ105A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1061/bodies/GJ1061-belt/globe.png b/wiki/star-systems/GJ-1061/bodies/GJ1061-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1061/bodies/GJ1061-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1061/bodies/GJ1061-oort/globe.png b/wiki/star-systems/GJ-1061/bodies/GJ1061-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1061/bodies/GJ1061-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1073/bodies/GJ1073-belt/globe.png b/wiki/star-systems/GJ-1073/bodies/GJ1073-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1073/bodies/GJ1073-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1073/bodies/GJ1073-oort/globe.png b/wiki/star-systems/GJ-1073/bodies/GJ1073-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1073/bodies/GJ1073-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1075/bodies/GJ1075-belt/globe.png b/wiki/star-systems/GJ-1075/bodies/GJ1075-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1075/bodies/GJ1075-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1075/bodies/GJ1075-oort/globe.png b/wiki/star-systems/GJ-1075/bodies/GJ1075-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1075/bodies/GJ1075-oort/globe.png differ diff --git a/wiki/star-systems/GJ-107A/bodies/GJ107A-belt/globe.png b/wiki/star-systems/GJ-107A/bodies/GJ107A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-107A/bodies/GJ107A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-107A/bodies/GJ107A-oort/globe.png b/wiki/star-systems/GJ-107A/bodies/GJ107A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-107A/bodies/GJ107A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-111/bodies/GJ111-belt/globe.png b/wiki/star-systems/GJ-111/bodies/GJ111-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-111/bodies/GJ111-belt/globe.png differ diff --git a/wiki/star-systems/GJ-111/bodies/GJ111-oort/globe.png b/wiki/star-systems/GJ-111/bodies/GJ111-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-111/bodies/GJ111-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1111/bodies/GJ1111-belt/globe.png b/wiki/star-systems/GJ-1111/bodies/GJ1111-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1111/bodies/GJ1111-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1111/bodies/GJ1111-oort/globe.png b/wiki/star-systems/GJ-1111/bodies/GJ1111-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1111/bodies/GJ1111-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1116A/bodies/GJ1116A-belt/globe.png b/wiki/star-systems/GJ-1116A/bodies/GJ1116A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1116A/bodies/GJ1116A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1116A/bodies/GJ1116A-oort/globe.png b/wiki/star-systems/GJ-1116A/bodies/GJ1116A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1116A/bodies/GJ1116A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1116B/bodies/GJ1116B-belt/globe.png b/wiki/star-systems/GJ-1116B/bodies/GJ1116B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1116B/bodies/GJ1116B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1116B/bodies/GJ1116B-oort/globe.png b/wiki/star-systems/GJ-1116B/bodies/GJ1116B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1116B/bodies/GJ1116B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1125/bodies/GJ1125-belt/globe.png b/wiki/star-systems/GJ-1125/bodies/GJ1125-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1125/bodies/GJ1125-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1125/bodies/GJ1125-oort/globe.png b/wiki/star-systems/GJ-1125/bodies/GJ1125-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1125/bodies/GJ1125-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1128/bodies/GJ1128-belt/globe.png b/wiki/star-systems/GJ-1128/bodies/GJ1128-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1128/bodies/GJ1128-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1128/bodies/GJ1128-oort/globe.png b/wiki/star-systems/GJ-1128/bodies/GJ1128-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1128/bodies/GJ1128-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1156/bodies/GJ1156-belt/globe.png b/wiki/star-systems/GJ-1156/bodies/GJ1156-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1156/bodies/GJ1156-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1156/bodies/GJ1156-oort/globe.png b/wiki/star-systems/GJ-1156/bodies/GJ1156-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1156/bodies/GJ1156-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1156/bodies/GJ1156i-1/globe.png b/wiki/star-systems/GJ-1156/bodies/GJ1156i-1/globe.png new file mode 100644 index 000000000..c3c4ac597 Binary files /dev/null and b/wiki/star-systems/GJ-1156/bodies/GJ1156i-1/globe.png differ diff --git a/wiki/star-systems/GJ-1156/bodies/GJ1156i-2/globe.png b/wiki/star-systems/GJ-1156/bodies/GJ1156i-2/globe.png new file mode 100644 index 000000000..eba1e6b7b Binary files /dev/null and b/wiki/star-systems/GJ-1156/bodies/GJ1156i-2/globe.png differ diff --git a/wiki/star-systems/GJ-1156/bodies/GJ1156i/globe.png b/wiki/star-systems/GJ-1156/bodies/GJ1156i/globe.png new file mode 100644 index 000000000..0502ffb68 Binary files /dev/null and b/wiki/star-systems/GJ-1156/bodies/GJ1156i/globe.png differ diff --git a/wiki/star-systems/GJ-117/bodies/GJ117-belt/globe.png b/wiki/star-systems/GJ-117/bodies/GJ117-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-117/bodies/GJ117-belt/globe.png differ diff --git a/wiki/star-systems/GJ-117/bodies/GJ117-oort/globe.png b/wiki/star-systems/GJ-117/bodies/GJ117-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-117/bodies/GJ117-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1221/bodies/GJ1221-belt/globe.png b/wiki/star-systems/GJ-1221/bodies/GJ1221-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1221/bodies/GJ1221-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1221/bodies/GJ1221-oort/globe.png b/wiki/star-systems/GJ-1221/bodies/GJ1221-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1221/bodies/GJ1221-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1230A/bodies/GJ1230A-belt/globe.png b/wiki/star-systems/GJ-1230A/bodies/GJ1230A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1230A/bodies/GJ1230A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1230A/bodies/GJ1230A-oort/globe.png b/wiki/star-systems/GJ-1230A/bodies/GJ1230A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1230A/bodies/GJ1230A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1232/bodies/GJ1232-belt/globe.png b/wiki/star-systems/GJ-1232/bodies/GJ1232-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1232/bodies/GJ1232-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1232/bodies/GJ1232-oort/globe.png b/wiki/star-systems/GJ-1232/bodies/GJ1232-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1232/bodies/GJ1232-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1235/bodies/GJ1235-belt/globe.png b/wiki/star-systems/GJ-1235/bodies/GJ1235-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1235/bodies/GJ1235-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1235/bodies/GJ1235-oort/globe.png b/wiki/star-systems/GJ-1235/bodies/GJ1235-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1235/bodies/GJ1235-oort/globe.png differ diff --git a/wiki/star-systems/GJ-124/bodies/GJ124-belt/globe.png b/wiki/star-systems/GJ-124/bodies/GJ124-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-124/bodies/GJ124-belt/globe.png differ diff --git a/wiki/star-systems/GJ-124/bodies/GJ124-oort/globe.png b/wiki/star-systems/GJ-124/bodies/GJ124-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-124/bodies/GJ124-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1245A/bodies/GJ1245A-belt/globe.png b/wiki/star-systems/GJ-1245A/bodies/GJ1245A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1245A/bodies/GJ1245A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1245A/bodies/GJ1245A-oort/globe.png b/wiki/star-systems/GJ-1245A/bodies/GJ1245A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1245A/bodies/GJ1245A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1245B/bodies/GJ1245B-belt/globe.png b/wiki/star-systems/GJ-1245B/bodies/GJ1245B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1245B/bodies/GJ1245B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1245B/bodies/GJ1245B-oort/globe.png b/wiki/star-systems/GJ-1245B/bodies/GJ1245B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1245B/bodies/GJ1245B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1248/bodies/GJ1248-belt/globe.png b/wiki/star-systems/GJ-1248/bodies/GJ1248-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1248/bodies/GJ1248-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1248/bodies/GJ1248-oort/globe.png b/wiki/star-systems/GJ-1248/bodies/GJ1248-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1248/bodies/GJ1248-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1267/bodies/GJ1267-belt/globe.png b/wiki/star-systems/GJ-1267/bodies/GJ1267-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1267/bodies/GJ1267-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1267/bodies/GJ1267-oort/globe.png b/wiki/star-systems/GJ-1267/bodies/GJ1267-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1267/bodies/GJ1267-oort/globe.png differ diff --git a/wiki/star-systems/GJ-127A/bodies/GJ127A-belt/globe.png b/wiki/star-systems/GJ-127A/bodies/GJ127A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-127A/bodies/GJ127A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-127A/bodies/GJ127A-oort/globe.png b/wiki/star-systems/GJ-127A/bodies/GJ127A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-127A/bodies/GJ127A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-127B/bodies/GJ127B-belt/globe.png b/wiki/star-systems/GJ-127B/bodies/GJ127B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-127B/bodies/GJ127B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-127B/bodies/GJ127B-oort/globe.png b/wiki/star-systems/GJ-127B/bodies/GJ127B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-127B/bodies/GJ127B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1286/bodies/GJ1286-belt/globe.png b/wiki/star-systems/GJ-1286/bodies/GJ1286-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1286/bodies/GJ1286-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1286/bodies/GJ1286-oort/globe.png b/wiki/star-systems/GJ-1286/bodies/GJ1286-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1286/bodies/GJ1286-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1289/bodies/GJ1289-belt/globe.png b/wiki/star-systems/GJ-1289/bodies/GJ1289-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1289/bodies/GJ1289-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1289/bodies/GJ1289-oort/globe.png b/wiki/star-systems/GJ-1289/bodies/GJ1289-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1289/bodies/GJ1289-oort/globe.png differ diff --git a/wiki/star-systems/GJ-1292/bodies/GJ1292-belt/globe.png b/wiki/star-systems/GJ-1292/bodies/GJ1292-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-1292/bodies/GJ1292-belt/globe.png differ diff --git a/wiki/star-systems/GJ-1292/bodies/GJ1292-oort/globe.png b/wiki/star-systems/GJ-1292/bodies/GJ1292-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-1292/bodies/GJ1292-oort/globe.png differ diff --git a/wiki/star-systems/GJ-136/bodies/GJ136-belt/globe.png b/wiki/star-systems/GJ-136/bodies/GJ136-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-136/bodies/GJ136-belt/globe.png differ diff --git a/wiki/star-systems/GJ-136/bodies/GJ136-oort/globe.png b/wiki/star-systems/GJ-136/bodies/GJ136-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-136/bodies/GJ136-oort/globe.png differ diff --git a/wiki/star-systems/GJ-137/bodies/GJ137-belt/globe.png b/wiki/star-systems/GJ-137/bodies/GJ137-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-137/bodies/GJ137-belt/globe.png differ diff --git a/wiki/star-systems/GJ-137/bodies/GJ137-oort/globe.png b/wiki/star-systems/GJ-137/bodies/GJ137-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-137/bodies/GJ137-oort/globe.png differ diff --git a/wiki/star-systems/GJ-138/bodies/GJ138-belt/globe.png b/wiki/star-systems/GJ-138/bodies/GJ138-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-138/bodies/GJ138-belt/globe.png differ diff --git a/wiki/star-systems/GJ-138/bodies/GJ138-oort/globe.png b/wiki/star-systems/GJ-138/bodies/GJ138-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-138/bodies/GJ138-oort/globe.png differ diff --git a/wiki/star-systems/GJ-139/bodies/GJ139-belt/globe.png b/wiki/star-systems/GJ-139/bodies/GJ139-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-139/bodies/GJ139-belt/globe.png differ diff --git a/wiki/star-systems/GJ-139/bodies/GJ139-oort/globe.png b/wiki/star-systems/GJ-139/bodies/GJ139-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-139/bodies/GJ139-oort/globe.png differ diff --git a/wiki/star-systems/GJ-139/bodies/GJ139i/globe.png b/wiki/star-systems/GJ-139/bodies/GJ139i/globe.png new file mode 100644 index 000000000..7af8bd959 Binary files /dev/null and b/wiki/star-systems/GJ-139/bodies/GJ139i/globe.png differ diff --git a/wiki/star-systems/GJ-139/bodies/GJ139j-1/globe.png b/wiki/star-systems/GJ-139/bodies/GJ139j-1/globe.png new file mode 100644 index 000000000..9e6bcfd58 Binary files /dev/null and b/wiki/star-systems/GJ-139/bodies/GJ139j-1/globe.png differ diff --git a/wiki/star-systems/GJ-139/bodies/GJ139j-2/globe.png b/wiki/star-systems/GJ-139/bodies/GJ139j-2/globe.png new file mode 100644 index 000000000..90bd51774 Binary files /dev/null and b/wiki/star-systems/GJ-139/bodies/GJ139j-2/globe.png differ diff --git a/wiki/star-systems/GJ-139/bodies/GJ139j/globe.png b/wiki/star-systems/GJ-139/bodies/GJ139j/globe.png new file mode 100644 index 000000000..7c82f87f2 Binary files /dev/null and b/wiki/star-systems/GJ-139/bodies/GJ139j/globe.png differ diff --git a/wiki/star-systems/GJ-142/bodies/GJ142-belt/globe.png b/wiki/star-systems/GJ-142/bodies/GJ142-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-142/bodies/GJ142-belt/globe.png differ diff --git a/wiki/star-systems/GJ-142/bodies/GJ142-oort/globe.png b/wiki/star-systems/GJ-142/bodies/GJ142-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-142/bodies/GJ142-oort/globe.png differ diff --git a/wiki/star-systems/GJ-144/bodies/GJ144-belt/globe.png b/wiki/star-systems/GJ-144/bodies/GJ144-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-144/bodies/GJ144-belt/globe.png differ diff --git a/wiki/star-systems/GJ-144/bodies/GJ144-oort/globe.png b/wiki/star-systems/GJ-144/bodies/GJ144-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-144/bodies/GJ144-oort/globe.png differ diff --git a/wiki/star-systems/GJ-146/bodies/GJ146-belt/globe.png b/wiki/star-systems/GJ-146/bodies/GJ146-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-146/bodies/GJ146-belt/globe.png differ diff --git a/wiki/star-systems/GJ-146/bodies/GJ146-oort/globe.png b/wiki/star-systems/GJ-146/bodies/GJ146-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-146/bodies/GJ146-oort/globe.png differ diff --git a/wiki/star-systems/GJ-147/bodies/GJ147-belt/globe.png b/wiki/star-systems/GJ-147/bodies/GJ147-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-147/bodies/GJ147-belt/globe.png differ diff --git a/wiki/star-systems/GJ-147/bodies/GJ147-oort/globe.png b/wiki/star-systems/GJ-147/bodies/GJ147-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-147/bodies/GJ147-oort/globe.png differ diff --git a/wiki/star-systems/GJ-150/bodies/GJ150-belt/globe.png b/wiki/star-systems/GJ-150/bodies/GJ150-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-150/bodies/GJ150-belt/globe.png differ diff --git a/wiki/star-systems/GJ-150/bodies/GJ150-oort/globe.png b/wiki/star-systems/GJ-150/bodies/GJ150-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-150/bodies/GJ150-oort/globe.png differ diff --git a/wiki/star-systems/GJ-15A/bodies/GJ15A-oort/globe.png b/wiki/star-systems/GJ-15A/bodies/GJ15A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-15A/bodies/GJ15A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-166A/bodies/GJ166A-oort/globe.png b/wiki/star-systems/GJ-166A/bodies/GJ166A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-166A/bodies/GJ166A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-167/bodies/GJ167-belt/globe.png b/wiki/star-systems/GJ-167/bodies/GJ167-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-167/bodies/GJ167-belt/globe.png differ diff --git a/wiki/star-systems/GJ-167/bodies/GJ167-oort/globe.png b/wiki/star-systems/GJ-167/bodies/GJ167-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-167/bodies/GJ167-oort/globe.png differ diff --git a/wiki/star-systems/GJ-169/bodies/GJ169-belt/globe.png b/wiki/star-systems/GJ-169/bodies/GJ169-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-169/bodies/GJ169-belt/globe.png differ diff --git a/wiki/star-systems/GJ-169/bodies/GJ169-oort/globe.png b/wiki/star-systems/GJ-169/bodies/GJ169-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-169/bodies/GJ169-oort/globe.png differ diff --git a/wiki/star-systems/GJ-17/bodies/GJ17-belt/globe.png b/wiki/star-systems/GJ-17/bodies/GJ17-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-17/bodies/GJ17-belt/globe.png differ diff --git a/wiki/star-systems/GJ-17/bodies/GJ17-oort/globe.png b/wiki/star-systems/GJ-17/bodies/GJ17-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-17/bodies/GJ17-oort/globe.png differ diff --git a/wiki/star-systems/GJ-172/bodies/GJ172-belt/globe.png b/wiki/star-systems/GJ-172/bodies/GJ172-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-172/bodies/GJ172-belt/globe.png differ diff --git a/wiki/star-systems/GJ-172/bodies/GJ172-oort/globe.png b/wiki/star-systems/GJ-172/bodies/GJ172-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-172/bodies/GJ172-oort/globe.png differ diff --git a/wiki/star-systems/GJ-174/bodies/GJ174-belt/globe.png b/wiki/star-systems/GJ-174/bodies/GJ174-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-174/bodies/GJ174-belt/globe.png differ diff --git a/wiki/star-systems/GJ-174/bodies/GJ174-oort/globe.png b/wiki/star-systems/GJ-174/bodies/GJ174-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-174/bodies/GJ174-oort/globe.png differ diff --git a/wiki/star-systems/GJ-177/bodies/GJ177-belt/globe.png b/wiki/star-systems/GJ-177/bodies/GJ177-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-177/bodies/GJ177-belt/globe.png differ diff --git a/wiki/star-systems/GJ-177/bodies/GJ177-oort/globe.png b/wiki/star-systems/GJ-177/bodies/GJ177-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-177/bodies/GJ177-oort/globe.png differ diff --git a/wiki/star-systems/GJ-178/bodies/GJ178-belt/globe.png b/wiki/star-systems/GJ-178/bodies/GJ178-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-178/bodies/GJ178-belt/globe.png differ diff --git a/wiki/star-systems/GJ-178/bodies/GJ178-oort/globe.png b/wiki/star-systems/GJ-178/bodies/GJ178-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-178/bodies/GJ178-oort/globe.png differ diff --git a/wiki/star-systems/GJ-183/bodies/GJ183-belt/globe.png b/wiki/star-systems/GJ-183/bodies/GJ183-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-183/bodies/GJ183-belt/globe.png differ diff --git a/wiki/star-systems/GJ-183/bodies/GJ183-oort/globe.png b/wiki/star-systems/GJ-183/bodies/GJ183-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-183/bodies/GJ183-oort/globe.png differ diff --git a/wiki/star-systems/GJ-189/bodies/GJ189-belt/globe.png b/wiki/star-systems/GJ-189/bodies/GJ189-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-189/bodies/GJ189-belt/globe.png differ diff --git a/wiki/star-systems/GJ-189/bodies/GJ189-oort/globe.png b/wiki/star-systems/GJ-189/bodies/GJ189-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-189/bodies/GJ189-oort/globe.png differ diff --git a/wiki/star-systems/GJ-19/bodies/GJ19-belt/globe.png b/wiki/star-systems/GJ-19/bodies/GJ19-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-19/bodies/GJ19-belt/globe.png differ diff --git a/wiki/star-systems/GJ-19/bodies/GJ19-oort/globe.png b/wiki/star-systems/GJ-19/bodies/GJ19-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-19/bodies/GJ19-oort/globe.png differ diff --git a/wiki/star-systems/GJ-191/bodies/GJ191-belt/globe.png b/wiki/star-systems/GJ-191/bodies/GJ191-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-191/bodies/GJ191-belt/globe.png differ diff --git a/wiki/star-systems/GJ-191/bodies/GJ191-oort/globe.png b/wiki/star-systems/GJ-191/bodies/GJ191-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-191/bodies/GJ191-oort/globe.png differ diff --git a/wiki/star-systems/GJ-194B/bodies/GJ194B-belt/globe.png b/wiki/star-systems/GJ-194B/bodies/GJ194B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-194B/bodies/GJ194B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-194B/bodies/GJ194B-oort/globe.png b/wiki/star-systems/GJ-194B/bodies/GJ194B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-194B/bodies/GJ194B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-197/bodies/GJ197-belt/globe.png b/wiki/star-systems/GJ-197/bodies/GJ197-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-197/bodies/GJ197-belt/globe.png differ diff --git a/wiki/star-systems/GJ-197/bodies/GJ197-oort/globe.png b/wiki/star-systems/GJ-197/bodies/GJ197-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-197/bodies/GJ197-oort/globe.png differ diff --git a/wiki/star-systems/GJ-201/bodies/GJ201-belt/globe.png b/wiki/star-systems/GJ-201/bodies/GJ201-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-201/bodies/GJ201-belt/globe.png differ diff --git a/wiki/star-systems/GJ-201/bodies/GJ201-oort/globe.png b/wiki/star-systems/GJ-201/bodies/GJ201-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-201/bodies/GJ201-oort/globe.png differ diff --git a/wiki/star-systems/GJ-204/bodies/GJ204-belt/globe.png b/wiki/star-systems/GJ-204/bodies/GJ204-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-204/bodies/GJ204-belt/globe.png differ diff --git a/wiki/star-systems/GJ-204/bodies/GJ204-oort/globe.png b/wiki/star-systems/GJ-204/bodies/GJ204-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-204/bodies/GJ204-oort/globe.png differ diff --git a/wiki/star-systems/GJ-205/bodies/GJ205-belt/globe.png b/wiki/star-systems/GJ-205/bodies/GJ205-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-205/bodies/GJ205-belt/globe.png differ diff --git a/wiki/star-systems/GJ-205/bodies/GJ205-oort/globe.png b/wiki/star-systems/GJ-205/bodies/GJ205-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-205/bodies/GJ205-oort/globe.png differ diff --git a/wiki/star-systems/GJ-208/bodies/GJ208-belt/globe.png b/wiki/star-systems/GJ-208/bodies/GJ208-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-208/bodies/GJ208-belt/globe.png differ diff --git a/wiki/star-systems/GJ-208/bodies/GJ208-oort/globe.png b/wiki/star-systems/GJ-208/bodies/GJ208-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-208/bodies/GJ208-oort/globe.png differ diff --git a/wiki/star-systems/GJ-2097/bodies/GJ2097-belt/globe.png b/wiki/star-systems/GJ-2097/bodies/GJ2097-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-2097/bodies/GJ2097-belt/globe.png differ diff --git a/wiki/star-systems/GJ-2097/bodies/GJ2097-oort/globe.png b/wiki/star-systems/GJ-2097/bodies/GJ2097-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-2097/bodies/GJ2097-oort/globe.png differ diff --git a/wiki/star-systems/GJ-211/bodies/GJ211-belt/globe.png b/wiki/star-systems/GJ-211/bodies/GJ211-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-211/bodies/GJ211-belt/globe.png differ diff --git a/wiki/star-systems/GJ-211/bodies/GJ211-oort/globe.png b/wiki/star-systems/GJ-211/bodies/GJ211-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-211/bodies/GJ211-oort/globe.png differ diff --git a/wiki/star-systems/GJ-213/bodies/GJ213-belt/globe.png b/wiki/star-systems/GJ-213/bodies/GJ213-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-213/bodies/GJ213-belt/globe.png differ diff --git a/wiki/star-systems/GJ-213/bodies/GJ213-oort/globe.png b/wiki/star-systems/GJ-213/bodies/GJ213-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-213/bodies/GJ213-oort/globe.png differ diff --git a/wiki/star-systems/GJ-216A/bodies/GJ216A-belt/globe.png b/wiki/star-systems/GJ-216A/bodies/GJ216A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-216A/bodies/GJ216A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-216A/bodies/GJ216A-oort/globe.png b/wiki/star-systems/GJ-216A/bodies/GJ216A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-216A/bodies/GJ216A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-216B/bodies/GJ216B-belt/globe.png b/wiki/star-systems/GJ-216B/bodies/GJ216B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-216B/bodies/GJ216B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-216B/bodies/GJ216B-oort/globe.png b/wiki/star-systems/GJ-216B/bodies/GJ216B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-216B/bodies/GJ216B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-222A/bodies/GJ222A-belt/globe.png b/wiki/star-systems/GJ-222A/bodies/GJ222A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-222A/bodies/GJ222A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-222A/bodies/GJ222A-oort/globe.png b/wiki/star-systems/GJ-222A/bodies/GJ222A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-222A/bodies/GJ222A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-229/bodies/GJ229-belt/globe.png b/wiki/star-systems/GJ-229/bodies/GJ229-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-229/bodies/GJ229-belt/globe.png differ diff --git a/wiki/star-systems/GJ-229/bodies/GJ229-oort/globe.png b/wiki/star-systems/GJ-229/bodies/GJ229-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-229/bodies/GJ229-oort/globe.png differ diff --git a/wiki/star-systems/GJ-231/bodies/GJ231-belt/globe.png b/wiki/star-systems/GJ-231/bodies/GJ231-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-231/bodies/GJ231-belt/globe.png differ diff --git a/wiki/star-systems/GJ-231/bodies/GJ231-oort/globe.png b/wiki/star-systems/GJ-231/bodies/GJ231-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-231/bodies/GJ231-oort/globe.png differ diff --git a/wiki/star-systems/GJ-234A/bodies/GJ234A-belt/globe.png b/wiki/star-systems/GJ-234A/bodies/GJ234A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-234A/bodies/GJ234A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-234A/bodies/GJ234A-oort/globe.png b/wiki/star-systems/GJ-234A/bodies/GJ234A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-234A/bodies/GJ234A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-244A/bodies/GJ244A-belt/globe.png b/wiki/star-systems/GJ-244A/bodies/GJ244A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-244A/bodies/GJ244A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-244A/bodies/GJ244A-oort/globe.png b/wiki/star-systems/GJ-244A/bodies/GJ244A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-244A/bodies/GJ244A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-250A/bodies/GJ250A-belt/globe.png b/wiki/star-systems/GJ-250A/bodies/GJ250A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-250A/bodies/GJ250A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-250A/bodies/GJ250A-oort/globe.png b/wiki/star-systems/GJ-250A/bodies/GJ250A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-250A/bodies/GJ250A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-251/bodies/GJ251-belt/globe.png b/wiki/star-systems/GJ-251/bodies/GJ251-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-251/bodies/GJ251-belt/globe.png differ diff --git a/wiki/star-systems/GJ-251/bodies/GJ251-oort/globe.png b/wiki/star-systems/GJ-251/bodies/GJ251-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-251/bodies/GJ251-oort/globe.png differ diff --git a/wiki/star-systems/GJ-268/bodies/GJ268-belt/globe.png b/wiki/star-systems/GJ-268/bodies/GJ268-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-268/bodies/GJ268-belt/globe.png differ diff --git a/wiki/star-systems/GJ-268/bodies/GJ268-oort/globe.png b/wiki/star-systems/GJ-268/bodies/GJ268-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-268/bodies/GJ268-oort/globe.png differ diff --git a/wiki/star-systems/GJ-27/bodies/GJ27-belt/globe.png b/wiki/star-systems/GJ-27/bodies/GJ27-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-27/bodies/GJ27-belt/globe.png differ diff --git a/wiki/star-systems/GJ-27/bodies/GJ27-oort/globe.png b/wiki/star-systems/GJ-27/bodies/GJ27-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-27/bodies/GJ27-oort/globe.png differ diff --git a/wiki/star-systems/GJ-273/bodies/GJ273-belt/globe.png b/wiki/star-systems/GJ-273/bodies/GJ273-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-273/bodies/GJ273-belt/globe.png differ diff --git a/wiki/star-systems/GJ-273/bodies/GJ273-oort/globe.png b/wiki/star-systems/GJ-273/bodies/GJ273-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-273/bodies/GJ273-oort/globe.png differ diff --git a/wiki/star-systems/GJ-280A/bodies/GJ280A-belt/globe.png b/wiki/star-systems/GJ-280A/bodies/GJ280A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-280A/bodies/GJ280A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-280A/bodies/GJ280A-oort/globe.png b/wiki/star-systems/GJ-280A/bodies/GJ280A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-280A/bodies/GJ280A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-282A/bodies/GJ282A-belt/globe.png b/wiki/star-systems/GJ-282A/bodies/GJ282A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-282A/bodies/GJ282A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-282A/bodies/GJ282A-oort/globe.png b/wiki/star-systems/GJ-282A/bodies/GJ282A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-282A/bodies/GJ282A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-282B/bodies/GJ282B-belt/globe.png b/wiki/star-systems/GJ-282B/bodies/GJ282B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-282B/bodies/GJ282B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-282B/bodies/GJ282B-oort/globe.png b/wiki/star-systems/GJ-282B/bodies/GJ282B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-282B/bodies/GJ282B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-285/bodies/GJ285-belt/globe.png b/wiki/star-systems/GJ-285/bodies/GJ285-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-285/bodies/GJ285-belt/globe.png differ diff --git a/wiki/star-systems/GJ-285/bodies/GJ285-oort/globe.png b/wiki/star-systems/GJ-285/bodies/GJ285-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-285/bodies/GJ285-oort/globe.png differ diff --git a/wiki/star-systems/GJ-286/bodies/GJ286-belt/globe.png b/wiki/star-systems/GJ-286/bodies/GJ286-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-286/bodies/GJ286-belt/globe.png differ diff --git a/wiki/star-systems/GJ-286/bodies/GJ286-oort/globe.png b/wiki/star-systems/GJ-286/bodies/GJ286-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-286/bodies/GJ286-oort/globe.png differ diff --git a/wiki/star-systems/GJ-299/bodies/GJ299-belt/globe.png b/wiki/star-systems/GJ-299/bodies/GJ299-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-299/bodies/GJ299-belt/globe.png differ diff --git a/wiki/star-systems/GJ-299/bodies/GJ299-oort/globe.png b/wiki/star-systems/GJ-299/bodies/GJ299-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-299/bodies/GJ299-oort/globe.png differ diff --git a/wiki/star-systems/GJ-300/bodies/GJ300-belt/globe.png b/wiki/star-systems/GJ-300/bodies/GJ300-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-300/bodies/GJ300-belt/globe.png differ diff --git a/wiki/star-systems/GJ-300/bodies/GJ300-oort/globe.png b/wiki/star-systems/GJ-300/bodies/GJ300-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-300/bodies/GJ300-oort/globe.png differ diff --git a/wiki/star-systems/GJ-302/bodies/GJ302-belt/globe.png b/wiki/star-systems/GJ-302/bodies/GJ302-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-302/bodies/GJ302-belt/globe.png differ diff --git a/wiki/star-systems/GJ-302/bodies/GJ302-oort/globe.png b/wiki/star-systems/GJ-302/bodies/GJ302-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-302/bodies/GJ302-oort/globe.png differ diff --git a/wiki/star-systems/GJ-309/bodies/GJ309-belt/globe.png b/wiki/star-systems/GJ-309/bodies/GJ309-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-309/bodies/GJ309-belt/globe.png differ diff --git a/wiki/star-systems/GJ-309/bodies/GJ309-oort/globe.png b/wiki/star-systems/GJ-309/bodies/GJ309-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-309/bodies/GJ309-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3135/bodies/GJ3135-belt/globe.png b/wiki/star-systems/GJ-3135/bodies/GJ3135-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3135/bodies/GJ3135-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3135/bodies/GJ3135-oort/globe.png b/wiki/star-systems/GJ-3135/bodies/GJ3135-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3135/bodies/GJ3135-oort/globe.png differ diff --git a/wiki/star-systems/GJ-320/bodies/GJ320-belt/globe.png b/wiki/star-systems/GJ-320/bodies/GJ320-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-320/bodies/GJ320-belt/globe.png differ diff --git a/wiki/star-systems/GJ-320/bodies/GJ320-oort/globe.png b/wiki/star-systems/GJ-320/bodies/GJ320-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-320/bodies/GJ320-oort/globe.png differ diff --git a/wiki/star-systems/GJ-324A/bodies/GJ324A-belt/globe.png b/wiki/star-systems/GJ-324A/bodies/GJ324A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-324A/bodies/GJ324A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-324A/bodies/GJ324A-oort/globe.png b/wiki/star-systems/GJ-324A/bodies/GJ324A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-324A/bodies/GJ324A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3250/bodies/GJ3250-belt/globe.png b/wiki/star-systems/GJ-3250/bodies/GJ3250-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3250/bodies/GJ3250-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3250/bodies/GJ3250-oort/globe.png b/wiki/star-systems/GJ-3250/bodies/GJ3250-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3250/bodies/GJ3250-oort/globe.png differ diff --git a/wiki/star-systems/GJ-325A/bodies/GJ325A-belt/globe.png b/wiki/star-systems/GJ-325A/bodies/GJ325A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-325A/bodies/GJ325A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-325A/bodies/GJ325A-oort/globe.png b/wiki/star-systems/GJ-325A/bodies/GJ325A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-325A/bodies/GJ325A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-325B/bodies/GJ325B-belt/globe.png b/wiki/star-systems/GJ-325B/bodies/GJ325B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-325B/bodies/GJ325B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-325B/bodies/GJ325B-oort/globe.png b/wiki/star-systems/GJ-325B/bodies/GJ325B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-325B/bodies/GJ325B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-33/bodies/GJ33-belt/globe.png b/wiki/star-systems/GJ-33/bodies/GJ33-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-33/bodies/GJ33-belt/globe.png differ diff --git a/wiki/star-systems/GJ-33/bodies/GJ33-oort/globe.png b/wiki/star-systems/GJ-33/bodies/GJ33-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-33/bodies/GJ33-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3323/bodies/GJ3323-belt/globe.png b/wiki/star-systems/GJ-3323/bodies/GJ3323-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3323/bodies/GJ3323-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3323/bodies/GJ3323-oort/globe.png b/wiki/star-systems/GJ-3323/bodies/GJ3323-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3323/bodies/GJ3323-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3325/bodies/GJ3325-belt/globe.png b/wiki/star-systems/GJ-3325/bodies/GJ3325-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3325/bodies/GJ3325-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3325/bodies/GJ3325-oort/globe.png b/wiki/star-systems/GJ-3325/bodies/GJ3325-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3325/bodies/GJ3325-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3333/bodies/GJ3333-belt/globe.png b/wiki/star-systems/GJ-3333/bodies/GJ3333-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3333/bodies/GJ3333-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3333/bodies/GJ3333-oort/globe.png b/wiki/star-systems/GJ-3333/bodies/GJ3333-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3333/bodies/GJ3333-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3379/bodies/GJ3379-belt/globe.png b/wiki/star-systems/GJ-3379/bodies/GJ3379-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3379/bodies/GJ3379-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3379/bodies/GJ3379-oort/globe.png b/wiki/star-systems/GJ-3379/bodies/GJ3379-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3379/bodies/GJ3379-oort/globe.png differ diff --git a/wiki/star-systems/GJ-338B/bodies/GJ338B-oort/globe.png b/wiki/star-systems/GJ-338B/bodies/GJ338B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-338B/bodies/GJ338B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3403/bodies/GJ3403-belt/globe.png b/wiki/star-systems/GJ-3403/bodies/GJ3403-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3403/bodies/GJ3403-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3403/bodies/GJ3403-oort/globe.png b/wiki/star-systems/GJ-3403/bodies/GJ3403-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3403/bodies/GJ3403-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3442/bodies/GJ3442-belt/globe.png b/wiki/star-systems/GJ-3442/bodies/GJ3442-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3442/bodies/GJ3442-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3442/bodies/GJ3442-oort/globe.png b/wiki/star-systems/GJ-3442/bodies/GJ3442-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3442/bodies/GJ3442-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3454/bodies/GJ3454-belt/globe.png b/wiki/star-systems/GJ-3454/bodies/GJ3454-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3454/bodies/GJ3454-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3454/bodies/GJ3454-oort/globe.png b/wiki/star-systems/GJ-3454/bodies/GJ3454-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3454/bodies/GJ3454-oort/globe.png differ diff --git a/wiki/star-systems/GJ-349/bodies/GJ349-belt/globe.png b/wiki/star-systems/GJ-349/bodies/GJ349-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-349/bodies/GJ349-belt/globe.png differ diff --git a/wiki/star-systems/GJ-349/bodies/GJ349-oort/globe.png b/wiki/star-systems/GJ-349/bodies/GJ349-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-349/bodies/GJ349-oort/globe.png differ diff --git a/wiki/star-systems/GJ-34A/bodies/GJ34A-belt/globe.png b/wiki/star-systems/GJ-34A/bodies/GJ34A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-34A/bodies/GJ34A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-34A/bodies/GJ34A-oort/globe.png b/wiki/star-systems/GJ-34A/bodies/GJ34A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-34A/bodies/GJ34A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-34A/bodies/GJ34Ai/globe.png b/wiki/star-systems/GJ-34A/bodies/GJ34Ai/globe.png new file mode 100644 index 000000000..6e2e61eb5 Binary files /dev/null and b/wiki/star-systems/GJ-34A/bodies/GJ34Ai/globe.png differ diff --git a/wiki/star-systems/GJ-34A/bodies/GJ34Aj-1/globe.png b/wiki/star-systems/GJ-34A/bodies/GJ34Aj-1/globe.png new file mode 100644 index 000000000..803f9e0eb Binary files /dev/null and b/wiki/star-systems/GJ-34A/bodies/GJ34Aj-1/globe.png differ diff --git a/wiki/star-systems/GJ-34A/bodies/GJ34Aj-2/globe.png b/wiki/star-systems/GJ-34A/bodies/GJ34Aj-2/globe.png new file mode 100644 index 000000000..218c60231 Binary files /dev/null and b/wiki/star-systems/GJ-34A/bodies/GJ34Aj-2/globe.png differ diff --git a/wiki/star-systems/GJ-34A/bodies/GJ34Aj/globe.png b/wiki/star-systems/GJ-34A/bodies/GJ34Aj/globe.png new file mode 100644 index 000000000..72e3bb580 Binary files /dev/null and b/wiki/star-systems/GJ-34A/bodies/GJ34Aj/globe.png differ diff --git a/wiki/star-systems/GJ-34B/bodies/GJ34B-belt/globe.png b/wiki/star-systems/GJ-34B/bodies/GJ34B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-34B/bodies/GJ34B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-34B/bodies/GJ34B-oort/globe.png b/wiki/star-systems/GJ-34B/bodies/GJ34B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-34B/bodies/GJ34B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-34B/bodies/GJ34Bh/globe.png b/wiki/star-systems/GJ-34B/bodies/GJ34Bh/globe.png new file mode 100644 index 000000000..749daef9b Binary files /dev/null and b/wiki/star-systems/GJ-34B/bodies/GJ34Bh/globe.png differ diff --git a/wiki/star-systems/GJ-34B/bodies/GJ34Bi-1/globe.png b/wiki/star-systems/GJ-34B/bodies/GJ34Bi-1/globe.png new file mode 100644 index 000000000..612af07e8 Binary files /dev/null and b/wiki/star-systems/GJ-34B/bodies/GJ34Bi-1/globe.png differ diff --git a/wiki/star-systems/GJ-34B/bodies/GJ34Bi-2/globe.png b/wiki/star-systems/GJ-34B/bodies/GJ34Bi-2/globe.png new file mode 100644 index 000000000..6d683eb8d Binary files /dev/null and b/wiki/star-systems/GJ-34B/bodies/GJ34Bi-2/globe.png differ diff --git a/wiki/star-systems/GJ-34B/bodies/GJ34Bi/globe.png b/wiki/star-systems/GJ-34B/bodies/GJ34Bi/globe.png new file mode 100644 index 000000000..844c2f881 Binary files /dev/null and b/wiki/star-systems/GJ-34B/bodies/GJ34Bi/globe.png differ diff --git a/wiki/star-systems/GJ-35/bodies/GJ35-belt/globe.png b/wiki/star-systems/GJ-35/bodies/GJ35-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-35/bodies/GJ35-belt/globe.png differ diff --git a/wiki/star-systems/GJ-35/bodies/GJ35-oort/globe.png b/wiki/star-systems/GJ-35/bodies/GJ35-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-35/bodies/GJ35-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3522/bodies/GJ3522-belt/globe.png b/wiki/star-systems/GJ-3522/bodies/GJ3522-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3522/bodies/GJ3522-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3522/bodies/GJ3522-oort/globe.png b/wiki/star-systems/GJ-3522/bodies/GJ3522-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3522/bodies/GJ3522-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3533/bodies/GJ3533-belt/globe.png b/wiki/star-systems/GJ-3533/bodies/GJ3533-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3533/bodies/GJ3533-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3533/bodies/GJ3533-oort/globe.png b/wiki/star-systems/GJ-3533/bodies/GJ3533-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3533/bodies/GJ3533-oort/globe.png differ diff --git a/wiki/star-systems/GJ-354A/bodies/GJ354A-belt/globe.png b/wiki/star-systems/GJ-354A/bodies/GJ354A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-354A/bodies/GJ354A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-354A/bodies/GJ354A-oort/globe.png b/wiki/star-systems/GJ-354A/bodies/GJ354A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-354A/bodies/GJ354A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-356A/bodies/GJ356A-belt/globe.png b/wiki/star-systems/GJ-356A/bodies/GJ356A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-356A/bodies/GJ356A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-356A/bodies/GJ356A-oort/globe.png b/wiki/star-systems/GJ-356A/bodies/GJ356A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-356A/bodies/GJ356A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-357/bodies/GJ357-belt/globe.png b/wiki/star-systems/GJ-357/bodies/GJ357-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-357/bodies/GJ357-belt/globe.png differ diff --git a/wiki/star-systems/GJ-357/bodies/GJ357-oort/globe.png b/wiki/star-systems/GJ-357/bodies/GJ357-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-357/bodies/GJ357-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3586/bodies/GJ3586-belt/globe.png b/wiki/star-systems/GJ-3586/bodies/GJ3586-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3586/bodies/GJ3586-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3586/bodies/GJ3586-oort/globe.png b/wiki/star-systems/GJ-3586/bodies/GJ3586-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3586/bodies/GJ3586-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3612/bodies/GJ3612-belt/globe.png b/wiki/star-systems/GJ-3612/bodies/GJ3612-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3612/bodies/GJ3612-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3612/bodies/GJ3612-oort/globe.png b/wiki/star-systems/GJ-3612/bodies/GJ3612-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3612/bodies/GJ3612-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3618/bodies/GJ3618-belt/globe.png b/wiki/star-systems/GJ-3618/bodies/GJ3618-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3618/bodies/GJ3618-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3618/bodies/GJ3618-oort/globe.png b/wiki/star-systems/GJ-3618/bodies/GJ3618-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3618/bodies/GJ3618-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3622/bodies/GJ3622-belt/globe.png b/wiki/star-systems/GJ-3622/bodies/GJ3622-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3622/bodies/GJ3622-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3622/bodies/GJ3622-oort/globe.png b/wiki/star-systems/GJ-3622/bodies/GJ3622-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3622/bodies/GJ3622-oort/globe.png differ diff --git a/wiki/star-systems/GJ-370/bodies/GJ370-belt/globe.png b/wiki/star-systems/GJ-370/bodies/GJ370-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-370/bodies/GJ370-belt/globe.png differ diff --git a/wiki/star-systems/GJ-370/bodies/GJ370-oort/globe.png b/wiki/star-systems/GJ-370/bodies/GJ370-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-370/bodies/GJ370-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3728B/bodies/GJ3728B-belt/globe.png b/wiki/star-systems/GJ-3728B/bodies/GJ3728B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3728B/bodies/GJ3728B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3728B/bodies/GJ3728B-oort/globe.png b/wiki/star-systems/GJ-3728B/bodies/GJ3728B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3728B/bodies/GJ3728B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3737/bodies/GJ3737-belt/globe.png b/wiki/star-systems/GJ-3737/bodies/GJ3737-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3737/bodies/GJ3737-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3737/bodies/GJ3737-oort/globe.png b/wiki/star-systems/GJ-3737/bodies/GJ3737-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3737/bodies/GJ3737-oort/globe.png differ diff --git a/wiki/star-systems/GJ-380/bodies/GJ380-oort/globe.png b/wiki/star-systems/GJ-380/bodies/GJ380-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-380/bodies/GJ380-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3820/bodies/GJ3820-belt/globe.png b/wiki/star-systems/GJ-3820/bodies/GJ3820-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3820/bodies/GJ3820-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3820/bodies/GJ3820-oort/globe.png b/wiki/star-systems/GJ-3820/bodies/GJ3820-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3820/bodies/GJ3820-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3877/bodies/GJ3877-oort/globe.png b/wiki/star-systems/GJ-3877/bodies/GJ3877-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3877/bodies/GJ3877-oort/globe.png differ diff --git a/wiki/star-systems/GJ-388/bodies/GJ388-belt/globe.png b/wiki/star-systems/GJ-388/bodies/GJ388-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-388/bodies/GJ388-belt/globe.png differ diff --git a/wiki/star-systems/GJ-388/bodies/GJ388-oort/globe.png b/wiki/star-systems/GJ-388/bodies/GJ388-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-388/bodies/GJ388-oort/globe.png differ diff --git a/wiki/star-systems/GJ-393/bodies/GJ393-belt/globe.png b/wiki/star-systems/GJ-393/bodies/GJ393-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-393/bodies/GJ393-belt/globe.png differ diff --git a/wiki/star-systems/GJ-393/bodies/GJ393-oort/globe.png b/wiki/star-systems/GJ-393/bodies/GJ393-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-393/bodies/GJ393-oort/globe.png differ diff --git a/wiki/star-systems/GJ-394/bodies/GJ394-belt/globe.png b/wiki/star-systems/GJ-394/bodies/GJ394-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-394/bodies/GJ394-belt/globe.png differ diff --git a/wiki/star-systems/GJ-394/bodies/GJ394-oort/globe.png b/wiki/star-systems/GJ-394/bodies/GJ394-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-394/bodies/GJ394-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3943/bodies/GJ3943-belt/globe.png b/wiki/star-systems/GJ-3943/bodies/GJ3943-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3943/bodies/GJ3943-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3943/bodies/GJ3943-oort/globe.png b/wiki/star-systems/GJ-3943/bodies/GJ3943-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3943/bodies/GJ3943-oort/globe.png differ diff --git a/wiki/star-systems/GJ-395/bodies/GJ395-belt/globe.png b/wiki/star-systems/GJ-395/bodies/GJ395-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-395/bodies/GJ395-belt/globe.png differ diff --git a/wiki/star-systems/GJ-395/bodies/GJ395-oort/globe.png b/wiki/star-systems/GJ-395/bodies/GJ395-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-395/bodies/GJ395-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3988/bodies/GJ3988-belt/globe.png b/wiki/star-systems/GJ-3988/bodies/GJ3988-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3988/bodies/GJ3988-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3988/bodies/GJ3988-oort/globe.png b/wiki/star-systems/GJ-3988/bodies/GJ3988-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3988/bodies/GJ3988-oort/globe.png differ diff --git a/wiki/star-systems/GJ-3991/bodies/GJ3991-belt/globe.png b/wiki/star-systems/GJ-3991/bodies/GJ3991-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-3991/bodies/GJ3991-belt/globe.png differ diff --git a/wiki/star-systems/GJ-3991/bodies/GJ3991-oort/globe.png b/wiki/star-systems/GJ-3991/bodies/GJ3991-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-3991/bodies/GJ3991-oort/globe.png differ diff --git a/wiki/star-systems/GJ-402/bodies/GJ402-belt/globe.png b/wiki/star-systems/GJ-402/bodies/GJ402-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-402/bodies/GJ402-belt/globe.png differ diff --git a/wiki/star-systems/GJ-402/bodies/GJ402-oort/globe.png b/wiki/star-systems/GJ-402/bodies/GJ402-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-402/bodies/GJ402-oort/globe.png differ diff --git a/wiki/star-systems/GJ-4053/bodies/GJ4053-belt/globe.png b/wiki/star-systems/GJ-4053/bodies/GJ4053-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-4053/bodies/GJ4053-belt/globe.png differ diff --git a/wiki/star-systems/GJ-4053/bodies/GJ4053-oort/globe.png b/wiki/star-systems/GJ-4053/bodies/GJ4053-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-4053/bodies/GJ4053-oort/globe.png differ diff --git a/wiki/star-systems/GJ-4056/bodies/GJ4056-belt/globe.png b/wiki/star-systems/GJ-4056/bodies/GJ4056-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-4056/bodies/GJ4056-belt/globe.png differ diff --git a/wiki/star-systems/GJ-4056/bodies/GJ4056-oort/globe.png b/wiki/star-systems/GJ-4056/bodies/GJ4056-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-4056/bodies/GJ4056-oort/globe.png differ diff --git a/wiki/star-systems/GJ-406/bodies/GJ406-belt/globe.png b/wiki/star-systems/GJ-406/bodies/GJ406-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-406/bodies/GJ406-belt/globe.png differ diff --git a/wiki/star-systems/GJ-406/bodies/GJ406-oort/globe.png b/wiki/star-systems/GJ-406/bodies/GJ406-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-406/bodies/GJ406-oort/globe.png differ diff --git a/wiki/star-systems/GJ-407/bodies/GJ407-belt/globe.png b/wiki/star-systems/GJ-407/bodies/GJ407-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-407/bodies/GJ407-belt/globe.png differ diff --git a/wiki/star-systems/GJ-407/bodies/GJ407-oort/globe.png b/wiki/star-systems/GJ-407/bodies/GJ407-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-407/bodies/GJ407-oort/globe.png differ diff --git a/wiki/star-systems/GJ-408/bodies/GJ408-belt/globe.png b/wiki/star-systems/GJ-408/bodies/GJ408-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-408/bodies/GJ408-belt/globe.png differ diff --git a/wiki/star-systems/GJ-408/bodies/GJ408-oort/globe.png b/wiki/star-systems/GJ-408/bodies/GJ408-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-408/bodies/GJ408-oort/globe.png differ diff --git a/wiki/star-systems/GJ-410/bodies/GJ410-belt/globe.png b/wiki/star-systems/GJ-410/bodies/GJ410-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-410/bodies/GJ410-belt/globe.png differ diff --git a/wiki/star-systems/GJ-410/bodies/GJ410-oort/globe.png b/wiki/star-systems/GJ-410/bodies/GJ410-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-410/bodies/GJ410-oort/globe.png differ diff --git a/wiki/star-systems/GJ-411/bodies/GJ411-belt/globe.png b/wiki/star-systems/GJ-411/bodies/GJ411-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-411/bodies/GJ411-belt/globe.png differ diff --git a/wiki/star-systems/GJ-411/bodies/GJ411-oort/globe.png b/wiki/star-systems/GJ-411/bodies/GJ411-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-411/bodies/GJ411-oort/globe.png differ diff --git a/wiki/star-systems/GJ-411/bodies/GJ411g/globe.png b/wiki/star-systems/GJ-411/bodies/GJ411g/globe.png new file mode 100644 index 000000000..dba8024ac Binary files /dev/null and b/wiki/star-systems/GJ-411/bodies/GJ411g/globe.png differ diff --git a/wiki/star-systems/GJ-412A/bodies/GJ412A-belt/globe.png b/wiki/star-systems/GJ-412A/bodies/GJ412A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-412A/bodies/GJ412A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-412A/bodies/GJ412A-oort/globe.png b/wiki/star-systems/GJ-412A/bodies/GJ412A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-412A/bodies/GJ412A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-412B/bodies/GJ412B-belt/globe.png b/wiki/star-systems/GJ-412B/bodies/GJ412B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-412B/bodies/GJ412B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-412B/bodies/GJ412B-oort/globe.png b/wiki/star-systems/GJ-412B/bodies/GJ412B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-412B/bodies/GJ412B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-414A/bodies/GJ414A-belt/globe.png b/wiki/star-systems/GJ-414A/bodies/GJ414A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-414A/bodies/GJ414A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-414A/bodies/GJ414A-oort/globe.png b/wiki/star-systems/GJ-414A/bodies/GJ414A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-414A/bodies/GJ414A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-42/bodies/GJ42-belt/globe.png b/wiki/star-systems/GJ-42/bodies/GJ42-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-42/bodies/GJ42-belt/globe.png differ diff --git a/wiki/star-systems/GJ-42/bodies/GJ42-oort/globe.png b/wiki/star-systems/GJ-42/bodies/GJ42-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-42/bodies/GJ42-oort/globe.png differ diff --git a/wiki/star-systems/GJ-421B/bodies/GJ421B-belt/globe.png b/wiki/star-systems/GJ-421B/bodies/GJ421B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-421B/bodies/GJ421B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-421B/bodies/GJ421B-oort/globe.png b/wiki/star-systems/GJ-421B/bodies/GJ421B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-421B/bodies/GJ421B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-423A/bodies/GJ423A-belt/globe.png b/wiki/star-systems/GJ-423A/bodies/GJ423A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-423A/bodies/GJ423A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-423A/bodies/GJ423A-oort/globe.png b/wiki/star-systems/GJ-423A/bodies/GJ423A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-423A/bodies/GJ423A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-423B/bodies/GJ423B-belt/globe.png b/wiki/star-systems/GJ-423B/bodies/GJ423B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-423B/bodies/GJ423B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-423B/bodies/GJ423B-oort/globe.png b/wiki/star-systems/GJ-423B/bodies/GJ423B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-423B/bodies/GJ423B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-425A/bodies/GJ425A-belt/globe.png b/wiki/star-systems/GJ-425A/bodies/GJ425A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-425A/bodies/GJ425A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-425A/bodies/GJ425A-oort/globe.png b/wiki/star-systems/GJ-425A/bodies/GJ425A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-425A/bodies/GJ425A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-4274/bodies/GJ4274-belt/globe.png b/wiki/star-systems/GJ-4274/bodies/GJ4274-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-4274/bodies/GJ4274-belt/globe.png differ diff --git a/wiki/star-systems/GJ-4274/bodies/GJ4274-oort/globe.png b/wiki/star-systems/GJ-4274/bodies/GJ4274-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-4274/bodies/GJ4274-oort/globe.png differ diff --git a/wiki/star-systems/GJ-4274/bodies/GJ4274g/globe.png b/wiki/star-systems/GJ-4274/bodies/GJ4274g/globe.png new file mode 100644 index 000000000..c5d619edc Binary files /dev/null and b/wiki/star-systems/GJ-4274/bodies/GJ4274g/globe.png differ diff --git a/wiki/star-systems/GJ-4285/bodies/GJ4285-belt/globe.png b/wiki/star-systems/GJ-4285/bodies/GJ4285-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-4285/bodies/GJ4285-belt/globe.png differ diff --git a/wiki/star-systems/GJ-4285/bodies/GJ4285-oort/globe.png b/wiki/star-systems/GJ-4285/bodies/GJ4285-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-4285/bodies/GJ4285-oort/globe.png differ diff --git a/wiki/star-systems/GJ-428A/bodies/GJ428A-belt/globe.png b/wiki/star-systems/GJ-428A/bodies/GJ428A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-428A/bodies/GJ428A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-428A/bodies/GJ428A-oort/globe.png b/wiki/star-systems/GJ-428A/bodies/GJ428A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-428A/bodies/GJ428A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-432A/bodies/GJ432A-belt/globe.png b/wiki/star-systems/GJ-432A/bodies/GJ432A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-432A/bodies/GJ432A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-432A/bodies/GJ432A-oort/globe.png b/wiki/star-systems/GJ-432A/bodies/GJ432A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-432A/bodies/GJ432A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-434/bodies/GJ434-belt/globe.png b/wiki/star-systems/GJ-434/bodies/GJ434-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-434/bodies/GJ434-belt/globe.png differ diff --git a/wiki/star-systems/GJ-434/bodies/GJ434-oort/globe.png b/wiki/star-systems/GJ-434/bodies/GJ434-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-434/bodies/GJ434-oort/globe.png differ diff --git a/wiki/star-systems/GJ-435/bodies/GJ435-belt/globe.png b/wiki/star-systems/GJ-435/bodies/GJ435-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-435/bodies/GJ435-belt/globe.png differ diff --git a/wiki/star-systems/GJ-435/bodies/GJ435-oort/globe.png b/wiki/star-systems/GJ-435/bodies/GJ435-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-435/bodies/GJ435-oort/globe.png differ diff --git a/wiki/star-systems/GJ-438/bodies/GJ438-belt/globe.png b/wiki/star-systems/GJ-438/bodies/GJ438-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-438/bodies/GJ438-belt/globe.png differ diff --git a/wiki/star-systems/GJ-438/bodies/GJ438-oort/globe.png b/wiki/star-systems/GJ-438/bodies/GJ438-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-438/bodies/GJ438-oort/globe.png differ diff --git a/wiki/star-systems/GJ-442A/bodies/GJ442A-belt/globe.png b/wiki/star-systems/GJ-442A/bodies/GJ442A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-442A/bodies/GJ442A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-442A/bodies/GJ442A-oort/globe.png b/wiki/star-systems/GJ-442A/bodies/GJ442A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-442A/bodies/GJ442A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-445/bodies/GJ445-belt/globe.png b/wiki/star-systems/GJ-445/bodies/GJ445-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-445/bodies/GJ445-belt/globe.png differ diff --git a/wiki/star-systems/GJ-445/bodies/GJ445-oort/globe.png b/wiki/star-systems/GJ-445/bodies/GJ445-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-445/bodies/GJ445-oort/globe.png differ diff --git a/wiki/star-systems/GJ-447/bodies/GJ447-oort/globe.png b/wiki/star-systems/GJ-447/bodies/GJ447-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-447/bodies/GJ447-oort/globe.png differ diff --git a/wiki/star-systems/GJ-449/bodies/GJ449-belt/globe.png b/wiki/star-systems/GJ-449/bodies/GJ449-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-449/bodies/GJ449-belt/globe.png differ diff --git a/wiki/star-systems/GJ-449/bodies/GJ449-oort/globe.png b/wiki/star-systems/GJ-449/bodies/GJ449-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-449/bodies/GJ449-oort/globe.png differ diff --git a/wiki/star-systems/GJ-451A/bodies/GJ451A-belt/globe.png b/wiki/star-systems/GJ-451A/bodies/GJ451A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-451A/bodies/GJ451A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-451A/bodies/GJ451A-oort/globe.png b/wiki/star-systems/GJ-451A/bodies/GJ451A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-451A/bodies/GJ451A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-453/bodies/GJ453-belt/globe.png b/wiki/star-systems/GJ-453/bodies/GJ453-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-453/bodies/GJ453-belt/globe.png differ diff --git a/wiki/star-systems/GJ-453/bodies/GJ453-oort/globe.png b/wiki/star-systems/GJ-453/bodies/GJ453-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-453/bodies/GJ453-oort/globe.png differ diff --git a/wiki/star-systems/GJ-454/bodies/GJ454-belt/globe.png b/wiki/star-systems/GJ-454/bodies/GJ454-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-454/bodies/GJ454-belt/globe.png differ diff --git a/wiki/star-systems/GJ-454/bodies/GJ454-oort/globe.png b/wiki/star-systems/GJ-454/bodies/GJ454-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-454/bodies/GJ454-oort/globe.png differ diff --git a/wiki/star-systems/GJ-473A/bodies/GJ473A-belt/globe.png b/wiki/star-systems/GJ-473A/bodies/GJ473A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-473A/bodies/GJ473A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-473A/bodies/GJ473A-oort/globe.png b/wiki/star-systems/GJ-473A/bodies/GJ473A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-473A/bodies/GJ473A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-473B/bodies/GJ473B-belt/globe.png b/wiki/star-systems/GJ-473B/bodies/GJ473B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-473B/bodies/GJ473B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-473B/bodies/GJ473B-oort/globe.png b/wiki/star-systems/GJ-473B/bodies/GJ473B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-473B/bodies/GJ473B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-475/bodies/GJ475-belt/globe.png b/wiki/star-systems/GJ-475/bodies/GJ475-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-475/bodies/GJ475-belt/globe.png differ diff --git a/wiki/star-systems/GJ-475/bodies/GJ475-oort/globe.png b/wiki/star-systems/GJ-475/bodies/GJ475-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-475/bodies/GJ475-oort/globe.png differ diff --git a/wiki/star-systems/GJ-481/bodies/GJ481-belt/globe.png b/wiki/star-systems/GJ-481/bodies/GJ481-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-481/bodies/GJ481-belt/globe.png differ diff --git a/wiki/star-systems/GJ-481/bodies/GJ481-oort/globe.png b/wiki/star-systems/GJ-481/bodies/GJ481-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-481/bodies/GJ481-oort/globe.png differ diff --git a/wiki/star-systems/GJ-482A/bodies/GJ482A-belt/globe.png b/wiki/star-systems/GJ-482A/bodies/GJ482A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-482A/bodies/GJ482A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-482A/bodies/GJ482A-oort/globe.png b/wiki/star-systems/GJ-482A/bodies/GJ482A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-482A/bodies/GJ482A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-482B/bodies/GJ482B-belt/globe.png b/wiki/star-systems/GJ-482B/bodies/GJ482B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-482B/bodies/GJ482B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-482B/bodies/GJ482B-oort/globe.png b/wiki/star-systems/GJ-482B/bodies/GJ482B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-482B/bodies/GJ482B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-49/bodies/GJ49-belt/globe.png b/wiki/star-systems/GJ-49/bodies/GJ49-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-49/bodies/GJ49-belt/globe.png differ diff --git a/wiki/star-systems/GJ-49/bodies/GJ49-oort/globe.png b/wiki/star-systems/GJ-49/bodies/GJ49-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-49/bodies/GJ49-oort/globe.png differ diff --git a/wiki/star-systems/GJ-4A/bodies/GJ4A-belt/globe.png b/wiki/star-systems/GJ-4A/bodies/GJ4A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-4A/bodies/GJ4A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-4A/bodies/GJ4A-oort/globe.png b/wiki/star-systems/GJ-4A/bodies/GJ4A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-4A/bodies/GJ4A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-5/bodies/GJ5-belt/globe.png b/wiki/star-systems/GJ-5/bodies/GJ5-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-5/bodies/GJ5-belt/globe.png differ diff --git a/wiki/star-systems/GJ-5/bodies/GJ5-oort/globe.png b/wiki/star-systems/GJ-5/bodies/GJ5-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-5/bodies/GJ5-oort/globe.png differ diff --git a/wiki/star-systems/GJ-501B/bodies/GJ501B-belt/globe.png b/wiki/star-systems/GJ-501B/bodies/GJ501B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-501B/bodies/GJ501B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-501B/bodies/GJ501B-oort/globe.png b/wiki/star-systems/GJ-501B/bodies/GJ501B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-501B/bodies/GJ501B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-502/bodies/GJ502-belt/globe.png b/wiki/star-systems/GJ-502/bodies/GJ502-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-502/bodies/GJ502-belt/globe.png differ diff --git a/wiki/star-systems/GJ-502/bodies/GJ502-oort/globe.png b/wiki/star-systems/GJ-502/bodies/GJ502-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-502/bodies/GJ502-oort/globe.png differ diff --git a/wiki/star-systems/GJ-505A/bodies/GJ505A-belt/globe.png b/wiki/star-systems/GJ-505A/bodies/GJ505A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-505A/bodies/GJ505A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-505A/bodies/GJ505A-oort/globe.png b/wiki/star-systems/GJ-505A/bodies/GJ505A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-505A/bodies/GJ505A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-506/bodies/GJ506-belt/globe.png b/wiki/star-systems/GJ-506/bodies/GJ506-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-506/bodies/GJ506-belt/globe.png differ diff --git a/wiki/star-systems/GJ-506/bodies/GJ506-oort/globe.png b/wiki/star-systems/GJ-506/bodies/GJ506-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-506/bodies/GJ506-oort/globe.png differ diff --git a/wiki/star-systems/GJ-508A/bodies/GJ508A-belt/globe.png b/wiki/star-systems/GJ-508A/bodies/GJ508A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-508A/bodies/GJ508A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-508A/bodies/GJ508A-oort/globe.png b/wiki/star-systems/GJ-508A/bodies/GJ508A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-508A/bodies/GJ508A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-524/bodies/GJ524-belt/globe.png b/wiki/star-systems/GJ-524/bodies/GJ524-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-524/bodies/GJ524-belt/globe.png differ diff --git a/wiki/star-systems/GJ-524/bodies/GJ524-oort/globe.png b/wiki/star-systems/GJ-524/bodies/GJ524-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-524/bodies/GJ524-oort/globe.png differ diff --git a/wiki/star-systems/GJ-526/bodies/GJ526-belt/globe.png b/wiki/star-systems/GJ-526/bodies/GJ526-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-526/bodies/GJ526-belt/globe.png differ diff --git a/wiki/star-systems/GJ-526/bodies/GJ526-oort/globe.png b/wiki/star-systems/GJ-526/bodies/GJ526-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-526/bodies/GJ526-oort/globe.png differ diff --git a/wiki/star-systems/GJ-528A/bodies/GJ528A-belt/globe.png b/wiki/star-systems/GJ-528A/bodies/GJ528A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-528A/bodies/GJ528A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-528A/bodies/GJ528A-oort/globe.png b/wiki/star-systems/GJ-528A/bodies/GJ528A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-528A/bodies/GJ528A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-529/bodies/GJ529-belt/globe.png b/wiki/star-systems/GJ-529/bodies/GJ529-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-529/bodies/GJ529-belt/globe.png differ diff --git a/wiki/star-systems/GJ-529/bodies/GJ529-oort/globe.png b/wiki/star-systems/GJ-529/bodies/GJ529-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-529/bodies/GJ529-oort/globe.png differ diff --git a/wiki/star-systems/GJ-532/bodies/GJ532-belt/globe.png b/wiki/star-systems/GJ-532/bodies/GJ532-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-532/bodies/GJ532-belt/globe.png differ diff --git a/wiki/star-systems/GJ-532/bodies/GJ532-oort/globe.png b/wiki/star-systems/GJ-532/bodies/GJ532-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-532/bodies/GJ532-oort/globe.png differ diff --git a/wiki/star-systems/GJ-534/bodies/GJ534-belt/globe.png b/wiki/star-systems/GJ-534/bodies/GJ534-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-534/bodies/GJ534-belt/globe.png differ diff --git a/wiki/star-systems/GJ-534/bodies/GJ534-oort/globe.png b/wiki/star-systems/GJ-534/bodies/GJ534-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-534/bodies/GJ534-oort/globe.png differ diff --git a/wiki/star-systems/GJ-536/bodies/GJ536-belt/globe.png b/wiki/star-systems/GJ-536/bodies/GJ536-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-536/bodies/GJ536-belt/globe.png differ diff --git a/wiki/star-systems/GJ-536/bodies/GJ536-oort/globe.png b/wiki/star-systems/GJ-536/bodies/GJ536-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-536/bodies/GJ536-oort/globe.png differ diff --git a/wiki/star-systems/GJ-53A/bodies/GJ53A-belt/globe.png b/wiki/star-systems/GJ-53A/bodies/GJ53A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-53A/bodies/GJ53A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-53A/bodies/GJ53A-oort/globe.png b/wiki/star-systems/GJ-53A/bodies/GJ53A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-53A/bodies/GJ53A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-54.1/bodies/GJ54.1-belt/globe.png b/wiki/star-systems/GJ-54.1/bodies/GJ54.1-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-54.1/bodies/GJ54.1-belt/globe.png differ diff --git a/wiki/star-systems/GJ-54.1/bodies/GJ54.1-oort/globe.png b/wiki/star-systems/GJ-54.1/bodies/GJ54.1-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-54.1/bodies/GJ54.1-oort/globe.png differ diff --git a/wiki/star-systems/GJ-54/bodies/GJ54-belt/globe.png b/wiki/star-systems/GJ-54/bodies/GJ54-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-54/bodies/GJ54-belt/globe.png differ diff --git a/wiki/star-systems/GJ-54/bodies/GJ54-oort/globe.png b/wiki/star-systems/GJ-54/bodies/GJ54-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-54/bodies/GJ54-oort/globe.png differ diff --git a/wiki/star-systems/GJ-541/bodies/GJ541-belt/globe.png b/wiki/star-systems/GJ-541/bodies/GJ541-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-541/bodies/GJ541-belt/globe.png differ diff --git a/wiki/star-systems/GJ-541/bodies/GJ541-oort/globe.png b/wiki/star-systems/GJ-541/bodies/GJ541-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-541/bodies/GJ541-oort/globe.png differ diff --git a/wiki/star-systems/GJ-542/bodies/GJ542-belt/globe.png b/wiki/star-systems/GJ-542/bodies/GJ542-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-542/bodies/GJ542-belt/globe.png differ diff --git a/wiki/star-systems/GJ-542/bodies/GJ542-oort/globe.png b/wiki/star-systems/GJ-542/bodies/GJ542-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-542/bodies/GJ542-oort/globe.png differ diff --git a/wiki/star-systems/GJ-546/bodies/GJ546-belt/globe.png b/wiki/star-systems/GJ-546/bodies/GJ546-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-546/bodies/GJ546-belt/globe.png differ diff --git a/wiki/star-systems/GJ-546/bodies/GJ546-oort/globe.png b/wiki/star-systems/GJ-546/bodies/GJ546-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-546/bodies/GJ546-oort/globe.png differ diff --git a/wiki/star-systems/GJ-551/bodies/GJ551-oort/globe.png b/wiki/star-systems/GJ-551/bodies/GJ551-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-551/bodies/GJ551-oort/globe.png differ diff --git a/wiki/star-systems/GJ-555/bodies/GJ555-belt/globe.png b/wiki/star-systems/GJ-555/bodies/GJ555-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-555/bodies/GJ555-belt/globe.png differ diff --git a/wiki/star-systems/GJ-555/bodies/GJ555-oort/globe.png b/wiki/star-systems/GJ-555/bodies/GJ555-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-555/bodies/GJ555-oort/globe.png differ diff --git a/wiki/star-systems/GJ-556/bodies/GJ556-belt/globe.png b/wiki/star-systems/GJ-556/bodies/GJ556-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-556/bodies/GJ556-belt/globe.png differ diff --git a/wiki/star-systems/GJ-556/bodies/GJ556-oort/globe.png b/wiki/star-systems/GJ-556/bodies/GJ556-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-556/bodies/GJ556-oort/globe.png differ diff --git a/wiki/star-systems/GJ-559B/bodies/GJ559B-oort/globe.png b/wiki/star-systems/GJ-559B/bodies/GJ559B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-559B/bodies/GJ559B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-566A/bodies/GJ566A-belt/globe.png b/wiki/star-systems/GJ-566A/bodies/GJ566A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-566A/bodies/GJ566A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-566A/bodies/GJ566A-oort/globe.png b/wiki/star-systems/GJ-566A/bodies/GJ566A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-566A/bodies/GJ566A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-566B/bodies/GJ566B-belt/globe.png b/wiki/star-systems/GJ-566B/bodies/GJ566B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-566B/bodies/GJ566B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-566B/bodies/GJ566B-oort/globe.png b/wiki/star-systems/GJ-566B/bodies/GJ566B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-566B/bodies/GJ566B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-567/bodies/GJ567-belt/globe.png b/wiki/star-systems/GJ-567/bodies/GJ567-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-567/bodies/GJ567-belt/globe.png differ diff --git a/wiki/star-systems/GJ-567/bodies/GJ567-oort/globe.png b/wiki/star-systems/GJ-567/bodies/GJ567-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-567/bodies/GJ567-oort/globe.png differ diff --git a/wiki/star-systems/GJ-570A/bodies/GJ570A-belt/globe.png b/wiki/star-systems/GJ-570A/bodies/GJ570A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-570A/bodies/GJ570A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-570A/bodies/GJ570A-oort/globe.png b/wiki/star-systems/GJ-570A/bodies/GJ570A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-570A/bodies/GJ570A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-575A/bodies/GJ575A-belt/globe.png b/wiki/star-systems/GJ-575A/bodies/GJ575A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-575A/bodies/GJ575A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-575A/bodies/GJ575A-oort/globe.png b/wiki/star-systems/GJ-575A/bodies/GJ575A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-575A/bodies/GJ575A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-581/bodies/GJ581-belt/globe.png b/wiki/star-systems/GJ-581/bodies/GJ581-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-581/bodies/GJ581-belt/globe.png differ diff --git a/wiki/star-systems/GJ-581/bodies/GJ581-oort/globe.png b/wiki/star-systems/GJ-581/bodies/GJ581-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-581/bodies/GJ581-oort/globe.png differ diff --git a/wiki/star-systems/GJ-588/bodies/GJ588-belt/globe.png b/wiki/star-systems/GJ-588/bodies/GJ588-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-588/bodies/GJ588-belt/globe.png differ diff --git a/wiki/star-systems/GJ-588/bodies/GJ588-oort/globe.png b/wiki/star-systems/GJ-588/bodies/GJ588-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-588/bodies/GJ588-oort/globe.png differ diff --git a/wiki/star-systems/GJ-598/bodies/GJ598-belt/globe.png b/wiki/star-systems/GJ-598/bodies/GJ598-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-598/bodies/GJ598-belt/globe.png differ diff --git a/wiki/star-systems/GJ-598/bodies/GJ598-oort/globe.png b/wiki/star-systems/GJ-598/bodies/GJ598-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-598/bodies/GJ598-oort/globe.png differ diff --git a/wiki/star-systems/GJ-601A/bodies/GJ601A-belt/globe.png b/wiki/star-systems/GJ-601A/bodies/GJ601A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-601A/bodies/GJ601A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-601A/bodies/GJ601A-oort/globe.png b/wiki/star-systems/GJ-601A/bodies/GJ601A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-601A/bodies/GJ601A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-603/bodies/GJ603-belt/globe.png b/wiki/star-systems/GJ-603/bodies/GJ603-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-603/bodies/GJ603-belt/globe.png differ diff --git a/wiki/star-systems/GJ-603/bodies/GJ603-oort/globe.png b/wiki/star-systems/GJ-603/bodies/GJ603-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-603/bodies/GJ603-oort/globe.png differ diff --git a/wiki/star-systems/GJ-61/bodies/GJ61-belt/globe.png b/wiki/star-systems/GJ-61/bodies/GJ61-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-61/bodies/GJ61-belt/globe.png differ diff --git a/wiki/star-systems/GJ-61/bodies/GJ61-oort/globe.png b/wiki/star-systems/GJ-61/bodies/GJ61-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-61/bodies/GJ61-oort/globe.png differ diff --git a/wiki/star-systems/GJ-615/bodies/GJ615-belt/globe.png b/wiki/star-systems/GJ-615/bodies/GJ615-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-615/bodies/GJ615-belt/globe.png differ diff --git a/wiki/star-systems/GJ-615/bodies/GJ615-oort/globe.png b/wiki/star-systems/GJ-615/bodies/GJ615-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-615/bodies/GJ615-oort/globe.png differ diff --git a/wiki/star-systems/GJ-616/bodies/GJ616-belt/globe.png b/wiki/star-systems/GJ-616/bodies/GJ616-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-616/bodies/GJ616-belt/globe.png differ diff --git a/wiki/star-systems/GJ-616/bodies/GJ616-oort/globe.png b/wiki/star-systems/GJ-616/bodies/GJ616-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-616/bodies/GJ616-oort/globe.png differ diff --git a/wiki/star-systems/GJ-620.1A/bodies/GJ620.1A-belt/globe.png b/wiki/star-systems/GJ-620.1A/bodies/GJ620.1A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-620.1A/bodies/GJ620.1A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-620.1A/bodies/GJ620.1A-oort/globe.png b/wiki/star-systems/GJ-620.1A/bodies/GJ620.1A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-620.1A/bodies/GJ620.1A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-624/bodies/GJ624-belt/globe.png b/wiki/star-systems/GJ-624/bodies/GJ624-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-624/bodies/GJ624-belt/globe.png differ diff --git a/wiki/star-systems/GJ-624/bodies/GJ624-oort/globe.png b/wiki/star-systems/GJ-624/bodies/GJ624-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-624/bodies/GJ624-oort/globe.png differ diff --git a/wiki/star-systems/GJ-625/bodies/GJ625-belt/globe.png b/wiki/star-systems/GJ-625/bodies/GJ625-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-625/bodies/GJ625-belt/globe.png differ diff --git a/wiki/star-systems/GJ-625/bodies/GJ625-oort/globe.png b/wiki/star-systems/GJ-625/bodies/GJ625-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-625/bodies/GJ625-oort/globe.png differ diff --git a/wiki/star-systems/GJ-628/bodies/GJ628-belt/globe.png b/wiki/star-systems/GJ-628/bodies/GJ628-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-628/bodies/GJ628-belt/globe.png differ diff --git a/wiki/star-systems/GJ-628/bodies/GJ628-oort/globe.png b/wiki/star-systems/GJ-628/bodies/GJ628-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-628/bodies/GJ628-oort/globe.png differ diff --git a/wiki/star-systems/GJ-631/bodies/GJ631-belt/globe.png b/wiki/star-systems/GJ-631/bodies/GJ631-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-631/bodies/GJ631-belt/globe.png differ diff --git a/wiki/star-systems/GJ-631/bodies/GJ631-oort/globe.png b/wiki/star-systems/GJ-631/bodies/GJ631-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-631/bodies/GJ631-oort/globe.png differ diff --git a/wiki/star-systems/GJ-635A/bodies/GJ635A-belt/globe.png b/wiki/star-systems/GJ-635A/bodies/GJ635A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-635A/bodies/GJ635A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-635A/bodies/GJ635A-oort/globe.png b/wiki/star-systems/GJ-635A/bodies/GJ635A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-635A/bodies/GJ635A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-635B/bodies/GJ635B-belt/globe.png b/wiki/star-systems/GJ-635B/bodies/GJ635B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-635B/bodies/GJ635B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-635B/bodies/GJ635B-oort/globe.png b/wiki/star-systems/GJ-635B/bodies/GJ635B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-635B/bodies/GJ635B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-638/bodies/GJ638-belt/globe.png b/wiki/star-systems/GJ-638/bodies/GJ638-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-638/bodies/GJ638-belt/globe.png differ diff --git a/wiki/star-systems/GJ-638/bodies/GJ638-oort/globe.png b/wiki/star-systems/GJ-638/bodies/GJ638-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-638/bodies/GJ638-oort/globe.png differ diff --git a/wiki/star-systems/GJ-643/bodies/GJ643-belt/globe.png b/wiki/star-systems/GJ-643/bodies/GJ643-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-643/bodies/GJ643-belt/globe.png differ diff --git a/wiki/star-systems/GJ-643/bodies/GJ643-oort/globe.png b/wiki/star-systems/GJ-643/bodies/GJ643-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-643/bodies/GJ643-oort/globe.png differ diff --git a/wiki/star-systems/GJ-644A/bodies/GJ644A-belt/globe.png b/wiki/star-systems/GJ-644A/bodies/GJ644A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-644A/bodies/GJ644A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-644A/bodies/GJ644A-oort/globe.png b/wiki/star-systems/GJ-644A/bodies/GJ644A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-644A/bodies/GJ644A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-644C/bodies/GJ644C-belt/globe.png b/wiki/star-systems/GJ-644C/bodies/GJ644C-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-644C/bodies/GJ644C-belt/globe.png differ diff --git a/wiki/star-systems/GJ-644C/bodies/GJ644C-oort/globe.png b/wiki/star-systems/GJ-644C/bodies/GJ644C-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-644C/bodies/GJ644C-oort/globe.png differ diff --git a/wiki/star-systems/GJ-653/bodies/GJ653-belt/globe.png b/wiki/star-systems/GJ-653/bodies/GJ653-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-653/bodies/GJ653-belt/globe.png differ diff --git a/wiki/star-systems/GJ-653/bodies/GJ653-oort/globe.png b/wiki/star-systems/GJ-653/bodies/GJ653-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-653/bodies/GJ653-oort/globe.png differ diff --git a/wiki/star-systems/GJ-656/bodies/GJ656-belt/globe.png b/wiki/star-systems/GJ-656/bodies/GJ656-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-656/bodies/GJ656-belt/globe.png differ diff --git a/wiki/star-systems/GJ-656/bodies/GJ656-oort/globe.png b/wiki/star-systems/GJ-656/bodies/GJ656-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-656/bodies/GJ656-oort/globe.png differ diff --git a/wiki/star-systems/GJ-65A/bodies/GJ65A-belt/globe.png b/wiki/star-systems/GJ-65A/bodies/GJ65A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-65A/bodies/GJ65A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-65A/bodies/GJ65A-oort/globe.png b/wiki/star-systems/GJ-65A/bodies/GJ65A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-65A/bodies/GJ65A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-660A/bodies/GJ660A-belt/globe.png b/wiki/star-systems/GJ-660A/bodies/GJ660A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-660A/bodies/GJ660A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-660A/bodies/GJ660A-oort/globe.png b/wiki/star-systems/GJ-660A/bodies/GJ660A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-660A/bodies/GJ660A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-661A/bodies/GJ661A-belt/globe.png b/wiki/star-systems/GJ-661A/bodies/GJ661A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-661A/bodies/GJ661A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-661A/bodies/GJ661A-oort/globe.png b/wiki/star-systems/GJ-661A/bodies/GJ661A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-661A/bodies/GJ661A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-661A/bodies/GJ661Ai-1/globe.png b/wiki/star-systems/GJ-661A/bodies/GJ661Ai-1/globe.png new file mode 100644 index 000000000..c9a47479a Binary files /dev/null and b/wiki/star-systems/GJ-661A/bodies/GJ661Ai-1/globe.png differ diff --git a/wiki/star-systems/GJ-661A/bodies/GJ661Ai-2/globe.png b/wiki/star-systems/GJ-661A/bodies/GJ661Ai-2/globe.png new file mode 100644 index 000000000..a98efb952 Binary files /dev/null and b/wiki/star-systems/GJ-661A/bodies/GJ661Ai-2/globe.png differ diff --git a/wiki/star-systems/GJ-661A/bodies/GJ661Ai/globe.png b/wiki/star-systems/GJ-661A/bodies/GJ661Ai/globe.png new file mode 100644 index 000000000..d9fe2ba1c Binary files /dev/null and b/wiki/star-systems/GJ-661A/bodies/GJ661Ai/globe.png differ diff --git a/wiki/star-systems/GJ-661B/bodies/GJ661B-belt/globe.png b/wiki/star-systems/GJ-661B/bodies/GJ661B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-661B/bodies/GJ661B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-661B/bodies/GJ661B-oort/globe.png b/wiki/star-systems/GJ-661B/bodies/GJ661B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-661B/bodies/GJ661B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-663A/bodies/GJ663A-belt/globe.png b/wiki/star-systems/GJ-663A/bodies/GJ663A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-663A/bodies/GJ663A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-663A/bodies/GJ663A-oort/globe.png b/wiki/star-systems/GJ-663A/bodies/GJ663A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-663A/bodies/GJ663A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-664/bodies/GJ664-belt/globe.png b/wiki/star-systems/GJ-664/bodies/GJ664-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-664/bodies/GJ664-belt/globe.png differ diff --git a/wiki/star-systems/GJ-664/bodies/GJ664-oort/globe.png b/wiki/star-systems/GJ-664/bodies/GJ664-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-664/bodies/GJ664-oort/globe.png differ diff --git a/wiki/star-systems/GJ-664/bodies/GJ664i-1/globe.png b/wiki/star-systems/GJ-664/bodies/GJ664i-1/globe.png new file mode 100644 index 000000000..961925f44 Binary files /dev/null and b/wiki/star-systems/GJ-664/bodies/GJ664i-1/globe.png differ diff --git a/wiki/star-systems/GJ-664/bodies/GJ664i-2/globe.png b/wiki/star-systems/GJ-664/bodies/GJ664i-2/globe.png new file mode 100644 index 000000000..52e185751 Binary files /dev/null and b/wiki/star-systems/GJ-664/bodies/GJ664i-2/globe.png differ diff --git a/wiki/star-systems/GJ-664/bodies/GJ664i/globe.png b/wiki/star-systems/GJ-664/bodies/GJ664i/globe.png new file mode 100644 index 000000000..08b7ef355 Binary files /dev/null and b/wiki/star-systems/GJ-664/bodies/GJ664i/globe.png differ diff --git a/wiki/star-systems/GJ-667A/bodies/GJ667A-belt/globe.png b/wiki/star-systems/GJ-667A/bodies/GJ667A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-667A/bodies/GJ667A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-667A/bodies/GJ667A-oort/globe.png b/wiki/star-systems/GJ-667A/bodies/GJ667A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-667A/bodies/GJ667A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-667B/bodies/GJ667B-belt/globe.png b/wiki/star-systems/GJ-667B/bodies/GJ667B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-667B/bodies/GJ667B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-667B/bodies/GJ667B-oort/globe.png b/wiki/star-systems/GJ-667B/bodies/GJ667B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-667B/bodies/GJ667B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-667C/bodies/GJ667C-belt/globe.png b/wiki/star-systems/GJ-667C/bodies/GJ667C-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-667C/bodies/GJ667C-belt/globe.png differ diff --git a/wiki/star-systems/GJ-667C/bodies/GJ667C-oort/globe.png b/wiki/star-systems/GJ-667C/bodies/GJ667C-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-667C/bodies/GJ667C-oort/globe.png differ diff --git a/wiki/star-systems/GJ-66A/bodies/GJ66A-belt/globe.png b/wiki/star-systems/GJ-66A/bodies/GJ66A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-66A/bodies/GJ66A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-66A/bodies/GJ66A-oort/globe.png b/wiki/star-systems/GJ-66A/bodies/GJ66A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-66A/bodies/GJ66A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-66B/bodies/GJ66B-belt/globe.png b/wiki/star-systems/GJ-66B/bodies/GJ66B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-66B/bodies/GJ66B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-66B/bodies/GJ66B-oort/globe.png b/wiki/star-systems/GJ-66B/bodies/GJ66B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-66B/bodies/GJ66B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-67/bodies/GJ67-belt/globe.png b/wiki/star-systems/GJ-67/bodies/GJ67-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-67/bodies/GJ67-belt/globe.png differ diff --git a/wiki/star-systems/GJ-67/bodies/GJ67-oort/globe.png b/wiki/star-systems/GJ-67/bodies/GJ67-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-67/bodies/GJ67-oort/globe.png differ diff --git a/wiki/star-systems/GJ-6711/bodies/GJ6711-belt/globe.png b/wiki/star-systems/GJ-6711/bodies/GJ6711-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-6711/bodies/GJ6711-belt/globe.png differ diff --git a/wiki/star-systems/GJ-6711/bodies/GJ6711-oort/globe.png b/wiki/star-systems/GJ-6711/bodies/GJ6711-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-6711/bodies/GJ6711-oort/globe.png differ diff --git a/wiki/star-systems/GJ-672/bodies/GJ672-belt/globe.png b/wiki/star-systems/GJ-672/bodies/GJ672-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-672/bodies/GJ672-belt/globe.png differ diff --git a/wiki/star-systems/GJ-672/bodies/GJ672-oort/globe.png b/wiki/star-systems/GJ-672/bodies/GJ672-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-672/bodies/GJ672-oort/globe.png differ diff --git a/wiki/star-systems/GJ-673/bodies/GJ673-belt/globe.png b/wiki/star-systems/GJ-673/bodies/GJ673-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-673/bodies/GJ673-belt/globe.png differ diff --git a/wiki/star-systems/GJ-673/bodies/GJ673-oort/globe.png b/wiki/star-systems/GJ-673/bodies/GJ673-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-673/bodies/GJ673-oort/globe.png differ diff --git a/wiki/star-systems/GJ-674/bodies/GJ674-oort/globe.png b/wiki/star-systems/GJ-674/bodies/GJ674-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-674/bodies/GJ674-oort/globe.png differ diff --git a/wiki/star-systems/GJ-675/bodies/GJ675-belt/globe.png b/wiki/star-systems/GJ-675/bodies/GJ675-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-675/bodies/GJ675-belt/globe.png differ diff --git a/wiki/star-systems/GJ-675/bodies/GJ675-oort/globe.png b/wiki/star-systems/GJ-675/bodies/GJ675-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-675/bodies/GJ675-oort/globe.png differ diff --git a/wiki/star-systems/GJ-68/bodies/GJ68-belt/globe.png b/wiki/star-systems/GJ-68/bodies/GJ68-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-68/bodies/GJ68-belt/globe.png differ diff --git a/wiki/star-systems/GJ-68/bodies/GJ68-oort/globe.png b/wiki/star-systems/GJ-68/bodies/GJ68-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-68/bodies/GJ68-oort/globe.png differ diff --git a/wiki/star-systems/GJ-680/bodies/GJ680-belt/globe.png b/wiki/star-systems/GJ-680/bodies/GJ680-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-680/bodies/GJ680-belt/globe.png differ diff --git a/wiki/star-systems/GJ-680/bodies/GJ680-oort/globe.png b/wiki/star-systems/GJ-680/bodies/GJ680-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-680/bodies/GJ680-oort/globe.png differ diff --git a/wiki/star-systems/GJ-682/bodies/GJ682-belt/globe.png b/wiki/star-systems/GJ-682/bodies/GJ682-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-682/bodies/GJ682-belt/globe.png differ diff --git a/wiki/star-systems/GJ-682/bodies/GJ682-oort/globe.png b/wiki/star-systems/GJ-682/bodies/GJ682-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-682/bodies/GJ682-oort/globe.png differ diff --git a/wiki/star-systems/GJ-684A/bodies/GJ684A-belt/globe.png b/wiki/star-systems/GJ-684A/bodies/GJ684A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-684A/bodies/GJ684A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-684A/bodies/GJ684A-oort/globe.png b/wiki/star-systems/GJ-684A/bodies/GJ684A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-684A/bodies/GJ684A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-684B/bodies/GJ684B-belt/globe.png b/wiki/star-systems/GJ-684B/bodies/GJ684B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-684B/bodies/GJ684B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-684B/bodies/GJ684B-oort/globe.png b/wiki/star-systems/GJ-684B/bodies/GJ684B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-684B/bodies/GJ684B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-687/bodies/GJ687-belt/globe.png b/wiki/star-systems/GJ-687/bodies/GJ687-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-687/bodies/GJ687-belt/globe.png differ diff --git a/wiki/star-systems/GJ-687/bodies/GJ687-oort/globe.png b/wiki/star-systems/GJ-687/bodies/GJ687-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-687/bodies/GJ687-oort/globe.png differ diff --git a/wiki/star-systems/GJ-688/bodies/GJ688-belt/globe.png b/wiki/star-systems/GJ-688/bodies/GJ688-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-688/bodies/GJ688-belt/globe.png differ diff --git a/wiki/star-systems/GJ-688/bodies/GJ688-oort/globe.png b/wiki/star-systems/GJ-688/bodies/GJ688-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-688/bodies/GJ688-oort/globe.png differ diff --git a/wiki/star-systems/GJ-69/bodies/GJ69-belt/globe.png b/wiki/star-systems/GJ-69/bodies/GJ69-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-69/bodies/GJ69-belt/globe.png differ diff --git a/wiki/star-systems/GJ-69/bodies/GJ69-oort/globe.png b/wiki/star-systems/GJ-69/bodies/GJ69-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-69/bodies/GJ69-oort/globe.png differ diff --git a/wiki/star-systems/GJ-693/bodies/GJ693-belt/globe.png b/wiki/star-systems/GJ-693/bodies/GJ693-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-693/bodies/GJ693-belt/globe.png differ diff --git a/wiki/star-systems/GJ-693/bodies/GJ693-oort/globe.png b/wiki/star-systems/GJ-693/bodies/GJ693-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-693/bodies/GJ693-oort/globe.png differ diff --git a/wiki/star-systems/GJ-695A/bodies/GJ695A-belt/globe.png b/wiki/star-systems/GJ-695A/bodies/GJ695A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-695A/bodies/GJ695A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-695A/bodies/GJ695A-oort/globe.png b/wiki/star-systems/GJ-695A/bodies/GJ695A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-695A/bodies/GJ695A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-699/bodies/GJ699-oort/globe.png b/wiki/star-systems/GJ-699/bodies/GJ699-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-699/bodies/GJ699-oort/globe.png differ diff --git a/wiki/star-systems/GJ-702B/bodies/GJ702B-belt/globe.png b/wiki/star-systems/GJ-702B/bodies/GJ702B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-702B/bodies/GJ702B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-702B/bodies/GJ702B-oort/globe.png b/wiki/star-systems/GJ-702B/bodies/GJ702B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-702B/bodies/GJ702B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-706/bodies/GJ706-belt/globe.png b/wiki/star-systems/GJ-706/bodies/GJ706-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-706/bodies/GJ706-belt/globe.png differ diff --git a/wiki/star-systems/GJ-706/bodies/GJ706-oort/globe.png b/wiki/star-systems/GJ-706/bodies/GJ706-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-706/bodies/GJ706-oort/globe.png differ diff --git a/wiki/star-systems/GJ-707/bodies/GJ707-belt/globe.png b/wiki/star-systems/GJ-707/bodies/GJ707-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-707/bodies/GJ707-belt/globe.png differ diff --git a/wiki/star-systems/GJ-707/bodies/GJ707-oort/globe.png b/wiki/star-systems/GJ-707/bodies/GJ707-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-707/bodies/GJ707-oort/globe.png differ diff --git a/wiki/star-systems/GJ-71/bodies/GJ71-belt/globe.png b/wiki/star-systems/GJ-71/bodies/GJ71-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-71/bodies/GJ71-belt/globe.png differ diff --git a/wiki/star-systems/GJ-71/bodies/GJ71-oort/globe.png b/wiki/star-systems/GJ-71/bodies/GJ71-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-71/bodies/GJ71-oort/globe.png differ diff --git a/wiki/star-systems/GJ-713A/bodies/GJ713A-belt/globe.png b/wiki/star-systems/GJ-713A/bodies/GJ713A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-713A/bodies/GJ713A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-713A/bodies/GJ713A-oort/globe.png b/wiki/star-systems/GJ-713A/bodies/GJ713A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-713A/bodies/GJ713A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-716/bodies/GJ716-belt/globe.png b/wiki/star-systems/GJ-716/bodies/GJ716-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-716/bodies/GJ716-belt/globe.png differ diff --git a/wiki/star-systems/GJ-716/bodies/GJ716-oort/globe.png b/wiki/star-systems/GJ-716/bodies/GJ716-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-716/bodies/GJ716-oort/globe.png differ diff --git a/wiki/star-systems/GJ-722/bodies/GJ722-belt/globe.png b/wiki/star-systems/GJ-722/bodies/GJ722-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-722/bodies/GJ722-belt/globe.png differ diff --git a/wiki/star-systems/GJ-722/bodies/GJ722-oort/globe.png b/wiki/star-systems/GJ-722/bodies/GJ722-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-722/bodies/GJ722-oort/globe.png differ diff --git a/wiki/star-systems/GJ-725B/bodies/GJ725B-belt/globe.png b/wiki/star-systems/GJ-725B/bodies/GJ725B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-725B/bodies/GJ725B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-725B/bodies/GJ725B-oort/globe.png b/wiki/star-systems/GJ-725B/bodies/GJ725B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-725B/bodies/GJ725B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-726/bodies/GJ726-belt/globe.png b/wiki/star-systems/GJ-726/bodies/GJ726-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-726/bodies/GJ726-belt/globe.png differ diff --git a/wiki/star-systems/GJ-726/bodies/GJ726-oort/globe.png b/wiki/star-systems/GJ-726/bodies/GJ726-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-726/bodies/GJ726-oort/globe.png differ diff --git a/wiki/star-systems/GJ-729/bodies/GJ729-oort/globe.png b/wiki/star-systems/GJ-729/bodies/GJ729-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-729/bodies/GJ729-oort/globe.png differ diff --git a/wiki/star-systems/GJ-737B/bodies/GJ737B-belt/globe.png b/wiki/star-systems/GJ-737B/bodies/GJ737B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-737B/bodies/GJ737B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-737B/bodies/GJ737B-oort/globe.png b/wiki/star-systems/GJ-737B/bodies/GJ737B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-737B/bodies/GJ737B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-75/bodies/GJ75-belt/globe.png b/wiki/star-systems/GJ-75/bodies/GJ75-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-75/bodies/GJ75-belt/globe.png differ diff --git a/wiki/star-systems/GJ-75/bodies/GJ75-oort/globe.png b/wiki/star-systems/GJ-75/bodies/GJ75-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-75/bodies/GJ75-oort/globe.png differ diff --git a/wiki/star-systems/GJ-752A/bodies/GJ752A-belt/globe.png b/wiki/star-systems/GJ-752A/bodies/GJ752A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-752A/bodies/GJ752A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-752A/bodies/GJ752A-oort/globe.png b/wiki/star-systems/GJ-752A/bodies/GJ752A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-752A/bodies/GJ752A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-754/bodies/GJ754-belt/globe.png b/wiki/star-systems/GJ-754/bodies/GJ754-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-754/bodies/GJ754-belt/globe.png differ diff --git a/wiki/star-systems/GJ-754/bodies/GJ754-oort/globe.png b/wiki/star-systems/GJ-754/bodies/GJ754-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-754/bodies/GJ754-oort/globe.png differ diff --git a/wiki/star-systems/GJ-7547/bodies/GJ7547-belt/globe.png b/wiki/star-systems/GJ-7547/bodies/GJ7547-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-7547/bodies/GJ7547-belt/globe.png differ diff --git a/wiki/star-systems/GJ-7547/bodies/GJ7547-oort/globe.png b/wiki/star-systems/GJ-7547/bodies/GJ7547-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-7547/bodies/GJ7547-oort/globe.png differ diff --git a/wiki/star-systems/GJ-764/bodies/GJ764-belt/globe.png b/wiki/star-systems/GJ-764/bodies/GJ764-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-764/bodies/GJ764-belt/globe.png differ diff --git a/wiki/star-systems/GJ-764/bodies/GJ764-oort/globe.png b/wiki/star-systems/GJ-764/bodies/GJ764-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-764/bodies/GJ764-oort/globe.png differ diff --git a/wiki/star-systems/GJ-768/bodies/GJ768-belt/globe.png b/wiki/star-systems/GJ-768/bodies/GJ768-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-768/bodies/GJ768-belt/globe.png differ diff --git a/wiki/star-systems/GJ-768/bodies/GJ768-oort/globe.png b/wiki/star-systems/GJ-768/bodies/GJ768-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-768/bodies/GJ768-oort/globe.png differ diff --git a/wiki/star-systems/GJ-770/bodies/GJ770-belt/globe.png b/wiki/star-systems/GJ-770/bodies/GJ770-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-770/bodies/GJ770-belt/globe.png differ diff --git a/wiki/star-systems/GJ-770/bodies/GJ770-oort/globe.png b/wiki/star-systems/GJ-770/bodies/GJ770-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-770/bodies/GJ770-oort/globe.png differ diff --git a/wiki/star-systems/GJ-771A/bodies/GJ771A-belt/globe.png b/wiki/star-systems/GJ-771A/bodies/GJ771A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-771A/bodies/GJ771A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-771A/bodies/GJ771A-oort/globe.png b/wiki/star-systems/GJ-771A/bodies/GJ771A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-771A/bodies/GJ771A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-775/bodies/GJ775-belt/globe.png b/wiki/star-systems/GJ-775/bodies/GJ775-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-775/bodies/GJ775-belt/globe.png differ diff --git a/wiki/star-systems/GJ-775/bodies/GJ775-oort/globe.png b/wiki/star-systems/GJ-775/bodies/GJ775-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-775/bodies/GJ775-oort/globe.png differ diff --git a/wiki/star-systems/GJ-780/bodies/GJ780-belt/globe.png b/wiki/star-systems/GJ-780/bodies/GJ780-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-780/bodies/GJ780-belt/globe.png differ diff --git a/wiki/star-systems/GJ-780/bodies/GJ780-oort/globe.png b/wiki/star-systems/GJ-780/bodies/GJ780-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-780/bodies/GJ780-oort/globe.png differ diff --git a/wiki/star-systems/GJ-780/bodies/GJ780j-1/globe.png b/wiki/star-systems/GJ-780/bodies/GJ780j-1/globe.png new file mode 100644 index 000000000..c3c4ac597 Binary files /dev/null and b/wiki/star-systems/GJ-780/bodies/GJ780j-1/globe.png differ diff --git a/wiki/star-systems/GJ-780/bodies/GJ780j-2/globe.png b/wiki/star-systems/GJ-780/bodies/GJ780j-2/globe.png new file mode 100644 index 000000000..4513b48b8 Binary files /dev/null and b/wiki/star-systems/GJ-780/bodies/GJ780j-2/globe.png differ diff --git a/wiki/star-systems/GJ-780/bodies/GJ780j/globe.png b/wiki/star-systems/GJ-780/bodies/GJ780j/globe.png new file mode 100644 index 000000000..eac3e89ee Binary files /dev/null and b/wiki/star-systems/GJ-780/bodies/GJ780j/globe.png differ diff --git a/wiki/star-systems/GJ-783A/bodies/GJ783A-belt/globe.png b/wiki/star-systems/GJ-783A/bodies/GJ783A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-783A/bodies/GJ783A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-783A/bodies/GJ783A-oort/globe.png b/wiki/star-systems/GJ-783A/bodies/GJ783A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-783A/bodies/GJ783A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-784/bodies/GJ784-belt/globe.png b/wiki/star-systems/GJ-784/bodies/GJ784-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-784/bodies/GJ784-belt/globe.png differ diff --git a/wiki/star-systems/GJ-784/bodies/GJ784-oort/globe.png b/wiki/star-systems/GJ-784/bodies/GJ784-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-784/bodies/GJ784-oort/globe.png differ diff --git a/wiki/star-systems/GJ-785/bodies/GJ785-belt/globe.png b/wiki/star-systems/GJ-785/bodies/GJ785-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-785/bodies/GJ785-belt/globe.png differ diff --git a/wiki/star-systems/GJ-785/bodies/GJ785-oort/globe.png b/wiki/star-systems/GJ-785/bodies/GJ785-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-785/bodies/GJ785-oort/globe.png differ diff --git a/wiki/star-systems/GJ-79/bodies/GJ79-belt/globe.png b/wiki/star-systems/GJ-79/bodies/GJ79-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-79/bodies/GJ79-belt/globe.png differ diff --git a/wiki/star-systems/GJ-79/bodies/GJ79-oort/globe.png b/wiki/star-systems/GJ-79/bodies/GJ79-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-79/bodies/GJ79-oort/globe.png differ diff --git a/wiki/star-systems/GJ-798/bodies/GJ798-belt/globe.png b/wiki/star-systems/GJ-798/bodies/GJ798-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-798/bodies/GJ798-belt/globe.png differ diff --git a/wiki/star-systems/GJ-798/bodies/GJ798-oort/globe.png b/wiki/star-systems/GJ-798/bodies/GJ798-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-798/bodies/GJ798-oort/globe.png differ diff --git a/wiki/star-systems/GJ-807/bodies/GJ807-belt/globe.png b/wiki/star-systems/GJ-807/bodies/GJ807-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-807/bodies/GJ807-belt/globe.png differ diff --git a/wiki/star-systems/GJ-807/bodies/GJ807-oort/globe.png b/wiki/star-systems/GJ-807/bodies/GJ807-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-807/bodies/GJ807-oort/globe.png differ diff --git a/wiki/star-systems/GJ-809/bodies/GJ809-belt/globe.png b/wiki/star-systems/GJ-809/bodies/GJ809-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-809/bodies/GJ809-belt/globe.png differ diff --git a/wiki/star-systems/GJ-809/bodies/GJ809-oort/globe.png b/wiki/star-systems/GJ-809/bodies/GJ809-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-809/bodies/GJ809-oort/globe.png differ diff --git a/wiki/star-systems/GJ-820B/bodies/GJ820B-belt/globe.png b/wiki/star-systems/GJ-820B/bodies/GJ820B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-820B/bodies/GJ820B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-820B/bodies/GJ820B-oort/globe.png b/wiki/star-systems/GJ-820B/bodies/GJ820B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-820B/bodies/GJ820B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-825/bodies/GJ825-belt/globe.png b/wiki/star-systems/GJ-825/bodies/GJ825-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-825/bodies/GJ825-belt/globe.png differ diff --git a/wiki/star-systems/GJ-825/bodies/GJ825-oort/globe.png b/wiki/star-systems/GJ-825/bodies/GJ825-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-825/bodies/GJ825-oort/globe.png differ diff --git a/wiki/star-systems/GJ-827/bodies/GJ827-belt/globe.png b/wiki/star-systems/GJ-827/bodies/GJ827-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-827/bodies/GJ827-belt/globe.png differ diff --git a/wiki/star-systems/GJ-827/bodies/GJ827-oort/globe.png b/wiki/star-systems/GJ-827/bodies/GJ827-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-827/bodies/GJ827-oort/globe.png differ diff --git a/wiki/star-systems/GJ-829/bodies/GJ829-belt/globe.png b/wiki/star-systems/GJ-829/bodies/GJ829-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-829/bodies/GJ829-belt/globe.png differ diff --git a/wiki/star-systems/GJ-829/bodies/GJ829-oort/globe.png b/wiki/star-systems/GJ-829/bodies/GJ829-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-829/bodies/GJ829-oort/globe.png differ diff --git a/wiki/star-systems/GJ-83.1/bodies/GJ83.1-belt/globe.png b/wiki/star-systems/GJ-83.1/bodies/GJ83.1-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-83.1/bodies/GJ83.1-belt/globe.png differ diff --git a/wiki/star-systems/GJ-83.1/bodies/GJ83.1-oort/globe.png b/wiki/star-systems/GJ-83.1/bodies/GJ83.1-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-83.1/bodies/GJ83.1-oort/globe.png differ diff --git a/wiki/star-systems/GJ-832/bodies/GJ832-belt/globe.png b/wiki/star-systems/GJ-832/bodies/GJ832-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-832/bodies/GJ832-belt/globe.png differ diff --git a/wiki/star-systems/GJ-832/bodies/GJ832-oort/globe.png b/wiki/star-systems/GJ-832/bodies/GJ832-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-832/bodies/GJ832-oort/globe.png differ diff --git a/wiki/star-systems/GJ-845/bodies/GJ845-belt/globe.png b/wiki/star-systems/GJ-845/bodies/GJ845-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-845/bodies/GJ845-belt/globe.png differ diff --git a/wiki/star-systems/GJ-845/bodies/GJ845-oort/globe.png b/wiki/star-systems/GJ-845/bodies/GJ845-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-845/bodies/GJ845-oort/globe.png differ diff --git a/wiki/star-systems/GJ-848/bodies/GJ848-belt/globe.png b/wiki/star-systems/GJ-848/bodies/GJ848-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-848/bodies/GJ848-belt/globe.png differ diff --git a/wiki/star-systems/GJ-848/bodies/GJ848-oort/globe.png b/wiki/star-systems/GJ-848/bodies/GJ848-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-848/bodies/GJ848-oort/globe.png differ diff --git a/wiki/star-systems/GJ-853A/bodies/GJ853A-belt/globe.png b/wiki/star-systems/GJ-853A/bodies/GJ853A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-853A/bodies/GJ853A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-853A/bodies/GJ853A-oort/globe.png b/wiki/star-systems/GJ-853A/bodies/GJ853A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-853A/bodies/GJ853A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-86/bodies/GJ86-oort/globe.png b/wiki/star-systems/GJ-86/bodies/GJ86-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-86/bodies/GJ86-oort/globe.png differ diff --git a/wiki/star-systems/GJ-86/bodies/GJ86A-belt/globe.png b/wiki/star-systems/GJ-86/bodies/GJ86A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-86/bodies/GJ86A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-860A/bodies/GJ860A-belt/globe.png b/wiki/star-systems/GJ-860A/bodies/GJ860A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-860A/bodies/GJ860A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-860A/bodies/GJ860A-oort/globe.png b/wiki/star-systems/GJ-860A/bodies/GJ860A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-860A/bodies/GJ860A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-860B/bodies/GJ860B-belt/globe.png b/wiki/star-systems/GJ-860B/bodies/GJ860B-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-860B/bodies/GJ860B-belt/globe.png differ diff --git a/wiki/star-systems/GJ-860B/bodies/GJ860B-oort/globe.png b/wiki/star-systems/GJ-860B/bodies/GJ860B-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-860B/bodies/GJ860B-oort/globe.png differ diff --git a/wiki/star-systems/GJ-866A/bodies/GJ866A-oort/globe.png b/wiki/star-systems/GJ-866A/bodies/GJ866A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-866A/bodies/GJ866A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-868/bodies/GJ868-belt/globe.png b/wiki/star-systems/GJ-868/bodies/GJ868-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-868/bodies/GJ868-belt/globe.png differ diff --git a/wiki/star-systems/GJ-868/bodies/GJ868-oort/globe.png b/wiki/star-systems/GJ-868/bodies/GJ868-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-868/bodies/GJ868-oort/globe.png differ diff --git a/wiki/star-systems/GJ-873/bodies/GJ873-belt/globe.png b/wiki/star-systems/GJ-873/bodies/GJ873-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-873/bodies/GJ873-belt/globe.png differ diff --git a/wiki/star-systems/GJ-873/bodies/GJ873-oort/globe.png b/wiki/star-systems/GJ-873/bodies/GJ873-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-873/bodies/GJ873-oort/globe.png differ diff --git a/wiki/star-systems/GJ-875/bodies/GJ875-belt/globe.png b/wiki/star-systems/GJ-875/bodies/GJ875-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-875/bodies/GJ875-belt/globe.png differ diff --git a/wiki/star-systems/GJ-875/bodies/GJ875-oort/globe.png b/wiki/star-systems/GJ-875/bodies/GJ875-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-875/bodies/GJ875-oort/globe.png differ diff --git a/wiki/star-systems/GJ-876/bodies/GJ876-belt/globe.png b/wiki/star-systems/GJ-876/bodies/GJ876-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-876/bodies/GJ876-belt/globe.png differ diff --git a/wiki/star-systems/GJ-876/bodies/GJ876-oort/globe.png b/wiki/star-systems/GJ-876/bodies/GJ876-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-876/bodies/GJ876-oort/globe.png differ diff --git a/wiki/star-systems/GJ-877/bodies/GJ877-belt/globe.png b/wiki/star-systems/GJ-877/bodies/GJ877-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-877/bodies/GJ877-belt/globe.png differ diff --git a/wiki/star-systems/GJ-877/bodies/GJ877-oort/globe.png b/wiki/star-systems/GJ-877/bodies/GJ877-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-877/bodies/GJ877-oort/globe.png differ diff --git a/wiki/star-systems/GJ-879/bodies/GJ879-belt/globe.png b/wiki/star-systems/GJ-879/bodies/GJ879-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-879/bodies/GJ879-belt/globe.png differ diff --git a/wiki/star-systems/GJ-879/bodies/GJ879-oort/globe.png b/wiki/star-systems/GJ-879/bodies/GJ879-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-879/bodies/GJ879-oort/globe.png differ diff --git a/wiki/star-systems/GJ-880/bodies/GJ880-belt/globe.png b/wiki/star-systems/GJ-880/bodies/GJ880-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-880/bodies/GJ880-belt/globe.png differ diff --git a/wiki/star-systems/GJ-880/bodies/GJ880-oort/globe.png b/wiki/star-systems/GJ-880/bodies/GJ880-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-880/bodies/GJ880-oort/globe.png differ diff --git a/wiki/star-systems/GJ-884/bodies/GJ884-belt/globe.png b/wiki/star-systems/GJ-884/bodies/GJ884-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-884/bodies/GJ884-belt/globe.png differ diff --git a/wiki/star-systems/GJ-884/bodies/GJ884-oort/globe.png b/wiki/star-systems/GJ-884/bodies/GJ884-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-884/bodies/GJ884-oort/globe.png differ diff --git a/wiki/star-systems/GJ-887/bodies/GJ887-oort/globe.png b/wiki/star-systems/GJ-887/bodies/GJ887-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-887/bodies/GJ887-oort/globe.png differ diff --git a/wiki/star-systems/GJ-892/bodies/GJ892-belt/globe.png b/wiki/star-systems/GJ-892/bodies/GJ892-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-892/bodies/GJ892-belt/globe.png differ diff --git a/wiki/star-systems/GJ-892/bodies/GJ892-oort/globe.png b/wiki/star-systems/GJ-892/bodies/GJ892-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-892/bodies/GJ892-oort/globe.png differ diff --git a/wiki/star-systems/GJ-892/bodies/GJ892h/globe.png b/wiki/star-systems/GJ-892/bodies/GJ892h/globe.png new file mode 100644 index 000000000..f1aa5b1ba Binary files /dev/null and b/wiki/star-systems/GJ-892/bodies/GJ892h/globe.png differ diff --git a/wiki/star-systems/GJ-896A/bodies/GJ896A-belt/globe.png b/wiki/star-systems/GJ-896A/bodies/GJ896A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-896A/bodies/GJ896A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-896A/bodies/GJ896A-oort/globe.png b/wiki/star-systems/GJ-896A/bodies/GJ896A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-896A/bodies/GJ896A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-902/bodies/GJ902-belt/globe.png b/wiki/star-systems/GJ-902/bodies/GJ902-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-902/bodies/GJ902-belt/globe.png differ diff --git a/wiki/star-systems/GJ-902/bodies/GJ902-oort/globe.png b/wiki/star-systems/GJ-902/bodies/GJ902-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-902/bodies/GJ902-oort/globe.png differ diff --git a/wiki/star-systems/GJ-903/bodies/GJ903-belt/globe.png b/wiki/star-systems/GJ-903/bodies/GJ903-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-903/bodies/GJ903-belt/globe.png differ diff --git a/wiki/star-systems/GJ-903/bodies/GJ903-oort/globe.png b/wiki/star-systems/GJ-903/bodies/GJ903-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-903/bodies/GJ903-oort/globe.png differ diff --git a/wiki/star-systems/GJ-904/bodies/GJ904-belt/globe.png b/wiki/star-systems/GJ-904/bodies/GJ904-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-904/bodies/GJ904-belt/globe.png differ diff --git a/wiki/star-systems/GJ-904/bodies/GJ904-oort/globe.png b/wiki/star-systems/GJ-904/bodies/GJ904-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-904/bodies/GJ904-oort/globe.png differ diff --git a/wiki/star-systems/GJ-905/bodies/GJ905-belt/globe.png b/wiki/star-systems/GJ-905/bodies/GJ905-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-905/bodies/GJ905-belt/globe.png differ diff --git a/wiki/star-systems/GJ-905/bodies/GJ905-oort/globe.png b/wiki/star-systems/GJ-905/bodies/GJ905-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-905/bodies/GJ905-oort/globe.png differ diff --git a/wiki/star-systems/GJ-908/bodies/GJ908-belt/globe.png b/wiki/star-systems/GJ-908/bodies/GJ908-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-908/bodies/GJ908-belt/globe.png differ diff --git a/wiki/star-systems/GJ-908/bodies/GJ908-oort/globe.png b/wiki/star-systems/GJ-908/bodies/GJ908-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-908/bodies/GJ908-oort/globe.png differ diff --git a/wiki/star-systems/GJ-909A/bodies/GJ909A-belt/globe.png b/wiki/star-systems/GJ-909A/bodies/GJ909A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-909A/bodies/GJ909A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-909A/bodies/GJ909A-oort/globe.png b/wiki/star-systems/GJ-909A/bodies/GJ909A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-909A/bodies/GJ909A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-914A/bodies/GJ914A-belt/globe.png b/wiki/star-systems/GJ-914A/bodies/GJ914A-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-914A/bodies/GJ914A-belt/globe.png differ diff --git a/wiki/star-systems/GJ-914A/bodies/GJ914A-oort/globe.png b/wiki/star-systems/GJ-914A/bodies/GJ914A-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-914A/bodies/GJ914A-oort/globe.png differ diff --git a/wiki/star-systems/GJ-92/bodies/GJ92-belt/globe.png b/wiki/star-systems/GJ-92/bodies/GJ92-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-92/bodies/GJ92-belt/globe.png differ diff --git a/wiki/star-systems/GJ-92/bodies/GJ92-oort/globe.png b/wiki/star-systems/GJ-92/bodies/GJ92-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-92/bodies/GJ92-oort/globe.png differ diff --git a/wiki/star-systems/GJ-95/bodies/GJ95-belt/globe.png b/wiki/star-systems/GJ-95/bodies/GJ95-belt/globe.png new file mode 100644 index 000000000..7169177b1 Binary files /dev/null and b/wiki/star-systems/GJ-95/bodies/GJ95-belt/globe.png differ diff --git a/wiki/star-systems/GJ-95/bodies/GJ95-oort/globe.png b/wiki/star-systems/GJ-95/bodies/GJ95-oort/globe.png new file mode 100644 index 000000000..e4bd72a87 Binary files /dev/null and b/wiki/star-systems/GJ-95/bodies/GJ95-oort/globe.png differ diff --git a/wiki/star-systems/_generics/asteroid_belt/globe.png b/wiki/star-systems/_generics/asteroid_belt/globe.png new file mode 100644 index 000000000..74dc26971 Binary files /dev/null and b/wiki/star-systems/_generics/asteroid_belt/globe.png differ diff --git a/wiki/star-systems/_generics/oort_cloud/globe.png b/wiki/star-systems/_generics/oort_cloud/globe.png new file mode 100644 index 000000000..09d2ee4a9 Binary files /dev/null and b/wiki/star-systems/_generics/oort_cloud/globe.png differ