Add radar scope, splash screen, Star Wars easter egg, and harden TUI
New features: - P1 green phosphor radar scope widget on Track screen with LUT-optimized rendering - Splash screen with pre-baked ANSI half-block art from 16colo.rs/Mistigris - Star Wars ASCII animation via telnet (ctrl+w) with IPv6 happy eyeballs and offline fallback - Dark Side / New Hope toast notifications on theme toggle - Kitty terminal detection with cat emoji on splash Robustness (from Apollo code review): - Circuit breaker in track loop after 10 consecutive errors - Input validation for frequency, symbol rate, step size across scan/spectrum/track - Consolidated sys.path manipulation into __init__.py - Radar scope pre-computes dist/angle LUT per pixel on resize Cleanup: - Removed unused imports across lband, monitor, scan, signal_gauge - Moved Pillow/textual-image to optional dev deps (splash uses pre-baked ANSI) - Added 41-test pytest suite covering telnet IAC parsing, radar geometry, splash assets
This commit is contained in:
parent
8da486719a
commit
6dcb6b693a
@ -18,6 +18,20 @@ skywalker-tui = "skywalker_tui.app:main"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/skywalker_tui"]
|
||||
artifacts = ["src/skywalker_tui/assets/**"]
|
||||
|
||||
[project.optional-dependencies]
|
||||
dev = [
|
||||
"Pillow>=10.0",
|
||||
]
|
||||
test = [
|
||||
"pytest>=8.0",
|
||||
"pytest-asyncio>=0.24",
|
||||
]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
testpaths = ["tests"]
|
||||
asyncio_mode = "auto"
|
||||
|
||||
[tool.ruff]
|
||||
target-version = "py311"
|
||||
|
||||
99
tui/scripts/fetch_art.py
Normal file
99
tui/scripts/fetch_art.py
Normal file
@ -0,0 +1,99 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Download splash art from 16colo.rs for SkyWalker-1 TUI.
|
||||
|
||||
Fetches pixel/teletext art from Mistigris packs on 16colo.rs and saves
|
||||
them as bundled assets for the splash screen.
|
||||
|
||||
Usage:
|
||||
python scripts/fetch_art.py
|
||||
"""
|
||||
|
||||
import urllib.request
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
ASSETS_DIR = Path(__file__).resolve().parent.parent / "src" / "skywalker_tui" / "assets" / "splash"
|
||||
|
||||
ART_SOURCES = [
|
||||
{
|
||||
"url": "https://16colo.rs/pack/mist0717/raw/ILLARTERATE-SETI-100_02_SATELLITE.PNG",
|
||||
"filename": "seti-satellite.png",
|
||||
"artist": "Illarterate",
|
||||
"title": "S.E.T.I. Satellite",
|
||||
"pack": "mist0717",
|
||||
},
|
||||
{
|
||||
"url": "https://16colo.rs/pack/mist1119/raw/192.168.10.13-DIALTONE.JPG",
|
||||
"filename": "dialtone.jpg",
|
||||
"artist": "192.168.10.13",
|
||||
"title": "Dialtone",
|
||||
"pack": "mist1119",
|
||||
},
|
||||
{
|
||||
"url": "https://16colo.rs/pack/mist0523/raw/BLIPPYPIXEL-SO_FAR_AWAY.GIF",
|
||||
"filename": "so-far-away.gif",
|
||||
"artist": "Blippypixel",
|
||||
"title": "So Far Away",
|
||||
"pack": "mist0523",
|
||||
},
|
||||
{
|
||||
"url": "https://16colo.rs/pack/mist0121/raw/JELLICA_JAKE-PRODIGY.JPG",
|
||||
"filename": "prodigy-out-of-space.jpg",
|
||||
"artist": "Jellica Jake",
|
||||
"title": "Prodigy / Out of Space",
|
||||
"pack": "mist0121",
|
||||
},
|
||||
{
|
||||
"url": "https://16colo.rs/pack/mist1120/raw/BLIPPYPIXEL-SPACE_DOCKER.GIF",
|
||||
"filename": "space-docker.gif",
|
||||
"artist": "Blippypixel",
|
||||
"title": "Space Docker",
|
||||
"pack": "mist1120",
|
||||
},
|
||||
]
|
||||
|
||||
|
||||
def fetch_all():
|
||||
ASSETS_DIR.mkdir(parents=True, exist_ok=True)
|
||||
downloaded = 0
|
||||
|
||||
for art in ART_SOURCES:
|
||||
dest = ASSETS_DIR / art["filename"]
|
||||
if dest.exists():
|
||||
print(f" exists: {art['filename']}", file=sys.stderr)
|
||||
downloaded += 1
|
||||
continue
|
||||
|
||||
print(f" fetch: {art['filename']} from {art['url']}", file=sys.stderr)
|
||||
try:
|
||||
req = urllib.request.Request(art["url"], headers={"User-Agent": "SkyWalker-1-TUI/0.1"})
|
||||
with urllib.request.urlopen(req, timeout=30) as resp:
|
||||
data = resp.read()
|
||||
dest.write_bytes(data)
|
||||
print(f" {len(data):,} bytes -> {dest.name}", file=sys.stderr)
|
||||
downloaded += 1
|
||||
except Exception as e:
|
||||
print(f" FAIL: {art['filename']}: {e}", file=sys.stderr)
|
||||
|
||||
# Write CREDITS.md
|
||||
credits = ASSETS_DIR / "CREDITS.md"
|
||||
lines = ["# Splash Art Credits\n", ""]
|
||||
lines.append("All artwork sourced from [16colo.rs](https://16colo.rs) /")
|
||||
lines.append("[Mistigris](https://mistigris.com) art packs.\n")
|
||||
lines.append("| File | Artist | Title | Pack |")
|
||||
lines.append("|------|--------|-------|------|")
|
||||
for art in ART_SOURCES:
|
||||
pack_url = f"https://16colo.rs/pack/{art['pack']}"
|
||||
lines.append(
|
||||
f"| `{art['filename']}` | {art['artist']} "
|
||||
f"| {art['title']} | [{art['pack']}]({pack_url}) |"
|
||||
)
|
||||
lines.append("")
|
||||
credits.write_text("\n".join(lines))
|
||||
|
||||
print(f"\n {downloaded}/{len(ART_SOURCES)} images downloaded to {ASSETS_DIR}", file=sys.stderr)
|
||||
return downloaded
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
fetch_all()
|
||||
124
tui/scripts/prebake_splash.py
Normal file
124
tui/scripts/prebake_splash.py
Normal file
@ -0,0 +1,124 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Pre-render splash art as ANSI half-block text for instant display.
|
||||
|
||||
Converts source images (PNG/JPG/GIF) into .ans files using Unicode half-block
|
||||
characters with 24-bit ANSI color. This eliminates the runtime Pillow decode
|
||||
and textual-image protocol detection, making splash display instant.
|
||||
|
||||
Each terminal cell renders two vertical pixels using the upper-half-block
|
||||
character (U+2580 '▀') with fg=top_pixel, bg=bottom_pixel for 2x vertical
|
||||
resolution.
|
||||
|
||||
Usage:
|
||||
python scripts/prebake_splash.py [--width 80]
|
||||
"""
|
||||
|
||||
import argparse
|
||||
from pathlib import Path
|
||||
|
||||
from PIL import Image
|
||||
|
||||
ASSETS_DIR = Path(__file__).resolve().parent.parent / "src" / "skywalker_tui" / "assets" / "splash"
|
||||
|
||||
# Source images to pre-bake
|
||||
SOURCE_FILES = [
|
||||
"seti-satellite.png",
|
||||
"dialtone.jpg",
|
||||
"so-far-away.gif",
|
||||
"prodigy-out-of-space.jpg",
|
||||
"space-docker.gif",
|
||||
]
|
||||
|
||||
|
||||
def image_to_ansi(img_path: Path, width: int = 80) -> str:
|
||||
"""Convert an image to ANSI half-block art.
|
||||
|
||||
Uses ▀ (upper half block) with fg=top pixel, bg=bottom pixel to get
|
||||
2x vertical resolution. Emits 24-bit ANSI color escape sequences,
|
||||
optimized to only change fg/bg when the color actually changes.
|
||||
"""
|
||||
img = Image.open(img_path)
|
||||
|
||||
# Use first frame for animated GIFs
|
||||
if hasattr(img, "n_frames") and img.n_frames > 1:
|
||||
img.seek(0)
|
||||
|
||||
img = img.convert("RGBA")
|
||||
|
||||
# Resize maintaining aspect ratio, height rounded to even for half-blocks
|
||||
ratio = img.height / img.width
|
||||
pixel_height = int(width * ratio)
|
||||
pixel_height += pixel_height % 2 # ensure even
|
||||
img = img.resize((width, pixel_height), Image.LANCZOS)
|
||||
|
||||
lines = []
|
||||
for y in range(0, pixel_height, 2):
|
||||
chunks = []
|
||||
prev_fg = None
|
||||
prev_bg = None
|
||||
|
||||
for x in range(width):
|
||||
tr, tg, tb, ta = img.getpixel((x, y))
|
||||
if y + 1 < pixel_height:
|
||||
br, bg, bb, ba = img.getpixel((x, y + 1))
|
||||
else:
|
||||
br, bg, bb, ba = 0, 0, 0, 0
|
||||
|
||||
# Treat near-transparent pixels as black
|
||||
if ta < 128:
|
||||
tr, tg, tb = 0, 0, 0
|
||||
if ba < 128:
|
||||
br, bg, bb = 0, 0, 0
|
||||
|
||||
fg = (tr, tg, tb)
|
||||
bk = (br, bg, bb)
|
||||
|
||||
# Only emit escape codes when color changes
|
||||
codes = []
|
||||
if fg != prev_fg:
|
||||
codes.append(f"\033[38;2;{fg[0]};{fg[1]};{fg[2]}m")
|
||||
prev_fg = fg
|
||||
if bk != prev_bg:
|
||||
codes.append(f"\033[48;2;{bk[0]};{bk[1]};{bk[2]}m")
|
||||
prev_bg = bk
|
||||
|
||||
chunks.append("".join(codes) + "\u2580")
|
||||
|
||||
lines.append("".join(chunks) + "\033[0m")
|
||||
|
||||
return "\n".join(lines)
|
||||
|
||||
|
||||
def main():
|
||||
parser = argparse.ArgumentParser(description="Pre-bake splash art as ANSI half-block text")
|
||||
parser.add_argument("--width", type=int, default=80, help="Output width in columns (default: 80)")
|
||||
args = parser.parse_args()
|
||||
|
||||
if not ASSETS_DIR.exists():
|
||||
print(f"Assets directory not found: {ASSETS_DIR}")
|
||||
return
|
||||
|
||||
for filename in SOURCE_FILES:
|
||||
src = ASSETS_DIR / filename
|
||||
if not src.exists():
|
||||
print(f" SKIP {filename} (not found)")
|
||||
continue
|
||||
|
||||
stem = src.stem
|
||||
dst = ASSETS_DIR / f"{stem}.ans"
|
||||
|
||||
print(f" BAKE {filename} -> {stem}.ans ({args.width} cols) ...", end=" ", flush=True)
|
||||
ansi_text = image_to_ansi(src, width=args.width)
|
||||
dst.write_text(ansi_text)
|
||||
|
||||
# Stats
|
||||
src_kb = src.stat().st_size / 1024
|
||||
dst_kb = dst.stat().st_size / 1024
|
||||
line_count = ansi_text.count("\n") + 1
|
||||
print(f"{src_kb:.1f}KB -> {dst_kb:.1f}KB ({line_count} lines)")
|
||||
|
||||
print("\nDone. Pre-baked .ans files are ready for instant splash display.")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@ -1,3 +1,12 @@
|
||||
"""Textual TUI for Genpix SkyWalker-1 DVB-S receiver."""
|
||||
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
__version__ = "0.1.0"
|
||||
|
||||
# Ensure skywalker_lib (in sibling tools/ directory) is importable.
|
||||
# Consolidated here so app.py and status_bar.py don't duplicate this.
|
||||
_tools_dir = Path(__file__).resolve().parent.parent.parent.parent / "tools"
|
||||
if _tools_dir.is_dir() and str(_tools_dir) not in sys.path:
|
||||
sys.path.insert(0, str(_tools_dir))
|
||||
|
||||
@ -9,13 +9,6 @@ with Textual's built-in App.mode / _current_mode / _screen_stacks system.
|
||||
|
||||
import argparse
|
||||
import sys
|
||||
import os
|
||||
from pathlib import Path
|
||||
|
||||
# Add tools directory to path for skywalker_lib import
|
||||
_tools_dir = str(Path(__file__).resolve().parent.parent.parent.parent / "tools")
|
||||
if _tools_dir not in sys.path:
|
||||
sys.path.insert(0, _tools_dir)
|
||||
|
||||
from textual.app import App, ComposeResult
|
||||
from textual.binding import Binding
|
||||
@ -57,14 +50,17 @@ class SkyWalkerApp(App):
|
||||
Binding("f5", "rf_mode('track')", "Track", show=True),
|
||||
Binding("q", "quit", "Quit", show=True),
|
||||
Binding("d", "toggle_dark", "Theme", show=True),
|
||||
Binding("ctrl+w", "starwars", "Star Wars", show=False),
|
||||
]
|
||||
|
||||
def __init__(self, bridge: USBBridge, initial_mode: str = "spectrum"):
|
||||
def __init__(self, bridge: USBBridge, initial_mode: str = "spectrum",
|
||||
show_splash: bool = True):
|
||||
super().__init__()
|
||||
self._bridge = bridge
|
||||
self._initial_rf_mode = initial_mode
|
||||
self._active_rf_mode = initial_mode
|
||||
self._rf_screens: dict[str, object] = {}
|
||||
self._show_splash = show_splash
|
||||
|
||||
def compose(self) -> ComposeResult:
|
||||
yield Header()
|
||||
@ -81,18 +77,35 @@ class SkyWalkerApp(App):
|
||||
yield Footer()
|
||||
|
||||
def on_mount(self) -> None:
|
||||
# Initialize status bar
|
||||
# Initialize status bar (lightweight)
|
||||
status = self.query_one(DeviceStatusBar)
|
||||
status.update_status(self._bridge)
|
||||
|
||||
# Install all mode screens into the content switcher
|
||||
if self._show_splash:
|
||||
# Push splash FIRST, then init mode screens behind it.
|
||||
# Two-tick chain: tick 1 = splash renders, tick 2 = heavy work.
|
||||
self.call_later(self._push_splash)
|
||||
else:
|
||||
self.call_later(self._init_mode_screens)
|
||||
|
||||
def _push_splash(self) -> None:
|
||||
"""Push splash screen, then defer heavy mode screen init."""
|
||||
from skywalker_tui.screens.splash import SplashScreen
|
||||
try:
|
||||
self.push_screen(SplashScreen())
|
||||
except Exception:
|
||||
pass
|
||||
# Mode screens mount behind the splash overlay — pre-baked ANSI art
|
||||
# renders instantly so no delay needed before heavy work starts
|
||||
self.call_later(self._init_mode_screens)
|
||||
|
||||
def _init_mode_screens(self) -> None:
|
||||
"""Mount all 5 mode screens into the content switcher."""
|
||||
switcher = self.query_one("#content-area", ContentSwitcher)
|
||||
for mode_key, (_label, cls) in MODES.items():
|
||||
screen = cls(self._bridge, id=f"screen-{mode_key}")
|
||||
self._rf_screens[mode_key] = screen
|
||||
switcher.mount(screen)
|
||||
|
||||
# Activate initial mode
|
||||
self.action_rf_mode(self._initial_rf_mode)
|
||||
|
||||
def action_rf_mode(self, mode: str) -> None:
|
||||
@ -110,7 +123,7 @@ class SkyWalkerApp(App):
|
||||
btn.remove_class("-active")
|
||||
self.query_one(f"#btn-{mode}", Button).add_class("-active")
|
||||
|
||||
self.sub_title = f"DVB-S RF Tool — {MODES[mode][0]}"
|
||||
self.sub_title = f"DVB-S RF Tool \u2014 {MODES[mode][0]}"
|
||||
|
||||
def on_button_pressed(self, event: Button.Pressed) -> None:
|
||||
"""Handle sidebar mode button clicks."""
|
||||
@ -122,6 +135,25 @@ class SkyWalkerApp(App):
|
||||
|
||||
def action_toggle_dark(self) -> None:
|
||||
self.dark = not self.dark
|
||||
if self.dark:
|
||||
self.notify(
|
||||
"Welcome to the Dark Side.",
|
||||
title="The Force is strong with this one",
|
||||
severity="warning",
|
||||
timeout=4,
|
||||
)
|
||||
else:
|
||||
self.notify(
|
||||
"The Force awakens.",
|
||||
title="A New Hope",
|
||||
severity="information",
|
||||
timeout=4,
|
||||
)
|
||||
|
||||
def action_starwars(self) -> None:
|
||||
"""Easter egg: stream ASCII Star Wars from telnet."""
|
||||
from skywalker_tui.screens.starwars import StarWarsScreen
|
||||
self.push_screen(StarWarsScreen())
|
||||
|
||||
|
||||
def main():
|
||||
@ -133,6 +165,10 @@ def main():
|
||||
"--demo", action="store_true",
|
||||
help="Use synthetic signal data (no hardware required)",
|
||||
)
|
||||
parser.add_argument(
|
||||
"--no-splash", action="store_true",
|
||||
help="Skip the splash screen on startup",
|
||||
)
|
||||
parser.add_argument(
|
||||
"mode", nargs="?", default="spectrum",
|
||||
choices=list(MODES.keys()),
|
||||
@ -158,7 +194,11 @@ def main():
|
||||
print("Use --demo for synthetic signal data.", file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
||||
app = SkyWalkerApp(bridge=bridge, initial_mode=args.mode)
|
||||
app = SkyWalkerApp(
|
||||
bridge=bridge,
|
||||
initial_mode=args.mode,
|
||||
show_splash=not args.no_splash,
|
||||
)
|
||||
try:
|
||||
app.run()
|
||||
finally:
|
||||
|
||||
0
tui/src/skywalker_tui/assets/__init__.py
Normal file
0
tui/src/skywalker_tui/assets/__init__.py
Normal file
13
tui/src/skywalker_tui/assets/splash/CREDITS.md
Normal file
13
tui/src/skywalker_tui/assets/splash/CREDITS.md
Normal file
@ -0,0 +1,13 @@
|
||||
# Splash Art Credits
|
||||
|
||||
|
||||
All artwork sourced from [16colo.rs](https://16colo.rs) /
|
||||
[Mistigris](https://mistigris.com) art packs.
|
||||
|
||||
| File | Artist | Title | Pack |
|
||||
|------|--------|-------|------|
|
||||
| `seti-satellite.png` | Illarterate | S.E.T.I. Satellite | [mist0717](https://16colo.rs/pack/mist0717) |
|
||||
| `dialtone.jpg` | 192.168.10.13 | Dialtone | [mist1119](https://16colo.rs/pack/mist1119) |
|
||||
| `so-far-away.gif` | Blippypixel | So Far Away | [mist0523](https://16colo.rs/pack/mist0523) |
|
||||
| `prodigy-out-of-space.jpg` | Jellica Jake | Prodigy / Out of Space | [mist0121](https://16colo.rs/pack/mist0121) |
|
||||
| `space-docker.gif` | Blippypixel | Space Docker | [mist1120](https://16colo.rs/pack/mist1120) |
|
||||
27
tui/src/skywalker_tui/assets/splash/dialtone.ans
Normal file
27
tui/src/skywalker_tui/assets/splash/dialtone.ans
Normal file
@ -0,0 +1,27 @@
|
||||
[38;2;2;2;4m[48;2;2;4;6m▀[38;2;3;1;7m[48;2;3;4;5m▀[38;2;3;2;9m[48;2;3;3;8m▀[38;2;5;2;8m[48;2;1;2;10m▀[38;2;13;3;10m[48;2;1;3;12m▀[38;2;18;4;10m[48;2;1;3;14m▀[38;2;22;4;13m[48;2;0;2;14m▀[38;2;18;3;14m[48;2;2;5;25m▀[38;2;10;2;15m[48;2;2;4;24m▀[38;2;14;3;19m[48;2;0;4;24m▀[38;2;17;4;22m[48;2;0;5;30m▀[38;2;24;8;33m[48;2;1;6;37m▀[38;2;28;7;30m[48;2;1;5;38m▀[38;2;31;6;26m[48;2;0;6;39m▀[38;2;38;7;30m[48;2;0;5;41m▀[38;2;41;9;34m[48;2;0;6;44m▀[38;2;37;7;41m[48;2;0;7;57m▀[38;2;46;7;32m[48;2;0;7;54m▀[38;2;47;9;48m[48;2;1;8;59m▀[38;2;48;8;82m[48;2;0;5;90m▀[38;2;49;10;72m[48;2;2;6;112m▀[38;2;49;8;90m[48;2;3;9;110m▀[38;2;49;7;108m[48;2;1;6;100m▀[38;2;50;7;122m[48;2;2;5;126m▀[38;2;49;8;109m[48;2;3;5;132m▀[38;2;48;8;129m[48;2;3;6;138m▀[38;2;51;8;138m[48;2;5;7;146m▀[38;2;50;8;152m[48;2;5;9;157m▀[38;2;51;7;174m[48;2;6;10;160m▀[38;2;51;8;169m[48;2;9;11;159m▀[38;2;52;10;164m[48;2;11;12;155m▀[38;2;54;9;172m[48;2;11;13;158m▀[38;2;54;9;163m[48;2;11;12;164m▀[38;2;55;13;152m[48;2;11;15;160m▀[38;2;52;10;170m[48;2;8;13;163m▀[38;2;52;10;162m[48;2;7;10;160m▀[38;2;51;11;175m[48;2;6;9;159m▀[38;2;49;8;166m[48;2;4;6;158m▀[38;2;51;9;124m[48;2;3;6;146m▀[38;2;51;9;130m[48;2;2;6;148m▀[38;2;48;7;126m[48;2;1;3;149m▀[38;2;49;7;117m[48;2;0;3;148m▀[38;2;49;6;112m[48;2;1;3;146m▀[38;2;50;8;130m[48;2;1;3;138m▀[38;2;49;10;144m[48;2;0;1;151m▀[38;2;48;8;133m[48;2;1;3;153m▀[38;2;49;6;150m[48;2;1;3;147m▀[38;2;49;7;139m[48;2;1;3;137m▀[38;2;49;7;132m[48;2;3;7;142m▀[38;2;50;6;149m[48;2;5;7;169m▀[38;2;50;7;120m[48;2;1;3;147m▀[38;2;50;7;145m[48;2;2;7;165m▀[38;2;50;7;170m[48;2;1;6;175m▀[38;2;50;8;138m[48;2;4;8;169m▀[38;2;51;14;130m[48;2;3;6;159m▀[38;2;49;10;130m[48;2;2;7;154m▀[38;2;49;8;115m[48;2;0;4;144m▀[38;2;49;8;102m[48;2;1;7;119m▀[38;2;50;13;97m[48;2;1;8;89m▀[38;2;31;11;89m[48;2;1;8;88m▀[38;2;21;8;76m[48;2;3;10;91m▀[38;2;31;10;78m[48;2;4;12;110m▀[38;2;34;13;88m[48;2;1;6;116m▀[38;2;38;8;79m[48;2;1;7;100m▀[38;2;43;9;70m[48;2;0;9;82m▀[38;2;40;9;64m[48;2;1;7;83m▀[38;2;41;8;62m[48;2;1;9;92m▀[38;2;45;8;61m[48;2;0;8;82m▀[38;2;46;8;61m[48;2;0;6;81m▀[38;2;44;7;62m[48;2;0;6;79m▀[38;2;45;7;61m[48;2;0;4;76m▀[38;2;47;8;59m[48;2;0;7;80m▀[38;2;39;7;65m[48;2;1;6;81m▀[38;2;44;8;60m[48;2;0;6;79m▀[38;2;47;9;59m[48;2;0;8;80m▀[38;2;47;8;65m[48;2;1;11;85m▀[38;2;47;9;66m[48;2;3;17;74m▀[38;2;49;12;70m[48;2;3;19;68m▀[38;2;52;15;77m[48;2;5;30;79m▀[38;2;46;47;100m[48;2;7;41;90m▀[0m
|
||||
[38;2;3;3;5m[48;2;2;2;5m▀[38;2;3;2;6m[48;2;1;1;7m▀[38;2;2;3;7m[48;2;2;2;10m▀[38;2;2;2;11m[48;2;2;2;13m▀[38;2;3;2;15m[48;2;2;3;15m▀[38;2;2;3;15m[48;2;2;4;16m▀[38;2;1;2;17m[48;2;1;4;25m▀[38;2;2;4;26m[48;2;1;5;31m▀[38;2;1;6;30m[48;2;1;5;36m▀[38;2;0;4;29m[48;2;1;6;39m▀[38;2;1;4;31m[48;2;1;6;47m▀[38;2;1;4;34m[48;2;2;6;54m▀[38;2;1;5;39m[48;2;4;12;65m▀[38;2;1;5;49m[48;2;4;12;81m▀[38;2;2;7;53m[48;2;1;7;72m▀[38;2;2;8;55m[48;2;1;7;81m▀[38;2;1;8;61m[48;2;2;11;91m▀[38;2;3;9;75m[48;2;4;12;111m▀[38;2;2;9;77m[48;2;5;14;119m▀[38;2;2;5;107m[48;2;4;6;153m▀[38;2;4;6;139m[48;2;3;3;165m▀[38;2;10;17;154m[48;2;7;8;175m▀[38;2;6;5;127m[48;2;5;6;180m▀[38;2;6;7;141m[48;2;5;7;183m▀[38;2;6;6;159m[48;2;7;7;199m▀[38;2;10;8;152m[48;2;8;10;177m▀[38;2;12;10;134m[48;2;12;15;154m▀[38;2;13;12;139m[48;2;22;22;160m▀[38;2;13;14;147m[48;2;36;30;143m▀[38;2;13;14;158m[48;2;55;41;134m▀[38;2;12;16;164m[48;2;74;54;122m▀[38;2;13;17;167m[48;2;73;59;117m▀[38;2;17;18;176m[48;2;56;58;131m▀[38;2;16;18;165m[48;2;50;56;164m▀[38;2;19;20;154m[48;2;30;35;161m▀[38;2;18;21;158m[48;2;21;27;157m▀[38;2;17;18;151m[48;2;22;25;149m▀[38;2;11;18;145m[48;2;17;29;146m▀[38;2;8;11;165m[48;2;11;16;174m▀[38;2;6;7;154m[48;2;7;5;169m▀[38;2;4;5;157m[48;2;4;3;161m▀[38;2;3;3;154m[48;2;3;3;155m▀[38;2;4;3;154m[48;2;4;2;156m▀[38;2;3;4;152m[48;2;2;3;160m▀[38;2;2;4;159m[48;2;4;5;165m▀[38;2;4;5;162m[48;2;3;5;162m▀[38;2;7;8;156m[48;2;4;8;162m▀[38;2;9;10;154m[48;2;9;16;172m▀[38;2;5;5;140m[48;2;5;7;168m▀[38;2;4;6;164m[48;2;3;7;161m▀[38;2;5;9;146m[48;2;6;10;159m▀[38;2;4;5;148m[48;2;4;9;158m▀[38;2;3;2;167m[48;2;8;12;167m▀[38;2;6;16;188m[48;2;9;18;170m▀[38;2;6;10;173m[48;2;14;33;211m▀[38;2;4;5;165m[48;2;10;27;210m▀[38;2;3;2;176m[48;2;4;5;210m▀[38;2;4;7;129m[48;2;4;12;160m▀[38;2;2;9;103m[48;2;5;15;120m▀[38;2;3;9;102m[48;2;3;11;94m▀[38;2;3;7;96m[48;2;2;10;82m▀[38;2;2;8;96m[48;2;2;9;89m▀[38;2;3;8;113m[48;2;3;10;96m▀[38;2;3;6;121m[48;2;2;8;108m▀[38;2;2;7;106m[48;2;2;9;94m▀[38;2;3;7;103m[48;2;3;9;96m▀[38;2;3;7;102m[48;2;2;8;91m▀[38;2;2;7;95m[48;2;3;10;90m▀[38;2;2;7;94m[48;2;2;9;88m▀[38;2;2;7;93m[48;2;2;9;90m▀[38;2;2;7;91m[48;2;2;8;94m▀[38;2;2;7;93m[48;2;1;7;89m▀[38;2;2;7;88m[48;2;1;8;91m▀[38;2;2;7;87m[48;2;1;8;92m▀[38;2;2;9;91m[48;2;2;9;90m▀[38;2;2;13;91m[48;2;2;11;96m▀[38;2;4;18;81m[48;2;3;16;96m▀[38;2;6;24;86m[48;2;5;22;100m▀[38;2;7;31;95m[48;2;5;26;116m▀[38;2;8;45;112m[48;2;9;47;152m▀[0m
|
||||
[38;2;2;1;7m[48;2;2;1;5m▀[38;2;2;1;9m[48;2;1;0;5m▀[38;2;2;2;11m[48;2;0;1;6m▀[38;2;1;2;14m[48;2;0;1;8m▀[38;2;2;3;17m[48;2;1;1;11m▀[38;2;3;4;21m[48;2;2;1;17m▀[38;2;1;5;28m[48;2;1;1;24m▀[38;2;1;4;37m[48;2;0;0;29m▀[38;2;1;4;40m[48;2;1;0;32m▀[38;2;1;4;42m[48;2;1;1;35m▀[38;2;1;4;52m[48;2;0;2;41m▀[38;2;1;5;61m[48;2;1;3;48m▀[38;2;3;7;70m[48;2;1;3;65m▀[38;2;5;11;94m[48;2;4;8;103m▀[38;2;3;9;100m[48;2;3;10;113m▀[38;2;2;8;102m[48;2;1;9;107m▀[38;2;2;8;114m[48;2;2;11;118m▀[38;2;2;9;120m[48;2;2;10;129m▀[38;2;3;10;131m[48;2;3;9;143m▀[38;2;4;6;176m[48;2;3;3;191m▀[38;2;4;6;196m[48;2;6;4;209m▀[38;2;7;6;201m[48;2;2;13;215m▀[38;2;8;6;216m[48;2;3;12;229m▀[38;2;10;23;225m[48;2;22;18;217m▀[38;2;15;12;233m[48;2;51;40;150m▀[38;2;39;22;180m[48;2;94;56;64m▀[38;2;73;43;117m[48;2;127;64;23m▀[38;2;108;64;85m[48;2;111;63;22m▀[38;2;144;77;41m[48;2;126;71;26m▀[38;2;170;101;27m[48;2;145;87;27m▀[38;2;161;94;17m[48;2;136;84;30m▀[38;2;160;98;21m[48;2;132;82;39m▀[38;2;125;96;29m[48;2;127;86;43m▀[38;2;141;110;50m[48;2;124;102;61m▀[38;2;135;105;89m[48;2;158;131;65m▀[38;2;93;83;124m[48;2;192;164;93m▀[38;2;37;44;128m[48;2;144;124;104m▀[38;2;23;32;113m[48;2;52;54;144m▀[38;2;19;19;146m[48;2;23;28;155m▀[38;2;12;15;169m[48;2;16;21;163m▀[38;2;13;21;166m[48;2;10;15;158m▀[38;2;8;11;150m[48;2;5;7;149m▀[38;2;3;6;129m[48;2;4;5;147m▀[38;2;5;7;138m[48;2;3;6;149m▀[38;2;9;13;159m[48;2;6;8;159m▀[38;2;4;7;143m[48;2;5;10;165m▀[38;2;7;18;161m[48;2;3;5;162m▀[38;2;7;18;172m[48;2;1;3;164m▀[38;2;2;4;166m[48;2;2;4;168m▀[38;2;2;5;160m[48;2;2;4;161m▀[38;2;3;3;151m[48;2;7;10;171m▀[38;2;4;6;142m[48;2;5;5;162m▀[38;2;6;8;140m[48;2;3;4;147m▀[38;2;4;3;134m[48;2;4;6;143m▀[38;2;6;11;187m[48;2;4;5;170m▀[38;2;7;19;211m[48;2;3;4;178m▀[38;2;2;2;212m[48;2;4;6;180m▀[38;2;3;8;158m[48;2;3;8;141m▀[38;2;3;11;120m[48;2;4;11;105m▀[38;2;2;9;112m[48;2;4;10;114m▀[38;2;3;12;97m[48;2;4;10;108m▀[38;2;4;12;96m[48;2;4;10;106m▀[38;2;3;11;101m[48;2;4;11;98m▀[38;2;3;12;112m[48;2;2;12;98m▀[38;2;7;16;133m[48;2;2;11;122m▀[38;2;7;12;133m[48;2;2;9;120m▀[38;2;3;10;95m[48;2;2;11;108m▀[38;2;2;12;93m[48;2;3;16;106m▀[38;2;2;12;92m[48;2;1;12;94m▀[38;2;2;11;88m[48;2;2;12;92m▀[38;2;2;10;90m[48;2;2;11;90m▀[38;2;2;10;92m[48;2;3;11;93m▀[38;2;2;10;94m[48;2;2;11;95m▀[38;2;2;10;93m[48;2;3;12;91m▀[38;2;3;11;92m[48;2;3;13;87m▀[38;2;3;11;98m[48;2;3;14;93m▀[38;2;3;17;99m[48;2;4;16;88m▀[38;2;5;23;101m[48;2;4;21;84m▀[38;2;4;28;115m[48;2;5;23;95m▀[38;2;9;49;141m[48;2;7;35;119m▀[0m
|
||||
[38;2;2;1;6m[48;2;1;0;7m▀[38;2;1;0;6m[48;2;1;0;5m▀[48;2;1;0;4m▀[38;2;0;1;7m[48;2;1;0;6m▀[38;2;1;0;12m[48;2;0;0;12m▀[38;2;1;2;25m[48;2;0;0;27m▀[38;2;1;1;30m[48;2;0;1;38m▀[38;2;0;0;36m[48;2;0;1;47m▀[38;2;0;1;40m[48;2;0;1;49m▀[38;2;0;1;42m[48;2;0;0;50m▀[48;2;0;1;48m▀[38;2;1;2;45m[48;2;1;2;48m▀[38;2;1;2;57m[48;2;1;2;57m▀[38;2;2;7;79m[48;2;2;11;73m▀[38;2;1;13;109m[48;2;1;15;117m▀[38;2;2;7;147m[48;2;2;3;172m▀[38;2;4;7;181m[48;2;4;1;217m▀[38;2;4;5;202m[48;2;5;2;239m▀[38;2;4;4;213m[48;2;6;3;248m▀[38;2;9;7;176m[48;2;9;13;172m▀[38;2;9;10;196m[48;2;31;22;156m▀[38;2;43;12;181m[48;2;89;31;85m▀[38;2;70;20;161m[48;2;91;40;71m▀[38;2;69;43;80m[48;2;70;44;100m▀[38;2;76;60;16m[48;2;75;46;114m▀[38;2;91;61;16m[48;2;96;61;121m▀[38;2;101;60;21m[48;2;99;71;108m▀[38;2;85;59;32m[48;2;81;65;60m▀[38;2;99;70;42m[48;2;97;79;61m▀[38;2;143;97;50m[48;2;115;90;73m▀[38;2;169;112;56m[48;2;145;120;82m▀[38;2;171;112;53m[48;2;148;129;70m▀[38;2;163;117;49m[48;2;144;120;60m▀[38;2;128;116;75m[48;2;135;128;85m▀[38;2;145;138;86m[48;2;159;161;111m▀[38;2;177;177;117m[48;2;175;178;115m▀[38;2;173;161;72m[48;2;159;139;66m▀[38;2;127;107;121m[48;2;127;107;69m▀[38;2;30;36;187m[48;2;80;72;178m▀[38;2;20;19;170m[48;2;20;26;189m▀[38;2;10;11;182m[48;2;15;14;193m▀[38;2;7;7;173m[48;2;8;10;182m▀[38;2;7;8;163m[48;2;5;5;178m▀[38;2;5;7;162m[48;2;2;3;177m▀[38;2;4;7;163m[48;2;4;6;179m▀[38;2;4;5;166m[48;2;5;7;179m▀[38;2;3;6;166m[48;2;3;4;182m▀[38;2;3;5;158m[48;2;3;4;175m▀[38;2;4;4;148m[48;2;3;4;170m▀[38;2;4;5;153m[48;2;6;9;182m▀[38;2;3;5;168m[48;2;10;16;184m▀[38;2;2;3;168m[48;2;3;7;169m▀[38;2;4;6;154m[48;2;4;8;156m▀[38;2;5;7;127m[48;2;3;8;148m▀[38;2;4;5;154m[48;2;6;13;179m▀[38;2;4;6;158m[48;2;9;18;183m▀[38;2;6;9;156m[48;2;3;5;173m▀[38;2;7;13;153m[48;2;3;7;166m▀[38;2;4;8;126m[48;2;4;7;161m▀[38;2;4;10;131m[48;2;2;9;171m▀[38;2;2;5;134m[48;2;13;13;158m▀[38;2;3;7;126m[48;2;6;7;107m▀[38;2;3;7;134m[48;2;6;11;134m▀[38;2;2;8;124m[48;2;3;8;131m▀[38;2;3;11;110m[48;2;3;10;105m▀[38;2;3;13;115m[48;2;3;11;105m▀[38;2;2;12;118m[48;2;3;12;119m▀[38;2;5;16;116m[48;2;2;11;116m▀[38;2;3;13;105m[48;2;3;12;108m▀[38;2;2;14;93m▀[38;2;3;14;97m[48;2;3;11;113m▀[38;2;3;13;102m[48;2;4;12;105m▀[38;2;2;15;89m[48;2;3;12;107m▀[38;2;2;15;90m[48;2;3;11;97m▀[38;2;3;17;88m[48;2;4;12;96m▀[38;2;3;19;89m[48;2;4;13;113m▀[38;2;4;21;80m[48;2;4;13;122m▀[38;2;4;26;73m[48;2;5;15;110m▀[38;2;6;27;82m[48;2;6;17;122m▀[38;2;8;35;110m[48;2;8;26;144m▀[0m
|
||||
[38;2;1;0;7m[48;2;2;1;9m▀[38;2;1;1;3m[48;2;1;1;5m▀[48;2;1;0;6m▀[38;2;1;0;7m[48;2;1;0;13m▀[38;2;2;4;23m[48;2;2;3;36m▀[38;2;2;2;40m[48;2;2;2;50m▀[38;2;0;1;45m[48;2;0;0;54m▀[38;2;0;2;52m[48;2;1;1;65m▀[38;2;0;0;56m[48;2;1;2;75m▀[38;2;0;1;56m[48;2;2;2;76m▀[38;2;3;3;66m[48;2;3;4;89m▀[38;2;2;4;75m[48;2;6;9;111m▀[38;2;1;6;92m[48;2;8;8;134m▀[38;2;2;10;111m[48;2;8;3;178m▀[38;2;3;11;139m[48;2;10;7;186m▀[38;2;3;4;179m[48;2;8;7;199m▀[38;2;5;4;201m[48;2;8;6;206m▀[38;2;4;3;220m[48;2;11;12;219m▀[38;2;3;6;237m[48;2;30;15;161m▀[38;2;28;20;154m[48;2;73;33;68m▀[38;2;56;31;108m[48;2;97;36;51m▀[38;2;45;34;94m[48;2;112;29;54m▀[38;2;52;34;74m[48;2;106;47;41m▀[38;2;96;37;103m[48;2;103;69;65m▀[38;2;95;57;143m[48;2;78;84;124m▀[38;2;101;74;138m[48;2;81;78;130m▀[38;2;100;74;138m[48;2;70;71;103m▀[38;2;90;74;103m[48;2;68;68;84m▀[38;2;93;79;64m[48;2;72;70;75m▀[38;2;107;91;70m[48;2;72;80;75m▀[38;2;117;98;86m[48;2;78;102;94m▀[38;2;113;101;75m[48;2;81;95;100m▀[38;2;117;109;71m[48;2;91;94;93m▀[38;2;122;125;89m[48;2;101;109;112m▀[38;2;163;156;98m[48;2;125;135;135m▀[38;2;177;160;98m[48;2;155;148;128m▀[38;2;167;149;76m[48;2;151;160;118m▀[38;2;145;137;80m[48;2;155;154;83m▀[38;2;106;87;151m[48;2;116;94;133m▀[38;2;30;36;200m[48;2;37;34;198m▀[38;2;14;19;222m[48;2;18;18;204m▀[38;2;9;10;208m[48;2;12;11;198m▀[38;2;5;6;193m[48;2;6;6;192m▀[38;2;8;12;194m[48;2;8;12;194m▀[38;2;3;4;188m[48;2;6;10;192m▀[38;2;6;8;190m[48;2;3;2;193m▀[38;2;4;3;188m[48;2;5;5;193m▀[38;2;3;4;189m[48;2;4;7;194m▀[38;2;4;6;191m[48;2;5;9;197m▀[38;2;5;6;192m[48;2;4;8;197m▀[38;2;5;7;196m[48;2;5;10;199m▀[38;2;4;7;189m[48;2;5;11;189m▀[38;2;4;7;173m[48;2;6;11;186m▀[38;2;4;9;173m[48;2;6;13;189m▀[38;2;5;9;192m[48;2;5;11;192m▀[38;2;9;22;196m[48;2;7;18;199m▀[38;2;6;15;187m[48;2;8;19;200m▀[38;2;3;9;183m[48;2;7;20;197m▀[38;2;4;10;177m[48;2;9;21;191m▀[38;2;2;17;189m[48;2;6;12;186m▀[38;2;23;25;170m[48;2;6;9;181m▀[38;2;7;6;134m[48;2;5;9;171m▀[38;2;2;7;132m[48;2;4;10;169m▀[38;2;3;7;135m[48;2;4;13;165m▀[38;2;2;10;127m[48;2;4;19;148m▀[38;2;2;7;139m[48;2;4;21;152m▀[38;2;2;4;155m[48;2;5;24;155m▀[38;2;3;4;156m[48;2;5;23;157m▀[38;2;3;3;164m[48;2;5;24;166m▀[38;2;2;2;203m[48;2;6;27;179m▀[38;2;2;2;187m[48;2;6;25;159m▀[38;2;4;6;151m[48;2;5;21;169m▀[38;2;3;9;87m[48;2;6;24;130m▀[38;2;3;5;121m[48;2;6;19;145m▀[38;2;4;5;131m[48;2;5;15;154m▀[38;2;5;8;75m[48;2;6;16;151m▀[38;2;4;2;198m[48;2;4;12;184m▀[38;2;3;2;244m[48;2;4;8;224m▀[38;2;5;2;249m[48;2;5;6;238m▀[38;2;4;2;255m[48;2;6;17;231m▀[0m
|
||||
[38;2;2;2;10m[48;2;2;2;12m▀[38;2;1;1;5m[48;2;1;2;12m▀[48;2;1;1;14m▀[38;2;2;1;18m[48;2;3;4;30m▀[38;2;0;2;38m[48;2;3;8;42m▀[38;2;1;3;58m[48;2;4;7;58m▀[38;2;0;6;66m[48;2;3;10;67m▀[38;2;1;6;78m[48;2;2;12;74m▀[38;2;1;8;91m[48;2;3;11;83m▀[38;2;1;4;88m[48;2;3;10;95m▀[38;2;2;7;93m[48;2;2;13;108m▀[38;2;5;14;109m[48;2;3;13;120m▀[38;2;3;9;154m[48;2;1;10;165m▀[38;2;2;1;223m[48;2;1;1;241m▀[38;2;4;3;215m[48;2;4;5;235m▀[38;2;4;4;207m[48;2;2;6;227m▀[38;2;4;15;212m[48;2;18;19;150m▀[38;2;27;28;146m[48;2;37;30;68m▀[38;2;45;32;75m[48;2;32;34;84m▀[38;2;47;35;73m[48;2;39;35;96m▀[38;2;54;38;77m[48;2;49;45;89m▀[38;2;62;40;90m[48;2;50;52;82m▀[38;2;57;56;84m[48;2;70;63;64m▀[38;2;48;69;81m[48;2;79;64;59m▀[38;2;61;79;86m[48;2;83;70;68m▀[38;2;61;66;83m[48;2;96;85;62m▀[38;2;64;72;70m[48;2;118;88;52m▀[38;2;72;74;64m[48;2;115;93;52m▀[38;2;76;75;70m[48;2;103;91;64m▀[38;2;83;83;72m[48;2;81;77;72m▀[38;2;104;111;84m[48;2;106;101;85m▀[38;2;102;103;78m[48;2;119;115;92m▀[38;2;100;93;72m[48;2;90;83;72m▀[38;2;107;110;91m[48;2;103;101;70m▀[38;2;123;143;101m[48;2;136;137;76m▀[38;2;128;157;129m[48;2;133;123;66m▀[38;2;136;159;136m[48;2;110;105;74m▀[38;2;167;162;85m[48;2;160;138;62m▀[38;2;114;97;143m[48;2;125;109;121m▀[38;2;37;34;196m[48;2;45;54;198m▀[38;2;21;21;184m[48;2;20;22;190m▀[38;2;13;12;183m[48;2;14;16;187m▀[38;2;8;8;172m[48;2;8;9;175m▀[38;2;5;7;173m[48;2;6;6;175m▀[38;2;4;6;184m[48;2;5;6;184m▀[38;2;6;6;200m[48;2;6;13;202m▀[38;2;5;9;200m[48;2;6;14;201m▀[38;2;4;8;201m[48;2;5;8;202m▀[38;2;4;11;201m[48;2;5;14;202m▀[38;2;4;12;202m[48;2;4;16;206m▀[38;2;3;10;202m[48;2;2;6;201m▀[38;2;3;10;193m[48;2;3;5;195m▀[38;2;6;9;190m[48;2;2;5;196m▀[38;2;6;11;189m[48;2;3;6;194m▀[38;2;6;12;190m[48;2;3;5;190m▀[38;2;11;21;192m[48;2;4;4;187m▀[38;2;5;13;182m[48;2;2;2;188m▀[38;2;6;15;171m[48;2;2;3;186m▀[38;2;8;15;175m[48;2;3;4;189m▀[38;2;7;11;167m[48;2;4;7;184m▀[38;2;5;9;149m[48;2;5;10;182m▀[38;2;5;7;156m[48;2;6;9;193m▀[38;2;5;9;144m[48;2;3;7;178m▀[38;2;3;9;150m[48;2;3;10;165m▀[38;2;3;16;128m[48;2;2;14;146m▀[38;2;3;16;134m[48;2;2;12;150m▀[38;2;3;15;138m[48;2;2;13;147m▀[38;2;3;15;133m[48;2;3;16;138m▀[38;2;4;15;138m[48;2;2;16;138m▀[38;2;4;16;142m[48;2;2;16;143m▀[38;2;4;17;134m[48;2;5;20;156m▀[38;2;4;17;135m[48;2;9;25;156m▀[38;2;4;16;138m[48;2;3;14;121m▀[38;2;4;16;142m[48;2;4;18;120m▀[38;2;4;19;135m[48;2;3;19;118m▀[38;2;3;21;133m[48;2;3;19;107m▀[38;2;4;21;114m[48;2;5;20;92m▀[38;2;5;22;96m[48;2;5;22;81m▀[38;2;5;24;107m[48;2;5;24;88m▀[38;2;8;34;120m[48;2;10;35;103m▀[0m
|
||||
[38;2;2;4;19m[48;2;2;6;27m▀[38;2;2;3;20m[48;2;1;8;35m▀[38;2;4;4;29m[48;2;6;9;44m▀[38;2;3;7;40m[48;2;5;10;53m▀[38;2;2;9;48m[48;2;0;10;60m▀[38;2;2;9;63m[48;2;0;11;72m▀[38;2;2;8;72m[48;2;2;5;109m▀[38;2;3;11;90m[48;2;2;3;143m▀[38;2;4;12;100m[48;2;2;6;142m▀[38;2;2;14;113m[48;2;2;4;162m▀[38;2;1;10;131m[48;2;7;12;193m▀[38;2;8;20;156m[48;2;7;10;204m▀[38;2;4;13;183m[48;2;2;4;197m▀[38;2;1;2;237m[48;2;0;12;185m▀[38;2;3;8;230m[48;2;6;15;154m▀[38;2;10;14;180m[48;2;18;16;80m▀[38;2;15;21;87m[48;2;10;19;67m▀[38;2;26;33;78m[48;2;12;24;74m▀[38;2;27;39;79m[48;2;40;43;74m▀[38;2;45;43;93m[48;2;36;41;105m▀[38;2;47;51;94m[48;2;35;50;103m▀[38;2;61;68;41m[48;2;65;77;39m▀[38;2;98;96;11m[48;2;79;80;43m▀[38;2;94;101;18m[48;2;108;103;27m▀[38;2;90;106;24m[48;2;126;112;22m▀[38;2;107;140;15m[48;2;127;128;24m▀[38;2;112;144;24m[48;2;74;180;27m▀[38;2;96;112;56m[48;2;88;116;62m▀[38;2;78;85;62m[48;2;97;82;70m▀[38;2;76;76;72m[48;2;76;82;74m▀[38;2;100;99;90m[48;2;92;90;84m▀[38;2;98;92;88m[48;2;96;95;84m▀[38;2;81;77;66m[48;2;82;78;63m▀[38;2;109;114;82m[48;2;110;108;74m▀[38;2;140;142;96m[48;2;148;144;91m▀[38;2;141;124;63m[48;2;150;127;70m▀[38;2;122;125;72m[48;2;119;104;50m▀[38;2;133;120;58m[48;2;105;87;49m▀[38;2;112;99;113m[48;2;78;67;141m▀[38;2;45;68;208m[48;2;61;68;208m▀[38;2;18;23;217m[48;2;28;36;216m▀[38;2;12;14;210m[48;2;11;11;222m▀[38;2;8;10;203m[48;2;9;10;218m▀[38;2;7;11;203m[48;2;13;24;213m▀[38;2;5;10;207m[48;2;5;10;215m▀[38;2;4;13;216m[48;2;3;12;216m▀[38;2;5;17;217m[48;2;4;22;219m▀[38;2;5;16;218m[48;2;7;29;218m▀[38;2;5;18;219m[48;2;5;24;217m▀[38;2;6;19;218m[48;2;7;29;219m▀[38;2;4;20;215m[48;2;5;28;220m▀[38;2;5;21;209m[48;2;6;36;221m▀[38;2;3;16;208m[48;2;5;36;222m▀[38;2;3;12;210m[48;2;6;33;222m▀[38;2;4;13;209m[48;2;6;33;224m▀[38;2;2;10;202m[48;2;4;24;222m▀[38;2;1;4;199m[48;2;2;18;219m▀[38;2;2;3;196m[48;2;1;11;214m▀[38;2;1;4;194m[48;2;2;13;214m▀[38;2;1;2;195m[48;2;3;15;215m▀[38;2;3;3;197m[48;2;1;6;208m▀[38;2;4;5;193m[48;2;1;1;204m▀[38;2;1;2;195m[48;2;2;6;211m▀[38;2;1;3;190m[48;2;1;5;215m▀[38;2;3;6;195m[48;2;2;4;209m▀[38;2;2;4;188m[48;2;1;2;203m▀[38;2;2;2;167m[48;2;2;1;201m▀[38;2;3;6;141m[48;2;1;0;188m▀[38;2;2;9;139m[48;2;3;4;173m▀[38;2;3;12;127m[48;2;4;6;165m▀[38;2;4;17;115m[48;2;2;13;113m▀[38;2;3;15;115m[48;2;2;15;112m▀[38;2;3;14;109m[48;2;3;14;115m▀[38;2;4;18;110m[48;2;2;15;104m▀[38;2;4;17;99m[48;2;2;16;102m▀[38;2;5;19;103m[48;2;3;18;98m▀[38;2;5;17;81m[48;2;4;15;87m▀[38;2;7;17;67m[48;2;5;16;79m▀[38;2;7;19;74m[48;2;7;17;81m▀[38;2;9;34;110m[48;2;9;22;111m▀[0m
|
||||
[38;2;1;8;34m[48;2;2;7;35m▀[38;2;3;13;51m[48;2;3;13;52m▀[38;2;3;14;56m[48;2;2;14;56m▀[38;2;4;8;44m[48;2;2;9;44m▀[38;2;7;11;51m[48;2;4;11;52m▀[38;2;3;12;73m[48;2;4;12;60m▀[38;2;3;6;110m[48;2;4;8;100m▀[38;2;2;5;144m[48;2;1;5;148m▀[38;2;1;7;147m[48;2;1;7;160m▀[38;2;3;7;169m[48;2;1;9;177m▀[38;2;4;9;197m[48;2;2;8;196m▀[38;2;2;4;199m[48;2;2;11;200m▀[38;2;4;7;197m[48;2;4;7;204m▀[38;2;5;9;181m[48;2;12;12;151m▀[38;2;11;12;109m[48;2;17;14;60m▀[38;2;15;16;68m[48;2;13;15;55m▀[38;2;15;17;72m[48;2;12;17;60m▀[38;2;14;22;74m[48;2;11;22;72m▀[38;2;17;29;85m[48;2;15;25;79m▀[38;2;34;39;106m[48;2;20;33;101m▀[38;2;34;45;93m[48;2;30;48;106m▀[38;2;49;67;59m[48;2;49;71;62m▀[38;2;72;83;77m[48;2;76;90;58m▀[38;2;95;110;62m[48;2;97;107;75m▀[38;2;113;121;34m[48;2;132;125;49m▀[38;2;139;116;39m[48;2;138;136;36m▀[38;2;120;155;31m[48;2;103;138;39m▀[38;2;160;118;39m[48;2;144;150;35m▀[38;2;189;66;50m[48;2;178;79;50m▀[38;2;110;77;67m[48;2;137;72;58m▀[38;2;91;89;85m[48;2;79;87;70m▀[38;2;100;97;92m[48;2;94;94;81m▀[38;2;90;79;63m[48;2;95;89;70m▀[38;2;108;93;60m[48;2;90;86;56m▀[38;2;116;114;82m[48;2;110;107;84m▀[38;2;132;116;66m[48;2;119;113;77m▀[38;2;120;96;44m[48;2;119;102;40m▀[38;2;122;92;55m[48;2;135;108;71m▀[38;2;66;55;184m[48;2;65;62;190m▀[38;2;50;43;221m[48;2;34;52;233m▀[38;2;36;42;212m[48;2;21;27;222m▀[38;2;12;20;221m[48;2;12;17;218m▀[38;2;10;14;215m[48;2;9;14;217m▀[38;2;8;13;213m[48;2;6;10;218m▀[38;2;8;29;214m[48;2;7;17;217m▀[38;2;9;26;213m[48;2;12;35;216m▀[38;2;7;23;213m[48;2;9;25;215m▀[38;2;6;19;216m[48;2;7;17;217m▀[38;2;8;20;217m[48;2;8;22;219m▀[38;2;7;22;218m[48;2;7;28;219m▀[38;2;7;21;221m[48;2;7;31;222m▀[38;2;6;30;221m[48;2;7;32;224m▀[38;2;5;36;221m[48;2;5;32;223m▀[38;2;4;32;221m[48;2;4;30;222m▀[38;2;5;30;221m[48;2;3;27;224m▀[38;2;5;27;223m[48;2;1;29;223m▀[38;2;3;26;225m[48;2;2;29;223m▀[38;2;1;26;225m[48;2;3;31;222m▀[38;2;2;22;225m[48;2;2;26;221m▀[38;2;2;17;223m[48;2;1;16;221m▀[38;2;1;12;220m[48;2;2;17;223m▀[38;2;1;8;219m[48;2;2;19;223m▀[38;2;2;12;221m[48;2;1;12;216m▀[38;2;2;9;218m[48;2;2;9;208m▀[38;2;1;4;214m[48;2;1;7;206m▀[38;2;6;9;212m[48;2;2;8;209m▀[38;2;3;6;206m[48;2;1;4;194m▀[38;2;1;2;196m[48;2;1;2;188m▀[38;2;3;4;177m[48;2;1;4;179m▀[38;2;3;5;173m[48;2;2;5;172m▀[38;2;3;13;132m[48;2;3;14;138m▀[38;2;3;15;123m[48;2;4;16;122m▀[38;2;3;15;120m[48;2;3;16;125m▀[38;2;3;16;113m[48;2;3;16;114m▀[38;2;2;18;100m[48;2;3;19;98m▀[38;2;2;19;101m[48;2;2;20;104m▀[38;2;4;17;96m[48;2;4;17;95m▀[38;2;6;17;87m[48;2;6;17;90m▀[38;2;7;19;91m[48;2;7;19;96m▀[38;2;8;32;101m[48;2;7;35;116m▀[0m
|
||||
[38;2;1;7;31m[48;2;1;7;33m▀[38;2;2;13;50m[48;2;2;13;50m▀[38;2;2;13;55m[48;2;3;14;56m▀[38;2;2;9;45m[48;2;2;9;43m▀[38;2;1;11;49m[48;2;2;10;55m▀[38;2;3;12;42m[48;2;2;11;65m▀[38;2;5;5;109m[48;2;5;6;127m▀[38;2;3;2;170m[48;2;5;4;171m▀[38;2;2;8;176m[48;2;3;8;182m▀[38;2;2;11;187m[48;2;2;10;192m▀[38;2;2;13;193m[48;2;4;12;196m▀[38;2;4;13;198m[48;2;4;4;205m▀[38;2;2;4;198m[48;2;4;4;175m▀[38;2;7;9;119m[48;2;5;12;76m▀[38;2;6;14;58m[48;2;6;13;67m▀[38;2;9;13;55m[48;2;9;13;62m▀[38;2;11;14;59m[48;2;12;14;56m▀[38;2;11;20;67m[48;2;14;17;59m▀[38;2;17;24;72m[48;2;15;20;65m▀[38;2;17;25;94m[48;2;21;29;88m▀[38;2;16;37;143m[48;2;25;41;112m▀[38;2;49;70;113m[48;2;33;52;118m▀[38;2;74;82;65m[48;2;51;77;85m▀[38;2;93;84;90m[48;2;66;84;72m▀[38;2;108;110;78m[48;2;82;87;76m▀[38;2;130;161;21m[48;2;97;116;56m▀[38;2;120;149;28m[48;2;106;122;47m▀[38;2;87;119;58m[48;2;82;108;55m▀[38;2;113;102;54m[48;2;93;123;44m▀[38;2;115;88;46m[48;2;95;99;51m▀[38;2;126;106;40m[48;2;108;97;48m▀[38;2;97;101;66m[48;2;103;100;44m▀[38;2;99;108;83m[48;2;103;105;60m▀[38;2;103;100;71m[48;2;109;95;64m▀[38;2;101;91;63m[48;2;109;95;55m▀[38;2;108;98;53m[48;2;119;97;31m▀[38;2;137;119;33m[48;2;114;85;50m▀[38;2;106;91;152m[48;2;68;59;162m▀[38;2;50;57;226m[48;2;43;61;222m▀[38;2;38;58;229m[48;2;46;58;231m▀[38;2;18;20;229m[48;2;22;27;231m▀[38;2;12;15;217m[48;2;9;15;222m▀[38;2;9;13;215m[48;2;7;17;217m▀[38;2;6;12;214m[48;2;7;15;218m▀[38;2;6;15;218m[48;2;5;18;221m▀[38;2;4;19;218m[48;2;4;28;221m▀[38;2;4;26;219m[48;2;4;31;223m▀[38;2;6;32;221m[48;2;7;37;225m▀[38;2;5;31;222m[48;2;10;44;224m▀[38;2;5;36;223m[48;2;8;28;225m▀[38;2;5;43;224m[48;2;8;36;226m▀[38;2;7;44;225m[48;2;9;46;226m▀[38;2;8;39;225m[48;2;7;45;225m▀[38;2;7;36;227m[48;2;7;42;225m▀[38;2;7;32;226m[48;2;7;33;226m▀[38;2;5;36;224m[48;2;4;37;218m▀[38;2;2;30;223m[48;2;2;30;218m▀[38;2;2;26;222m[48;2;1;23;218m▀[38;2;2;25;223m[48;2;1;28;219m▀[38;2;2;21;225m[48;2;2;29;220m▀[38;2;2;17;224m[48;2;2;18;220m▀[38;2;3;19;217m[48;2;2;16;216m▀[38;2;2;11;207m[48;2;1;17;213m▀[38;2;1;8;206m[48;2;1;12;220m▀[38;2;2;10;208m[48;2;3;11;213m▀[38;2;1;7;197m[48;2;2;7;199m▀[38;2;4;9;176m[48;2;1;3;187m▀[38;2;5;7;179m[48;2;3;4;172m▀[38;2;2;2;176m[48;2;3;5;166m▀[38;2;2;5;175m[48;2;3;5;164m▀[38;2;4;15;143m[48;2;3;15;136m▀[38;2;4;17;124m[48;2;4;17;126m▀[38;2;4;17;128m[48;2;4;17;128m▀[38;2;4;18;123m[48;2;5;18;125m▀[38;2;4;18;114m[48;2;5;19;113m▀[38;2;3;19;106m[48;2;5;20;107m▀[38;2;5;21;110m[48;2;7;25;122m▀[38;2;7;22;102m[48;2;9;25;100m▀[38;2;7;24;102m[48;2;9;25;103m▀[38;2;9;40;145m[48;2;12;31;120m▀[0m
|
||||
[38;2;3;8;37m[48;2;2;9;39m▀[38;2;3;14;54m[48;2;2;14;62m▀[38;2;3;14;57m[48;2;1;11;81m▀[38;2;2;10;53m[48;2;1;9;80m▀[38;2;2;11;78m[48;2;3;10;100m▀[38;2;3;11;94m[48;2;3;9;102m▀[38;2;1;6;141m[48;2;2;4;156m▀[38;2;2;5;181m[48;2;1;3;198m▀[38;2;2;10;191m[48;2;3;7;201m▀[38;2;3;8;203m[48;2;3;2;204m▀[38;2;5;3;204m[48;2;4;2;204m▀[38;2;3;1;218m[48;2;3;2;210m▀[38;2;4;7;155m[48;2;4;6;129m▀[38;2;7;10;61m[48;2;5;13;65m▀[38;2;5;12;77m[48;2;7;16;73m▀[38;2;8;15;72m[48;2;8;18;77m▀[38;2;9;15;58m[48;2;6;16;65m▀[38;2;9;16;58m[48;2;9;19;70m▀[38;2;11;20;64m[48;2;21;28;69m▀[38;2;23;34;91m[48;2;20;27;63m▀[38;2;22;40;101m[48;2;18;28;66m▀[38;2;31;51;95m[48;2;27;39;72m▀[38;2;54;66;72m[48;2;43;56;72m▀[38;2;65;77;64m[48;2;58;76;71m▀[38;2;67;85;69m[48;2;66;84;73m▀[38;2;77;93;72m[48;2;76;89;84m▀[38;2;102;123;60m[48;2;97;114;63m▀[38;2;99;114;35m[48;2;117;143;40m▀[38;2;115;138;21m[48;2;120;149;28m▀[38;2;103;103;42m[48;2;108;125;33m▀[38;2;88;79;53m[48;2;73;94;44m▀[38;2;110;108;42m[48;2;103;105;46m▀[38;2;115;90;49m[48;2;148;103;32m▀[38;2;99;74;55m[48;2;138;106;47m▀[38;2;115;91;61m[48;2;143;109;52m▀[38;2;97;79;52m[48;2;110;82;47m▀[38;2;106;75;92m[48;2;110;71;54m▀[38;2;65;76;175m[48;2;64;56;179m▀[38;2;32;53;221m[48;2;32;41;237m▀[38;2;37;39;234m[48;2;19;21;236m▀[38;2;18;21;230m[48;2;13;18;232m▀[38;2;8;14;214m[48;2;10;14;223m▀[38;2;9;15;207m[48;2;7;11;220m▀[38;2;7;15;210m[48;2;6;9;222m▀[38;2;7;15;212m[48;2;8;12;214m▀[38;2;7;17;214m[48;2;7;16;206m▀[38;2;7;23;216m[48;2;7;20;210m▀[38;2;7;28;218m[48;2;10;20;213m▀[38;2;14;39;218m[48;2;7;23;213m▀[38;2;10;28;220m[48;2;7;37;215m▀[38;2;11;24;221m[48;2;10;35;215m▀[38;2;9;30;223m[48;2;10;35;217m▀[38;2;8;48;221m[48;2;9;43;216m▀[38;2;9;49;218m[48;2;9;44;215m▀[38;2;5;35;216m[48;2;7;36;216m▀[38;2;2;32;215m[48;2;6;35;214m▀[38;2;3;34;216m[48;2;5;37;213m▀[38;2;5;32;212m[48;2;6;31;212m▀[38;2;6;28;207m[48;2;12;22;210m▀[38;2;5;23;203m[48;2;12;17;204m▀[38;2;7;13;186m[48;2;11;15;189m▀[38;2;7;13;182m[48;2;8;16;182m▀[38;2;5;12;192m[48;2;5;16;189m▀[38;2;4;10;194m[48;2;4;14;191m▀[38;2;2;6;193m[48;2;3;12;192m▀[48;2;4;14;192m▀[38;2;4;6;186m[48;2;4;15;185m▀[38;2;3;8;174m[48;2;4;17;182m▀[38;2;4;9;176m[48;2;3;18;187m▀[38;2;4;10;175m[48;2;5;19;186m▀[38;2;4;18;146m[48;2;5;24;160m▀[38;2;3;20;141m[48;2;4;27;156m▀[38;2;4;21;143m▀[38;2;5;22;142m[48;2;4;28;153m▀[38;2;5;23;133m▀[38;2;5;25;132m[48;2;5;28;154m▀[38;2;5;24;132m[48;2;7;27;158m▀[38;2;6;26;127m[48;2;8;30;159m▀[38;2;8;30;140m[48;2;8;33;166m▀[38;2;12;47;159m[48;2;10;51;166m▀[0m
|
||||
[38;2;0;7;61m[48;2;0;4;84m▀[38;2;2;9;95m[48;2;1;9;103m▀[38;2;1;9;106m[48;2;2;8;113m▀[38;2;2;6;101m[48;2;3;4;115m▀[38;2;2;6;115m[48;2;3;7;119m▀[38;2;3;7;115m[48;2;3;9;113m▀[38;2;2;3;168m[48;2;3;3;164m▀[38;2;2;2;196m[48;2;3;2;195m▀[38;2;5;3;199m[48;2;3;2;196m▀[38;2;2;1;201m[48;2;2;2;195m▀[38;2;3;2;206m[48;2;2;1;201m▀[38;2;2;2;200m[48;2;2;2;188m▀[38;2;5;9;113m[48;2;6;9;99m▀[38;2;6;18;71m[48;2;5;15;62m▀[38;2;4;17;81m[48;2;1;17;77m▀[38;2;3;18;85m[48;2;4;19;82m▀[38;2;4;22;93m[48;2;6;17;85m▀[38;2;13;24;94m[48;2;19;29;96m▀[38;2;28;29;47m[48;2;30;35;50m▀[38;2;20;21;20m[48;2;22;27;34m▀[38;2;21;25;26m[48;2;28;36;43m▀[38;2;20;34;30m[48;2;33;48;49m▀[38;2;23;47;35m[48;2;28;44;47m▀[38;2;43;76;48m[48;2;26;44;46m▀[38;2;59;80;51m[48;2;42;57;60m▀[38;2;65;80;61m[48;2;49;65;53m▀[38;2;80;105;75m[48;2;64;80;56m▀[38;2;86;111;50m[48;2;72;86;60m▀[38;2;84;104;29m[48;2;69;83;44m▀[38;2;83;105;34m[48;2;74;88;48m▀[38;2;93;123;40m[48;2;93;114;54m▀[38;2;107;123;48m[48;2;102;118;38m▀[38;2;164;144;32m[48;2;130;165;31m▀[38;2;181;159;39m[48;2;143;186;62m▀[38;2;151;136;53m[48;2;123;167;119m▀[38;2;130;95;90m[48;2;104;111;189m▀[38;2;78;81;169m[48;2;82;73;219m▀[38;2;63;79;225m[48;2;68;83;224m▀[38;2;34;47;240m[48;2;35;49;235m▀[38;2;16;29;235m[48;2;20;46;234m▀[38;2;13;25;235m[48;2;16;31;232m▀[38;2;9;17;234m[48;2;10;14;230m▀[38;2;6;14;233m[48;2;8;13;230m▀[38;2;7;10;235m[48;2;7;11;234m▀[38;2;6;16;225m[48;2;5;20;224m▀[38;2;6;24;210m[48;2;6;23;208m▀[38;2;6;25;217m[48;2;7;26;211m▀[38;2;8;30;218m[48;2;7;24;211m▀[38;2;12;49;213m[48;2;10;32;210m▀[38;2;7;41;210m[48;2;7;34;207m▀[38;2;8;40;212m[48;2;8;34;211m▀[38;2;10;32;214m[48;2;10;31;215m▀[38;2;10;37;214m[48;2;12;36;216m▀[38;2;10;39;216m[48;2;14;46;212m▀[38;2;10;41;217m[48;2;12;39;212m▀[38;2;10;45;215m[48;2;12;40;213m▀[38;2;7;39;212m[48;2;12;39;214m▀[38;2;7;36;213m[48;2;10;45;214m▀[38;2;10;27;214m[48;2;9;43;217m▀[38;2;12;21;215m[48;2;10;34;219m▀[38;2;10;19;205m[48;2;10;24;206m▀[38;2;7;17;193m[48;2;9;21;198m▀[38;2;6;17;189m[48;2;7;22;194m▀[38;2;6;16;193m[48;2;6;21;191m▀[38;2;5;15;194m[48;2;6;19;188m▀[38;2;4;16;191m[48;2;5;20;196m▀[38;2;4;17;183m[48;2;4;21;190m▀[38;2;5;18;185m▀[38;2;5;18;194m[48;2;5;21;198m▀[38;2;4;20;190m[48;2;5;23;195m▀[38;2;4;27;163m[48;2;4;30;169m▀[38;2;4;28;159m[48;2;5;31;166m▀[38;2;4;28;158m[48;2;5;32;167m▀[38;2;5;30;155m[48;2;5;32;166m▀[38;2;5;30;154m[48;2;5;33;165m▀[38;2;6;30;154m[48;2;6;36;164m▀[38;2;7;31;154m[48;2;8;36;167m▀[38;2;9;34;158m[48;2;10;38;169m▀[38;2;10;37;167m[48;2;12;42;179m▀[38;2;9;53;172m[48;2;14;50;178m▀[0m
|
||||
[38;2;1;9;68m[48;2;1;13;53m▀[38;2;2;13;83m[48;2;2;16;56m▀[38;2;2;12;91m[48;2;2;17;58m▀[38;2;1;6;89m[48;2;2;14;49m▀[38;2;5;14;105m[48;2;2;13;75m▀[38;2;5;18;113m[48;2;3;13;104m▀[38;2;6;13;163m[48;2;2;5;160m▀[38;2;2;1;184m[48;2;1;2;181m▀[38;2;2;3;187m[48;2;2;2;184m▀[38;2;3;2;192m[48;2;2;2;192m▀[38;2;3;1;204m[48;2;4;2;208m▀[38;2;3;2;193m[48;2;4;2;205m▀[38;2;4;10;99m[48;2;4;12;109m▀[38;2;2;17;64m[48;2;7;21;62m▀[38;2;4;18;77m[48;2;9;21;74m▀[38;2;7;19;86m[48;2;10;22;80m▀[38;2;9;25;101m[48;2;12;26;89m▀[38;2;15;29;87m[48;2;30;34;59m▀[38;2;17;18;27m[48;2;9;10;11m▀[38;2;14;19;37m[48;2;9;11;16m▀[38;2;24;29;53m[48;2;14;16;20m▀[38;2;38;46;61m[48;2;19;19;27m▀[38;2;64;71;69m[48;2;21;19;32m▀[38;2;66;70;66m[48;2;40;34;51m▀[38;2;67;62;67m[48;2;80;66;91m▀[38;2;40;42;44m[48;2;52;48;64m▀[38;2;33;37;34m[48;2;22;29;33m▀[38;2;38;43;37m[48;2;23;33;35m▀[38;2;49;54;39m[48;2;24;35;37m▀[38;2;64;69;37m[48;2;41;43;44m▀[38;2;61;68;43m[48;2;65;59;55m▀[38;2;79;83;50m[48;2;89;77;48m▀[38;2;92;102;67m[48;2;97;81;38m▀[38;2;95;124;91m[48;2;117;91;46m▀[38;2;112;141;169m[48;2;122;108;133m▀[38;2;82;115;226m[48;2;93;104;210m▀[38;2;91;96;205m[48;2;91;110;217m▀[38;2;68;83;222m[48;2;51;87;225m▀[38;2;31;47;237m[48;2;30;62;236m▀[38;2;20;34;237m[48;2;21;35;235m▀[38;2;14;26;234m[48;2;15;28;232m▀[38;2;9;23;230m[48;2;10;26;230m▀[38;2;8;13;231m[48;2;9;19;231m▀[38;2;7;9;234m[48;2;8;14;235m▀[38;2;6;17;222m[48;2;7;17;223m▀[38;2;6;20;207m[48;2;7;21;207m▀[38;2;7;18;210m[48;2;8;20;210m▀[38;2;9;19;209m[48;2;9;24;210m▀[38;2;7;23;210m[48;2;8;23;210m▀[38;2;7;34;212m[48;2;8;30;211m▀[38;2;8;35;214m[48;2;11;28;213m▀[38;2;8;37;214m[48;2;10;31;214m▀[38;2;11;42;215m[48;2;9;39;215m▀[38;2;12;47;214m[48;2;10;51;217m▀[38;2;10;51;220m[48;2;9;59;228m▀[38;2;9;53;224m[48;2;10;58;232m▀[38;2;10;47;227m[48;2;10;57;236m▀[38;2;9;53;225m[48;2;8;58;237m▀[38;2;8;57;226m[48;2;7;68;235m▀[38;2;9;40;229m[48;2;6;64;236m▀[38;2;10;31;221m[48;2;8;47;229m▀[38;2;8;31;214m[48;2;8;36;227m▀[38;2;7;27;214m[48;2;8;28;227m▀[38;2;6;27;203m[48;2;8;30;217m▀[38;2;6;26;194m[48;2;6;28;208m▀[38;2;5;25;203m[48;2;6;27;207m▀[38;2;6;34;199m[48;2;7;30;203m▀[38;2;8;34;203m[48;2;5;29;207m▀[38;2;6;26;206m[48;2;5;29;210m▀[38;2;6;28;204m[48;2;5;30;209m▀[38;2;5;34;179m[48;2;4;37;184m▀[38;2;5;34;178m[48;2;5;37;185m▀[38;2;6;36;182m[48;2;6;38;187m▀[38;2;6;37;181m[48;2;6;40;187m▀[38;2;5;38;181m[48;2;7;40;191m▀[38;2;6;41;184m[48;2;7;40;189m▀[38;2;8;42;185m[48;2;8;42;187m▀[38;2;11;43;181m[48;2;10;46;185m▀[38;2;11;48;189m[48;2;11;51;187m▀[38;2;13;63;186m[48;2;11;67;198m▀[0m
|
||||
[38;2;1;15;65m[48;2;1;14;56m▀[38;2;2;16;62m[48;2;1;15;66m▀[38;2;2;17;67m[48;2;2;16;66m▀[38;2;2;11;70m[48;2;5;15;73m▀[38;2;2;11;110m[48;2;3;13;115m▀[38;2;3;17;129m[48;2;2;12;125m▀[38;2;5;12;160m[48;2;1;5;160m▀[38;2;1;2;180m[48;2;2;2;181m▀[38;2;2;3;184m[48;2;2;3;188m▀[38;2;3;3;192m[48;2;2;2;197m▀[38;2;4;2;210m[48;2;4;2;210m▀[38;2;2;3;217m[48;2;2;5;215m▀[38;2;6;13;132m[48;2;8;15;151m▀[38;2;9;23;71m[48;2;13;24;67m▀[38;2;11;26;86m[48;2;12;25;86m▀[38;2;15;27;74m[48;2;9;25;86m▀[38;2;14;23;57m[48;2;21;24;58m▀[38;2;23;26;31m[48;2;39;24;24m▀[38;2;9;8;10m[48;2;17;14;15m▀[38;2;19;17;19m[48;2;19;15;16m▀[38;2;23;20;19m[48;2;22;16;19m▀[38;2;21;23;21m[48;2;28;26;22m▀[38;2;36;48;24m[48;2;66;71;26m▀[38;2;55;55;23m[48;2;113;91;34m▀[38;2;64;53;21m[48;2;121;83;40m▀[38;2;60;27;22m[48;2;63;25;23m▀[38;2;67;22;25m[48;2;81;20;27m▀[38;2;83;27;25m[48;2;102;25;25m▀[38;2;103;34;31m[48;2;117;29;20m▀[38;2;100;37;37m[48;2;113;38;31m▀[38;2;88;59;69m[48;2;115;50;65m▀[38;2;109;84;88m[48;2;122;66;77m▀[38;2;126;99;56m[48;2;125;77;64m▀[38;2;142;113;73m[48;2;122;66;85m▀[38;2;103;113;148m[48;2;122;71;79m▀[38;2;93;103;179m[48;2;146;88;72m▀[38;2;129;165;231m[48;2;189;137;104m▀[38;2;89;131;238m[48;2;161;134;185m▀[38;2;31;63;235m[48;2;36;55;236m▀[38;2;22;37;239m[48;2;18;41;244m▀[38;2;15;32;237m[48;2;15;34;242m▀[38;2;12;28;236m[48;2;11;30;239m▀[38;2;9;25;234m[48;2;9;27;236m▀[38;2;7;23;235m[48;2;7;24;237m▀[38;2;7;28;226m[48;2;8;27;228m▀[38;2;7;29;211m[48;2;6;31;213m▀[38;2;8;27;213m[48;2;7;31;214m▀[38;2;8;27;212m[48;2;7;31;215m▀[38;2;7;29;214m[48;2;7;30;216m▀[38;2;9;31;216m[48;2;8;32;217m▀[38;2;9;35;217m[48;2;8;34;219m▀[38;2;11;38;218m[48;2;10;38;223m▀[38;2;11;40;222m[48;2;10;46;224m▀[38;2;9;59;222m[48;2;11;55;225m▀[38;2;8;58;231m[48;2;9;57;232m▀[38;2;10;58;236m[48;2;9;61;232m▀[38;2;12;57;237m[48;2;14;61;232m▀[38;2;12;63;237m[48;2;16;65;231m▀[38;2;9;65;235m[48;2;10;59;230m▀[38;2;7;66;235m[48;2;7;60;230m▀[38;2;9;51;231m[48;2;7;60;226m▀[38;2;9;38;227m[48;2;9;53;223m▀[38;2;14;48;227m[48;2;11;42;225m▀[38;2;12;38;218m[48;2;10;35;218m▀[38;2;9;25;207m[48;2;9;32;211m▀[38;2;9;27;203m[48;2;8;28;209m▀[38;2;7;27;201m[48;2;9;27;202m▀[38;2;11;37;206m[48;2;8;29;200m▀[38;2;9;27;199m[48;2;8;27;206m▀[38;2;7;28;197m[48;2;9;30;204m▀[38;2;8;36;172m[48;2;8;35;182m▀[38;2;8;36;165m[48;2;7;36;177m▀[38;2;8;36;169m[48;2;8;38;180m▀[38;2;8;38;169m▀[38;2;8;38;173m[48;2;8;40;182m▀[38;2;9;39;175m[48;2;9;42;186m▀[38;2;11;41;176m[48;2;10;44;185m▀[38;2;13;44;172m[48;2;12;46;183m▀[38;2;15;49;172m[48;2;13;51;187m▀[38;2;20;68;176m[48;2;28;70;163m▀[0m
|
||||
[38;2;2;15;56m[48;2;3;14;50m▀[38;2;2;15;66m[48;2;3;15;59m▀[38;2;3;14;70m[48;2;3;14;61m▀[38;2;8;16;61m[48;2;6;12;52m▀[38;2;3;12;80m[48;2;3;13;94m▀[38;2;3;10;92m[48;2;1;12;108m▀[38;2;2;8;118m[48;2;2;8;133m▀[38;2;3;4;148m[48;2;4;3;163m▀[38;2;3;2;165m[48;2;4;2;173m▀[38;2;3;2;167m[48;2;4;5;188m▀[38;2;3;7;176m[48;2;9;13;192m▀[38;2;7;10;187m[48;2;9;12;196m▀[38;2;11;15;158m[48;2;11;14;187m▀[38;2;22;24;57m[48;2;15;25;141m▀[38;2;19;21;46m[48;2;5;21;91m▀[38;2;7;15;53m[48;2;6;21;73m▀[38;2;12;19;65m[48;2;24;30;81m▀[38;2;46;35;60m[48;2;11;27;88m▀[38;2;26;23;36m[48;2;14;25;58m▀[38;2;16;16;34m[48;2;16;14;20m▀[38;2;18;16;36m[48;2;19;17;26m▀[38;2;17;17;39m[48;2;21;21;29m▀[38;2;17;13;41m[48;2;24;25;34m▀[38;2;28;17;54m[48;2;29;27;31m▀[38;2;35;26;67m[48;2;47;30;30m▀[38;2;18;26;50m[48;2;43;32;58m▀[38;2;20;29;48m[48;2;43;35;120m▀[38;2;25;32;50m[48;2;60;49;148m▀[38;2;26;39;81m[48;2;61;49;169m▀[38;2;51;44;98m[48;2;60;50;197m▀[38;2;81;50;66m[48;2;67;58;168m▀[38;2;95;59;54m[48;2;60;58;105m▀[38;2;111;78;40m[48;2;66;62;59m▀[38;2;132;80;36m[48;2;71;66;69m▀[38;2;163;100;56m[48;2;76;70;77m▀[38;2;206;163;138m[48;2;95;81;88m▀[38;2;134;103;143m[48;2;77;71;81m▀[38;2;63;47;167m[48;2;64;55;141m▀[38;2;28;59;239m[48;2;38;56;240m▀[38;2;18;49;244m[48;2;15;55;244m▀[38;2;14;37;244m[48;2;12;46;245m▀[38;2;11;32;240m[48;2;10;38;241m▀[38;2;10;25;236m[48;2;9;31;236m▀[38;2;9;25;237m[48;2;8;34;240m▀[38;2;8;29;225m[48;2;8;39;228m▀[38;2;8;27;210m[48;2;9;33;211m▀[38;2;9;28;212m[48;2;9;31;214m▀[38;2;9;31;212m[48;2;8;33;216m▀[38;2;7;30;212m[48;2;9;40;214m▀[38;2;9;29;213m[48;2;9;29;214m▀[38;2;10;30;215m[48;2;9;34;216m▀[38;2;8;37;218m[48;2;16;51;214m▀[38;2;8;47;220m[48;2;10;42;212m▀[38;2;9;50;224m[48;2;10;48;216m▀[38;2;9;54;224m[48;2;12;52;217m▀[38;2;9;58;224m[48;2;12;50;221m▀[38;2;11;55;228m[48;2;12;49;222m▀[38;2;11;55;227m[48;2;14;55;222m▀[38;2;9;61;225m[48;2;13;68;221m▀[38;2;9;61;227m[48;2;11;59;219m▀[38;2;7;66;226m[48;2;11;49;219m▀[38;2;8;63;226m[48;2;11;46;221m▀[38;2;9;45;227m[48;2;10;41;220m▀[38;2;8;44;224m[48;2;10;39;221m▀[38;2;8;41;225m[48;2;11;30;221m▀[38;2;7;35;224m[48;2;11;32;212m▀[38;2;8;34;215m[48;2;9;32;206m▀[38;2;7;34;199m[48;2;8;35;189m▀[38;2;8;34;200m[48;2;8;35;185m▀[38;2;8;33;207m[48;2;9;34;188m▀[38;2;7;34;200m[48;2;9;35;188m▀[38;2;6;36;205m[48;2;9;36;189m▀[38;2;6;36;206m[48;2;8;37;190m▀[38;2;7;36;204m[48;2;8;39;189m▀[38;2;9;39;208m[48;2;9;40;193m▀[38;2;9;40;214m[48;2;10;41;201m▀[38;2;10;44;203m[48;2;12;44;194m▀[38;2;12;48;192m[48;2;13;50;191m▀[38;2;13;51;196m[48;2;15;50;196m▀[38;2;14;65;195m[48;2;19;63;192m▀[0m
|
||||
[38;2;4;14;47m[48;2;8;13;58m▀[38;2;6;15;58m[48;2;7;16;77m▀[38;2;4;15;68m[48;2;6;17;90m▀[38;2;5;13;62m[48;2;6;15;84m▀[38;2;4;15;80m[48;2;5;16;92m▀[38;2;3;13;90m[48;2;4;16;99m▀[38;2;4;8;130m[48;2;3;9;141m▀[38;2;5;4;169m[48;2;3;4;173m▀[38;2;6;5;186m[48;2;6;10;178m▀[38;2;8;10;190m[48;2;9;13;187m▀[38;2;9;12;202m[48;2;8;12;199m▀[38;2;8;11;209m[48;2;6;5;210m▀[38;2;4;8;200m[48;2;3;5;208m▀[38;2;1;17;174m[48;2;6;15;194m▀[38;2;3;24;169m[48;2;19;26;202m▀[38;2;22;33;140m[48;2;11;20;208m▀[38;2;15;27;109m[48;2;1;17;206m▀[38;2;5;24;93m[48;2;6;23;199m▀[38;2;19;29;67m[48;2;11;27;164m▀[38;2;16;19;37m[48;2;17;32;160m▀[38;2;20;22;42m[48;2;17;48;177m▀[38;2;30;27;56m[48;2;12;48;183m▀[38;2;55;31;75m[48;2;48;54;215m▀[38;2;72;43;94m[48;2;95;52;224m▀[38;2;80;51;131m[48;2;66;60;229m▀[38;2;54;42;155m[48;2;59;55;210m▀[38;2;39;49;207m[48;2;67;55;208m▀[38;2;50;68;232m[48;2;71;57;227m▀[38;2;89;61;227m[48;2;55;69;235m▀[38;2;85;67;213m[48;2;55;80;236m▀[38;2;66;68;228m[48;2;41;90;248m▀[38;2;78;65;157m[48;2;115;104;234m▀[38;2;88;67;65m[48;2;151;94;57m▀[38;2;111;80;52m[48;2;167;99;19m▀[38;2;124;89;42m[48;2;213;115;34m▀[38;2;122;82;79m[48;2;212;117;136m▀[38;2;104;69;107m[48;2;103;76;233m▀[38;2;81;67;187m[48;2;88;54;227m▀[38;2;34;56;240m[48;2;37;61;234m▀[38;2;13;53;242m[48;2;16;50;246m▀[38;2;11;51;244m[48;2;14;44;244m▀[38;2;9;41;240m[48;2;11;38;242m▀[38;2;9;33;235m[48;2;11;31;239m▀[38;2;9;30;236m[48;2;10;29;240m▀[38;2;8;27;223m[48;2;10;28;230m▀[38;2;8;31;203m[48;2;8;36;215m▀[38;2;9;31;204m[48;2;9;34;215m▀[38;2;10;28;204m[48;2;10;33;216m▀[38;2;11;31;207m[48;2;10;33;218m▀[38;2;11;30;207m[48;2;13;42;216m▀[38;2;12;29;211m[48;2;9;35;214m▀[38;2;12;35;209m[48;2;10;36;216m▀[38;2;11;35;211m[48;2;11;38;219m▀[38;2;12;41;216m[48;2;11;39;221m▀[38;2;12;45;218m[48;2;11;43;224m▀[38;2;11;44;220m[48;2;12;48;225m▀[38;2;12;44;221m[48;2;14;48;223m▀[38;2;14;45;221m[48;2;18;50;219m▀[38;2;12;52;220m[48;2;16;52;222m▀[38;2;11;51;222m[48;2;13;39;221m▀[38;2;12;53;221m[48;2;17;49;219m▀[38;2;11;53;219m[48;2;16;55;218m▀[38;2;10;50;217m[48;2;13;38;219m▀[38;2;10;43;220m[48;2;16;38;217m▀[38;2;12;33;218m[48;2;13;32;217m▀[38;2;12;37;199m[48;2;11;35;202m▀[38;2;13;38;184m[48;2;7;38;179m▀[38;2;12;37;180m[48;2;12;36;174m▀[38;2;12;38;176m[48;2;14;36;176m▀[38;2;11;38;177m[48;2;14;36;175m▀[38;2;11;39;176m[48;2;12;38;179m▀[38;2;12;40;180m[48;2;12;39;177m▀[38;2;12;40;183m[48;2;13;42;172m▀[38;2;12;41;185m[48;2;15;43;176m▀[38;2;13;42;191m[48;2;15;44;179m▀[38;2;13;42;197m[48;2;15;45;191m▀[38;2;16;45;199m[48;2;17;49;196m▀[38;2;18;49;194m[48;2;20;55;181m▀[38;2;18;50;202m[48;2;23;57;183m▀[38;2;23;61;193m[48;2;36;71;161m▀[0m
|
||||
[38;2;13;14;60m[48;2;7;13;70m▀[38;2;5;18;82m[48;2;3;18;83m▀[38;2;3;18;94m[48;2;2;19;98m▀[38;2;2;16;91m[48;2;2;16;96m▀[38;2;1;18;101m[48;2;2;18;103m▀[38;2;1;18;103m[48;2;2;17;109m▀[38;2;2;13;132m[48;2;3;11;147m▀[38;2;5;8;167m[48;2;7;10;179m▀[38;2;8;13;173m[48;2;9;14;181m▀[38;2;10;14;183m[48;2;5;10;174m▀[38;2;6;6;200m[48;2;2;2;201m▀[38;2;2;2;209m[48;2;15;12;209m▀[38;2;13;13;215m[48;2;18;17;216m▀[38;2;23;22;218m[48;2;2;4;232m▀[38;2;9;11;221m[48;2;5;7;234m▀[38;2;3;7;225m[48;2;7;13;237m▀[38;2;8;13;229m[48;2;9;13;236m▀[38;2;9;14;232m[48;2;15;25;240m▀[38;2;16;24;237m[48;2;7;39;239m▀[38;2;8;38;235m[48;2;7;46;240m▀[38;2;7;44;239m[48;2;9;52;243m▀[38;2;17;47;237m[48;2;16;52;241m▀[38;2;31;58;224m[48;2;20;84;231m▀[38;2;56;67;216m[48;2;49;145;212m▀[38;2;118;56;224m[48;2;130;97;224m▀[38;2;106;66;236m[48;2;198;61;235m▀[38;2;35;77;249m[48;2;167;64;249m▀[38;2;23;88;249m[48;2;155;77;250m▀[38;2;12;100;254m[48;2;174;59;250m▀[38;2;45;89;252m[48;2;152;107;243m▀[38;2;88;78;247m[48;2;139;133;243m▀[38;2;133;99;215m[48;2;140;109;211m▀[38;2;185;96;116m[48;2;197;87;162m▀[38;2;193;94;44m[48;2;213;64;148m▀[38;2;214;115;59m[48;2;255;137;139m▀[38;2;183;127;178m[48;2;220;179;232m▀[38;2;107;82;218m[48;2;81;85;251m▀[38;2;119;59;199m[48;2;80;74;218m▀[38;2;38;53;231m[48;2;26;56;239m▀[38;2;17;47;246m[48;2;16;49;249m▀[38;2;14;40;246m[48;2;13;44;248m▀[38;2;12;37;243m[48;2;10;41;244m▀[38;2;12;29;240m[48;2;8;37;241m▀[38;2;11;27;242m[48;2;8;34;243m▀[38;2;10;29;232m[48;2;7;35;235m▀[38;2;8;37;219m[48;2;6;38;222m▀[38;2;9;35;220m[48;2;7;38;225m▀[38;2;9;34;218m[48;2;9;39;225m▀[38;2;9;35;219m[48;2;9;40;225m▀[38;2;8;37;220m[48;2;7;40;225m▀[38;2;9;36;222m[48;2;8;40;227m▀[38;2;9;39;223m▀[38;2;8;41;222m[48;2;8;41;227m▀[38;2;8;44;224m[48;2;10;43;228m▀[38;2;11;42;224m[48;2;10;43;229m▀[38;2;12;46;226m[48;2;8;46;232m▀[38;2;12;48;226m[48;2;8;48;232m▀[38;2;12;39;228m[48;2;8;49;233m▀[38;2;13;38;231m[48;2;8;49;238m▀[38;2;12;41;231m[48;2;9;47;241m▀[38;2;12;40;232m[48;2;9;46;243m▀[38;2;14;42;238m[48;2;7;52;250m▀[38;2;18;44;219m[48;2;33;44;228m▀[38;2;2;35;217m[48;2;120;24;177m▀[38;2;18;35;221m[48;2;215;16;151m▀[38;2;25;35;214m[48;2;237;14;111m▀[38;2;52;28;211m[48;2;244;13;111m▀[38;2;27;27;217m[48;2;230;12;138m▀[38;2;28;30;206m[48;2;231;11;169m▀[38;2;28;30;210m[48;2;231;10;185m▀[38;2;28;31;188m[48;2;234;12;127m▀[38;2;29;29;212m[48;2;235;11;132m▀[38;2;29;30;223m[48;2;235;10;170m▀[38;2;28;32;224m[48;2;234;9;195m▀[38;2;29;34;221m[48;2;233;9;225m▀[38;2;31;34;225m[48;2;235;8;241m▀[38;2;37;42;229m[48;2;235;9;246m▀[38;2;35;44;220m[48;2;233;11;249m▀[38;2;39;44;210m[48;2;234;12;255m▀[38;2;55;53;193m[48;2;229;12;255m▀[0m
|
||||
[38;2;3;15;76m[48;2;11;15;66m▀[38;2;3;19;85m[48;2;7;19;82m▀[38;2;1;19;97m[48;2;6;20;92m▀[38;2;2;16;97m[48;2;4;17;90m▀[38;2;2;18;100m[48;2;2;19;95m▀[38;2;2;14;118m[48;2;1;16;106m▀[38;2;6;13;140m[48;2;7;19;118m▀[38;2;11;22;146m[48;2;7;21;128m▀[38;2;4;12;151m[48;2;1;14;134m▀[38;2;1;11;147m[48;2;14;24;127m▀[38;2;14;18;174m[48;2;19;24;159m▀[38;2;19;21;183m[48;2;3;11;168m▀[38;2;3;7;196m[48;2;10;17;181m▀[38;2;8;7;220m[48;2;9;10;211m▀[38;2;9;11;223m[48;2;11;7;214m▀[38;2;10;9;229m[48;2;18;17;218m▀[38;2;16;20;231m[48;2;8;31;220m▀[38;2;8;34;233m[48;2;9;33;224m▀[38;2;6;43;233m[48;2;10;41;228m▀[38;2;8;52;242m[48;2;10;53;238m▀[38;2;11;57;247m[48;2;13;59;241m▀[38;2;12;66;248m[48;2;17;65;243m▀[38;2;17;76;248m[48;2;18;74;242m▀[38;2;18;129;241m[48;2;21;79;242m▀[38;2;29;151;236m[48;2;24;86;244m▀[38;2;97;124;243m[48;2;21;95;248m▀[38;2;172;91;249m[48;2;26;98;250m▀[38;2;172;94;249m[48;2;28;103;249m▀[38;2;171;95;241m[48;2;28;108;245m▀[38;2;193;110;235m[48;2;51;103;243m▀[38;2;166;123;200m[48;2;89;92;212m▀[38;2;127;106;160m[48;2;115;76;136m▀[38;2;152;72;129m[48;2;87;73;85m▀[38;2;152;68;104m[48;2;92;72;65m▀[38;2;167;87;129m[48;2;130;78;42m▀[38;2;187;103;170m[48;2;133;69;49m▀[38;2;146;87;189m[48;2;82;56;106m▀[38;2;87;70;223m[48;2;47;62;220m▀[38;2;20;56;241m[48;2;21;57;236m▀[38;2;15;51;247m[48;2;15;48;240m▀[38;2;13;49;246m[48;2;12;46;242m▀[38;2;9;42;243m[48;2;10;40;240m▀[38;2;10;36;241m[48;2;11;37;235m▀[38;2;9;35;243m[48;2;11;34;237m▀[38;2;8;35;233m[48;2;11;36;224m▀[38;2;8;38;221m[48;2;10;44;206m▀[38;2;7;40;223m[48;2;10;39;209m▀[38;2;7;40;222m[48;2;9;37;208m▀[38;2;8;41;223m[48;2;10;36;207m▀[38;2;8;42;223m[48;2;11;35;209m▀[38;2;8;41;226m[48;2;10;37;210m▀[38;2;8;40;226m[48;2;10;39;209m▀[38;2;8;39;227m[48;2;8;39;211m▀[38;2;10;40;229m[48;2;9;40;211m▀[38;2;10;42;230m[48;2;10;40;213m▀[38;2;9;43;230m[48;2;11;40;215m▀[38;2;10;43;232m[48;2;11;40;217m▀[38;2;9;45;234m[48;2;11;40;219m▀[38;2;10;45;235m[48;2;11;41;219m▀[38;2;11;44;237m▀[38;2;15;42;237m[48;2;12;41;221m▀[38;2;38;40;230m[48;2;15;44;219m▀[38;2;85;34;218m[48;2;13;47;220m▀[38;2;180;23;168m[48;2;6;47;215m▀[38;2;205;23;143m[48;2;11;44;208m▀[38;2;206;26;126m[48;2;12;48;209m▀[38;2;203;21;97m[48;2;12;47;186m▀[38;2;208;19;92m[48;2;12;46;186m▀[38;2;212;18;105m[48;2;13;47;186m▀[38;2;212;18;110m[48;2;13;47;185m▀[38;2;212;19;105m[48;2;14;51;171m▀[38;2;213;20;106m[48;2;14;52;171m▀[38;2;214;19;118m[48;2;15;53;171m▀[38;2;216;19;139m[48;2;16;54;173m▀[38;2;217;20;162m[48;2;19;54;177m▀[38;2;216;21;182m[48;2;21;57;181m▀[38;2;216;22;186m[48;2;23;58;185m▀[38;2;217;23;202m[48;2;25;61;197m▀[38;2;223;22;232m[48;2;25;64;215m▀[38;2;212;25;242m[48;2;55;78;162m▀[0m
|
||||
[38;2;11;16;70m[48;2;8;17;77m▀[38;2;6;20;87m[48;2;5;20;89m▀[38;2;3;22;94m[48;2;4;21;99m▀[38;2;3;18;90m[48;2;3;19;100m▀[38;2;3;20;93m[48;2;5;21;113m▀[38;2;2;18;106m[48;2;3;18;110m▀[38;2;6;19;119m[48;2;4;17;124m▀[38;2;4;17;130m[48;2;5;18;135m▀[38;2;12;21;136m[48;2;18;26;138m▀[38;2;20;25;139m[48;2;4;15;144m▀[38;2;3;12;156m[48;2;8;18;149m▀[38;2;9;16;161m[48;2;8;16;159m▀[38;2;7;14;181m[48;2;14;13;183m▀[38;2;13;8;212m[48;2;14;20;210m▀[38;2;16;17;214m[48;2;6;26;210m▀[38;2;8;27;216m[48;2;7;26;212m▀[38;2;8;29;219m[48;2;9;33;217m▀[38;2;10;37;223m[48;2;8;39;220m▀[38;2;11;42;228m[48;2;12;43;223m▀[38;2;12;51;236m[48;2;13;49;233m▀[38;2;14;56;240m[48;2;15;54;239m▀[38;2;17;63;242m[48;2;17;60;239m▀[38;2;19;73;244m[48;2;19;67;242m▀[38;2;22;78;243m[48;2;23;72;244m▀[38;2;26;84;243m[48;2;23;79;242m▀[38;2;31;87;247m[48;2;26;84;248m▀[38;2;30;93;252m[48;2;26;88;251m▀[38;2;32;98;251m[48;2;24;95;250m▀[38;2;33;100;249m[48;2;30;96;248m▀[38;2;16;101;250m[48;2;53;103;237m▀[38;2;42;95;255m[48;2;57;94;192m▀[38;2;133;107;219m[48;2;94;82;146m▀[38;2;139;89;69m[48;2;93;72;60m▀[38;2;121;72;59m[48;2;75;55;60m▀[38;2;160;98;76m[48;2;79;63;78m▀[38;2;129;97;165m[48;2;47;61;142m▀[38;2;27;66;232m[48;2;25;58;188m▀[38;2;15;60;230m[48;2;19;57;210m▀[38;2;18;53;237m[48;2;14;50;236m▀[38;2;13;51;242m[48;2;13;45;243m▀[38;2;11;47;241m[48;2;11;44;239m▀[38;2;10;42;237m[48;2;11;40;238m▀[38;2;10;39;233m[48;2;10;36;238m▀[38;2;10;36;234m[48;2;11;35;240m▀[38;2;11;41;223m[48;2;11;37;225m▀[38;2;11;51;203m[48;2;10;39;205m▀[38;2;8;48;204m[48;2;8;39;207m▀[38;2;9;43;205m[48;2;8;41;208m▀[38;2;9;38;205m[48;2;8;41;207m▀[38;2;9;40;206m[48;2;8;40;208m▀[38;2;8;41;208m[48;2;9;41;211m▀[38;2;8;43;207m▀[38;2;8;45;209m[48;2;9;40;211m▀[38;2;8;46;211m[48;2;9;42;211m▀[38;2;7;45;212m[48;2;8;43;211m▀[38;2;9;45;216m[48;2;9;42;215m▀[38;2;10;43;218m[48;2;9;42;217m▀[38;2;10;43;219m[48;2;9;42;218m▀[38;2;10;42;220m[48;2;9;41;220m▀[38;2;9;44;220m▀[38;2;9;46;222m[48;2;10;42;220m▀[38;2;8;49;221m[48;2;11;42;223m▀[38;2;9;47;224m[48;2;10;41;226m▀[38;2;12;47;216m[48;2;11;41;217m▀[38;2;14;43;199m[48;2;12;37;211m▀[38;2;12;44;195m[48;2;12;36;215m▀[38;2;11;46;196m[48;2;13;38;206m▀[38;2;12;46;201m[48;2;12;38;209m▀[38;2;12;45;207m[48;2;12;40;210m▀[38;2;12;49;212m[48;2;12;42;201m▀[38;2;15;52;190m[48;2;13;46;185m▀[38;2;15;51;190m[48;2;14;47;185m▀[38;2;14;52;195m[48;2;15;50;194m▀[38;2;14;53;199m[48;2;16;50;192m▀[38;2;17;55;202m[48;2;17;53;191m▀[38;2;19;57;206m[48;2;19;55;196m▀[38;2;19;59;209m[48;2;18;59;203m▀[38;2;25;64;208m[48;2;24;62;203m▀[38;2;36;70;190m[48;2;35;68;185m▀[38;2;86;88;149m[48;2;55;86;165m▀[0m
|
||||
[38;2;5;20;93m[48;2;5;20;87m▀[38;2;2;22;105m[48;2;3;21;112m▀[38;2;4;21;122m[48;2;0;22;139m▀[38;2;4;18;125m[48;2;1;21;124m▀[38;2;4;19;131m[48;2;4;22;119m▀[38;2;4;17;140m[48;2;2;20;129m▀[38;2;4;15;150m[48;2;9;24;129m▀[38;2;15;24;150m[48;2;12;25;147m▀[38;2;6;16;152m[48;2;5;19;164m▀[38;2;9;17;155m[48;2;7;22;152m▀[38;2;9;18;156m[48;2;13;22;165m▀[38;2;15;20;162m[48;2;11;34;164m▀[38;2;11;29;179m[48;2;5;34;175m▀[38;2;5;26;211m[48;2;7;29;205m▀[38;2;8;25;214m[48;2;6;35;211m▀[38;2;8;32;216m[48;2;6;38;212m▀[38;2;6;37;216m[48;2;9;41;215m▀[38;2;10;40;221m[48;2;11;42;222m▀[38;2;14;41;224m[48;2;12;44;221m▀[38;2;13;46;236m[48;2;12;54;218m▀[38;2;14;52;240m[48;2;14;64;220m▀[38;2;18;59;241m[48;2;14;65;235m▀[38;2;17;66;243m[48;2;13;74;242m▀[38;2;17;74;244m[48;2;12;82;242m▀[38;2;18;79;244m[48;2;12;84;242m▀[38;2;18;84;248m[48;2;11;89;249m▀[38;2;19;87;252m[48;2;10;96;252m▀[38;2;14;93;249m[48;2;10;102;255m▀[38;2;37;86;248m[48;2;10;91;255m▀[38;2;167;111;219m[48;2;76;99;242m▀[38;2;175;135;93m[48;2;124;113;156m▀[38;2;60;54;37m[48;2;74;58;46m▀[38;2;60;48;39m[48;2;65;47;26m▀[38;2;63;52;43m[48;2;70;49;44m▀[38;2;73;46;48m[48;2;68;48;61m▀[38;2;86;46;59m[48;2;70;62;99m▀[38;2;83;56;84m[48;2;55;96;177m▀[38;2;35;59;172m[48;2;14;88;229m▀[38;2;10;52;238m[48;2;9;56;246m▀[38;2;12;45;239m[48;2;10;48;247m▀[38;2;12;44;238m[48;2;11;48;242m▀[38;2;11;40;239m[48;2;10;45;244m▀[38;2;10;41;240m[48;2;10;44;245m▀[38;2;11;37;243m[48;2;9;44;250m▀[38;2;12;35;229m[48;2;9;44;237m▀[38;2;12;37;206m[48;2;10;46;215m▀[38;2;11;37;207m[48;2;10;47;217m▀[38;2;11;38;205m[48;2;11;45;213m▀[38;2;12;40;206m[48;2;11;52;215m▀[38;2;10;41;206m[48;2;16;61;213m▀[38;2;9;35;203m[48;2;10;37;208m▀[38;2;11;33;206m[48;2;8;36;208m▀[38;2;10;36;208m[48;2;9;39;210m▀[38;2;11;36;207m[48;2;8;38;213m▀[38;2;10;37;207m[48;2;7;38;213m▀[38;2;11;39;210m[48;2;8;39;215m▀[38;2;11;37;210m[48;2;9;40;216m▀[38;2;12;37;210m[48;2;10;40;218m▀[38;2;10;38;211m[48;2;10;39;221m▀[38;2;10;38;213m[48;2;10;39;222m▀[38;2;11;38;214m[48;2;10;38;223m▀[38;2;11;37;216m[48;2;10;37;224m▀[38;2;10;36;221m[48;2;13;37;224m▀[38;2;11;37;209m[48;2;13;38;214m▀[38;2;13;34;205m[48;2;18;32;205m▀[38;2;12;34;206m[48;2;21;32;201m▀[38;2;10;36;198m[48;2;25;33;203m▀[38;2;10;37;200m[48;2;27;33;203m▀[38;2;11;36;202m[48;2;27;32;205m▀[38;2;11;38;193m[48;2;30;33;207m▀[38;2;12;43;176m[48;2;30;40;178m▀[38;2;14;45;171m[48;2;30;41;172m▀[38;2;13;47;172m[48;2;30;41;179m▀[38;2;13;49;171m[48;2;30;42;177m▀[38;2;14;52;167m[48;2;30;43;181m▀[38;2;14;55;174m[48;2;30;45;187m▀[38;2;17;59;174m[48;2;31;49;190m▀[38;2;20;59;188m[48;2;35;55;182m▀[38;2;19;66;191m[48;2;32;62;192m▀[38;2;16;82;170m[48;2;28;81;190m▀[0m
|
||||
[38;2;7;21;91m[48;2;10;16;95m▀[38;2;3;21;105m[48;2;6;14;80m▀[38;2;3;21;124m[48;2;6;17;86m▀[38;2;3;17;135m[48;2;4;9;150m▀[38;2;5;19;119m[48;2;6;9;151m▀[38;2;8;19;118m[48;2;10;11;124m▀[38;2;18;25;117m[48;2;23;17;124m▀[38;2;6;17;140m[48;2;12;12;126m▀[38;2;10;19;152m[48;2;22;15;130m▀[38;2;18;23;142m[48;2;18;28;151m▀[38;2;14;34;164m[48;2;10;32;164m▀[38;2;6;36;168m[48;2;11;35;162m▀[38;2;7;36;181m[48;2;7;38;182m▀[38;2;7;35;213m[48;2;9;31;220m▀[38;2;8;36;218m[48;2;11;32;228m▀[38;2;10;38;219m[48;2;13;29;235m▀[38;2;12;38;223m[48;2;15;35;236m▀[38;2;14;41;226m[48;2;18;38;236m▀[38;2;14;45;230m[48;2;16;44;236m▀[38;2;12;59;220m[48;2;16;51;204m▀[38;2;16;75;219m[48;2;11;63;221m▀[38;2;15;64;219m[48;2;6;64;235m▀[38;2;16;68;220m[48;2;11;69;230m▀[38;2;21;72;227m[48;2;12;83;242m▀[38;2;10;78;230m[48;2;5;79;235m▀[38;2;10;80;238m[48;2;17;55;185m▀[38;2;10;79;245m[48;2;25;43;138m▀[38;2;23;69;216m[48;2;34;42;113m▀[38;2;33;55;181m[48;2;41;47;93m▀[38;2;30;55;111m[48;2;32;41;83m▀[38;2;26;40;69m[48;2;27;36;62m▀[38;2;29;39;59m[48;2;25;34;61m▀[38;2;27;42;50m[48;2;24;32;61m▀[38;2;24;40;50m[48;2;23;32;65m▀[38;2;27;38;52m[48;2;24;33;69m▀[38;2;28;38;69m[48;2;26;37;74m▀[38;2;28;39;85m[48;2;30;40;75m▀[38;2;27;46;115m[48;2;31;40;76m▀[38;2;19;47;181m[48;2;33;41;83m▀[38;2;15;46;227m[48;2;32;43;114m▀[38;2;13;45;242m[48;2;27;47;153m▀[38;2;12;46;242m[48;2;23;50;184m▀[38;2;13;45;235m[48;2;18;52;210m▀[38;2;14;42;229m[48;2;16;52;205m▀[38;2;13;43;226m[48;2;16;50;223m▀[38;2;10;44;225m[48;2;14;48;251m▀[38;2;12;42;219m[48;2;14;40;244m▀[38;2;12;37;220m[48;2;14;32;243m▀[38;2;9;35;226m[48;2;13;34;225m▀[38;2;8;32;226m[48;2;11;34;208m▀[38;2;7;33;229m[48;2;9;32;209m▀[38;2;6;38;227m[48;2;6;40;220m▀[38;2;8;38;227m[48;2;4;41;221m▀[38;2;7;39;230m[48;2;4;39;212m▀[38;2;7;41;228m[48;2;3;44;235m▀[38;2;6;41;229m[48;2;4;44;236m▀[38;2;7;41;228m[48;2;6;43;237m▀[38;2;7;43;226m[48;2;7;44;225m▀[38;2;10;39;228m[48;2;10;44;221m▀[38;2;10;40;228m[48;2;10;42;222m▀[38;2;10;40;229m[48;2;11;41;222m▀[38;2;10;43;229m[48;2;9;45;221m▀[38;2;10;47;231m[48;2;8;52;223m▀[38;2;11;46;217m[48;2;9;43;213m▀[38;2;12;38;206m[48;2;10;45;197m▀[38;2;13;39;207m[48;2;10;45;198m▀[38;2;13;40;205m[48;2;10;47;195m▀[38;2;14;39;209m[48;2;10;48;197m▀[38;2;15;41;210m[48;2;13;49;200m▀[38;2;16;41;211m[48;2;14;49;205m▀[38;2;15;42;204m[48;2;15;42;230m▀[38;2;14;42;204m[48;2;14;42;234m▀[38;2;15;42;206m[48;2;14;41;233m▀[38;2;15;46;208m[48;2;11;43;237m▀[38;2;15;47;208m[48;2;9;45;239m▀[38;2;16;50;214m[48;2;10;48;243m▀[38;2;15;56;213m[48;2;10;57;230m▀[38;2;17;65;207m[48;2;11;65;215m▀[38;2;18;70;212m[48;2;12;69;220m▀[38;2;19;75;203m[48;2;18;78;209m▀[0m
|
||||
[38;2;10;15;87m[48;2;6;14;52m▀[38;2;4;13;59m[48;2;3;13;52m▀[38;2;3;14;56m[48;2;6;16;59m▀[38;2;4;15;93m[48;2;7;11;48m▀[38;2;4;13;124m[48;2;9;10;89m▀[38;2;8;10;150m[48;2;12;10;174m▀[38;2;23;19;162m[48;2;26;21;185m▀[38;2;14;13;159m[48;2;20;25;188m▀[38;2;17;28;172m[48;2;17;37;193m▀[38;2;9;34;173m[48;2;14;39;190m▀[38;2;8;35;171m[48;2;9;45;188m▀[38;2;6;43;175m[48;2;11;47;189m▀[38;2;7;44;182m[48;2;16;49;193m▀[38;2;11;41;207m[48;2;18;46;200m▀[38;2;12;39;212m[48;2;19;50;203m▀[38;2;14;42;215m[48;2;22;53;205m▀[38;2;13;39;217m[48;2;38;59;203m▀[38;2;12;45;216m[48;2;43;66;200m▀[38;2;11;53;219m[48;2;46;59;157m▀[38;2;10;55;177m[48;2;53;53;80m▀[38;2;21;61;169m[48;2;88;71;71m▀[38;2;14;66;193m[48;2;64;61;87m▀[38;2;11;74;201m[48;2;32;43;70m▀[38;2;26;67;185m[48;2;44;40;60m▀[38;2;29;34;99m[48;2;38;26;26m▀[38;2;33;25;48m[48;2;46;31;28m▀[38;2;45;28;44m[48;2;62;34;33m▀[38;2;55;37;59m[48;2;87;46;40m▀[38;2;45;34;45m[48;2;100;51;50m▀[38;2;37;34;42m[48;2;93;54;48m▀[38;2;35;36;45m[48;2;87;57;49m▀[38;2;32;35;45m[48;2;88;57;50m▀[38;2;33;35;49m[48;2;86;58;55m▀[38;2;37;35;51m[48;2;94;57;63m▀[38;2;38;38;53m[48;2;93;60;60m▀[38;2;41;38;60m[48;2;93;61;57m▀[38;2;42;42;66m[48;2;96;62;58m▀[38;2;50;49;64m[48;2;118;85;64m▀[38;2;57;56;71m[48;2;159;129;77m▀[38;2;58;54;73m[48;2;172;114;62m▀[38;2;54;51;68m[48;2;148;80;37m▀[38;2;51;49;77m[48;2;151;75;46m▀[38;2;42;49;105m[48;2;148;73;41m▀[38;2;32;51;152m[48;2;131;68;29m▀[38;2;21;49;195m[48;2;117;66;57m▀[38;2;19;42;198m[48;2;108;61;67m▀[38;2;20;36;173m[48;2;98;61;54m▀[38;2;25;34;143m[48;2;58;59;82m▀[38;2;23;36;120m[48;2;49;46;60m▀[38;2;23;33;109m[48;2;50;37;42m▀[38;2;23;35;98m[48;2;42;31;41m▀[38;2;18;34;101m[48;2;38;30;38m▀[38;2;16;36;116m[48;2;37;30;38m▀[38;2;20;34;94m[48;2;44;33;38m▀[38;2;18;42;135m[48;2;48;38;42m▀[38;2;10;43;163m[48;2;34;46;76m▀[38;2;7;44;207m[48;2;14;47;139m▀[38;2;7;44;216m[48;2;11;46;191m▀[38;2;8;42;216m[48;2;10;46;208m▀[38;2;8;43;218m[48;2;12;47;211m▀[38;2;10;42;219m[48;2;13;44;214m▀[38;2;11;41;216m[48;2;14;43;214m▀[38;2;10;40;218m[48;2;14;44;218m▀[38;2;12;42;210m[48;2;16;44;208m▀[38;2;11;45;189m[48;2;17;46;190m▀[38;2;12;45;189m[48;2;19;47;191m▀[38;2;13;46;188m[48;2;21;51;190m▀[38;2;13;48;190m[48;2;27;54;178m▀[38;2;9;48;193m[48;2;53;66;175m▀[38;2;6;46;194m[48;2;75;79;177m▀[38;2;5;41;223m[48;2;89;76;180m▀[38;2;2;39;232m[48;2;94;79;180m▀[38;2;10;45;237m[48;2;41;47;146m▀[38;2;10;45;232m[48;2;26;39;140m▀[38;2;10;45;228m[48;2;23;42;139m▀[38;2;11;46;229m[48;2;29;43;145m▀[38;2;14;52;208m[48;2;28;52;166m▀[38;2;16;58;191m[48;2;31;59;165m▀[38;2;18;63;196m[48;2;32;63;174m▀[38;2;22;69;192m[48;2;36;64;170m▀[0m
|
||||
[38;2;7;13;57m[48;2;4;7;24m▀[38;2;5;12;64m[48;2;3;9;45m▀[38;2;9;17;65m[48;2;1;10;46m▀[38;2;8;12;51m[48;2;2;9;37m▀[38;2;9;11;60m[48;2;3;8;30m▀[38;2;10;12;86m[48;2;6;8;8m▀[38;2;23;23;82m[48;2;23;16;13m▀[38;2;7;31;159m[48;2;10;19;84m▀[38;2;5;36;189m[48;2;4;29;128m▀[38;2;3;42;172m[48;2;5;31;120m▀[38;2;5;45;175m[48;2;8;31;117m▀[38;2;10;47;191m[48;2;7;32;121m▀[38;2;13;49;191m[48;2;7;36;116m▀[38;2;19;57;179m[48;2;25;50;107m▀[38;2;21;59;182m[48;2;14;51;140m▀[38;2;14;64;188m[48;2;6;52;162m▀[38;2;92;103;208m[48;2;74;78;101m▀[38;2;109;95;140m[48;2;115;122;89m▀[38;2;68;91;147m[48;2;130;147;145m▀[38;2;82;69;84m[48;2;96;67;46m▀[38;2;90;54;21m[48;2;41;26;14m▀[38;2;56;41;40m[48;2;21;21;17m▀[38;2;27;21;24m[48;2;29;21;18m▀[38;2;31;22;22m[48;2;36;23;18m▀[38;2;30;20;24m[48;2;17;12;9m▀[38;2;37;21;25m[48;2;16;9;8m▀[38;2;47;28;30m[48;2;26;15;16m▀[38;2;82;43;49m[48;2;55;32;36m▀[38;2;107;54;59m[48;2;74;42;41m▀[38;2;99;57;58m[48;2;76;43;43m▀[38;2;102;59;60m[48;2;79;44;48m▀[38;2;102;62;64m[48;2;80;47;48m▀[38;2;98;62;69m[48;2;80;49;47m▀[38;2;99;63;77m[48;2;85;51;49m▀[38;2;100;66;79m[48;2;90;53;50m▀[38;2;105;69;69m[48;2;92;59;53m▀[38;2;116;71;71m[48;2;97;63;61m▀[38;2;140;93;78m[48;2;120;83;77m▀[38;2;172;136;108m[48;2;148;123;91m▀[38;2;194;120;79m[48;2;174;111;77m▀[38;2;188;90;63m[48;2;173;98;91m▀[38;2;187;91;63m[48;2;152;86;76m▀[38;2;177;94;54m[48;2;126;83;68m▀[38;2;168;93;40m[48;2;114;83;61m▀[38;2;164;94;43m[48;2;103;82;74m▀[38;2;166;93;64m[48;2;105;78;94m▀[38;2;162;99;79m[48;2;104;84;98m▀[38;2;70;106;157m[48;2;60;120;167m▀[38;2;42;83;141m[48;2;35;110;181m▀[38;2;43;65;102m[48;2;43;94;174m▀[38;2;46;53;69m[48;2;54;91;150m▀[38;2;28;30;39m[48;2;32;42;61m▀[38;2;19;19;24m[48;2;21;22;35m▀[38;2;20;24;38m[48;2;24;27;42m▀[38;2;16;26;48m[48;2;22;29;43m▀[38;2;20;33;58m[48;2;24;32;47m▀[38;2;15;40;88m[48;2;24;37;58m▀[38;2;6;48;172m[48;2;11;48;131m▀[38;2;4;54;228m[48;2;5;55;200m▀[38;2;6;51;218m[48;2;6;60;224m▀[38;2;9;48;209m[48;2;6;59;209m▀[38;2;10;48;211m[48;2;9;60;213m▀[38;2;9;50;214m[48;2;7;63;220m▀[38;2;11;52;209m[48;2;5;61;212m▀[38;2;13;52;195m[48;2;6;62;206m▀[38;2;16;54;195m[48;2;7;61;204m▀[38;2;19;63;198m[48;2;11;61;207m▀[38;2;19;65;200m[48;2;8;66;216m▀[38;2;107;92;141m[48;2;26;62;158m▀[38;2;160;100;78m[48;2;64;64;74m▀[38;2;176;95;64m[48;2;137;91;66m▀[38;2;164;93;56m[48;2;157;98;65m▀[38;2;54;36;43m[48;2;56;45;53m▀[38;2;31;38;59m[48;2;43;42;56m▀[38;2;29;39;57m[48;2;49;44;45m▀[38;2;31;42;83m[48;2;53;47;58m▀[38;2;29;61;150m[48;2;19;69;170m▀[38;2;49;70;144m[48;2;12;77;209m▀[38;2;89;77;116m[48;2;38;79;191m▀[38;2;113;87;126m[48;2;53;86;189m▀[0m
|
||||
[38;2;4;7;26m[48;2;2;6;17m▀[38;2;3;10;47m[48;2;2;11;41m▀[38;2;2;10;48m[48;2;2;11;43m▀[38;2;1;7;37m[48;2;1;8;33m▀[38;2;3;8;32m[48;2;3;9;27m▀[38;2;5;8;20m[48;2;4;6;13m▀[38;2;18;15;30m[48;2;5;17;66m▀[38;2;5;24;105m[48;2;2;28;114m▀[38;2;3;29;122m[48;2;5;28;96m▀[38;2;6;28;107m[48;2;4;27;95m▀[38;2;6;28;106m[48;2;7;29;91m▀[38;2;8;29;100m[48;2;8;31;90m▀[38;2;10;32;93m[48;2;4;37;130m▀[38;2;7;37;122m[48;2;4;36;137m▀[38;2;7;40;143m[48;2;16;27;68m▀[38;2;19;33;77m[48;2;31;20;11m▀[38;2;56;51;31m[48;2;33;25;21m▀[38;2;78;62;48m[48;2;59;55;44m▀[38;2;81;67;52m[48;2;45;43;30m▀[38;2;64;47;23m[48;2;30;28;21m▀[38;2;32;23;16m[48;2;42;40;29m▀[38;2;23;19;16m[48;2;23;22;16m▀[38;2;15;13;11m[48;2;10;11;7m▀[38;2;10;9;8m[48;2;9;11;6m▀[38;2;9;8;7m[48;2;10;10;7m▀[38;2;12;9;8m[48;2;12;12;8m▀[38;2;15;13;11m[48;2;18;16;13m▀[38;2;29;25;19m[48;2;38;28;24m▀[38;2;37;34;26m[48;2;46;37;31m▀[38;2;40;35;27m[48;2;51;39;34m▀[38;2;44;38;31m[48;2;51;41;37m▀[38;2;45;41;33m[48;2;53;45;40m▀[38;2;46;43;34m[48;2;56;48;43m▀[38;2;50;46;37m[48;2;64;52;47m▀[38;2;54;50;39m[48;2;70;57;51m▀[38;2;60;56;44m[48;2;78;61;57m▀[38;2;67;62;48m[48;2;83;68;58m▀[38;2;82;78;59m[48;2;107;100;75m▀[38;2;94;86;52m[48;2;115;113;82m▀[38;2;100;83;46m[48;2;87;83;54m▀[38;2;101;79;43m[48;2;74;67;41m▀[38;2;95;74;42m[48;2;71;63;37m▀[38;2;89;72;37m[48;2;69;59;32m▀[38;2;79;68;31m[48;2;77;63;30m▀[38;2;71;63;45m[48;2;58;52;45m▀[38;2;76;64;52m[48;2;61;52;54m▀[38;2;78;69;57m[48;2;43;70;99m▀[38;2;44;87;109m[48;2;20;96;154m▀[38;2;21;78;110m[48;2;17;81;120m▀[38;2;24;75;104m[48;2;20;77;98m▀[38;2;32;74;97m[48;2;21;66;84m▀[38;2;33;37;45m[48;2;21;25;26m▀[38;2;18;25;34m[48;2;26;25;23m▀[38;2;17;27;44m[48;2;21;16;14m▀[38;2;15;30;55m[48;2;17;11;10m▀[38;2;12;36;71m[48;2;17;17;20m▀[38;2;14;39;77m[48;2;13;18;30m▀[38;2;8;63;159m[48;2;11;38;91m▀[38;2;6;84;224m[48;2;11;50;110m▀[38;2;8;94;248m[48;2;16;48;101m▀[38;2;6;88;233m[48;2;20;41;93m▀[38;2;15;76;187m[48;2;26;19;33m▀[38;2;26;84;165m[48;2;28;13;11m▀[38;2;16;49;132m[48;2;26;14;13m▀[38;2;13;35;98m[48;2;27;15;6m▀[38;2;12;32;88m[48;2;27;16;7m▀[38;2;13;34;97m[48;2;30;20;13m▀[38;2;17;39;99m[48;2;32;25;19m▀[38;2;16;41;105m[48;2;32;30;29m▀[38;2;82;83;78m[48;2;51;54;48m▀[38;2;182;140;88m[48;2;104;89;67m▀[38;2;215;149;134m[48;2;167;137;119m▀[38;2;54;42;44m[48;2;54;44;37m▀[38;2;24;25;28m[48;2;19;18;17m▀[38;2;33;26;23m[48;2;25;23;21m▀[38;2;37;25;25m[48;2;21;25;27m▀[38;2;17;46;112m[48;2;21;29;31m▀[38;2;9;57;152m[48;2;22;32;34m▀[38;2;12;60;161m[48;2;31;36;34m▀[38;2;12;66;178m[48;2;34;55;70m▀[0m
|
||||
[38;2;3;8;14m[48;2;0;3;10m▀[38;2;2;12;39m[48;2;0;10;38m▀[38;2;2;11;43m[48;2;2;11;41m▀[38;2;3;10;32m[48;2;1;9;30m▀[38;2;4;10;26m[48;2;2;9;26m▀[38;2;5;7;13m[48;2;3;7;12m▀[38;2;6;19;68m[48;2;4;16;65m▀[38;2;4;26;102m[48;2;1;23;100m▀[38;2;4;26;89m[48;2;3;23;81m▀[38;2;6;27;85m[48;2;5;28;81m▀[38;2;7;31;84m[48;2;1;36;127m▀[38;2;4;37;131m[48;2;1;33;121m▀[38;2;4;35;123m[48;2;15;16;28m▀[38;2;17;19;37m[48;2;26;13;5m▀[38;2;27;17;10m[48;2;19;14;13m▀[38;2;24;15;12m[48;2;34;33;21m▀[38;2;55;49;39m[48;2;78;75;62m▀[38;2;97;97;89m[48;2;60;60;63m▀[38;2;43;43;39m[48;2;22;23;22m▀[38;2;26;24;22m[48;2;19;20;14m▀[38;2;54;47;41m[48;2;74;56;71m▀[38;2;33;30;21m[48;2;42;43;51m▀[38;2;18;18;11m[48;2;23;24;19m▀[38;2;16;16;13m[48;2;22;21;19m▀[38;2;15;15;13m[48;2;20;20;18m▀[38;2;15;14;13m[48;2;19;18;18m▀[38;2;19;15;16m[48;2;22;20;22m▀[38;2;30;21;31m[48;2;33;26;36m▀[38;2;32;23;33m[48;2;38;32;46m▀[38;2;37;27;36m[48;2;46;38;54m▀[38;2;34;31;50m[48;2;47;41;72m▀[38;2;38;36;66m[48;2;43;45;87m▀[38;2;44;35;63m[48;2;43;41;66m▀[38;2;50;37;55m[48;2;44;38;56m▀[38;2;63;44;68m[48;2;64;50;78m▀[38;2;69;50;77m[48;2;72;54;83m▀[38;2;70;57;83m[48;2;77;58;83m▀[38;2;105;76;93m[48;2;120;76;107m▀[38;2;123;86;88m[48;2;147;96;114m▀[38;2;78;70;58m[48;2;84;67;61m▀[38;2;58;52;39m[48;2;38;37;30m▀[38;2;54;48;37m[48;2;33;34;28m▀[38;2;47;42;35m[48;2;34;34;24m▀[38;2;63;52;33m[48;2;53;45;25m▀[38;2;51;46;43m[48;2;41;42;42m▀[38;2;50;47;61m[48;2;38;45;67m▀[38;2;30;64;122m[48;2;23;61;122m▀[38;2;6;92;182m[48;2;6;88;178m▀[38;2;8;81;158m[48;2;9;73;147m▀[38;2;5;88;161m[48;2;7;80;150m▀[38;2;9;61;104m[48;2;14;42;76m▀[38;2;14;10;11m[48;2;12;11;11m▀[38;2;8;8;9m[48;2;7;7;3m▀[38;2;4;5;6m[48;2;4;4;0m▀[38;2;4;3;3m[48;2;1;2;3m▀[38;2;4;2;3m[48;2;1;3;1m▀[38;2;5;2;1m[48;2;2;2;2m▀[38;2;7;1;0m[48;2;3;4;5m▀[38;2;8;1;0m[48;2;3;5;6m▀[38;2;9;2;0m[48;2;4;6;8m▀[38;2;10;4;0m[48;2;4;5;7m▀[38;2;10;7;4m[48;2;6;6;7m▀[38;2;10;8;7m[48;2;5;5;5m▀[38;2;12;8;7m[48;2;4;4;5m▀[38;2;15;9;7m[48;2;8;5;4m▀[38;2;18;9;6m[48;2;10;4;3m▀[38;2;18;10;8m[48;2;8;3;3m▀[38;2;18;12;9m[48;2;9;4;5m▀[38;2;23;16;13m[48;2;12;7;6m▀[38;2;19;15;13m[48;2;13;8;6m▀[38;2;18;15;13m[48;2;16;10;8m▀[38;2;29;21;12m[48;2;20;14;9m▀[38;2;26;23;20m[48;2;18;12;8m▀[38;2;23;24;24m[48;2;18;15;15m▀[38;2;25;25;27m[48;2;21;20;27m▀[38;2;25;33;38m[48;2;24;26;37m▀[38;2;17;37;50m[48;2;10;42;68m▀[38;2;20;41;60m[48;2;2;55;100m▀[38;2;28;46;62m[48;2;4;63;116m▀[38;2;27;63;92m[48;2;7;72;125m▀[0m
|
||||
[38;2;36;39;46m[48;2;26;28;40m▀[38;2;26;36;64m[48;2;14;23;52m▀[38;2;10;19;55m[48;2;22;27;61m▀[38;2;22;25;49m[48;2;35;34;55m▀[38;2;19;21;40m[48;2;32;30;48m▀[38;2;18;16;25m[48;2;35;31;41m▀[38;2;18;33;85m[48;2;41;50;94m▀[38;2;13;39;104m[48;2;33;54;100m▀[38;2;15;33;81m[48;2;19;46;125m▀[38;2;11;41;125m[48;2;31;50;138m▀[38;2;17;42;128m[48;2;53;41;57m▀[38;2;31;33;43m[48;2;69;46;43m▀[38;2;34;25;17m[48;2;48;43;45m▀[38;2;22;17;15m[48;2;69;73;60m▀[38;2;37;37;24m[48;2;65;65;56m▀[38;2;61;61;48m[48;2;16;16;15m▀[38;2;24;25;22m[48;2;9;9;10m▀[38;2;11;14;11m[48;2;21;21;21m▀[38;2;21;24;20m[48;2;26;27;23m▀[38;2;31;29;23m[48;2;39;38;41m▀[38;2;82;70;103m[48;2;27;31;56m▀[38;2;36;38;60m[48;2;23;22;20m▀[38;2;24;25;21m[48;2;21;22;21m▀[38;2;28;25;27m[48;2;19;16;22m▀[38;2;21;20;21m[48;2;17;12;19m▀[38;2;21;18;19m[48;2;17;10;18m▀[38;2;22;20;24m[48;2;16;12;19m▀[38;2;29;27;39m[48;2;16;14;25m▀[38;2;34;31;47m[48;2;18;16;31m▀[38;2;39;36;52m[48;2;21;19;35m▀[38;2;44;43;74m[48;2;19;26;52m▀[38;2;40;43;79m[48;2;19;24;50m▀[38;2;37;38;59m[48;2;21;20;37m▀[38;2;38;40;55m[48;2;23;23;37m▀[38;2;59;51;74m[48;2;32;32;53m▀[38;2;74;52;81m[48;2;36;39;72m▀[38;2;78;57;82m[48;2;31;34;65m▀[38;2;99;75;114m[48;2;23;36;80m▀[38;2;112;80;121m[48;2;23;31;66m▀[38;2;72;53;60m[48;2;19;26;50m▀[38;2;48;37;35m[48;2;24;29;57m▀[38;2;44;34;32m[48;2;27;28;52m▀[38;2;37;30;30m[48;2;29;29;54m▀[38;2;52;40;30m[48;2;35;33;53m▀[38;2;34;39;46m[48;2;21;31;61m▀[38;2;15;40;83m[48;2;9;32;84m▀[38;2;12;61;135m[48;2;9;55;146m▀[38;2;5;88;195m[48;2;3;85;215m▀[38;2;5;80;186m[48;2;3;82;204m▀[38;2;5;84;193m[48;2;2;73;190m▀[38;2;11;43;94m[48;2;14;55;122m▀[38;2;11;8;5m[48;2;9;5;0m▀[38;2;6;6;31m[48;2;3;4;71m▀[38;2;5;3;36m[48;2;4;2;90m▀[38;2;10;2;2m[48;2;19;1;0m▀[38;2;10;2;10m[48;2;17;2;18m▀[38;2;7;3;6m[48;2;9;3;10m▀[38;2;2;2;2m[48;2;0;1;0m▀[48;2;1;1;1m▀[38;2;3;3;4m[48;2;2;2;1m▀[38;2;3;4;4m[48;2;2;1;0m▀[38;2;4;4;4m[48;2;0;0;0m▀[38;2;5;5;5m▀[38;2;4;4;4m▀[38;2;3;3;3m[48;2;3;3;4m▀[38;2;2;2;2m[48;2;2;2;2m▀[38;2;2;1;1m[48;2;3;3;5m▀[38;2;2;2;1m[48;2;4;5;9m▀[38;2;3;2;2m[48;2;1;2;4m▀[38;2;4;2;3m[48;2;3;2;4m▀[38;2;5;3;4m[48;2;4;3;5m▀[38;2;7;5;5m[48;2;6;3;6m▀[48;2;8;3;9m▀[38;2;9;7;9m[48;2;9;4;10m▀[38;2;13;9;18m[48;2;9;3;10m▀[38;2;17;13;27m[48;2;15;3;13m▀[38;2;12;19;43m[48;2;18;5;18m▀[38;2;11;26;62m[48;2;21;5;22m▀[38;2;16;32;68m[48;2;25;12;23m▀[38;2;11;39;115m[48;2;11;14;139m▀[0m
|
||||
[38;2;5;6;18m[48;2;3;5;15m▀[38;2;2;12;40m[48;2;3;10;39m▀[38;2;6;14;46m[48;2;1;10;41m▀[38;2;5;11;38m[48;2;1;6;30m▀[38;2;7;9;28m[48;2;2;6;24m▀[38;2;10;8;19m[48;2;6;4;10m▀[38;2;9;18;53m[48;2;5;21;72m▀[38;2;3;30;105m[48;2;1;32;133m▀[38;2;2;32;123m[48;2;11;14;37m▀[38;2;23;19;37m[48;2;21;10;0m▀[38;2;39;17;16m[48;2;17;14;11m▀[38;2;60;26;38m[48;2;56;55;41m▀[38;2;86;75;72m[48;2;57;54;48m▀[38;2;68;68;62m[48;2;5;3;7m▀[38;2;15;13;15m[48;2;5;5;5m▀[38;2;3;3;3m[48;2;14;14;13m▀[38;2;15;15;13m▀[38;2;15;14;14m[48;2;3;2;2m▀[38;2;7;7;6m[48;2;3;3;1m▀[38;2;27;25;34m[48;2;26;25;33m▀[38;2;7;12;29m[48;2;11;14;33m▀[38;2;12;11;10m[48;2;17;16;16m▀[38;2;18;19;18m[48;2;17;17;17m▀[38;2;20;17;19m[48;2;20;20;20m▀[38;2;16;5;15m[48;2;24;17;19m▀[38;2;15;6;15m[48;2;23;12;20m▀[38;2;14;8;19m[48;2;18;12;24m▀[38;2;9;7;19m[48;2;10;8;21m▀[38;2;10;9;19m[48;2;11;10;20m▀[38;2;12;12;26m[48;2;16;16;31m▀[38;2;9;14;35m[48;2;11;16;37m▀[38;2;11;11;26m[48;2;11;10;25m▀[38;2;11;10;21m[48;2;12;10;22m▀[38;2;17;16;28m[48;2;21;19;31m▀[38;2;22;22;38m[48;2;33;28;41m▀[38;2;17;21;47m[48;2;23;21;45m▀[38;2;16;19;40m[48;2;22;18;34m▀[38;2;14;19;43m[48;2;15;11;22m▀[38;2;13;17;33m[48;2;12;10;19m▀[38;2;10;18;46m[48;2;13;10;23m▀[38;2;10;22;57m[48;2;15;11;22m▀[38;2;6;20;50m[48;2;15;12;21m▀[38;2;10;21;45m[48;2;16;13;24m▀[38;2;8;23;52m[48;2;18;15;28m▀[38;2;10;25;61m[48;2;19;18;33m▀[38;2;10;25;64m[48;2;24;18;35m▀[38;2;14;50;110m[48;2;21;46;77m▀[38;2;8;73;163m[48;2;11;63;110m▀[38;2;7;39;97m[48;2;9;13;35m▀[38;2;7;26;78m[48;2;6;31;75m▀[38;2;10;25;107m[48;2;10;33;104m▀[38;2;9;4;72m[48;2;12;8;48m▀[38;2;11;8;41m[48;2;23;32;89m▀[38;2;15;4;26m[48;2;42;26;59m▀[38;2;11;3;12m[48;2;4;2;3m▀[38;2;11;3;20m[48;2;10;4;14m▀[38;2;8;4;17m[48;2;8;4;11m▀[38;2;6;4;16m[48;2;6;3;10m▀[38;2;7;5;22m[48;2;7;3;12m▀[38;2;6;8;30m[48;2;9;5;16m▀[38;2;10;19;45m[48;2;68;69;72m▀[38;2;45;49;59m[48;2;129;128;131m▀[38;2;69;74;74m[48;2;136;134;140m▀[38;2;42;56;67m[48;2;76;83;92m▀[38;2;6;4;11m[48;2;6;7;9m▀[38;2;4;3;12m[48;2;3;4;8m▀[38;2;5;4;13m[48;2;1;0;5m▀[38;2;6;6;15m[48;2;1;1;4m▀[38;2;4;3;12m[48;2;1;0;3m▀[38;2;4;3;11m[48;2;1;1;1m▀[38;2;5;4;12m▀[38;2;5;3;12m▀[38;2;6;4;13m▀[38;2;4;5;16m[48;2;1;1;0m▀[38;2;5;6;19m▀[38;2;5;6;28m[48;2;2;1;2m▀[38;2;6;8;29m[48;2;3;2;5m▀[38;2;6;12;33m[48;2;3;3;5m▀[38;2;5;28;60m[48;2;4;4;5m▀[38;2;18;47;93m[48;2;9;9;11m▀[0m
|
||||
[38;2;2;5;13m[48;2;2;4;13m▀[38;2;2;10;38m[48;2;2;10;38m▀[38;2;2;10;42m[48;2;2;9;41m▀[38;2;1;7;29m[48;2;0;6;28m▀[38;2;1;6;25m[48;2;1;5;24m▀[38;2;4;3;7m[48;2;3;3;8m▀[38;2;3;24;92m[48;2;3;22;84m▀[38;2;6;20;76m[48;2;12;9;26m▀[38;2;16;5;0m[48;2;14;7;0m▀[38;2;14;11;8m[48;2;41;40;28m▀[38;2;45;44;30m[48;2;48;47;40m▀[38;2;44;43;36m[48;2;4;2;4m▀[38;2;2;1;2m[48;2;7;7;7m▀[38;2;6;6;6m[48;2;15;14;13m▀[38;2;13;13;12m[48;2;12;12;12m▀[38;2;12;12;12m[48;2;1;1;1m▀[38;2;2;2;2m▀[38;2;1;1;1m▀[38;2;2;2;2m▀[38;2;11;11;13m[48;2;0;0;0m▀[38;2;6;7;16m▀[38;2;11;9;14m▀[38;2;11;10;12m▀[38;2;5;6;5m▀[38;2;13;13;11m▀[38;2;15;10;12m▀[38;2;10;6;12m▀[38;2;5;4;10m▀[38;2;7;6;12m[48;2;1;1;0m▀[38;2;11;10;21m[48;2;0;0;0m▀[38;2;10;11;19m▀[38;2;13;13;21m▀[38;2;9;9;14m▀[38;2;13;10;17m▀[38;2;23;20;28m▀[38;2;13;13;23m[48;2;1;1;0m▀[38;2;10;9;16m▀[38;2;6;7;9m▀[38;2;6;6;10m▀[38;2;7;6;10m▀▀[38;2;7;7;10m[48;2;0;1;0m▀[38;2;8;7;11m▀[38;2;9;8;12m[48;2;1;1;0m▀[38;2;11;10;17m▀[38;2;15;11;19m▀[38;2;16;21;32m[48;2;1;0;0m▀[38;2;6;22;36m[48;2;3;0;0m▀[38;2;4;10;23m[48;2;3;2;0m▀[38;2;4;11;25m▀[38;2;5;9;18m[48;2;2;1;0m▀[38;2;7;7;4m[48;2;0;0;2m▀[38;2;6;7;13m[48;2;0;0;0m▀[38;2;9;9;10m▀[38;2;3;4;2m[48;2;1;0;1m▀[38;2;4;5;4m[48;2;0;0;1m▀[38;2;3;3;2m[48;2;1;1;1m▀[38;2;1;1;0m▀▀▀[38;2;10;9;7m[48;2;1;1;2m▀[38;2;17;14;14m[48;2;0;0;0m▀[38;2;9;7;9m[48;2;1;1;1m▀[38;2;5;3;4m[48;2;1;2;1m▀[38;2;1;1;1m[48;2;2;2;2m▀[38;2;1;1;0m[48;2;1;1;1m▀[38;2;1;1;1m▀▀▀[38;2;2;2;2m▀[38;2;2;2;1m▀[38;2;2;2;2m▀[38;2;3;3;3m▀[38;2;3;3;4m▀[38;2;4;4;4m▀[38;2;5;5;5m▀[38;2;7;6;11m[48;2;0;0;0m▀[38;2;7;8;15m[48;2;1;0;0m▀[38;2;8;11;23m[48;2;1;1;0m▀[38;2;11;16;32m[48;2;2;1;2m▀[0m
|
||||
BIN
tui/src/skywalker_tui/assets/splash/dialtone.jpg
Normal file
BIN
tui/src/skywalker_tui/assets/splash/dialtone.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 72 KiB |
40
tui/src/skywalker_tui/assets/splash/prodigy-out-of-space.ans
Normal file
40
tui/src/skywalker_tui/assets/splash/prodigy-out-of-space.ans
Normal file
@ -0,0 +1,40 @@
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀[48;2;0;0;2m▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀[48;2;0;0;0m▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[48;2;0;0;11m▀[48;2;0;0;180m▀[48;2;0;0;195m▀[48;2;0;0;194m▀[48;2;0;0;195m▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀[48;2;0;0;194m▀[48;2;0;0;191m▀▀▀▀▀▀[48;2;0;0;194m▀[48;2;0;0;195m▀▀▀▀▀▀▀▀[48;2;0;0;194m▀[48;2;0;0;191m▀▀▀▀▀▀▀▀[48;2;0;0;194m▀[48;2;0;0;195m▀▀▀▀▀▀▀[48;2;0;0;194m▀[48;2;0;0;195m▀[48;2;0;0;180m▀[48;2;0;0;11m▀[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;16m[48;2;0;0;15m▀[38;2;0;0;248m[48;2;0;0;233m▀[38;2;0;0;255m[48;2;0;0;252m▀[48;2;0;0;251m▀[48;2;0;0;252m▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀[48;2;0;0;251m▀[48;2;0;0;253m▀[48;2;0;0;254m▀[48;2;0;0;110m▀[48;2;0;0;100m▀[48;2;0;3;101m▀▀[48;2;0;0;100m▀[48;2;0;0;108m▀[48;2;0;0;254m▀[48;2;0;0;255m▀▀▀▀[48;2;0;0;254m▀[48;2;0;0;252m▀[48;2;0;0;251m▀[48;2;0;0;253m▀[48;2;0;0;255m▀[48;2;0;0;115m▀[38;2;0;2;255m[48;2;0;0;100m▀[48;2;0;0;101m▀[38;2;0;1;255m[48;2;0;0;100m▀▀[38;2;0;3;255m[48;2;0;0;101m▀[38;2;0;2;255m[48;2;0;0;100m▀[38;2;0;0;255m[48;2;0;0;110m▀[48;2;0;0;254m▀[48;2;0;0;253m▀[48;2;0;0;251m▀[48;2;0;0;252m▀▀▀▀▀[48;2;0;0;251m▀[48;2;0;3;249m▀[38;2;0;0;248m[48;2;0;3;230m▀[38;2;0;0;16m[48;2;0;0;15m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;15m[48;2;0;0;15m▀[38;2;0;0;236m[48;2;0;0;236m▀[38;2;0;0;255m[48;2;0;0;255m▀[38;2;0;0;254m[48;2;0;0;254m▀[38;2;0;0;255m[48;2;0;0;255m▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀[38;2;0;0;254m[48;2;0;0;254m▀[38;2;0;0;255m[48;2;0;0;255m▀[38;2;0;0;246m[48;2;0;0;239m▀[38;2;0;0;99m[48;2;0;1;6m▀[38;2;0;0;0m[48;2;0;0;3m▀[48;2;0;11;5m▀[48;2;0;160;4m▀[48;2;0;162;4m▀[48;2;0;12;4m▀[48;2;0;0;3m▀[38;2;0;0;85m[48;2;0;0;0m▀[38;2;0;4;95m▀▀[38;2;0;0;95m▀[38;2;0;0;102m▀[38;2;0;0;241m[48;2;0;4;227m▀[38;2;0;0;255m[48;2;0;4;251m▀▀[38;2;0;0;242m[48;2;0;4;230m▀[38;2;0;0;99m[48;2;0;6;0m▀[38;2;0;0;0m[48;2;0;0;2m▀[38;2;0;57;0m[48;2;0;77;5m▀[38;2;0;64;0m[48;2;0;85;4m▀[38;2;0;13;0m[48;2;0;100;4m▀[38;2;0;20;0m[48;2;0;138;4m▀[38;2;0;60;0m[48;2;0;150;4m▀[38;2;0;49;0m[48;2;0;54;5m▀[38;2;0;0;0m[48;2;0;2;3m▀[38;2;0;0;99m[48;2;0;5;6m▀[38;2;0;0;246m[48;2;0;4;235m▀[38;2;0;0;255m[48;2;0;4;251m▀[38;2;0;0;254m[48;2;0;4;250m▀[38;2;0;0;255m[48;2;0;3;252m▀[38;2;0;4;251m[48;2;0;0;255m▀▀▀[38;2;0;2;252m▀[38;2;0;0;255m[48;2;0;163;96m▀[38;2;0;0;250m[48;2;0;159;80m▀[38;2;0;0;16m[48;2;0;9;6m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;15m[48;2;0;0;15m▀[38;2;0;0;236m[48;2;0;0;236m▀[38;2;0;0;255m[48;2;0;0;255m▀[38;2;0;0;254m[48;2;0;0;254m▀[38;2;0;0;255m[48;2;0;0;253m▀▀▀▀▀▀▀[48;2;0;0;255m▀▀▀[48;2;0;0;253m▀▀▀▀▀▀▀▀▀[48;2;0;0;255m▀▀▀▀[48;2;0;0;253m▀▀▀▀▀▀▀▀[48;2;0;0;255m▀▀▀[38;2;0;0;254m[48;2;0;0;254m▀[38;2;0;0;255m[48;2;0;0;255m▀[38;2;0;0;240m[48;2;0;0;238m▀[38;2;0;1;23m[48;2;0;1;20m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;17;1m[48;2;0;16;1m▀[38;2;0;255;0m[48;2;0;239;0m▀[48;2;0;241;0m▀[38;2;0;21;0m[48;2;0;20;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;7;4m[48;2;0;20;0m▀[38;2;0;86;4m[48;2;0;255;0m▀[38;2;0;87;5m[48;2;0;255;1m▀[38;2;0;7;4m[48;2;0;20;0m▀[38;2;0;0;17m[48;2;0;2;7m▀[38;2;0;0;249m[48;2;0;95;138m▀[38;2;0;0;255m[48;2;0;103;152m▀[48;2;0;100;152m▀[38;2;0;0;252m[48;2;0;101;140m▀[38;2;0;0;19m[48;2;0;95;9m▀[38;2;0;2;0m[48;2;0;0;0m▀[38;2;0;44;1m[48;2;0;0;1m▀[38;2;0;52;0m[48;2;0;0;0m▀[38;2;0;72;0m▀[38;2;0;104;0m▀[38;2;0;139;0m▀[38;2;0;71;1m[48;2;0;0;1m▀[38;2;0;4;0m[48;2;0;0;0m▀[38;2;0;0;25m[48;2;0;91;12m▀[38;2;0;0;255m[48;2;0;101;143m▀[48;2;0;101;152m▀▀[48;2;0;111;142m▀[38;2;0;86;169m[48;2;0;255;0m▀[38;2;0;95;160m▀[38;2;0;94;161m▀[38;2;0;109;144m▀[38;2;0;255;0m[48;2;0;252;3m▀[38;2;0;254;0m[48;2;0;232;3m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;15m[48;2;0;0;15m▀[38;2;0;0;236m[48;2;0;0;236m▀[38;2;0;0;255m[48;2;0;0;255m▀[38;2;0;0;253m▀[38;2;0;0;255m[48;2;0;0;215m▀[48;2;0;3;212m▀▀▀▀[48;2;0;2;212m▀[48;2;0;0;215m▀[38;2;0;0;254m[48;2;0;0;255m▀[38;2;0;0;253m▀▀[38;2;0;0;255m[48;2;0;0;215m▀[48;2;0;0;212m▀[48;2;0;3;212m▀▀▀▀▀[48;2;0;0;212m▀[48;2;0;0;214m▀[38;2;0;0;254m[48;2;0;0;255m▀[38;2;0;0;253m▀▀[38;2;0;0;254m▀[38;2;0;0;255m[48;2;0;0;215m▀[48;2;0;0;212m▀[48;2;0;3;212m▀▀▀▀[48;2;0;0;212m▀[48;2;0;0;217m▀[38;2;0;0;253m[48;2;0;0;255m▀▀▀[38;2;0;0;252m▀[38;2;0;0;254m▀[38;2;0;0;249m[48;2;0;0;202m▀[38;2;0;1;21m[48;2;0;1;17m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;16;1m[48;2;0;16;1m▀[38;2;0;242;0m[48;2;0;242;0m▀[38;2;0;245;0m[48;2;0;245;0m▀[38;2;0;20;0m[48;2;0;19;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;11;0m▀[38;2;0;135;0m▀[38;2;0;138;0m▀[38;2;0;8;0m▀[38;2;0;10;0m[48;2;0;12;0m▀[38;2;0;249;0m[48;2;0;228;4m▀[38;2;0;255;0m[48;2;0;255;4m▀[48;2;0;209;4m▀[48;2;0;210;4m▀[48;2;0;212;0m▀[38;2;0;135;0m[48;2;0;231;0m▀[38;2;0;120;0m[48;2;0;232;0m▀[48;2;0;233;0m▀[38;2;0;110;0m[48;2;0;255;0m▀[38;2;0;111;0m▀[38;2;0;106;0m▀[38;2;0;115;0m[48;2;0;234;0m▀[38;2;0;130;0m[48;2;0;231;0m▀[38;2;0;255;0m[48;2;0;212;0m▀[48;2;0;208;4m▀▀▀▀[38;2;0;255;2m[48;2;0;214;0m▀[38;2;0;255;4m▀[48;2;0;215;0m▀[38;2;0;249;3m[48;2;0;255;0m▀[38;2;0;255;0m▀[38;2;0;236;0m[48;2;0;236;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;15m[48;2;0;0;14m▀[38;2;0;0;236m[48;2;0;0;240m▀[38;2;0;0;254m[48;2;0;0;248m▀[38;2;0;0;194m[48;2;0;0;17m▀[38;2;0;0;12m[48;2;0;5;0m▀[38;2;0;0;0m[48;2;0;54;1m▀[48;2;0;57;0m▀[48;2;0;55;0m▀[48;2;0;56;0m▀[48;2;0;50;0m▀[38;2;0;0;11m[48;2;0;0;0m▀[38;2;0;0;188m[48;2;0;1;0m▀[38;2;0;0;205m[48;2;0;0;0m▀[38;2;0;0;190m▀[38;2;0;0;12m▀[38;2;0;0;0m[48;2;0;3;0m▀[48;2;0;52;0m▀[48;2;0;57;0m▀[48;2;0;55;0m▀[48;2;0;56;0m▀[48;2;0;52;0m▀[48;2;0;1;0m▀[38;2;0;0;8m▀[38;2;0;0;186m[48;2;0;0;0m▀[38;2;0;0;205m▀▀[38;2;0;0;189m▀[38;2;0;0;11m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[48;2;0;53;0m▀[48;2;0;56;0m▀▀[48;2;0;54;0m▀[48;2;0;1;0m▀[38;2;0;0;17m▀[38;2;0;0;195m[48;2;0;0;0m▀[38;2;0;0;205m▀[38;2;0;0;203m▀[38;2;0;0;205m▀[38;2;0;0;186m[48;2;0;1;0m▀[38;2;0;1;8m[48;2;0;0;0m▀[38;2;0;2;0m▀[38;2;0;1;1m▀[38;2;0;17;0m[48;2;0;12;0m▀[38;2;0;242;0m[48;2;0;242;0m▀[38;2;0;245;0m[48;2;0;245;0m▀[38;2;0;19;0m[48;2;0;20;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;5;0m[48;2;0;18;0m▀[38;2;0;51;0m[48;2;0;247;0m▀[38;2;0;53;0m[48;2;0;250;0m▀[38;2;0;3;0m[48;2;0;15;0m▀[38;2;0;12;0m[48;2;0;9;0m▀[38;2;0;244;0m[48;2;0;168;0m▀[38;2;0;197;0m[48;2;0;15;0m▀[38;2;0;8;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;53;0m▀[48;2;0;56;0m▀▀[48;2;0;52;0m▀[38;2;0;7;0m[48;2;0;0;0m▀[38;2;0;190;0m[48;2;0;15;0m▀[38;2;0;255;0m[48;2;0;177;0m▀[38;2;0;192;0m[48;2;0;16;0m▀[38;2;0;7;0m[48;2;0;4;0m▀[38;2;0;0;0m[48;2;0;56;0m▀[48;2;0;53;0m▀[48;2;0;3;0m▀[48;2;0;0;0m▀▀[48;2;0;3;0m▀[48;2;0;53;0m▀[48;2;0;56;0m▀[38;2;0;11;0m[48;2;0;3;0m▀[38;2;0;194;0m[48;2;0;16;0m▀[38;2;0;254;0m[48;2;0;248;0m▀[38;2;0;236;0m[48;2;0;240;0m▀[38;2;0;15;0m[48;2;0;14;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;14m[48;2;0;0;14m▀[38;2;0;0;240m[48;2;0;0;240m▀[38;2;0;1;248m[48;2;0;1;248m▀[38;2;0;0;22m[48;2;0;0;21m▀[38;2;0;24;0m[48;2;0;23;0m▀[38;2;0;250;1m[48;2;0;242;1m▀[38;2;0;255;0m[48;2;0;252;0m▀[48;2;0;231;0m▀[48;2;0;230;0m▀[38;2;0;245;0m[48;2;0;232;0m▀[38;2;0;26;0m[48;2;0;231;0m▀[38;2;0;0;1m[48;2;0;38;0m▀[38;2;0;2;1m[48;2;0;0;0m▀[38;2;0;1;1m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;242;0m[48;2;0;234;0m▀[38;2;0;255;0m[48;2;0;253;0m▀[48;2;0;232;0m▀[48;2;0;230;0m▀[38;2;0;253;0m[48;2;0;231;0m▀[38;2;0;35;0m[48;2;0;221;0m▀[38;2;0;0;0m[48;2;0;35;0m▀[38;2;0;1;1m[48;2;0;2;0m▀[38;2;0;0;1m[48;2;0;1;0m▀▀[38;2;0;1;1m[48;2;0;2;0m▀[38;2;0;0;0m[48;2;0;31;0m▀[38;2;0;32;0m[48;2;0;220;0m▀[38;2;0;245;0m[48;2;0;255;0m▀[38;2;0;255;0m[48;2;0;231;0m▀[48;2;0;232;0m▀[38;2;0;250;0m[48;2;0;255;0m▀[38;2;0;38;0m[48;2;0;225;0m▀[38;2;0;0;0m[48;2;0;35;0m▀[38;2;0;1;1m[48;2;0;1;0m▀[38;2;0;0;1m▀[48;2;0;0;0m▀[38;2;0;1;1m▀[38;2;0;0;1m[48;2;0;40;0m▀[38;2;0;16;0m[48;2;0;228;0m▀[38;2;0;17;0m[48;2;0;244;0m▀[38;2;0;16;0m▀[38;2;0;31;0m▀[38;2;0;243;0m[48;2;0;254;0m▀[38;2;0;245;0m[48;2;0;240;0m▀[38;2;0;20;0m[48;2;0;21;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;18;0m[48;2;0;18;0m▀[38;2;0;241;0m[48;2;0;242;0m▀[38;2;0;244;0m[48;2;0;245;0m▀[38;2;0;19;0m[48;2;0;19;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[48;2;0;3;0m▀[48;2;0;40;0m▀[38;2;0;31;0m[48;2;0;229;0m▀[38;2;0;243;0m[48;2;0;255;0m▀[38;2;0;255;0m[48;2;0;231;0m▀[48;2;0;232;0m▀[38;2;0;240;0m[48;2;0;255;0m▀[38;2;0;28;0m[48;2;0;226;0m▀[38;2;0;0;0m[48;2;0;38;0m▀[48;2;0;3;0m▀[48;2;0;0;0m▀[38;2;0;22;0m[48;2;0;21;0m▀[38;2;0;255;0m[48;2;0;247;0m▀[38;2;0;246;0m[48;2;0;237;0m▀[38;2;0;15;0m[48;2;0;14;0m▀[38;2;0;0;0m[48;2;0;0;0m▀▀[38;2;0;15;0m[48;2;0;14;0m▀[38;2;0;246;0m[48;2;0;237;0m▀[38;2;0;255;0m[48;2;0;248;0m▀[38;2;0;17;0m[48;2;0;16;0m▀▀[38;2;0;249;0m[48;2;0;249;0m▀[38;2;0;240;0m[48;2;0;240;0m▀[38;2;0;14;0m[48;2;0;14;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;14m[48;2;0;0;14m▀[38;2;0;0;240m[48;2;0;0;240m▀[38;2;0;1;248m[48;2;0;1;248m▀[38;2;0;0;21m[48;2;0;0;21m▀[38;2;0;21;0m[48;2;0;21;0m▀[38;2;0;248;1m[48;2;0;248;1m▀[38;2;0;239;0m[48;2;0;238;0m▀[38;2;0;26;0m[48;2;0;11;0m▀[38;2;0;12;0m[48;2;0;0;0m▀[38;2;0;31;0m▀[38;2;0;226;0m[48;2;0;20;0m▀[38;2;0;228;0m[48;2;0;241;0m▀[38;2;0;39;0m▀[38;2;0;3;0m[48;2;0;21;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;14;0m[48;2;0;15;0m▀[38;2;0;238;0m[48;2;0;238;0m▀[38;2;0;248;0m[48;2;0;248;0m▀[38;2;0;33;0m[48;2;0;19;0m▀[38;2;0;12;0m[48;2;0;0;0m▀[38;2;0;27;0m[48;2;0;12;0m▀[38;2;0;242;0m[48;2;0;237;0m▀[38;2;0;237;0m[48;2;0;250;0m▀[38;2;0;20;0m[48;2;0;21;0m▀[38;2;0;0;0m[48;2;0;0;0m▀▀[38;2;0;19;0m[48;2;0;19;0m▀[38;2;0;229;0m[48;2;0;248;0m▀[38;2;0;255;0m[48;2;0;242;0m▀[38;2;0;210;0m[48;2;0;22;0m▀[38;2;0;18;0m[48;2;0;0;0m▀[38;2;0;26;0m▀[38;2;0;216;0m[48;2;0;18;0m▀[38;2;0;255;0m[48;2;0;238;0m▀[38;2;0;222;0m[48;2;0;241;0m▀[38;2;0;11;0m[48;2;0;12;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;1;0m[48;2;0;13;0m▀[38;2;0;40;0m[48;2;0;224;0m▀[38;2;0;230;0m[48;2;0;255;0m▀[38;2;0;255;0m[48;2;0;247;0m▀[38;2;0;233;0m[48;2;0;28;0m▀[38;2;0;231;0m[48;2;0;7;0m▀[38;2;0;232;0m[48;2;0;24;0m▀[38;2;0;254;0m[48;2;0;242;0m▀[38;2;0;240;0m[48;2;0;245;0m▀[38;2;0;21;0m[48;2;0;20;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;18;0m[48;2;0;18;0m▀[38;2;0;242;0m[48;2;0;242;0m▀[38;2;0;245;0m[48;2;0;245;0m▀[38;2;0;20;0m[48;2;0;20;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;18;0m[48;2;0;18;0m▀[38;2;0;227;0m[48;2;0;245;0m▀[38;2;0;255;0m[48;2;0;244;0m▀[38;2;0;212;0m[48;2;0;25;0m▀[38;2;0;21;0m[48;2;0;0;0m▀[38;2;0;23;0m▀[38;2;0;214;0m[48;2;0;28;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;223;0m[48;2;0;249;0m▀[38;2;0;15;0m[48;2;0;16;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;22;0m[48;2;0;22;0m▀[38;2;0;248;0m[48;2;0;248;0m▀[38;2;0;238;0m[48;2;0;238;0m▀[38;2;0;14;0m[48;2;0;14;0m▀[38;2;0;0;0m[48;2;0;0;0m▀▀[38;2;0;14;0m[48;2;0;14;0m▀[38;2;0;238;0m[48;2;0;238;0m▀[38;2;0;249;0m[48;2;0;249;0m▀[38;2;0;16;0m[48;2;0;16;0m▀▀[38;2;0;249;0m[48;2;0;249;0m▀[38;2;0;240;0m[48;2;0;240;0m▀[38;2;0;14;0m[48;2;0;14;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;14m[48;2;0;0;14m▀[38;2;0;0;240m[48;2;0;0;240m▀[38;2;0;1;248m[48;2;0;1;248m▀[38;2;0;0;21m[48;2;0;0;21m▀[38;2;0;21;0m[48;2;0;21;0m▀[38;2;0;248;1m[48;2;0;248;1m▀[38;2;0;238;0m[48;2;0;238;0m▀[38;2;0;15;0m[48;2;0;14;0m▀[38;2;0;1;0m[48;2;0;0;0m▀▀[38;2;0;12;0m[48;2;0;18;0m▀[38;2;0;237;0m[48;2;0;238;0m▀[38;2;0;250;0m[48;2;0;247;0m▀[38;2;0;22;0m[48;2;0;22;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;238;0m[48;2;0;238;0m▀[38;2;0;248;0m[48;2;0;248;0m▀[38;2;0;23;0m[48;2;0;15;0m▀[38;2;0;1;0m[48;2;0;0;0m▀[38;2;0;16;0m[48;2;0;13;0m▀[38;2;0;239;0m[48;2;0;220;0m▀[38;2;0;253;0m[48;2;0;72;0m▀[38;2;0;21;0m[48;2;0;5;0m▀[38;2;0;0;0m[48;2;0;2;0m▀[48;2;0;0;0m▀[38;2;0;19;0m[48;2;0;19;0m▀[38;2;0;244;0m[48;2;0;245;0m▀[38;2;0;242;0m[48;2;0;242;0m▀[38;2;0;14;0m[48;2;0;20;0m▀[38;2;0;1;0m[48;2;0;0;0m▀▀[38;2;0;9;0m[48;2;0;15;0m▀[38;2;0;238;0m[48;2;0;238;0m▀[38;2;0;237;0m▀[38;2;0;12;0m[48;2;0;12;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;12;0m[48;2;0;12;0m▀[38;2;0;238;0m[48;2;0;238;0m▀[38;2;0;241;0m[48;2;0;237;0m▀[38;2;0;65;0m[48;2;0;3;0m▀[38;2;0;3;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;1;0m▀[38;2;0;14;0m[48;2;0;17;0m▀[38;2;0;242;0m[48;2;0;242;0m▀[38;2;0;245;0m[48;2;0;245;0m▀[38;2;0;20;0m[48;2;0;20;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;18;0m[48;2;0;18;0m▀[38;2;0;242;0m[48;2;0;242;0m▀[38;2;0;245;0m[48;2;0;245;0m▀[38;2;0;20;0m[48;2;0;20;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;18;0m[48;2;0;18;0m▀[38;2;0;241;0m[48;2;0;242;0m▀[38;2;0;245;0m[48;2;0;245;0m▀[38;2;0;17;0m[48;2;0;23;0m▀[38;2;0;1;0m[48;2;0;0;0m▀[38;2;0;2;0m[48;2;0;1;0m▀[38;2;0;3;0m[48;2;0;0;0m▀[38;2;0;59;0m▀[38;2;0;56;0m▀[38;2;0;4;0m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;21;0m[48;2;0;21;0m▀[38;2;0;248;0m[48;2;0;244;0m▀[38;2;0;238;0m[48;2;0;237;0m▀[38;2;0;14;0m[48;2;0;11;0m▀[38;2;0;0;0m[48;2;0;4;0m▀▀[38;2;0;14;0m[48;2;0;11;0m▀[38;2;0;238;0m[48;2;0;237;0m▀[38;2;0;249;0m[48;2;0;245;0m▀[38;2;0;16;0m[48;2;0;16;0m▀▀[38;2;0;249;0m[48;2;0;249;0m▀[38;2;0;240;0m[48;2;0;240;0m▀[38;2;0;14;0m[48;2;0;14;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;14m[48;2;0;0;14m▀[38;2;0;0;240m[48;2;0;0;240m▀[38;2;0;1;248m[48;2;0;1;248m▀[38;2;0;0;21m[48;2;0;0;21m▀[38;2;0;21;0m[48;2;0;21;0m▀[38;2;0;248;1m[48;2;0;248;1m▀[38;2;0;238;0m[48;2;0;237;0m▀[38;2;0;18;0m[48;2;0;0;0m▀[38;2;0;4;0m▀[38;2;0;2;0m▀[38;2;0;0;0m[48;2;0;138;0m▀[38;2;0;236;0m[48;2;0;245;0m▀[38;2;0;245;0m[48;2;0;255;0m▀[38;2;0;21;0m[48;2;0;25;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;16;0m[48;2;0;16;0m▀[38;2;0;235;0m[48;2;0;237;0m▀[38;2;0;254;0m[48;2;0;251;0m▀[38;2;0;228;0m[48;2;0;136;0m▀[38;2;0;226;0m[48;2;0;125;0m▀[38;2;0;230;0m[48;2;0;134;0m▀[38;2;0;227;0m[48;2;0;253;0m▀[38;2;0;0;0m[48;2;0;145;0m▀[38;2;0;1;0m[48;2;0;0;0m▀[38;2;0;2;0m▀[38;2;0;0;0m▀[38;2;0;19;0m[48;2;0;21;0m▀[38;2;0;242;0m[48;2;0;255;0m▀[38;2;0;241;0m[48;2;0;247;0m▀[38;2;0;1;0m[48;2;0;133;0m▀[38;2;0;3;0m[48;2;0;0;0m▀▀[38;2;0;0;0m[48;2;0;135;0m▀[38;2;0;236;0m[48;2;0;245;0m▀[38;2;0;235;0m[48;2;0;249;0m▀[38;2;0;12;0m[48;2;0;13;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;12;0m[48;2;0;13;0m▀[38;2;0;235;0m[48;2;0;249;0m▀[38;2;0;237;0m[48;2;0;245;0m▀[38;2;0;0;0m[48;2;0;135;0m▀[38;2;0;2;0m[48;2;0;0;0m▀[38;2;0;4;0m▀[38;2;0;20;0m▀[38;2;0;242;0m[48;2;0;241;0m▀[38;2;0;245;0m[48;2;0;242;0m▀[38;2;0;20;0m[48;2;0;20;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;18;0m[48;2;0;18;0m▀[38;2;0;242;0m[48;2;0;242;0m▀[38;2;0;245;0m[48;2;0;245;0m▀[38;2;0;20;0m[48;2;0;20;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;18;0m[48;2;0;20;0m▀[38;2;0;239;0m[48;2;0;253;0m▀[38;2;0;244;0m[48;2;0;248;0m▀[38;2;0;4;0m[48;2;0;135;0m▀[38;2;0;3;0m[48;2;0;0;0m▀[38;2;0;5;0m▀[38;2;0;2;0m▀[38;2;0;0;0m[48;2;0;136;0m▀[48;2;0;131;0m▀[48;2;0;8;0m▀[48;2;0;0;0m▀[38;2;0;24;0m[48;2;0;14;0m▀[38;2;0;255;0m[48;2;0;118;0m▀[38;2;0;250;0m[48;2;0;255;0m▀[38;2;0;200;0m▀[38;2;0;0;0m[48;2;0;148;0m▀▀[38;2;0;200;0m[48;2;0;255;0m▀[38;2;0;250;0m▀[38;2;0;255;0m[48;2;0;119;0m▀[38;2;0;18;0m[48;2;0;8;0m▀[38;2;0;16;0m[48;2;0;23;0m▀[38;2;0;249;0m[48;2;0;249;0m▀[38;2;0;240;0m[48;2;0;240;0m▀[38;2;0;14;0m[48;2;0;14;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;14m[48;2;0;0;14m▀[38;2;0;0;240m[48;2;0;4;236m▀[38;2;0;1;248m[48;2;0;5;244m▀[38;2;0;0;21m[48;2;0;0;21m▀[38;2;0;22;0m[48;2;0;23;0m▀[38;2;0;245;1m[48;2;0;242;1m▀[38;2;0;248;0m[48;2;0;255;0m▀[38;2;0;150;0m▀[38;2;0;145;0m▀[38;2;0;156;0m▀[38;2;0;255;0m▀[48;2;0;103;0m▀[38;2;0;111;0m[48;2;0;0;0m▀[38;2;0;10;0m[48;2;0;4;0m▀[38;2;0;0;0m▀[38;2;0;14;0m[48;2;0;15;0m▀[38;2;0;235;0m[48;2;0;253;0m▀[38;2;0;244;0m[48;2;0;255;0m▀[38;2;0;2;0m[48;2;0;26;0m▀[38;2;0;0;0m[48;2;0;8;0m▀[48;2;0;7;0m▀[38;2;0;111;0m[48;2;0;5;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;147;0m▀[38;2;0;9;0m[48;2;0;19;0m▀[38;2;0;0;0m[48;2;0;4;0m▀[38;2;0;8;0m▀[38;2;0;108;0m[48;2;0;0;0m▀[38;2;0;255;0m[48;2;0;100;0m▀[48;2;0;255;0m▀[38;2;0;147;0m▀[38;2;0;152;0m▀[38;2;0;255;0m▀[48;2;0;107;0m▀[38;2;0;107;0m[48;2;0;0;0m▀[38;2;0;5;0m[48;2;0;4;0m▀[38;2;0;1;0m[48;2;0;5;0m▀[38;2;0;5;0m[48;2;0;4;0m▀[38;2;0;107;0m[48;2;0;0;0m▀[38;2;0;255;0m[48;2;0;107;0m▀[48;2;0;255;0m▀[38;2;0;154;0m▀[38;2;0;145;0m▀[38;2;0;152;0m▀[38;2;0;248;0m▀[38;2;0;255;0m[48;2;0;101;0m▀[38;2;0;22;0m[48;2;0;12;0m▀[38;2;0;0;0m[48;2;0;4;0m▀[38;2;0;18;0m[48;2;0;18;0m▀[38;2;0;239;0m[48;2;0;255;0m▀[38;2;0;242;0m▀[38;2;0;19;0m[48;2;0;20;0m▀[38;2;0;0;0m[48;2;0;3;0m▀[38;2;0;11;0m[48;2;0;0;0m▀[38;2;0;114;0m▀[38;2;0;255;0m[48;2;0;103;0m▀[48;2;0;255;0m▀[38;2;0;152;0m▀[38;2;0;145;0m▀[38;2;0;158;0m▀[38;2;0;255;0m[48;2;0;251;0m▀[38;2;0;253;0m[48;2;0;232;0m▀[38;2;0;16;0m[48;2;0;11;0m▀[38;2;0;0;0m[48;2;0;12;0m▀[48;2;0;134;0m▀[48;2;0;10;0m▀[38;2;0;109;0m[48;2;0;2;0m▀[38;2;0;245;0m[48;2;0;236;0m▀[38;2;0;255;0m[48;2;0;251;0m▀▀[38;2;0;245;0m[48;2;0;235;0m▀[38;2;0;108;0m[48;2;0;6;0m▀[38;2;0;0;0m[48;2;0;2;0m▀[48;2;0;0;0m▀[38;2;0;8;0m[48;2;0;151;0m▀[38;2;0;247;0m[48;2;0;252;0m▀[38;2;0;240;0m[48;2;0;237;0m▀[38;2;0;14;0m[48;2;0;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;15m[48;2;0;6;8m▀[38;2;0;0;255m[48;2;0;104;136m▀[48;2;0;109;140m▀[38;2;0;0;23m[48;2;0;7;12m▀[38;2;0;23;0m[48;2;0;19;0m▀[38;2;0;245;1m[48;2;0;249;1m▀[38;2;0;249;0m[48;2;0;237;0m▀[38;2;0;172;0m[48;2;0;0;0m▀[38;2;0;167;0m▀[38;2;0;173;0m▀[38;2;0;165;0m▀[38;2;0;2;0m▀[38;2;0;0;0m[48;2;0;103;0m▀[48;2;0;111;0m▀[48;2;0;99;0m▀[38;2;0;13;0m[48;2;0;0;0m▀[38;2;0;165;0m▀[38;2;0;172;0m▀[38;2;0;17;0m▀[38;2;0;0;0m[48;2;0;104;0m▀[48;2;0;106;0m▀[38;2;0;19;0m[48;2;0;0;0m▀[38;2;0;170;0m▀[38;2;0;164;0m▀[38;2;0;13;0m▀[38;2;0;0;0m[48;2;0;104;0m▀[48;2;0;111;0m▀[48;2;0;105;0m▀[48;2;0;0;0m▀[38;2;0;163;0m▀[38;2;0;172;0m▀▀[38;2;0;167;0m▀[38;2;0;4;0m▀[38;2;0;0;0m[48;2;0;103;0m▀[48;2;0;111;0m▀[48;2;0;110;0m▀[48;2;0;111;0m▀[48;2;0;103;0m▀[38;2;0;4;0m[48;2;0;0;0m▀[38;2;0;167;0m▀[38;2;0;173;0m▀[38;2;0;171;0m▀[38;2;0;172;0m▀[38;2;0;159;0m▀[38;2;0;0;0m▀[48;2;0;103;0m▀[48;2;0;107;0m▀[38;2;0;13;0m[48;2;0;0;0m▀[38;2;0;167;0m▀[38;2;0;170;0m▀[38;2;0;15;0m▀[38;2;0;0;0m[48;2;0;113;0m▀[38;2;0;69;0m[48;2;0;245;0m▀[38;2;0;0;0m[48;2;0;114;0m▀[48;2;0;0;0m▀[38;2;0;162;0m▀[38;2;0;168;0m▀[38;2;0;174;0m▀[38;2;0;255;0m[48;2;0;141;0m▀[48;2;0;252;0m▀[38;2;0;235;0m[48;2;0;237;0m▀[38;2;0;9;0m[48;2;0;9;0m▀[38;2;0;20;0m[48;2;0;19;0m▀[38;2;0;232;0m[48;2;0;211;0m▀[38;2;0;16;0m[48;2;0;0;0m▀[38;2;0;19;0m[48;2;0;7;0m▀[38;2;0;255;0m[48;2;0;142;0m▀[48;2;0;248;0m▀▀[48;2;0;142;0m▀[38;2;0;25;0m[48;2;0;8;0m▀[38;2;0;6;0m[48;2;0;0;0m▀[38;2;0;91;0m[48;2;0;244;0m▀[38;2;0;255;0m[48;2;0;253;0m▀[48;2;0;255;0m▀[38;2;0;235;0m[48;2;0;236;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;15;0m[48;2;0;14;0m▀[38;2;0;255;0m[48;2;0;236;4m▀[48;2;0;245;4m▀[38;2;0;17;0m[48;2;0;16;0m▀[38;2;0;16;0m▀[38;2;0;249;0m[48;2;0;249;0m▀[38;2;0;239;0m[48;2;0;240;0m▀[38;2;0;15;0m[48;2;0;9;0m▀[38;2;0;9;0m[48;2;0;14;0m▀[38;2;0;116;0m[48;2;0;255;0m▀[38;2;0;122;0m▀[38;2;0;131;0m▀[38;2;0;255;0m[48;2;0;252;0m▀[48;2;0;251;0m▀[48;2;0;253;0m▀[38;2;0;127;0m[48;2;0;255;0m▀[38;2;0;122;0m▀▀[38;2;0;129;0m▀[38;2;0;255;0m[48;2;0;252;0m▀▀[38;2;0;131;0m[48;2;0;255;0m▀[38;2;0;122;0m▀▀[38;2;0;133;0m▀[38;2;0;255;0m[48;2;0;252;0m▀[48;2;0;251;0m▀[48;2;0;252;0m▀[38;2;0;133;0m[48;2;0;255;0m▀[38;2;0;122;0m▀[38;2;0;123;0m▀▀[38;2;0;122;0m▀[38;2;0;130;0m▀[38;2;0;255;0m[48;2;0;252;0m▀[48;2;0;251;0m▀▀▀[48;2;0;252;0m▀[38;2;0;130;0m[48;2;0;255;0m▀[38;2;0;122;0m▀[38;2;0;123;0m▀[38;2;0;122;0m▀[38;2;0;123;0m▀[38;2;0;122;0m▀[38;2;0;128;0m▀[38;2;0;255;0m[48;2;0;252;0m▀▀[38;2;0;132;0m[48;2;0;255;0m▀[38;2;0;122;0m▀▀[38;2;0;132;0m▀[38;2;0;255;0m[48;2;0;253;0m▀[48;2;0;254;0m▀[48;2;0;253;0m▀[38;2;0;127;0m[48;2;0;255;0m▀[38;2;0;112;0m▀[38;2;0;2;0m[48;2;0;62;0m▀[38;2;0;1;0m[48;2;0;4;0m▀[38;2;0;7;0m[48;2;0;24;0m▀[38;2;0;247;0m[48;2;0;248;0m▀[38;2;0;240;0m[48;2;0;240;0m▀[38;2;0;8;0m[48;2;0;9;0m▀[38;2;0;16;0m[48;2;0;11;0m▀[38;2;0;229;0m[48;2;0;245;0m▀[38;2;0;125;0m[48;2;0;255;0m▀[38;2;0;6;0m[48;2;0;16;0m▀[38;2;0;0;0m[48;2;0;9;0m▀[38;2;0;237;0m[48;2;0;239;0m▀▀[38;2;0;0;0m[48;2;0;9;0m▀[38;2;0;7;0m[48;2;0;19;0m▀[38;2;0;120;0m[48;2;0;255;0m▀[38;2;0;240;0m▀[38;2;0;254;0m[48;2;0;253;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;236;0m[48;2;0;236;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;14;0m[48;2;0;14;0m▀[38;2;0;240;0m[48;2;0;240;0m▀[38;2;0;249;0m[48;2;0;249;0m▀[38;2;0;16;0m[48;2;0;16;0m▀▀[38;2;0;249;0m[48;2;0;249;0m▀[38;2;0;240;0m[48;2;0;240;0m▀[38;2;0;9;0m[48;2;0;9;0m▀[38;2;0;13;0m[48;2;0;13;0m▀[38;2;0;235;0m[48;2;0;239;0m▀[38;2;0;251;0m[48;2;0;255;0m▀[38;2;0;250;0m[48;2;0;254;0m▀[38;2;0;255;0m[48;2;0;255;0m▀▀▀[38;2;0;251;0m▀▀[48;2;0;254;0m▀[38;2;0;250;0m[48;2;0;255;0m▀[38;2;0;254;0m▀▀[38;2;0;250;0m▀▀▀▀[38;2;0;254;0m▀▀▀[38;2;0;250;0m▀▀▀▀▀▀[38;2;0;254;0m▀▀▀▀▀[38;2;0;250;0m▀▀▀▀▀[38;2;0;251;0m[48;2;0;254;0m▀[48;2;0;255;0m▀[38;2;0;255;0m▀▀[38;2;0;251;0m▀▀▀▀[38;2;0;255;0m▀▀▀[38;2;0;250;0m[48;2;0;254;0m▀[38;2;0;251;0m[48;2;0;255;0m▀[38;2;0;248;0m[48;2;0;243;0m▀[38;2;0;17;0m[48;2;0;17;0m▀[38;2;0;16;0m[48;2;0;16;0m▀[38;2;0;249;0m[48;2;0;248;0m▀[38;2;0;240;0m[48;2;0;239;0m▀[38;2;0;9;0m[48;2;0;9;0m▀[38;2;0;12;0m[48;2;0;12;0m▀[38;2;0;243;0m[48;2;0;243;0m▀[38;2;0;242;0m[48;2;0;246;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;239;0m[48;2;0;238;0m▀▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;17;0m[48;2;0;17;0m▀[38;2;0;237;0m[48;2;0;241;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;253;0m[48;2;0;253;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;236;0m[48;2;0;236;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;14;0m[48;2;0;14;0m▀[38;2;0;240;0m[48;2;0;240;0m▀[38;2;0;249;0m[48;2;0;249;0m▀[38;2;0;17;0m[48;2;0;12;0m▀[38;2;0;16;0m[48;2;0;16;0m▀[38;2;0;248;0m[48;2;0;254;0m▀[38;2;0;239;0m[48;2;0;245;0m▀[38;2;0;9;0m[48;2;0;9;0m▀[38;2;0;14;0m▀[38;2;0;239;0m[48;2;0;239;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;254;0m[48;2;0;254;0m▀[38;2;0;255;0m[48;2;0;255;0m▀▀▀[48;2;0;254;0m▀▀[48;2;0;231;0m▀[38;2;0;246;0m[48;2;0;44;0m▀[48;2;0;20;0m▀▀▀[48;2;0;21;0m▀▀[38;2;0;245;0m[48;2;0;23;0m▀[48;2;0;25;0m▀[48;2;0;24;0m▀[38;2;0;246;0m[48;2;0;20;0m▀[48;2;0;19;0m▀▀[38;2;0;245;0m[48;2;0;25;0m▀▀[48;2;0;24;0m▀[38;2;0;246;0m[48;2;0;18;0m▀[48;2;0;21;0m▀[48;2;0;19;0m▀[48;2;0;18;0m▀[38;2;0;247;0m[48;2;0;17;0m▀▀[38;2;0;246;0m[48;2;0;20;0m▀[48;2;0;21;0m▀[48;2;0;20;0m▀[38;2;0;245;0m[48;2;0;26;0m▀[38;2;0;246;0m[48;2;0;40;0m▀[38;2;0;255;0m[48;2;0;227;0m▀[48;2;0;254;0m▀▀[48;2;0;255;0m▀▀▀▀▀▀▀▀[38;2;0;254;0m[48;2;0;254;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;244;0m[48;2;0;244;0m▀[38;2;0;18;0m[48;2;0;13;0m▀[38;2;0;16;0m[48;2;0;15;0m▀[38;2;0;253;0m[48;2;0;235;0m▀[38;2;0;244;0m[48;2;0;226;0m▀[38;2;0;9;0m[48;2;0;8;0m▀[38;2;0;13;0m▀[38;2;0;243;0m[48;2;0;243;0m▀[38;2;0;246;0m[48;2;0;246;0m▀[38;2;0;16;0m[48;2;0;11;0m▀[38;2;0;6;0m[48;2;0;5;0m▀[38;2;0;243;0m[48;2;0;225;0m▀▀[38;2;0;6;0m[48;2;0;5;0m▀[38;2;0;18;0m[48;2;0;13;0m▀[38;2;0;241;0m[48;2;0;241;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;253;0m[48;2;0;253;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;236;0m[48;2;0;236;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;14;0m[48;2;0;15;0m▀[38;2;0;240;0m[48;2;0;235;0m▀[38;2;0;249;0m[48;2;0;255;0m▀[38;2;0;33;0m[48;2;0;222;0m▀[38;2;0;19;0m[48;2;0;5;0m▀[38;2;0;232;0m[48;2;0;2;0m▀[38;2;0;224;0m▀[38;2;0;12;0m[48;2;0;0;0m▀[38;2;0;30;0m[48;2;0;218;0m▀[38;2;0;240;0m[48;2;0;254;0m▀[38;2;0;255;0m▀[38;2;0;254;0m[48;2;0;255;0m▀[38;2;0;255;0m▀▀[38;2;0;254;0m[48;2;0;254;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;237;0m[48;2;0;236;0m▀[38;2;0;33;0m[48;2;0;7;0m▀[38;2;0;0;0m[48;2;0;17;0m▀[38;2;0;73;0m[48;2;0;84;0m▀[38;2;0;87;0m[48;2;0;104;0m▀[38;2;0;37;0m[48;2;0;107;0m▀[38;2;0;43;0m[48;2;0;89;0m▀[38;2;0;92;0m[48;2;0;82;0m▀[38;2;0;75;0m[48;2;0;55;0m▀[38;2;0;0;0m[48;2;0;2;0m▀[38;2;0;1;0m[48;2;0;25;0m▀[38;2;0;75;0m[48;2;0;83;0m▀[38;2;0;78;0m[48;2;0;97;0m▀[38;2;0;89;0m[48;2;0;156;0m▀[38;2;0;67;0m[48;2;0;48;0m▀[38;2;0;0;0m[48;2;0;3;0m▀[48;2;0;9;0m▀[38;2;0;80;0m[48;2;0;104;0m▀[38;2;0;68;0m[48;2;0;123;0m▀[38;2;0;95;0m[48;2;0;149;0m▀[38;2;0;75;0m[48;2;0;97;0m▀[38;2;0;59;0m[48;2;0;132;0m▀[38;2;0;57;0m[48;2;0;151;0m▀[38;2;0;68;0m[48;2;0;101;0m▀[38;2;0;72;0m[48;2;0;35;0m▀[38;2;0;86;0m[48;2;0;146;0m▀[38;2;0;68;0m[48;2;0;49;0m▀[38;2;0;0;0m[48;2;0;2;0m▀[38;2;0;39;0m[48;2;0;20;0m▀[38;2;0;244;0m[48;2;0;243;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;254;0m[48;2;0;254;0m▀[38;2;0;255;0m[48;2;0;255;0m▀▀▀▀▀▀▀[38;2;0;254;0m▀[38;2;0;255;0m[48;2;0;254;0m▀[38;2;0;244;0m▀[38;2;0;39;0m[48;2;0;225;0m▀[38;2;0;5;0m[48;2;0;4;0m▀[38;2;0;23;0m[48;2;0;0;0m▀[38;2;0;22;0m▀[38;2;0;4;0m▀[38;2;0;33;0m[48;2;0;218;0m▀[38;2;0;243;0m[48;2;0;254;0m▀[38;2;0;246;0m▀[38;2;0;36;0m[48;2;0;222;0m▀[38;2;0;4;0m[48;2;0;2;0m▀[38;2;0;22;0m[48;2;0;0;0m▀▀[38;2;0;4;0m[48;2;0;2;0m▀[38;2;0;37;0m[48;2;0;222;0m▀[38;2;0;241;0m[48;2;0;254;0m▀[38;2;0;255;0m▀[38;2;0;253;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;236;0m[48;2;0;236;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;236;0m[48;2;0;236;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;252;0m[48;2;0;254;0m▀[38;2;0;188;0m[48;2;0;255;0m▀[38;2;0;180;0m▀▀[38;2;0;187;0m▀[38;2;0;252;0m▀[38;2;0;255;0m▀▀▀▀▀[38;2;0;254;0m▀[38;2;0;255;0m[48;2;0;254;0m▀[38;2;0;235;0m[48;2;0;251;0m▀[38;2;0;13;0m[48;2;0;202;0m▀[38;2;0;3;0m[48;2;0;18;0m▀[38;2;0;77;0m[48;2;0;0;0m▀[38;2;0;75;0m▀[38;2;0;76;0m▀[38;2;0;72;0m▀[38;2;0;27;0m▀[38;2;0;29;0m▀[38;2;0;0;0m▀[38;2;0;5;0m▀[38;2;0;75;0m▀[38;2;0;85;0m▀[38;2;0;41;0m▀[38;2;0;0;0m▀[38;2;0;2;0m▀▀[38;2;0;63;0m▀[38;2;0;92;0m▀[38;2;0;50;0m▀[38;2;0;0;0m[48;2;0;1;0m▀[38;2;0;52;0m[48;2;0;0;0m▀[38;2;0;50;0m▀[38;2;0;85;0m▀[38;2;0;73;0m▀[38;2;0;85;0m▀[38;2;0;72;0m▀[38;2;0;0;0m[48;2;0;14;0m▀[38;2;0;21;0m[48;2;0;199;0m▀[38;2;0;243;0m[48;2;0;253;0m▀[38;2;0;255;0m[48;2;0;254;0m▀[38;2;0;254;0m[48;2;0;255;0m▀[38;2;0;255;0m▀▀▀▀▀▀▀[48;2;4;255;0m▀▀[48;2;0;255;0m▀[38;2;0;253;0m▀[38;2;0;189;0m▀[38;2;0;185;0m▀[48;2;4;255;0m▀[38;2;0;187;0m▀[38;2;0;252;0m▀[38;2;0;255;0m[48;2;5;255;0m▀[48;2;4;255;0m▀[38;2;0;253;0m[48;2;20;255;0m▀[38;2;0;188;0m[48;2;200;255;0m▀[38;2;0;185;0m[48;2;212;255;0m▀[48;2;211;255;0m▀[38;2;0;188;0m[48;2;212;255;0m▀[38;2;0;253;0m[48;2;209;255;0m▀[38;2;0;255;0m[48;2;208;255;0m▀▀[38;2;0;254;0m[48;2;208;254;0m▀[38;2;0;255;0m[48;2;208;255;0m▀[38;2;0;236;0m[48;2;193;236;0m▀[38;2;0;15;0m[48;2;12;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;236;0m[48;2;0;236;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;254;0m[48;2;0;254;0m▀[38;2;0;252;0m[48;2;0;255;0m▀▀▀▀[38;2;0;255;0m▀▀▀▀▀▀▀▀▀[48;2;0;253;0m▀[38;2;0;220;0m[48;2;0;255;0m▀[38;2;0;216;0m▀[38;2;0;217;0m▀▀▀[38;2;0;216;0m▀▀[38;2;0;215;0m▀▀[38;2;0;216;0m▀[38;2;0;217;0m▀[38;2;0;216;0m▀[38;2;0;215;0m▀▀▀[38;2;0;216;0m▀[38;2;0;217;0m▀[38;2;0;216;0m▀[38;2;0;215;0m▀[38;2;0;216;0m▀[38;2;0;217;0m▀▀[38;2;0;216;0m▀[38;2;0;217;0m▀[38;2;0;216;0m▀[38;2;0;218;0m▀[38;2;0;255;0m[48;2;0;254;0m▀[48;2;0;255;0m▀▀▀▀[38;2;4;255;0m▀▀▀▀▀[38;2;2;255;0m▀[38;2;0;255;0m[48;2;144;255;0m▀[48;2;137;255;0m▀[38;2;3;255;0m[48;2;0;255;0m▀[38;2;4;255;0m▀[38;2;4;252;0m▀[38;2;3;252;0m▀[38;2;0;252;0m[48;2;135;255;0m▀[48;2;148;255;0m▀[38;2;0;255;0m[48;2;147;255;0m▀[48;2;148;255;0m▀▀[48;2;147;255;0m▀[38;2;30;252;0m[48;2;137;255;0m▀[38;2;33;252;0m▀[38;2;32;252;0m▀[38;2;46;252;0m[48;2;143;255;0m▀[38;2;247;255;0m[48;2;244;255;0m▀[38;2;255;255;0m[48;2;253;255;0m▀[48;2;252;255;0m▀[38;2;255;254;0m[48;2;252;254;0m▀[38;2;255;255;0m[48;2;253;255;0m▀[38;2;246;236;0m[48;2;234;236;0m▀[38;2;16;15;0m[48;2;15;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;236;0m[48;2;0;236;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;254;0m[48;2;0;254;0m▀[38;2;0;255;0m[48;2;0;255;0m▀▀▀▀▀▀▀▀▀▀▀▀▀▀[38;2;0;253;0m▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀[48;2;4;255;0m▀▀▀[48;2;2;255;0m▀[38;2;4;253;0m[48;2;0;255;0m▀▀▀▀▀▀▀[38;2;3;255;0m▀[38;2;0;255;0m[48;2;3;255;0m▀[38;2;1;255;0m[48;2;4;255;0m▀[38;2;0;255;0m▀[38;2;11;255;0m[48;2;11;255;0m▀[38;2;161;255;0m[48;2;105;255;0m▀[38;2;172;255;0m[48;2;113;255;0m▀[48;2;112;255;0m▀[48;2;121;255;0m▀[38;2;154;255;0m[48;2;255;255;0m▀[38;2;162;255;0m▀[38;2;255;255;0m▀▀[38;2;162;255;0m▀[38;2;156;255;0m▀▀[38;2;163;255;0m▀[38;2;255;255;0m[48;2;252;255;0m▀[48;2;247;251;0m▀▀▀▀[48;2;250;254;0m▀[48;2;249;253;0m▀[38;2;255;252;0m[48;2;255;255;0m▀[38;2;255;255;0m[48;2;253;255;0m▀[48;2;251;255;0m▀[48;2;255;255;0m▀▀▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;236;0m[48;2;0;236;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;254;0m[48;2;0;254;0m▀[38;2;0;255;0m[48;2;0;255;0m▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀[48;2;2;255;0m▀▀▀▀▀▀▀▀[48;2;0;255;0m▀[48;2;5;255;0m▀[48;2;106;255;0m▀[48;2;118;255;0m▀[48;2;116;255;0m▀[48;2;130;255;0m▀[38;2;80;255;0m[48;2;255;255;0m▀[38;2;87;255;0m▀[38;2;90;255;0m▀[38;2;91;255;0m▀▀[38;2;90;255;0m▀[38;2;91;255;0m▀[38;2;81;255;0m▀[38;2;0;255;0m[48;2;107;255;0m▀[48;2;99;255;0m▀▀▀[48;2;102;255;0m▀▀[48;2;103;255;0m▀[48;2;101;255;0m▀[38;2;126;255;0m[48;2;83;253;0m▀[38;2;144;255;0m[48;2;83;255;0m▀[38;2;146;255;0m[48;2;81;253;0m▀[38;2;155;255;0m[48;2;94;253;0m▀[38;2;245;255;0m[48;2;244;254;0m▀[38;2;247;251;0m[48;2;255;255;0m▀▀▀[38;2;253;253;0m▀[38;2;255;255;0m[48;2;146;146;0m▀[48;2;138;138;0m▀▀[48;2;146;146;0m▀[48;2;254;254;0m▀[48;2;152;152;0m▀[38;2;180;180;0m[48;2;15;15;0m▀[38;2;246;246;0m[48;2;233;233;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[48;2;254;254;0m▀[48;2;255;255;0m▀▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;236;0m[48;2;0;236;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;254;0m[48;2;0;254;0m▀[38;2;0;255;0m[48;2;0;255;0m▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀[38;2;2;255;0m▀▀▀▀[38;2;0;255;0m[48;2;32;255;0m▀[48;2;37;255;0m▀[48;2;40;255;0m▀▀▀▀▀[48;2;37;255;0m▀[38;2;1;255;0m[48;2;0;255;0m▀[38;2;10;255;0m▀[38;2;153;255;0m▀[38;2;168;255;0m▀[38;2;167;255;0m▀[38;2;166;255;0m▀[38;2;148;255;0m▀[38;2;155;255;0m▀[38;2;255;255;0m[48;2;189;255;0m▀[48;2;205;255;0m▀[48;2;204;255;0m▀[48;2;207;255;0m▀[38;2;252;255;0m[48;2;250;255;0m▀[38;2;253;255;0m[48;2;255;255;0m▀[38;2;255;255;0m[48;2;251;255;0m▀▀▀▀▀▀▀[48;2;247;251;0m▀[48;2;208;212;0m▀[48;2;254;255;0m▀[48;2;205;209;0m▀[48;2;201;204;0m▀[48;2;195;196;0m▀[38;2;149;149;0m[48;2;50;50;0m▀[38;2;136;136;0m[48;2;36;36;0m▀[38;2;137;137;0m[48;2;35;35;0m▀[38;2;131;131;0m[48;2;56;56;0m▀[38;2;89;89;0m[48;2;255;255;0m▀▀▀[38;2;103;103;0m[48;2;224;224;0m▀[38;2;130;130;0m[48;2;4;4;0m▀[38;2;0;0;0m[48;2;2;2;0m▀[38;2;18;18;0m[48;2;12;12;0m▀[38;2;238;238;0m[48;2;246;246;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;236;0m[48;2;0;236;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;254;0m[48;2;0;254;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[48;2;1;255;0m▀▀[38;2;1;255;0m[48;2;0;255;0m▀▀▀▀▀▀▀▀▀▀[38;2;0;255;0m[48;2;1;255;0m▀[38;2;4;255;0m[48;2;14;255;0m▀[38;2;57;255;0m[48;2;176;255;0m▀[38;2;62;255;0m[48;2;188;255;0m▀[38;2;61;255;0m[48;2;187;255;0m▀[38;2;71;255;0m[48;2;188;255;0m▀[38;2;251;255;0m[48;2;186;255;0m▀[38;2;255;255;0m[48;2;192;255;0m▀[38;2;254;255;0m[48;2;255;255;0m▀▀▀[38;2;253;255;0m▀[38;2;255;255;0m▀[38;2;243;255;0m▀[38;2;63;255;0m▀[38;2;47;255;0m▀[38;2;51;255;0m▀▀▀▀▀[38;2;50;255;0m▀[38;2;47;255;0m▀[38;2;48;255;0m▀[38;2;47;255;0m▀[38;2;57;255;0m▀[38;2;236;255;0m▀[38;2;255;255;0m▀[38;2;254;255;0m▀[38;2;255;255;0m▀▀▀▀[38;2;254;254;0m▀[38;2;255;255;0m[48;2;254;254;0m▀[38;2;241;241;0m[48;2;251;251;0m▀[38;2;89;89;0m[48;2;178;178;0m▀[38;2;165;165;0m[48;2;88;88;0m▀[38;2;57;57;0m[48;2;244;244;0m▀[38;2;47;47;0m[48;2;255;255;0m▀[38;2;52;52;0m[48;2;247;247;0m▀[38;2;182;182;0m[48;2;84;84;0m▀[38;2;198;198;0m[48;2;69;69;0m▀[38;2;197;197;0m[48;2;70;70;0m▀[48;2;68;68;0m▀[38;2;194;194;0m[48;2;79;79;0m▀[38;2;255;255;0m[48;2;159;159;0m▀[38;2;191;191;0m[48;2;14;14;0m▀[38;2;6;6;0m[48;2;0;0;0m▀[38;2;3;3;0m▀[38;2;4;4;0m[48;2;20;20;0m▀[38;2;51;51;0m[48;2;212;212;0m▀[38;2;201;201;0m[48;2;42;42;0m▀[38;2;252;252;0m[48;2;237;237;0m▀[38;2;254;254;0m[48;2;255;255;0m▀[38;2;255;255;0m[48;2;254;254;0m▀[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;236;0m[48;2;0;236;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;254;0m[48;2;0;254;0m▀[38;2;0;255;0m[48;2;3;255;0m▀[48;2;25;255;0m▀[48;2;43;255;0m▀[38;2;12;255;0m[48;2;229;255;0m▀[38;2;13;255;0m[48;2;241;255;0m▀[38;2;15;255;0m[48;2;235;255;0m▀▀▀▀▀[48;2;234;255;0m▀[48;2;235;255;0m▀[38;2;13;255;0m[48;2;218;255;0m▀[38;2;0;255;0m[48;2;33;255;0m▀[48;2;20;255;0m▀[48;2;23;255;0m▀[48;2;22;255;0m▀▀▀▀[38;2;5;255;0m[48;2;24;255;0m▀[38;2;223;255;0m[48;2;39;255;0m▀[38;2;235;255;0m[48;2;41;255;0m▀[38;2;234;255;0m[48;2;40;255;0m▀[38;2;236;255;0m[48;2;54;255;0m▀[38;2;253;255;0m[48;2;241;255;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[48;2;254;255;0m▀[48;2;255;255;0m▀▀▀▀▀▀▀▀[48;2;254;255;0m▀[48;2;255;255;0m▀▀▀▀▀▀▀▀▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;236;236;0m[48;2;243;243;0m▀[38;2;31;31;0m[48;2;38;38;0m▀[38;2;240;240;0m[48;2;235;235;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;253;253;0m▀[48;2;232;232;0m▀[48;2;255;255;0m▀▀[48;2;218;218;0m▀[38;2;241;241;0m[48;2;30;30;0m▀[38;2;12;12;0m[48;2;4;4;0m▀[38;2;0;0;0m[48;2;1;1;0m▀[38;2;3;3;0m▀[38;2;0;0;0m▀[38;2;13;13;0m[48;2;36;36;0m▀[38;2;208;208;0m[48;2;217;217;0m▀[38;2;47;47;0m[48;2;40;40;0m▀[38;2;237;237;0m[48;2;237;237;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;15;0m[48;2;0;15;0m▀[38;2;0;236;0m[48;2;1;236;0m▀[38;2;1;255;0m[48;2;2;255;0m▀[38;2;0;254;0m[48;2;1;254;0m▀[38;2;20;255;0m[48;2;3;255;0m▀[38;2;205;255;0m[48;2;15;255;0m▀[38;2;217;255;0m[48;2;16;255;0m▀[38;2;233;255;0m[48;2;11;255;0m▀[38;2;237;255;0m[48;2;27;255;0m▀[38;2;255;255;0m[48;2;248;255;0m▀[48;2;255;255;0m▀▀▀▀[48;2;254;255;0m▀▀▀[38;2;241;255;0m[48;2;255;255;0m▀[38;2;240;255;0m▀▀▀▀▀▀▀[38;2;235;255;0m▀▀▀[38;2;236;255;0m▀[38;2;254;255;0m▀[38;2;255;255;0m▀▀▀▀▀[48;2;254;254;0m▀▀▀▀[48;2;255;255;0m▀[38;2;253;253;0m▀[38;2;255;255;0m▀▀▀▀▀▀▀▀[48;2;254;254;0m▀[38;2;254;254;0m[48;2;255;255;0m▀[38;2;253;253;0m[48;2;232;232;0m▀[38;2;217;217;0m[48;2;40;40;0m▀[38;2;54;54;0m[48;2;197;197;0m▀[38;2;212;212;0m[48;2;53;53;0m▀[38;2;253;253;0m[48;2;238;238;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;241;241;0m[48;2;254;254;0m▀[38;2;70;70;0m[48;2;224;224;0m▀[38;2;214;214;0m[48;2;24;24;0m▀[38;2;222;222;0m[48;2;10;10;0m▀[38;2;29;29;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;1;1;0m▀[48;2;0;0;0m▀[38;2;1;1;0m[48;2;1;1;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;20;20;0m[48;2;16;16;0m▀[38;2;229;229;0m[48;2;234;234;0m▀[38;2;216;216;0m[48;2;44;44;0m▀[38;2;56;56;0m[48;2;229;229;0m▀[38;2;240;240;0m[48;2;255;255;0m▀[38;2;255;255;0m[48;2;254;254;0m▀[38;2;254;254;0m[48;2;255;255;0m▀[38;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;15;0m[48;2;12;15;0m▀[38;2;0;236;0m[48;2;183;236;0m▀[38;2;0;255;0m[48;2;198;255;0m▀[38;2;0;254;0m[48;2;197;254;0m▀[38;2;0;255;0m[48;2;198;255;0m▀[48;2;199;255;0m▀▀▀[48;2;198;255;0m▀[38;2;52;255;0m[48;2;186;255;0m▀[38;2;57;255;0m[48;2;185;255;0m▀[38;2;56;255;0m▀[38;2;66;255;0m[48;2;188;255;0m▀[38;2;237;255;0m[48;2;249;255;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;255;0m▀[38;2;255;255;0m▀[38;2;254;255;0m▀▀▀▀▀▀▀▀▀▀▀▀[38;2;255;255;0m▀[38;2;254;254;0m▀[38;2;255;255;0m[48;2;253;253;0m▀[38;2;254;254;0m[48;2;255;255;0m▀▀[38;2;255;255;0m[48;2;244;244;0m▀[48;2;57;57;0m▀[48;2;48;48;0m▀[48;2;51;51;0m▀[48;2;67;67;0m▀[38;2;236;236;0m[48;2;216;216;0m▀[38;2;84;84;0m[48;2;20;20;0m▀[38;2;238;238;0m[48;2;230;230;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀▀▀▀▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;231;231;0m[48;2;228;228;0m▀[38;2;31;31;0m[48;2;37;37;0m▀[38;2;208;208;0m[48;2;206;206;0m▀[38;2;44;44;0m[48;2;47;47;0m▀[38;2;237;237;0m[48;2;236;236;0m▀[38;2;255;255;0m[48;2;252;252;0m▀[48;2;249;249;0m▀[38;2;248;248;0m[48;2;71;71;0m▀[38;2;15;15;0m[48;2;4;4;0m▀[38;2;0;0;0m[48;2;2;2;0m▀[38;2;2;2;0m[48;2;0;0;0m▀[38;2;0;0;0m▀[38;2;1;1;0m[48;2;1;1;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;17;17;0m[48;2;18;18;0m▀[38;2;163;163;0m[48;2;221;221;0m▀[38;2;80;80;0m[48;2;29;29;0m▀[38;2;159;159;0m[48;2;214;214;0m▀[38;2;94;94;0m[48;2;39;39;0m▀[38;2;242;242;0m[48;2;233;233;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;16;15;0m[48;2;15;15;0m▀[38;2;247;236;0m[48;2;233;236;0m▀[38;2;255;255;0m[48;2;252;255;0m▀[38;2;255;254;0m[48;2;251;254;0m▀[38;2;255;255;0m[48;2;252;255;0m▀▀▀▀▀▀▀▀▀[48;2;255;255;0m▀▀▀▀▀▀▀▀▀▀▀▀▀▀[38;2;254;254;0m▀[38;2;255;255;0m[48;2;254;254;0m▀[38;2;230;230;0m[48;2;243;243;0m▀[38;2;58;58;0m[48;2;144;144;0m▀[38;2;236;236;0m[48;2;101;101;0m▀[38;2;52;52;0m[48;2;122;122;0m▀[38;2;31;31;0m▀[38;2;47;47;0m[48;2;123;123;0m▀[38;2;206;206;0m[48;2;110;110;0m▀[38;2;213;213;0m[48;2;126;126;0m▀[38;2;191;191;0m[48;2;255;255;0m▀[38;2;199;199;0m[48;2;140;140;0m▀[38;2;51;51;0m[48;2;0;0;0m▀[38;2;17;17;0m[48;2;15;15;0m▀[38;2;235;235;0m[48;2;233;233;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀▀▀▀[48;2;254;254;0m▀[38;2;254;254;0m▀[38;2;255;255;0m[48;2;245;245;0m▀[38;2;245;245;0m[48;2;126;126;0m▀[38;2;18;18;0m[48;2;142;142;0m▀[38;2;204;204;0m[48;2;221;221;0m▀[38;2;48;48;0m[48;2;27;27;0m▀[38;2;239;239;0m[48;2;247;247;0m▀[38;2;255;255;0m[48;2;126;126;0m▀[38;2;59;59;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;2;2;0m▀[48;2;1;1;0m▀[48;2;0;0;0m▀▀[38;2;1;1;0m[48;2;4;4;0m▀[38;2;0;0;0m[48;2;3;3;0m▀[38;2;17;17;0m[48;2;25;25;0m▀[38;2;204;204;0m[48;2;255;255;0m▀[38;2;227;227;0m[48;2;233;233;0m▀[38;2;36;36;0m[48;2;31;31;0m▀[38;2;202;202;0m[48;2;222;222;0m▀[38;2;34;34;0m[48;2;144;144;0m▀[38;2;252;252;0m[48;2;123;123;0m▀[38;2;255;255;0m[48;2;243;243;0m▀[38;2;254;254;0m[48;2;255;255;0m▀[38;2;255;255;0m[48;2;254;254;0m▀[38;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀▀▀▀▀▀▀▀▀▀▀▀▀[48;2;251;251;0m▀▀▀▀[48;2;255;255;0m▀▀▀▀▀▀[48;2;254;254;0m▀[38;2;254;254;0m[48;2;255;255;0m▀[38;2;243;243;0m[48;2;224;224;0m▀[38;2;133;133;0m[48;2;11;11;0m▀[38;2;134;134;0m[48;2;249;249;0m▀[38;2;255;255;0m[48;2;245;245;0m▀[48;2;91;91;0m▀[48;2;255;255;0m▀[38;2;124;124;0m▀[38;2;132;132;0m[48;2;110;110;0m▀[38;2;103;103;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;2;2;0m▀[48;2;23;23;0m▀[38;2;4;4;0m[48;2;154;154;0m▀[38;2;246;246;0m[48;2;104;104;0m▀[38;2;255;255;0m[48;2;241;241;0m▀[38;2;254;254;0m[48;2;255;255;0m▀[38;2;255;255;0m[48;2;254;254;0m▀[48;2;255;255;0m▀▀▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;234;234;0m[48;2;236;236;0m▀[38;2;26;26;0m[48;2;45;45;0m▀[38;2;251;251;0m[48;2;232;232;0m▀[38;2;246;246;0m[48;2;255;255;0m▀[38;2;159;159;0m[48;2;101;101;0m▀[38;2;101;101;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;3;3;0m▀[38;2;2;2;0m[48;2;1;1;0m▀[38;2;1;1;0m[48;2;4;4;0m▀[38;2;0;0;0m[48;2;3;3;0m▀[38;2;4;4;0m[48;2;0;0;0m▀[38;2;2;2;0m▀[38;2;0;0;0m[48;2;156;156;0m▀[48;2;170;170;0m▀[38;2;5;5;0m[48;2;178;178;0m▀[38;2;255;255;0m[48;2;70;70;0m▀[38;2;248;248;0m[48;2;84;84;0m▀[38;2;12;12;0m[48;2;169;169;0m▀[38;2;236;236;0m[48;2;248;248;0m▀[38;2;249;249;0m[48;2;224;224;0m▀[38;2;11;11;0m[48;2;33;33;0m▀[38;2;230;230;0m[48;2;233;233;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀▀▀▀▀▀▀▀▀[38;2;252;252;0m▀[38;2;254;254;0m▀[38;2;251;251;0m▀[38;2;253;253;0m▀[38;2;255;255;0m[48;2;136;136;0m▀[48;2;127;127;0m▀[48;2;129;129;0m▀[48;2;136;136;0m▀[38;2;253;253;0m[48;2;255;255;0m▀[38;2;255;255;0m▀▀▀▀▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;245;245;0m▀[38;2;242;242;0m[48;2;150;150;0m▀[38;2;16;16;0m[48;2;104;104;0m▀[38;2;244;244;0m[48;2;151;151;0m▀[38;2;248;248;0m[48;2;249;249;0m▀[38;2;95;95;0m[48;2;255;255;0m▀[38;2;148;148;0m[48;2;3;3;0m▀[38;2;146;146;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;3;3;0m▀[38;2;3;3;0m[48;2;1;1;0m▀[38;2;0;0;0m[48;2;9;9;0m▀[38;2;15;15;0m[48;2;118;118;0m▀[38;2;235;235;0m[48;2;225;225;0m▀[38;2;32;32;0m[48;2;44;44;0m▀[38;2;233;233;0m[48;2;235;235;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀▀▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;229;229;0m▀[38;2;23;23;0m[48;2;141;141;0m▀[38;2;248;248;0m[48;2;136;136;0m▀[38;2;161;161;0m[48;2;3;3;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;7;7;0m▀[38;2;5;5;0m▀[38;2;4;4;0m▀[38;2;0;0;0m[48;2;94;94;0m▀[48;2;141;141;0m▀[38;2;91;91;0m[48;2;255;255;0m▀[38;2;132;132;0m[48;2;155;155;0m▀[38;2;255;255;0m[48;2;127;127;0m▀[48;2;117;117;0m▀[38;2;154;154;0m[48;2;128;128;0m▀[38;2;67;67;0m[48;2;255;255;0m▀[38;2;15;15;0m[48;2;47;47;0m▀[38;2;250;250;0m[48;2;230;230;0m▀[38;2;255;255;0m[48;2;247;247;0m▀[38;2;241;241;0m[48;2;147;147;0m▀[38;2;12;12;0m[48;2;114;114;0m▀[38;2;230;230;0m[48;2;242;242;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀▀▀▀▀▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;246;246;0m[48;2;240;240;0m▀[38;2;151;151;0m[48;2;72;72;0m▀[38;2;244;244;0m[48;2;165;165;0m▀[38;2;137;137;0m[48;2;36;36;0m▀[38;2;123;123;0m[48;2;37;37;0m▀[38;2;111;111;0m[48;2;205;205;0m▀[38;2;109;109;0m[48;2;222;222;0m▀[38;2;97;97;0m[48;2;255;255;0m▀[38;2;105;105;0m[48;2;215;215;0m▀[38;2;145;145;0m[48;2;23;23;0m▀[38;2;246;246;0m[48;2;232;232;0m▀[38;2;254;254;0m[48;2;255;255;0m▀[38;2;255;255;0m[48;2;254;254;0m▀[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;229;229;0m[48;2;232;232;0m▀[38;2;32;32;0m[48;2;49;49;0m▀[38;2;229;229;0m[48;2;218;218;0m▀[38;2;22;22;0m[48;2;94;94;0m▀[38;2;239;239;0m[48;2;182;182;0m▀[38;2;145;145;0m[48;2;7;7;0m▀[38;2;12;12;0m[48;2;0;0;0m▀[38;2;4;4;0m[48;2;1;1;0m▀[38;2;2;2;0m[48;2;3;3;0m▀[38;2;0;0;0m[48;2;5;5;0m▀[38;2;8;8;0m[48;2;54;54;0m▀[38;2;255;255;0m[48;2;239;239;0m▀[38;2;251;251;0m[48;2;196;196;0m▀[38;2;42;42;0m[48;2;23;23;0m▀[38;2;235;235;0m[48;2;235;235;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀▀[48;2;254;254;0m▀[48;2;255;255;0m▀[38;2;243;243;0m[48;2;235;235;0m▀[38;2;137;137;0m[48;2;39;39;0m▀[38;2;132;132;0m[48;2;26;26;0m▀[38;2;0;0;0m[48;2;49;49;0m▀[48;2;57;57;0m▀[38;2;120;120;0m[48;2;202;202;0m▀[38;2;129;129;0m[48;2;215;215;0m▀[38;2;127;127;0m[48;2;214;214;0m▀[38;2;135;135;0m▀[38;2;255;255;0m[48;2;183;183;0m▀[38;2;153;153;0m[48;2;32;32;0m▀[38;2;121;121;0m[48;2;35;35;0m▀[38;2;104;104;0m[48;2;219;219;0m▀[38;2;98;98;0m[48;2;255;255;0m▀[38;2;108;108;0m[48;2;220;220;0m▀[38;2;148;148;0m[48;2;38;38;0m▀[38;2;120;120;0m[48;2;27;27;0m▀[38;2;29;29;0m[48;2;18;18;0m▀[38;2;253;253;0m[48;2;204;204;0m▀[38;2;234;234;0m[48;2;241;241;0m▀[38;2;25;25;0m[48;2;44;44;0m▀[38;2;253;253;0m[48;2;234;234;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀▀▀▀▀▀[48;2;254;254;0m▀[38;2;254;254;0m[48;2;255;255;0m▀[38;2;251;251;0m[48;2;240;240;0m▀[38;2;196;196;0m[48;2;33;33;0m▀[38;2;74;74;0m[48;2;240;240;0m▀[38;2;253;253;0m[48;2;251;251;0m▀[38;2;255;255;0m[48;2;201;201;0m▀[38;2;53;53;0m[48;2;255;255;0m▀[38;2;66;66;0m[48;2;194;194;0m▀[38;2;170;170;0m[48;2;9;9;0m▀[38;2;2;2;0m[48;2;6;6;0m▀[38;2;10;10;0m[48;2;64;64;0m▀[38;2;252;252;0m[48;2;189;189;0m▀[38;2;255;255;0m[48;2;249;249;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;231;231;0m[48;2;236;236;0m▀[38;2;30;30;0m[48;2;89;89;0m▀[38;2;250;250;0m[48;2;171;171;0m▀[38;2;197;197;0m[48;2;13;13;0m▀[38;2;8;8;0m[48;2;1;1;0m▀[38;2;3;3;0m[48;2;2;2;0m▀[38;2;2;2;0m[48;2;0;0;0m▀[38;2;1;1;0m[48;2;2;2;0m▀[38;2;0;0;0m[48;2;56;56;0m▀[48;2;63;63;0m▀[38;2;252;252;0m[48;2;188;188;0m▀[38;2;238;238;0m[48;2;231;231;0m▀[38;2;8;8;0m[48;2;24;24;0m▀[38;2;73;73;0m[48;2;183;183;0m▀[38;2;245;245;0m[48;2;252;252;0m▀[38;2;255;255;0m[48;2;254;254;0m▀[38;2;254;254;0m[48;2;255;255;0m▀[38;2;255;255;0m▀▀▀▀▀▀▀▀[38;2;243;243;0m▀[38;2;59;59;0m▀[38;2;46;46;0m▀[38;2;48;48;0m▀[38;2;46;46;0m▀[38;2;62;62;0m▀[38;2;252;252;0m▀[38;2;243;243;0m[48;2;239;239;0m▀[38;2;27;27;0m[48;2;87;87;0m▀[38;2;224;224;0m[48;2;170;170;0m▀[38;2;28;28;0m[48;2;88;88;0m▀[38;2;239;239;0m[48;2;239;239;0m▀[38;2;254;254;0m[48;2;246;246;0m▀[38;2;15;15;0m[48;2;20;20;0m▀[38;2;7;7;0m[48;2;0;0;0m▀[38;2;167;167;0m▀[38;2;41;41;0m[48;2;20;20;0m▀[38;2;238;238;0m[48;2;243;243;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;253;253;0m▀[38;2;255;255;0m[48;2;254;254;0m▀[38;2;236;236;0m[48;2;235;235;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m▀▀[38;2;255;255;0m▀[38;2;254;254;0m▀[38;2;255;255;0m▀[38;2;254;254;0m▀[48;2;234;234;0m▀[38;2;231;231;0m[48;2;55;55;0m▀[38;2;43;43;0m[48;2;184;184;0m▀[38;2;231;231;0m[48;2;62;62;0m▀[38;2;239;239;0m[48;2;245;245;0m▀[38;2;42;42;0m[48;2;208;208;0m▀[38;2;214;214;0m[48;2;35;35;0m▀[38;2;20;20;0m[48;2;5;5;0m▀[38;2;0;0;0m[48;2;2;2;0m▀[38;2;21;21;0m[48;2;30;30;0m▀[38;2;221;221;0m[48;2;200;200;0m▀[38;2;25;25;0m[48;2;29;29;0m▀[38;2;226;226;0m[48;2;227;227;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m▀[38;2;254;254;0m▀[38;2;255;255;0m[48;2;225;225;0m▀[38;2;233;233;0m[48;2;34;34;0m▀[38;2;5;5;0m[48;2;0;0;0m▀[38;2;1;1;0m▀[38;2;0;0;0m[48;2;16;16;0m▀[48;2;32;32;0m▀[38;2;6;6;0m[48;2;217;217;0m▀[38;2;21;21;0m[48;2;232;232;0m▀[38;2;252;252;0m[48;2;238;238;0m▀[38;2;254;254;0m[48;2;236;236;0m▀[38;2;45;45;0m[48;2;206;206;0m▀[38;2;203;203;0m[48;2;33;33;0m▀[38;2;13;13;0m[48;2;11;11;0m▀[38;2;16;16;0m[48;2;203;203;0m▀[38;2;241;241;0m[48;2;253;253;0m▀[38;2;255;255;0m[48;2;254;254;0m▀[38;2;254;254;0m[48;2;255;255;0m▀[38;2;255;255;0m▀▀▀▀▀▀▀▀▀[38;2;254;254;0m▀▀▀▀▀[38;2;253;253;0m[48;2;254;254;0m▀[38;2;255;255;0m▀[38;2;242;242;0m[48;2;219;219;0m▀[38;2;20;20;0m[48;2;7;7;0m▀[38;2;229;229;0m[48;2;36;36;0m▀[38;2;255;255;0m[48;2;206;206;0m▀[38;2;232;232;0m[48;2;41;41;0m▀[38;2;19;19;0m[48;2;2;2;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;2;2;0m[48;2;14;14;0m▀[38;2;34;34;0m[48;2;200;200;0m▀[38;2;244;244;0m[48;2;253;253;0m▀[38;2;255;255;0m[48;2;254;254;0m▀[38;2;254;254;0m[48;2;255;255;0m▀▀[38;2;255;255;0m[48;2;243;243;0m▀▀[38;2;239;239;0m[48;2;225;225;0m▀[38;2;15;15;0m[48;2;14;14;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;15;15;0m[48;2;15;15;0m▀[38;2;236;236;0m[48;2;236;236;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m▀[38;2;253;253;0m[48;2;241;241;0m▀[38;2;240;240;0m[48;2;15;15;0m▀[48;2;29;29;0m▀[38;2;252;252;0m[48;2;232;232;0m▀[38;2;241;241;0m[48;2;60;60;0m▀[38;2;252;252;0m[48;2;231;231;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;230;230;0m[48;2;231;231;0m▀[38;2;28;28;0m[48;2;28;28;0m▀[38;2;212;212;0m[48;2;232;232;0m▀[38;2;55;55;0m[48;2;233;233;0m▀[38;2;209;209;0m[48;2;25;25;0m▀[38;2;48;48;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;3;3;0m▀[48;2;0;0;0m▀[38;2;25;25;0m[48;2;21;21;0m▀[38;2;208;208;0m[48;2;234;234;0m▀[38;2;37;37;0m[48;2;38;38;0m▀[38;2;24;24;0m[48;2;218;218;0m▀[38;2;235;235;0m[48;2;254;254;0m▀[38;2;255;255;0m▀[38;2;253;253;0m[48;2;255;255;0m▀[38;2;254;254;0m▀[38;2;245;245;0m▀[38;2;57;57;0m[48;2;235;235;0m▀[38;2;13;13;0m[48;2;238;238;0m▀[38;2;17;17;0m▀[38;2;32;32;0m[48;2;219;219;0m▀[38;2;204;204;0m[48;2;28;28;0m▀[38;2;219;219;0m[48;2;15;15;0m▀[38;2;244;244;0m[48;2;10;10;0m▀[38;2;233;233;0m[48;2;7;7;0m▀[38;2;42;42;0m[48;2;11;11;0m▀[38;2;38;38;0m[48;2;206;206;0m▀[38;2;30;30;0m[48;2;11;11;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;2;2;0m▀[38;2;46;46;0m[48;2;7;7;0m▀[38;2;242;242;0m[48;2;239;239;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[38;2;254;254;0m[48;2;253;253;0m▀[38;2;255;255;0m[48;2;254;254;0m▀▀[48;2;255;255;0m▀▀▀▀▀▀▀▀▀▀▀[38;2;254;254;0m▀▀[38;2;241;241;0m▀[38;2;54;54;0m[48;2;242;242;0m▀[38;2;16;16;0m[48;2;244;244;0m▀[38;2;14;14;0m[48;2;239;239;0m▀[38;2;34;34;0m[48;2;210;210;0m▀[38;2;0;0;0m[48;2;5;5;0m▀[48;2;0;0;0m▀[38;2;1;1;0m▀[38;2;4;4;0m[48;2;8;8;0m▀[38;2;62;62;0m[48;2;216;216;0m▀[38;2;245;245;0m[48;2;253;253;0m▀[38;2;254;254;0m[48;2;255;255;0m▀[38;2;253;253;0m[48;2;251;251;0m▀[38;2;225;225;0m[48;2;38;38;0m▀[38;2;37;37;0m[48;2;0;0;0m▀[38;2;23;23;0m▀[38;2;22;22;0m▀[38;2;1;1;0m▀[38;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;15;15;0m[48;2;14;14;0m▀[38;2;235;235;0m[48;2;240;240;0m▀[38;2;255;255;0m[48;2;246;246;0m▀[38;2;239;239;0m[48;2;76;76;0m▀[38;2;76;76;0m[48;2;184;184;0m▀[38;2;185;185;0m[48;2;255;255;0m▀[38;2;191;191;0m[48;2;74;74;0m▀[38;2;55;55;0m[48;2;0;0;0m▀[38;2;12;12;0m[48;2;190;190;0m▀[38;2;235;235;0m[48;2;252;252;0m▀[38;2;255;255;0m[48;2;253;253;0m▀[38;2;229;229;0m[48;2;250;250;0m▀[38;2;26;26;0m[48;2;201;201;0m▀[38;2;219;219;0m[48;2;51;51;0m▀[38;2;76;76;0m[48;2;6;6;0m▀[38;2;0;0;0m[48;2;200;200;0m▀[48;2;211;211;0m▀[38;2;4;4;0m[48;2;201;201;0m▀[38;2;188;188;0m[48;2;79;79;0m▀[38;2;195;195;0m[48;2;58;58;0m▀[38;2;52;52;0m[48;2;0;0;0m▀[38;2;25;25;0m[48;2;18;18;0m▀[38;2;244;244;0m[48;2;238;238;0m▀[38;2;255;255;0m[48;2;251;251;0m▀[48;2;239;239;0m▀[38;2;244;244;0m[48;2;54;54;0m▀[38;2;88;88;0m[48;2;7;7;0m▀[38;2;240;240;0m[48;2;238;238;0m▀[38;2;255;255;0m[48;2;254;254;0m▀[48;2;253;253;0m▀[48;2;254;254;0m▀[38;2;254;254;0m[48;2;255;255;0m▀[38;2;196;196;0m▀[38;2;192;192;0m▀[38;2;194;194;0m▀▀[38;2;204;204;0m▀[38;2;255;255;0m[48;2;241;241;0m▀[38;2;192;192;0m[48;2;68;68;0m▀[38;2;32;32;0m[48;2;9;9;0m▀[38;2;189;189;0m[48;2;58;58;0m▀[38;2;208;208;0m[48;2;72;72;0m▀[38;2;251;251;0m[48;2;239;239;0m▀[38;2;255;255;0m[48;2;255;255;0m▀[48;2;239;239;0m▀[48;2;56;56;0m▀[48;2;63;63;0m▀[48;2;240;240;0m▀[48;2;255;255;0m▀[48;2;254;254;0m▀[48;2;255;255;0m▀▀▀[48;2;251;251;0m▀▀[48;2;250;250;0m▀[38;2;254;254;0m[48;2;255;255;0m▀[38;2;255;255;0m[48;2;247;247;0m▀[38;2;246;246;0m[48;2;64;64;0m▀[38;2;70;70;0m[48;2;0;0;0m▀[38;2;57;57;0m▀[38;2;62;62;0m▀[38;2;71;71;0m▀[38;2;245;245;0m[48;2;43;43;0m▀[38;2;255;255;0m[48;2;50;50;0m▀[38;2;194;194;0m[48;2;58;58;0m▀[38;2;14;14;0m[48;2;4;4;0m▀[38;2;6;6;0m[48;2;2;2;0m▀[38;2;190;190;0m[48;2;56;56;0m▀[38;2;255;255;0m[48;2;50;50;0m▀▀[38;2;244;244;0m[48;2;45;45;0m▀[38;2;66;66;0m[48;2;0;0;0m▀[38;2;1;1;0m▀[38;2;2;2;0m▀▀[38;2;1;1;0m▀[38;2;0;0;0m▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;14;14;0m[48;2;15;15;0m▀[38;2;242;242;0m[48;2;237;237;0m▀[38;2;241;241;0m[48;2;250;250;0m▀[38;2;18;18;0m[48;2;172;172;0m▀[38;2;240;240;0m[48;2;97;97;0m▀[38;2;54;54;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;122;122;0m▀[38;2;218;218;0m[48;2;132;132;0m▀[38;2;255;255;0m[48;2;253;253;0m▀[48;2;255;255;0m▀[48;2;254;254;0m▀[48;2;251;251;0m▀[48;2;249;249;0m▀[38;2;207;207;0m[48;2;255;255;0m▀[38;2;194;194;0m[48;2;253;253;0m▀[38;2;43;43;0m[48;2;138;138;0m▀[38;2;36;36;0m[48;2;128;128;0m▀[38;2;34;34;0m[48;2;129;129;0m▀[38;2;0;0;0m[48;2;131;131;0m▀[48;2;0;0;0m▀[38;2;2;2;0m▀[38;2;22;22;0m[48;2;4;4;0m▀[38;2;245;245;0m[48;2;231;231;0m▀[38;2;255;255;0m[48;2;96;96;0m▀[38;2;52;52;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;130;130;0m▀[38;2;214;214;0m[48;2;134;134;0m▀[38;2;255;255;0m[48;2;244;244;0m▀[38;2;254;254;0m[48;2;254;254;0m▀[38;2;255;255;0m▀[48;2;252;252;0m▀[48;2;251;251;0m▀[38;2;252;252;0m[48;2;252;252;0m▀[38;2;249;249;0m[48;2;255;255;0m▀[38;2;248;248;0m▀[38;2;249;249;0m▀[38;2;255;255;0m[48;2;123;123;0m▀[48;2;112;112;0m▀[38;2;208;208;0m[48;2;115;115;0m▀[38;2;10;10;0m[48;2;7;7;0m▀[38;2;0;0;0m▀[38;2;207;207;0m[48;2;115;115;0m▀[38;2;255;255;0m[48;2;108;108;0m▀[38;2;62;62;0m[48;2;0;0;0m▀[38;2;39;39;0m▀[38;2;0;0;0m[48;2;3;3;0m▀[38;2;11;11;0m[48;2;11;11;0m▀[38;2;255;255;0m[48;2;112;112;0m▀[38;2;253;253;0m[48;2;255;255;0m▀[38;2;250;250;0m▀[38;2;251;251;0m▀▀[38;2;252;252;0m▀[38;2;255;255;0m[48;2;125;125;0m▀[48;2;111;111;0m▀[48;2;105;105;0m▀[38;2;61;61;0m[48;2;0;0;0m▀[38;2;41;41;0m▀[38;2;0;0;0m[48;2;2;2;0m▀[38;2;2;2;0m[48;2;0;0;0m▀[38;2;3;3;0m▀▀[38;2;2;2;0m▀[38;2;0;0;0m[48;2;2;2;0m▀▀▀[48;2;0;0;0m▀▀[48;2;2;2;0m▀▀▀▀[38;2;2;2;0m[48;2;0;0;0m▀[38;2;0;0;0m▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;14;14;0m[48;2;14;14;0m▀[38;2;238;238;0m[48;2;234;234;0m▀[38;2;252;252;0m[48;2;248;248;0m▀[38;2;103;103;0m[48;2;142;142;0m▀[38;2;0;0;0m[48;2;166;166;0m▀[38;2;158;158;0m[48;2;255;255;0m▀[38;2;255;255;0m[48;2;84;84;0m▀[38;2;2;2;0m[48;2;3;3;0m▀[38;2;100;100;0m[48;2;0;0;0m▀[38;2;245;245;0m[48;2;236;236;0m▀[38;2;252;252;0m[48;2;255;255;0m▀[38;2;255;255;0m[48;2;108;108;0m▀[48;2;95;95;0m▀[48;2;107;107;0m▀[38;2;252;252;0m[48;2;255;255;0m▀[38;2;255;255;0m▀[48;2;104;104;0m▀[48;2;90;90;0m▀[48;2;93;93;0m▀[38;2;161;161;0m[48;2;99;99;0m▀[38;2;18;18;0m[48;2;12;12;0m▀[38;2;164;164;0m[48;2;101;101;0m▀[38;2;255;255;0m[48;2;98;98;0m▀[38;2;160;160;0m[48;2;114;114;0m▀[38;2;178;178;0m[48;2;130;130;0m▀[38;2;244;244;0m[48;2;239;239;0m▀[38;2;25;25;0m[48;2;48;48;0m▀[38;2;230;230;0m[48;2;249;249;0m▀[38;2;251;251;0m[48;2;255;255;0m▀[38;2;252;252;0m[48;2;254;254;0m▀[38;2;255;255;0m[48;2;103;103;0m▀[48;2;95;95;0m▀[48;2;90;90;0m▀[38;2;118;118;0m[48;2;0;0;0m▀[38;2;103;103;0m▀[38;2;96;96;0m▀[38;2;0;0;0m[48;2;2;2;0m▀[48;2;4;4;0m▀▀[48;2;0;0;0m▀▀[48;2;4;4;0m▀▀[38;2;1;1;0m[48;2;0;0;0m▀[38;2;2;2;0m▀[38;2;1;1;0m▀[38;2;0;0;0m▀[48;2;3;3;0m▀[38;2;92;92;0m[48;2;0;0;0m▀[38;2;103;103;0m▀[38;2;102;102;0m▀[38;2;103;103;0m▀[38;2;97;97;0m▀[38;2;0;0;0m[48;2;2;2;0m▀[48;2;4;4;0m▀▀[38;2;1;1;0m[48;2;0;0;0m▀[38;2;2;2;0m▀[38;2;0;0;0m▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;16;16;0m[48;2;9;9;0m▀[38;2;251;251;0m[48;2;148;148;0m▀[38;2;255;255;0m[48;2;160;160;0m▀[48;2;156;156;0m▀▀[48;2;161;161;0m▀[38;2;93;93;0m[48;2;162;162;0m▀[38;2;10;10;0m[48;2;18;18;0m▀[38;2;111;111;0m[48;2;160;160;0m▀[38;2;255;255;0m[48;2;150;150;0m▀[38;2;165;165;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;2;2;0m▀[48;2;5;5;0m▀[48;2;2;2;0m▀[38;2;159;159;0m[48;2;0;0;0m▀[38;2;161;161;0m▀[38;2;0;0;0m[48;2;2;2;0m▀[48;2;4;4;0m▀▀[48;2;3;3;0m▀[48;2;0;0;0m▀[48;2;4;4;0m▀▀▀[48;2;2;2;0m▀[38;2;146;146;0m[48;2;0;0;0m▀[38;2;29;29;0m▀[38;2;153;153;0m▀[38;2;168;168;0m▀[38;2;151;151;0m▀[38;2;0;0;0m[48;2;3;3;0m▀[48;2;4;4;0m▀▀[38;2;2;2;0m[48;2;0;0;0m▀[38;2;4;4;0m▀▀[38;2;0;0;0m▀▀▀▀▀▀▀▀▀▀▀▀[38;2;4;4;0m▀▀▀▀▀[38;2;0;0;0m▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀[48;2;3;3;0m▀[48;2;4;4;0m▀▀▀▀[48;2;3;3;0m▀[48;2;0;0;0m▀[48;2;3;3;0m▀[48;2;4;4;0m▀[38;2;2;2;0m[48;2;0;0;0m▀[38;2;0;0;0m▀▀▀[38;2;3;3;0m▀▀[38;2;0;0;0m▀▀▀▀▀▀▀▀▀[38;2;3;3;0m▀[38;2;1;1;0m▀[38;2;3;3;0m▀▀▀[38;2;0;0;0m▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀[0m
|
||||
BIN
tui/src/skywalker_tui/assets/splash/prodigy-out-of-space.jpg
Normal file
BIN
tui/src/skywalker_tui/assets/splash/prodigy-out-of-space.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.3 KiB |
32
tui/src/skywalker_tui/assets/splash/seti-satellite.ans
Normal file
32
tui/src/skywalker_tui/assets/splash/seti-satellite.ans
Normal file
@ -0,0 +1,32 @@
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀▀▀[38;2;5;5;5m[48;2;9;9;9m▀[38;2;130;130;130m[48;2;135;135;135m▀[38;2;91;91;91m[48;2;45;45;45m▀[38;2;40;40;40m[48;2;48;48;48m▀[38;2;42;42;42m[48;2;63;63;63m▀[38;2;88;88;88m[48;2;103;103;103m▀[38;2;93;93;93m[48;2;117;117;117m▀[38;2;91;91;91m[48;2;113;113;113m▀[38;2;97;98;98m[48;2;115;116;116m▀[38;2;0;0;0m[48;2;1;0;0m▀[38;2;1;18;18m[48;2;0;19;19m▀[38;2;0;234;234m[48;2;0;253;253m▀[38;2;0;251;251m[48;2;0;255;255m▀[38;2;0;249;250m▀[38;2;0;242;251m▀[38;2;0;154;251m[48;2;0;172;255m▀[38;2;0;163;251m[48;2;0;148;255m▀[38;2;0;125;251m[48;2;0;117;255m▀[38;2;0;182;251m[48;2;0;219;255m▀[38;2;0;146;251m[48;2;0;211;255m▀[38;2;0;164;251m[48;2;0;221;255m▀[38;2;0;175;251m[48;2;0;205;255m▀[38;2;0;163;251m[48;2;0;189;255m▀[38;2;0;251;251m[48;2;0;255;255m▀[38;2;0;248;250m▀[38;2;0;251;251m▀[38;2;0;234;234m[48;2;0;253;253m▀[38;2;0;17;17m[48;2;0;18;18m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;2;3;1m[48;2;2;3;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;46;46;0m[48;2;51;51;0m▀[38;2;40;40;0m[48;2;62;62;0m▀[38;2;88;88;0m[48;2;103;103;0m▀[38;2;93;93;0m[48;2;117;117;0m▀[38;2;91;91;0m[48;2;113;113;0m▀[38;2;97;97;0m[48;2;115;115;0m▀[38;2;0;1;1m[48;2;1;3;2m▀[38;2;1;1;0m[48;2;0;0;0m▀[38;2;0;104;104m[48;2;0;59;59m▀[38;2;0;106;106m[48;2;0;73;73m▀[38;2;0;68;68m[48;2;0;77;77m▀[38;2;0;24;24m[48;2;0;91;91m▀[38;2;0;5;5m[48;2;0;90;90m▀[38;2;0;6;6m[48;2;0;87;87m▀[38;2;0;2;2m[48;2;0;6;6m▀[38;2;0;1;1m[48;2;0;1;1m▀[38;2;0;59;59m[48;2;0;56;56m▀[38;2;0;88;88m[48;2;0;114;114m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;15;15m[48;2;0;19;19m▀[38;2;0;116;116m[48;2;0;134;134m▀[38;2;0;65;65m[48;2;0;131;131m▀[38;2;0;27;27m[48;2;0;94;94m▀[38;2;0;20;20m[48;2;0;83;83m▀[38;2;0;7;7m[48;2;0;75;75m▀[38;2;0;11;11m[48;2;0;71;71m▀[38;2;0;3;1m[48;2;0;4;3m▀[38;2;0;1;0m[48;2;0;4;1m▀[38;2;0;68;0m[48;2;0;92;0m▀[38;2;0;80;0m[48;2;0;45;0m▀[38;2;0;57;0m[48;2;0;86;0m▀[38;2;0;90;0m[48;2;0;48;0m▀[38;2;0;1;0m[48;2;0;30;0m▀[38;2;0;2;0m[48;2;0;17;0m▀[38;2;0;98;0m[48;2;0;113;0m▀[38;2;0;87;0m[48;2;0;104;0m▀[38;2;0;40;0m[48;2;0;50;0m▀[38;2;0;46;0m[48;2;0;60;0m▀[38;2;0;0;0m[48;2;0;42;0m▀[38;2;0;35;0m[48;2;0;37;0m▀[38;2;0;61;0m[48;2;0;55;0m▀[38;2;0;79;0m[48;2;0;110;0m▀[38;2;0;62;0m[48;2;0;85;0m▀[38;2;0;95;0m[48;2;0;56;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀▀▀[38;2;3;3;3m▀[38;2;23;23;23m▀[38;2;0;0;0m[48;2;2;2;2m▀[38;2;28;28;28m[48;2;0;0;0m▀[38;2;26;27;26m▀[38;2;32;36;32m▀[38;2;32;33;32m▀[38;2;31;31;31m▀[38;2;37;38;38m▀[38;2;0;0;0m▀[38;2;1;12;12m▀[38;2;0;158;158m▀[38;2;0;169;169m▀[38;2;0;168;168m▀[38;2;0;168;169m▀[38;2;0;129;169m▀[38;2;0;124;169m▀[38;2;0;120;169m▀[38;2;0;128;169m▀[38;2;0;152;169m▀[38;2;0;156;169m▀[38;2;0;125;169m▀[38;2;0;121;169m▀[38;2;0;169;169m▀[38;2;0;168;168m▀[38;2;0;169;169m▀[38;2;0;158;158m▀[38;2;0;11;11m▀[38;2;0;0;0m▀[38;2;1;2;1m▀[38;2;0;0;0m▀[38;2;27;27;0m▀[38;2;26;26;0m▀[38;2;32;32;0m▀▀[38;2;31;31;0m▀[38;2;37;37;0m▀[38;2;0;0;1m▀[38;2;1;0;0m▀[38;2;0;17;17m▀[38;2;0;21;21m▀[38;2;0;12;12m▀[38;2;0;15;15m▀[38;2;0;45;45m▀[38;2;0;39;39m▀[38;2;0;0;0m▀[38;2;0;1;1m[48;2;0;3;3m▀[38;2;0;40;40m[48;2;0;0;0m▀[38;2;0;34;34m▀[38;2;0;0;0m[48;2;0;3;3m▀[38;2;0;8;8m[48;2;0;0;0m▀[38;2;0;17;17m▀[38;2;0;13;13m▀[38;2;0;38;38m▀[38;2;0;23;23m▀[38;2;0;15;15m▀[38;2;0;15;14m▀[38;2;0;0;0m▀[38;2;0;2;1m▀[38;2;0;49;0m▀[38;2;0;34;0m▀[38;2;0;46;0m▀[38;2;0;35;0m▀[38;2;0;12;0m▀[38;2;0;3;0m▀[38;2;0;35;0m▀[38;2;0;32;0m▀[38;2;0;20;0m▀[38;2;0;36;0m▀[38;2;0;16;0m▀[38;2;0;0;0m[48;2;0;1;0m▀[38;2;0;41;0m[48;2;0;0;0m▀[38;2;0;32;0m▀[38;2;0;44;0m▀[38;2;0;40;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀▀▀▀[38;2;1;1;1m▀[38;2;0;0;0m[48;2;0;1;0m▀[38;2;1;1;1m[48;2;0;0;0m▀[38;2;1;11;1m[48;2;0;25;0m▀[38;2;1;102;1m[48;2;0;235;0m▀[38;2;1;13;1m[48;2;0;16;0m▀[38;2;1;2;1m[48;2;0;0;0m▀[38;2;2;2;2m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;0;0m▀▀[38;2;0;3;3m▀[38;2;0;4;3m▀[38;2;0;5;3m▀[38;2;0;3;3m▀[38;2;0;2;3m▀[38;2;0;1;3m▀▀[38;2;0;2;3m[48;2;0;1;0m▀[38;2;0;3;3m[48;2;0;0;0m▀▀[38;2;0;2;3m▀[38;2;0;1;3m▀[38;2;0;3;3m▀▀▀▀[38;2;0;0;0m▀▀▀▀[38;2;1;1;0m▀▀▀▀▀[38;2;2;2;0m▀[38;2;0;0;0m▀▀[38;2;0;1;1m▀▀▀[48;2;0;1;1m▀[38;2;0;2;2m▀[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;3;3m▀[48;2;0;165;165m▀[48;2;0;178;178m▀▀[48;2;0;165;165m▀[48;2;0;3;3m▀[38;2;0;1;1m[48;2;0;0;0m▀[48;2;0;2;2m▀[38;2;0;2;2m[48;2;0;0;0m▀[38;2;0;1;1m▀▀▀[38;2;0;0;0m▀▀[38;2;0;2;0m▀[38;2;0;1;0m▀[38;2;0;2;0m▀▀[38;2;0;1;0m▀[38;2;0;0;0m▀[38;2;0;2;0m▀[38;2;0;1;0m[48;2;1;1;0m▀▀▀[48;2;0;0;0m▀[38;2;0;0;0m▀[38;2;0;2;0m▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀▀▀▀[48;2;0;1;0m▀[38;2;0;1;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;15;0m▀[38;2;0;10;0m[48;2;0;188;0m▀[38;2;0;233;0m[48;2;0;253;0m▀[38;2;0;190;0m[48;2;0;250;0m▀[38;2;0;8;0m[48;2;0;33;0m▀[38;2;0;0;0m[48;2;0;3;0m▀[38;2;0;1;0m[48;2;0;1;0m▀▀[38;2;0;0;0m[48;2;0;3;0m▀[38;2;0;13;0m[48;2;0;38;0m▀[38;2;0;168;0m[48;2;0;232;0m▀[38;2;0;19;0m[48;2;0;15;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;1;0m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;3;0m▀[48;2;0;15;0m▀[48;2;0;3;0m▀[48;2;0;0;0m▀▀▀▀[38;2;0;2;0m▀[38;2;0;0;0m[48;2;0;1;0m▀[48;2;0;0;0m▀▀▀▀▀▀▀▀▀▀▀▀▀▀[48;2;0;1;1m▀[38;2;0;1;1m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;14;14m▀[48;2;0;19;19m▀[38;2;0;11;11m[48;2;0;177;177m▀[38;2;0;180;180m[48;2;0;76;76m▀[38;2;0;88;88m[48;2;0;0;0m▀[38;2;0;76;76m▀▀[38;2;0;88;88m▀[38;2;0;180;180m[48;2;0;74;74m▀[38;2;0;14;14m[48;2;0;164;164m▀[38;2;0;0;0m[48;2;0;37;37m▀[38;2;0;2;2m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;2;2m▀[48;2;0;0;0m▀▀▀▀▀▀▀▀▀[48;2;3;3;0m▀[48;2;4;4;0m▀[48;2;39;39;0m▀[48;2;173;173;0m▀[48;2;39;39;0m▀[48;2;2;2;0m▀[48;2;1;1;0m▀[48;2;0;0;0m▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀▀▀▀[38;2;0;1;0m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;6;0m▀[38;2;0;10;0m[48;2;0;51;0m▀[38;2;0;248;0m[48;2;0;238;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;251;0m▀[38;2;0;222;0m[48;2;0;244;0m▀[38;2;0;8;0m[48;2;0;51;0m▀[38;2;0;0;0m[48;2;0;6;0m▀[48;2;0;2;0m▀[38;2;0;7;0m[48;2;0;51;0m▀[38;2;0;226;0m[48;2;0;244;0m▀[38;2;0;240;0m[48;2;0;255;0m▀[38;2;0;48;0m[48;2;0;235;0m▀[38;2;0;3;0m[48;2;0;17;0m▀[38;2;0;0;0m[48;2;0;2;0m▀[38;2;0;13;0m[48;2;0;56;0m▀[38;2;0;204;0m[48;2;0;229;0m▀[38;2;0;13;0m[48;2;0;55;0m▀[38;2;0;0;0m[48;2;0;3;0m▀[38;2;0;1;0m[48;2;0;2;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;7;0m[48;2;0;7;0m▀[38;2;0;31;0m[48;2;0;221;0m▀[38;2;0;0;0m[48;2;0;56;0m▀[48;2;0;6;0m▀[48;2;0;1;0m▀[48;2;0;0;0m▀▀▀▀▀▀▀▀▀▀[48;2;0;1;1m▀[48;2;0;6;6m▀[48;2;0;50;50m▀[38;2;0;53;53m[48;2;0;243;243m▀[38;2;0;204;204m[48;2;0;240;240m▀[38;2;0;42;42m[48;2;0;38;38m▀[38;2;0;225;225m[48;2;0;214;214m▀[38;2;0;11;11m[48;2;0;25;25m▀[38;2;0;1;1m[48;2;0;0;0m▀[38;2;0;4;4m[48;2;0;1;1m▀[38;2;0;3;3m[48;2;0;0;0m▀[38;2;0;2;2m▀[38;2;0;0;0m[48;2;0;3;3m▀[38;2;0;41;41m[48;2;0;0;0m▀[38;2;0;180;180m[48;2;0;23;23m▀[38;2;0;56;56m[48;2;0;190;190m▀[38;2;0;0;0m[48;2;0;64;64m▀[38;2;0;3;3m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;3;3m▀[48;2;0;1;1m▀[48;2;0;0;0m▀▀▀▀[48;2;3;3;0m▀[38;2;3;3;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;37;37;0m▀[38;2;5;5;0m[48;2;34;34;0m▀[38;2;193;193;0m[48;2;26;26;0m▀[38;2;255;255;0m[48;2;185;185;0m▀[38;2;193;193;0m[48;2;24;24;0m▀[38;2;13;13;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;1;1;0m▀[38;2;1;1;0m[48;2;0;0;0m▀[38;2;0;0;0m▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀▀▀[38;2;0;1;0m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;10;0m▀[38;2;0;1;0m[48;2;0;115;0m▀[38;2;0;236;0m[48;2;0;246;0m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;254;0m[48;2;0;254;0m▀▀[48;2;0;255;0m▀[38;2;0;237;0m[48;2;0;247;0m▀[38;2;0;0;0m[48;2;0;111;0m▀[38;2;0;11;0m[48;2;0;27;0m▀[38;2;0;235;0m[48;2;0;253;0m▀[38;2;0;254;0m[48;2;0;255;0m▀[38;2;0;255;0m▀[38;2;0;240;0m[48;2;0;236;0m▀[38;2;0;13;0m[48;2;0;11;0m▀[38;2;0;17;0m[48;2;0;0;0m▀[38;2;0;238;0m[48;2;0;237;0m▀[38;2;0;254;0m[48;2;0;255;0m▀[38;2;0;237;0m[48;2;0;236;0m▀[38;2;0;21;0m[48;2;0;2;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;6;0m[48;2;0;19;0m▀[38;2;0;90;0m[48;2;0;248;0m▀[38;2;0;247;0m[48;2;0;255;0m▀[38;2;0;238;0m[48;2;0;245;0m▀[38;2;0;0;0m[48;2;0;112;0m▀[48;2;0;7;0m▀[38;2;0;1;0m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;0;0m▀▀▀▀▀▀▀[38;2;0;4;4m▀[38;2;0;1;1m[48;2;0;2;2m▀[38;2;0;0;0m[48;2;0;8;8m▀[38;2;0;1;1m[48;2;0;115;115m▀[38;2;0;235;235m[48;2;0;245;245m▀[38;2;0;255;255m[48;2;0;255;255m▀[38;2;0;230;230m[48;2;0;231;231m▀[38;2;0;39;39m[48;2;0;39;39m▀[38;2;0;216;216m[48;2;0;216;216m▀[38;2;0;23;23m[48;2;0;23;23m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;1;1m[48;2;0;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀▀▀[38;2;0;1;1m▀[38;2;0;0;0m[48;2;0;1;1m▀[38;2;0;16;16m[48;2;0;0;0m▀[38;2;0;155;155m[48;2;0;1;1m▀[38;2;0;102;102m[48;2;0;146;146m▀[38;2;0;0;0m[48;2;0;127;127m▀[48;2;0;11;11m▀[48;2;0;1;1m▀[48;2;1;1;1m▀[38;2;1;1;0m[48;2;2;2;0m▀[38;2;3;3;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;114;114;0m▀[38;2;88;88;0m[48;2;255;255;0m▀[38;2;243;243;0m▀[38;2;255;255;0m[48;2;141;141;0m▀[38;2;16;16;0m[48;2;10;10;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[48;2;1;1;0m▀[48;2;0;0;0m▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀[48;2;0;1;0m▀[38;2;0;1;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;11;0m▀[38;2;0;5;0m[48;2;0;162;0m▀[38;2;0;253;0m[48;2;0;245;0m▀[38;2;0;255;0m[48;2;0;254;0m▀[38;2;0;254;0m[48;2;0;255;0m▀[38;2;0;255;0m▀▀[38;2;0;254;0m▀[38;2;0;255;0m[48;2;0;254;0m▀[38;2;0;251;0m[48;2;0;245;0m▀[38;2;0;13;0m[48;2;0;156;0m▀[38;2;0;130;0m[48;2;0;10;0m▀[38;2;0;247;0m[48;2;0;236;0m▀[38;2;0;255;0m[48;2;0;247;0m▀[38;2;0;249;0m[48;2;0;84;0m▀[38;2;0;26;0m[48;2;0;14;0m▀[38;2;0;113;0m[48;2;0;252;0m▀[38;2;0;245;0m[48;2;0;255;0m▀[38;2;0;254;0m[48;2;0;253;0m▀[38;2;0;245;0m[48;2;0;255;0m▀[38;2;0;119;0m[48;2;0;254;0m▀[38;2;0;7;0m[48;2;0;9;0m▀[38;2;0;16;0m[48;2;0;3;0m▀[38;2;0;249;0m[48;2;0;92;0m▀[38;2;0;254;0m[48;2;0;255;1m▀[38;2;0;255;0m[48;2;0;255;0m▀[48;2;0;88;1m▀[38;2;0;19;0m[48;2;0;6;0m▀[38;2;0;0;0m[48;2;0;2;1m▀[38;2;0;1;0m[48;2;0;0;0m▀[38;2;0;1;1m▀[38;2;0;0;0m▀[38;2;0;1;1m▀▀▀[38;2;0;12;12m[48;2;0;8;8m▀[38;2;0;115;115m[48;2;0;99;99m▀[38;2;0;0;0m[48;2;0;157;157m▀[38;2;0;14;14m[48;2;0;30;30m▀[38;2;0;255;255m[48;2;0;231;231m▀[48;2;0;255;255m▀▀[38;2;0;232;232m[48;2;0;232;232m▀[38;2;0;39;39m[48;2;0;40;40m▀[38;2;0;216;216m[48;2;0;215;215m▀[38;2;0;24;24m[48;2;0;15;15m▀[38;2;0;0;0m[48;2;0;1;1m▀[38;2;0;1;1m[48;2;0;2;2m▀[38;2;0;0;0m[48;2;0;0;0m▀▀▀▀▀[38;2;0;1;1m▀▀[38;2;0;0;0m[48;2;0;2;2m▀[38;2;0;134;134m[48;2;0;0;0m▀[38;2;0;13;14m[48;2;2;0;0m▀[38;2;1;1;0m[48;2;1;1;0m▀[38;2;1;2;1m[48;2;4;4;0m▀[38;2;0;0;0m[48;2;163;163;0m▀[38;2;117;117;0m[48;2;255;255;0m▀[38;2;255;255;0m[48;2;248;248;0m▀[48;2;90;90;0m▀[38;2;136;136;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;3;3;0m▀[48;2;1;1;0m▀[38;2;1;1;0m[48;2;0;0;0m▀[38;2;0;0;0m▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀[38;2;0;1;0m▀[38;2;0;0;0m[48;2;0;1;0m▀[38;2;0;19;0m[48;2;0;4;0m▀[38;2;0;255;0m[48;2;0;62;0m▀[48;2;0;227;0m▀[38;2;0;253;0m[48;2;0;255;0m▀[38;2;0;255;0m[48;2;0;253;0m▀▀[48;2;0;254;0m▀[38;2;0;253;0m[48;2;0;255;0m▀[38;2;0;252;0m▀[38;2;0;255;0m[48;2;0;228;0m▀[38;2;0;254;0m[48;2;0;57;0m▀[38;2;0;39;0m[48;2;0;19;0m▀[38;2;0;243;0m[48;2;0;212;0m▀[38;2;0;246;0m[48;2;0;65;0m▀[38;2;0;15;0m[48;2;0;20;0m▀[38;2;0;183;0m[48;2;0;234;0m▀[38;2;0;247;0m[48;2;0;255;0m▀[38;2;0;254;0m[48;2;0;253;0m▀[38;2;0;255;0m▀[38;2;0;254;0m▀[38;2;0;246;0m[48;2;0;255;0m▀[38;2;0;190;0m[48;2;0;235;0m▀[38;2;0;13;0m[48;2;0;17;0m▀[38;2;0;0;0m[48;2;0;5;2m▀[38;2;0;51;0m[48;2;0;11;22m▀[38;2;0;55;0m[48;2;0;0;5m▀[38;2;0;0;0m[48;2;0;23;21m▀[48;2;0;5;5m▀[48;2;0;21;21m▀[38;2;0;17;17m[48;2;0;11;11m▀[38;2;0;166;166m[48;2;0;80;80m▀[38;2;0;35;35m[48;2;0;17;17m▀[38;2;0;161;161m[48;2;0;94;94m▀[38;2;0;33;33m[48;2;0;170;170m▀[38;2;0;161;161m[48;2;0;109;109m▀[38;2;0;32;32m[48;2;0;156;156m▀[38;2;0;155;155m[48;2;0;113;113m▀[38;2;0;76;76m[48;2;0;133;133m▀[38;2;0;20;20m[48;2;0;29;29m▀[38;2;0;237;237m[48;2;0;235;235m▀[38;2;0;255;255m[48;2;0;255;255m▀[48;2;0;254;254m▀[38;2;0;232;232m[48;2;0;250;250m▀[38;2;0;28;28m[48;2;0;190;190m▀[38;2;0;236;236m[48;2;0;93;93m▀[38;2;0;197;197m[48;2;0;230;230m▀[38;2;0;4;4m[48;2;0;201;201m▀[38;2;0;0;0m[48;2;0;26;26m▀[38;2;0;2;2m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;2;2m▀[48;2;0;0;0m▀▀▀▀[48;2;2;2;0m▀▀[38;2;2;6;4m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;27;27;0m▀[38;2;6;6;0m[48;2;189;189;0m▀[38;2;185;185;0m[48;2;255;255;0m▀[38;2;255;255;0m[48;2;224;224;0m▀[38;2;246;246;0m[48;2;64;64;0m▀[38;2;67;67;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;3;3;0m▀[38;2;3;3;0m[48;2;1;1;0m▀[38;2;1;1;0m[48;2;0;0;0m▀[38;2;0;0;0m▀▀▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀▀[38;2;3;4;3m▀[38;2;4;4;4m▀[38;2;4;0;4m▀[38;2;4;32;4m▀[38;2;4;212;4m▀[38;2;4;255;4m[48;2;0;185;0m▀[48;2;0;200;0m▀[48;2;0;185;0m▀[38;2;4;225;4m[48;2;0;0;0m▀[38;2;4;209;4m▀[38;2;4;33;4m▀[38;2;4;0;4m▀[38;2;4;5;4m▀[38;2;4;18;4m▀[38;2;4;0;4m▀[38;2;4;3;4m▀[38;2;4;31;4m▀[38;2;4;211;4m▀[38;2;4;255;4m[48;2;0;185;0m▀[48;2;0;200;0m▀[48;2;0;185;0m▀[38;2;4;211;4m[48;2;0;0;0m▀[38;2;4;32;4m▀[38;2;4;5;4m▀[38;2;4;23;22m▀[38;2;4;176;173m▀[38;2;4;42;39m▀[38;2;4;169;168m▀[38;2;4;40;40m▀[38;2;4;169;168m▀[38;2;4;39;39m▀[38;2;4;156;156m▀[38;2;4;37;37m▀[38;2;4;159;159m▀[38;2;3;62;62m▀[38;2;0;162;162m[48;2;3;28;28m▀[38;2;0;95;95m[48;2;0;176;176m▀[38;2;0;171;171m[48;2;0;44;44m▀[38;2;0;77;77m[48;2;0;171;171m▀[38;2;0;20;20m[48;2;0;35;35m▀[38;2;0;237;237m[48;2;0;230;230m▀[38;2;0;255;255m[48;2;0;255;255m▀[38;2;0;254;254m[48;2;0;254;254m▀[38;2;0;255;255m[48;2;0;255;255m▀[48;2;0;252;252m▀[38;2;0;213;213m[48;2;0;255;255m▀[38;2;0;72;72m[48;2;0;231;231m▀[38;2;0;213;213m[48;2;0;61;61m▀[38;2;0;238;238m[48;2;0;198;198m▀[38;2;0;45;45m[48;2;0;255;255m▀[38;2;0;0;0m[48;2;0;48;48m▀[38;2;0;3;3m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;4;4m▀[48;2;0;0;0m▀[48;2;5;5;0m▀[48;2;50;50;0m▀▀[38;2;47;47;0m[48;2;239;239;0m▀[38;2;223;223;0m[48;2;255;255;0m▀[38;2;255;255;0m[48;2;203;203;0m▀[38;2;206;206;0m[48;2;16;16;0m▀[38;2;28;28;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;3;3;0m▀[38;2;2;3;0m[48;2;0;0;0m▀[38;2;0;3;3m▀[38;2;0;0;0m[48;2;0;2;2m▀[48;2;0;0;0m▀▀▀▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[48;2;1;1;1m▀[48;2;0;0;0m▀[38;2;6;6;6m[48;2;18;18;18m▀[38;2;80;80;80m[48;2;252;252;252m▀[38;2;85;85;85m[48;2;255;255;255m▀[38;2;81;81;81m▀[38;2;81;82;81m▀[38;2;81;81;81m▀[38;2;81;82;81m▀[38;2;82;82;82m▀[38;2;85;86;85m▀[38;2;82;81;82m▀[38;2;81;81;81m▀[38;2;81;82;81m▀[38;2;82;82;82m▀[38;2;85;85;85m▀[38;2;82;83;82m▀[38;2;81;81;81m▀▀[38;2;81;82;81m▀[38;2;82;81;82m▀[38;2;85;86;85m▀[38;2;82;82;82m▀[38;2;81;82;81m▀[38;2;81;81;81m▀[38;2;82;83;82m▀[38;2;85;85;85m▀▀[38;2;82;80;80m▀[38;2;81;81;81m▀[38;2;81;80;80m▀[38;2;82;81;81m▀[38;2;85;83;83m▀[38;2;82;81;81m▀[38;2;82;80;80m▀[38;2;85;84;84m▀[38;2;82;80;80m▀[38;2;75;75;75m▀[38;2;0;0;0m[48;2;116;116;116m▀[38;2;2;4;4m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;2;3;3m▀[38;2;0;2;2m[48;2;1;1;1m▀[38;2;0;19;19m[48;2;0;9;9m▀[38;2;0;254;254m[48;2;0;141;141m▀[38;2;0;253;253m[48;2;0;255;255m▀[38;2;0;254;254m[48;2;0;253;253m▀[38;2;0;255;255m[48;2;0;254;254m▀[48;2;0;255;255m▀[38;2;0;254;254m▀[38;2;0;255;255m[48;2;0;254;254m▀[38;2;0;239;239m[48;2;0;255;255m▀[38;2;0;98;98m[48;2;0;254;254m▀[38;2;0;156;156m[48;2;0;107;107m▀[38;2;0;255;255m[48;2;0;133;133m▀[38;2;0;89;89m[48;2;0;255;255m▀[38;2;1;0;0m[48;2;0;116;116m▀[38;2;0;3;3m[48;2;1;0;0m▀[38;2;11;12;1m[48;2;0;1;2m▀[38;2;164;164;0m[48;2;0;0;1m▀[38;2;255;255;0m[48;2;146;146;0m▀[38;2;249;249;0m[48;2;247;247;0m▀[38;2;162;162;0m[48;2;7;7;0m▀[38;2;12;12;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;2;2;0m▀[38;2;2;2;0m[48;2;0;1;1m▀[38;2;0;0;0m▀[38;2;0;9;9m[48;2;0;13;13m▀[38;2;0;88;88m[48;2;0;147;147m▀[38;2;0;0;0m[48;2;0;125;125m▀[38;2;0;2;2m[48;2;0;0;0m▀[38;2;0;1;1m[48;2;0;1;1m▀[38;2;0;0;0m▀[48;2;0;0;0m▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;16;16;16m[48;2;16;16;16m▀[38;2;237;237;237m[48;2;242;242;242m▀[38;2;246;246;246m▀[38;2;142;142;142m[48;2;0;0;0m▀[38;2;134;134;134m▀[38;2;123;123;123m[48;2;129;129;129m▀[38;2;134;135;134m[48;2;0;0;0m▀[38;2;146;146;146m[48;2;1;1;1m▀[38;2;235;236;235m[48;2;219;219;219m▀[38;2;146;146;146m[48;2;2;2;2m▀[38;2;134;134;134m[48;2;0;0;0m▀[38;2;121;121;121m[48;2;139;139;139m▀[38;2;131;131;131m[48;2;160;160;160m▀[38;2;235;235;235m[48;2;229;229;229m▀[38;2;146;146;146m[48;2;0;0;0m▀[38;2;134;134;134m▀[38;2;123;123;123m[48;2;129;129;129m▀[38;2;134;134;134m[48;2;0;0;0m▀[38;2;146;146;146m[48;2;1;1;1m▀[38;2;235;236;235m[48;2;219;219;219m▀[38;2;146;146;146m[48;2;1;1;1m▀[38;2;134;135;134m[48;2;0;0;0m▀[38;2;122;122;122m[48;2;129;129;129m▀[38;2;142;142;142m[48;2;0;0;0m▀[38;2;255;255;255m[48;2;92;92;92m▀[38;2;247;247;247m[48;2;228;228;228m▀[38;2;142;142;142m[48;2;0;0;0m▀[38;2;134;134;134m▀[38;2;122;122;122m[48;2;125;125;125m▀[38;2;144;144;144m[48;2;20;20;20m▀[38;2;237;237;237m[48;2;216;216;216m▀[38;2;142;142;142m[48;2;0;0;0m▀▀[38;2;237;237;237m[48;2;220;220;220m▀[38;2;142;142;142m[48;2;0;0;0m▀▀[38;2;255;255;255m[48;2;236;236;236m▀[38;2;120;121;121m[48;2;255;255;255m▀[38;2;0;0;0m[48;2;163;163;163m▀[38;2;1;2;2m[48;2;4;4;4m▀[38;2;1;0;0m[48;2;1;2;2m▀[38;2;0;0;0m[48;2;2;5;5m▀[38;2;0;137;137m[48;2;0;0;0m▀[38;2;0;255;255m[48;2;0;90;90m▀[38;2;0;254;254m[48;2;0;251;251m▀[48;2;0;254;254m▀[38;2;0;255;255m[48;2;0;253;253m▀[48;2;0;255;255m▀[38;2;0;254;254m▀[48;2;0;254;254m▀[38;2;0;255;255m[48;2;0;253;253m▀[38;2;0;108;108m[48;2;0;255;255m▀[38;2;0;129;129m[48;2;0;150;150m▀[38;2;0;255;255m[48;2;0;91;91m▀[38;2;0;120;120m[48;2;0;255;255m▀[38;2;1;0;0m[48;2;0;168;168m▀[38;2;1;2;1m[48;2;0;2;2m▀[38;2;0;0;1m[48;2;2;3;1m▀[38;2;118;118;0m[48;2;0;0;2m▀[38;2;15;15;0m[48;2;0;0;0m▀[38;2;1;1;0m▀▀[38;2;0;0;0m▀[38;2;0;1;1m▀[38;2;0;0;0m[48;2;0;1;1m▀[48;2;0;2;2m▀[38;2;0;145;145m[48;2;0;0;0m▀[38;2;0;126;126m[48;2;0;103;103m▀[38;2;0;0;0m[48;2;0;162;162m▀[48;2;0;7;7m▀[38;2;0;1;1m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;2;2m▀[48;2;0;0;0m▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;16;16;16m[48;2;16;16;16m▀[38;2;242;242;242m[48;2;242;242;242m▀[38;2;243;243;243m▀[38;2;16;16;16m[48;2;2;2;2m▀[38;2;25;25;25m▀[38;2;247;247;247m[48;2;208;208;208m▀[38;2;19;19;19m[48;2;184;184;184m▀[38;2;16;16;16m[48;2;186;186;186m▀[38;2;224;224;224m[48;2;234;234;234m▀[38;2;20;20;20m[48;2;15;15;15m▀[38;2;17;17;17m[48;2;11;11;11m▀[38;2;255;255;255m[48;2;212;212;212m▀[48;2;250;250;250m▀[38;2;240;240;240m[48;2;238;238;238m▀[38;2;15;15;15m[48;2;13;13;13m▀[38;2;23;23;23m[48;2;15;15;15m▀[38;2;247;247;247m[48;2;198;198;198m▀[38;2;22;22;22m[48;2;14;14;14m▀[38;2;19;19;19m[48;2;17;17;17m▀[38;2;224;224;224m[48;2;223;223;223m▀[38;2;19;19;19m[48;2;17;17;17m▀[38;2;22;22;22m[48;2;14;14;14m▀[38;2;247;247;247m[48;2;197;197;197m▀[38;2;20;20;20m[48;2;16;16;16m▀[38;2;0;0;0m[48;2;42;42;42m▀[38;2;222;222;222m[48;2;225;225;225m▀[38;2;20;20;20m[48;2;16;16;16m▀[38;2;22;22;22m[48;2;13;13;13m▀[38;2;233;233;233m[48;2;230;230;230m▀[38;2;42;42;42m[48;2;207;207;207m▀[38;2;216;216;216m[48;2;233;233;233m▀[38;2;21;21;21m[48;2;14;14;14m▀[38;2;20;20;20m[48;2;15;15;15m▀[38;2;229;229;229m[48;2;201;201;201m▀[38;2;21;21;21m[48;2;15;15;15m▀[38;2;16;16;16m[48;2;12;12;12m▀[38;2;238;238;238m[48;2;239;239;239m▀[38;2;252;252;252m[48;2;255;255;255m▀[38;2;255;255;255m[48;2;251;251;251m▀[38;2;187;187;187m[48;2;255;255;255m▀[38;2;6;6;6m[48;2;191;191;191m▀[38;2;0;0;0m[48;2;28;27;27m▀[38;2;2;6;6m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;2;5;5m▀[38;2;0;68;68m[48;2;0;0;0m▀[38;2;0;249;249m[48;2;0;64;64m▀[38;2;0;255;255m[48;2;0;227;227m▀[38;2;0;253;253m[48;2;0;255;255m▀[38;2;0;255;255m[48;2;0;253;253m▀[48;2;0;255;255m▀[38;2;0;254;254m▀[38;2;0;252;252m[48;2;0;254;254m▀[38;2;0;255;255m[48;2;0;253;253m▀[38;2;0;173;173m[48;2;0;255;255m▀[38;2;0;70;70m[48;2;0;180;180m▀[38;2;0;255;255m[48;2;0;88;88m▀[38;2;0;196;196m[48;2;0;230;230m▀[38;2;0;4;4m[48;2;0;201;201m▀[38;2;4;0;0m[48;2;0;26;26m▀[38;2;0;3;2m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;2;2m▀[48;2;0;0;0m▀▀▀▀[38;2;0;1;1m▀[38;2;0;3;3m[48;2;0;1;1m▀[38;2;0;0;0m[48;2;0;2;2m▀[38;2;0;81;81m[48;2;0;0;0m▀[38;2;0;182;182m[48;2;0;74;74m▀[38;2;0;14;14m[48;2;0;164;164m▀[38;2;0;0;0m[48;2;0;37;37m▀[38;2;0;2;2m[48;2;0;0;0m▀[38;2;0;0;0m▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;16;16;16m[48;2;17;17;17m▀[38;2;241;241;241m[48;2;239;239;239m▀[38;2;244;244;244m[48;2;253;253;253m▀[38;2;58;58;58m[48;2;214;214;214m▀[38;2;46;46;46m[48;2;216;216;216m▀[38;2;53;53;53m[48;2;230;230;230m▀[38;2;30;30;30m[48;2;6;6;6m▀[38;2;49;49;49m[48;2;10;10;10m▀[38;2;222;222;222m[48;2;222;222;222m▀[38;2;21;21;21m[48;2;17;17;17m▀[38;2;3;3;3m[48;2;12;12;12m▀[38;2;64;64;64m[48;2;232;232;232m▀[38;2;245;245;245m[48;2;255;255;255m▀[38;2;241;241;241m[48;2;238;238;238m▀[38;2;15;15;15m[48;2;12;12;12m▀[38;2;4;4;4m[48;2;17;17;17m▀[38;2;49;49;49m[48;2;217;217;217m▀[38;2;3;3;3m[48;2;16;16;16m▀[38;2;21;21;21m▀[38;2;221;221;221m[48;2;223;223;223m▀[38;2;21;21;21m[48;2;16;16;16m▀[38;2;3;3;3m▀[38;2;47;47;47m[48;2;217;217;217m▀[38;2;16;16;16m[48;2;16;16;16m▀[38;2;194;194;194m[48;2;22;22;22m▀[38;2;239;239;239m[48;2;224;224;224m▀[38;2;13;13;13m[48;2;17;17;17m▀[48;2;12;12;12m▀[38;2;239;239;239m[48;2;239;239;239m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;238;238;238m[48;2;239;239;239m▀[38;2;16;16;16m[48;2;12;12;12m▀[38;2;4;4;4m[48;2;17;17;17m▀[38;2;49;49;49m[48;2;217;217;217m▀[38;2;4;4;4m[48;2;17;17;17m▀[38;2;16;16;16m[48;2;12;12;12m▀[38;2;238;238;238m[48;2;239;239;239m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;254;254;254m[48;2;254;254;254m▀[38;2;253;253;253m[48;2;255;255;255m▀[38;2;255;255;255m[48;2;252;252;252m▀[38;2;226;226;226m[48;2;255;255;255m▀[38;2;47;47;47m[48;2;239;239;239m▀[38;2;0;0;0m[48;2;50;49;49m▀[38;2;3;6;6m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;3;6;6m▀[38;2;0;29;29m[48;2;0;0;0m▀[38;2;0;208;208m[48;2;0;16;16m▀[38;2;0;255;255m[48;2;0;206;206m▀[38;2;0;252;252m[48;2;0;255;255m▀[38;2;0;255;255m[48;2;0;252;252m▀[48;2;0;254;254m▀[48;2;0;255;255m▀[38;2;0;253;253m▀[38;2;0;255;255m[48;2;0;252;252m▀[38;2;0;213;213m[48;2;0;255;255m▀[38;2;0;72;72m[48;2;0;231;231m▀[38;2;0;213;213m[48;2;0;61;61m▀[38;2;0;238;238m[48;2;0;198;198m▀[38;2;0;45;45m[48;2;0;255;255m▀[38;2;0;0;0m[48;2;0;48;48m▀[38;2;0;3;3m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;4;4m▀[48;2;0;0;0m▀▀▀▀▀[38;2;0;2;2m▀[38;2;0;0;0m[48;2;0;3;3m▀[38;2;0;41;41m[48;2;0;0;0m▀[38;2;0;179;179m[48;2;0;27;27m▀[38;2;0;49;49m[48;2;0;219;219m▀[38;2;0;3;3m[48;2;0;22;22m▀[38;2;0;1;1m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;1;1m▀[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;16;16;16m[48;2;16;16;16m▀[38;2;242;242;242m[48;2;242;242;242m▀[38;2;243;243;243m[48;2;243;243;243m▀[38;2;13;13;13m[48;2;13;13;13m▀[38;2;18;18;18m[48;2;21;21;21m▀[38;2;221;221;221m[48;2;242;242;242m▀[38;2;17;17;17m[48;2;21;21;21m▀[48;2;19;19;19m▀[38;2;223;223;223m[48;2;224;224;224m▀[38;2;17;17;17m[48;2;20;20;20m▀[38;2;12;12;12m[48;2;16;16;16m▀[38;2;236;236;236m[48;2;255;255;255m▀[38;2;251;251;251m▀[38;2;238;238;238m[48;2;240;240;240m▀[38;2;12;12;12m[48;2;15;15;15m▀[38;2;17;17;17m[48;2;20;20;20m▀[38;2;225;225;225m[48;2;223;223;223m▀[38;2;16;16;16m[48;2;19;19;19m▀▀[38;2;223;223;223m[48;2;223;223;223m▀[38;2;16;16;16m[48;2;19;19;19m▀▀[38;2;225;225;225m[48;2;223;223;223m▀[38;2;16;16;16m[48;2;19;19;19m▀[38;2;14;14;14m[48;2;20;20;20m▀[38;2;223;223;223m[48;2;224;224;224m▀[38;2;17;17;17m[48;2;19;19;19m▀[38;2;13;13;13m[48;2;22;22;22m▀[38;2;227;227;227m[48;2;234;234;234m▀[38;2;184;184;184m[48;2;35;35;35m▀[38;2;231;231;231m[48;2;215;215;215m▀[38;2;14;14;14m[48;2;21;21;21m▀[38;2;17;17;17m[48;2;19;19;19m▀[38;2;225;225;225m[48;2;223;223;223m▀[38;2;17;17;17m[48;2;20;20;20m▀[38;2;12;12;12m[48;2;15;15;15m▀[38;2;239;239;239m[48;2;239;239;239m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;254;254;254m[48;2;254;254;254m▀[38;2;255;255;255m[48;2;255;255;255m▀▀[38;2;253;253;253m▀[38;2;255;255;255m[48;2;254;254;254m▀[38;2;243;243;243m[48;2;255;255;255m▀[38;2;90;90;90m▀[38;2;0;0;0m[48;2;115;115;115m▀[38;2;3;5;5m[48;2;0;0;0m▀[38;2;1;0;0m[48;2;2;3;3m▀[38;2;0;12;12m[48;2;1;0;0m▀[38;2;0;165;165m[48;2;0;0;0m▀[38;2;0;255;255m[48;2;0;140;140m▀[38;2;0;252;252m[48;2;0;255;255m▀[38;2;0;254;254m[48;2;0;253;253m▀[38;2;0;255;255m[48;2;0;254;254m▀[48;2;0;255;255m▀[38;2;0;254;254m▀[38;2;0;255;255m[48;2;0;254;254m▀[38;2;0;239;239m[48;2;0;255;255m▀[38;2;0;98;98m[48;2;0;254;254m▀[38;2;0;156;156m[48;2;0;107;107m▀[38;2;0;255;255m[48;2;0;133;133m▀[38;2;0;89;89m[48;2;0;255;255m▀[38;2;0;0;0m[48;2;0;116;116m▀[38;2;0;3;3m[48;2;0;0;0m▀[38;2;0;1;1m[48;2;0;2;2m▀[38;2;0;0;0m[48;2;0;4;4m▀[48;2;0;3;3m▀▀▀[38;2;0;1;1m[48;2;0;4;4m▀[48;2;0;1;1m▀[38;2;0;24;24m[48;2;0;5;5m▀[38;2;0;217;217m[48;2;0;234;234m▀[38;2;0;22;22m[48;2;0;24;24m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;1;1m[48;2;0;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;16;16;16m[48;2;17;17;17m▀[38;2;242;242;242m[48;2;239;239;239m▀[48;2;250;250;250m▀[38;2;0;0;0m[48;2;173;173;173m▀[48;2;168;168;168m▀[38;2;107;107;107m[48;2;154;154;154m▀[38;2;0;0;0m[48;2;167;167;167m▀[38;2;4;4;4m[48;2;177;177;177m▀[38;2;219;219;219m[48;2;242;242;242m▀[38;2;5;5;5m[48;2;177;177;177m▀[38;2;0;0;0m[48;2;167;167;167m▀[38;2;114;114;114m[48;2;152;152;152m▀[38;2;135;135;135m[48;2;159;159;159m▀[38;2;229;229;229m[48;2;243;243;243m▀[38;2;0;0;0m[48;2;175;175;175m▀[38;2;2;2;2m▀[38;2;221;221;221m[48;2;243;243;243m▀[38;2;1;1;1m[48;2;173;173;173m▀▀[38;2;221;221;221m[48;2;243;243;243m▀[38;2;2;2;2m[48;2;175;175;175m▀[38;2;1;1;1m[48;2;173;173;173m▀[38;2;221;221;221m[48;2;243;243;243m▀[38;2;2;2;2m[48;2;175;175;175m▀▀[38;2;220;220;220m[48;2;242;242;242m▀[38;2;4;4;4m[48;2;176;176;176m▀[38;2;0;0;0m[48;2;168;168;168m▀[38;2;102;102;102m[48;2;152;152;152m▀[38;2;22;22;22m[48;2;174;174;174m▀[38;2;217;217;217m[48;2;243;243;243m▀[38;2;2;2;2m[48;2;173;173;173m▀[48;2;175;175;175m▀[38;2;221;221;221m[48;2;243;243;243m▀[38;2;2;2;2m[48;2;174;174;174m▀[38;2;0;0;0m[48;2;172;172;172m▀[38;2;238;238;238m[48;2;248;248;248m▀[38;2;255;255;255m[48;2;254;254;254m▀[38;2;254;254;254m[48;2;255;255;255m▀[38;2;255;255;255m[48;2;254;254;254m▀▀▀▀[38;2;254;254;254m▀[38;2;253;253;253m▀[38;2;255;255;255m[48;2;252;252;252m▀[38;2;118;118;118m[48;2;255;255;255m▀[38;2;0;0;0m[48;2;165;165;165m▀[38;2;1;2;2m[48;2;4;4;4m▀[38;2;1;3;3m[48;2;1;2;2m▀[38;2;0;0;0m[48;2;2;5;5m▀[38;2;0;137;137m[48;2;0;0;0m▀[38;2;0;255;255m[48;2;0;90;90m▀[38;2;0;254;254m[48;2;0;251;251m▀[48;2;0;254;254m▀[38;2;0;255;255m[48;2;0;253;253m▀[48;2;0;255;255m▀[38;2;0;254;254m▀[48;2;0;254;254m▀[38;2;0;255;255m[48;2;0;253;253m▀[38;2;0;108;108m[48;2;0;255;255m▀[38;2;0;129;129m[48;2;0;150;150m▀[38;2;0;255;255m[48;2;0;92;92m▀[38;2;0;120;120m[48;2;0;255;255m▀[38;2;0;0;0m[48;2;0;186;186m▀[48;2;0;179;179m▀[48;2;0;180;180m▀▀[48;2;0;179;179m▀▀[48;2;0;176;176m▀[38;2;0;125;125m[48;2;0;100;100m▀[38;2;0;131;131m[48;2;0;0;0m▀[38;2;0;12;12m▀[38;2;0;1;1m▀▀[38;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;17;17;17m[48;2;16;16;16m▀[38;2;238;238;238m[48;2;241;241;241m▀[38;2;255;255;255m[48;2;245;245;245m▀[48;2;64;64;64m▀[48;2;91;91;91m▀[48;2;228;228;228m▀[48;2;72;72;72m▀[48;2;68;68;68m▀[48;2;76;76;76m▀[48;2;225;225;225m▀[48;2;70;70;70m▀[48;2;84;84;84m▀[48;2;218;218;218m▀[48;2;252;252;252m▀▀[48;2;238;238;238m▀[48;2;70;70;70m▀[48;2;53;53;53m▀[48;2;46;46;46m▀[48;2;66;66;66m▀[48;2;226;226;226m▀[48;2;68;68;68m▀[48;2;65;65;65m▀[48;2;249;249;249m▀[48;2;241;241;241m▀[48;2;65;65;65m▀[48;2;69;69;69m▀[48;2;225;225;225m▀[48;2;63;63;63m▀[48;2;53;53;53m▀[48;2;56;56;56m▀[48;2;63;63;63m▀[48;2;224;224;224m▀[48;2;74;74;74m▀[48;2;53;53;53m▀[48;2;46;46;46m▀[48;2;68;68;68m▀[48;2;227;227;227m▀[48;2;253;253;253m▀[48;2;227;227;227m▀[48;2;69;69;69m▀[48;2;50;50;50m▀[48;2;69;69;69m▀[48;2;227;227;227m▀[48;2;254;254;254m▀[38;2;254;254;254m▀[38;2;252;252;252m▀[38;2;255;255;255m[48;2;252;252;252m▀[38;2;187;187;187m[48;2;255;255;255m▀[38;2;6;6;6m[48;2;191;191;191m▀[38;2;0;0;0m[48;2;28;27;27m▀[38;2;2;6;6m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;2;5;5m▀[38;2;0;68;68m[48;2;0;0;0m▀[38;2;0;249;249m[48;2;0;64;64m▀[38;2;0;255;255m[48;2;0;227;227m▀[38;2;0;253;253m[48;2;0;255;255m▀[38;2;0;255;255m[48;2;0;253;253m▀[48;2;0;255;255m▀[38;2;0;254;254m▀[38;2;0;252;252m[48;2;0;254;254m▀[38;2;0;255;255m[48;2;0;253;253m▀[38;2;0;177;177m[48;2;0;255;255m▀[38;2;0;56;56m[48;2;0;191;191m▀[38;2;0;67;67m[48;2;0;182;182m▀[38;2;0;69;69m▀[38;2;0;68;68m▀[48;2;0;180;180m▀▀[38;2;0;67;67m[48;2;0;188;188m▀[38;2;0;66;66m[48;2;0;156;156m▀[38;2;0;0;0m[48;2;0;14;14m▀[38;2;0;2;2m[48;2;0;0;0m▀[38;2;0;1;1m[48;2;0;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;16;16;16m[48;2;16;16;16m▀[38;2;243;243;243m[48;2;242;242;242m▀[38;2;239;239;239m[48;2;243;243;243m▀[38;2;15;15;15m[48;2;21;21;21m▀[38;2;173;173;173m[48;2;60;60;60m▀[38;2;231;231;231m[48;2;220;220;220m▀[38;2;28;28;28m[48;2;52;52;52m▀[38;2;180;180;180m[48;2;233;233;233m▀[38;2;33;33;33m[48;2;53;53;53m▀[38;2;210;210;210m[48;2;215;215;215m▀[38;2;28;28;28m[48;2;29;29;29m▀[38;2;150;150;150m[48;2;51;51;51m▀[38;2;88;88;88m[48;2;207;207;207m▀[38;2;237;237;237m[48;2;251;251;251m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;237;237;237m[48;2;239;239;239m▀[38;2;5;5;5m[48;2;15;15;15m▀[38;2;0;0;0m[48;2;16;16;16m▀[38;2;19;19;19m[48;2;254;254;254m▀[38;2;41;41;41m[48;2;255;255;255m▀[38;2;222;222;222m[48;2;241;241;241m▀[38;2;0;0;0m[48;2;53;53;53m▀[48;2;0;0;0m▀[38;2;212;212;212m[48;2;20;20;20m▀[38;2;247;247;247m[48;2;187;187;187m▀[38;2;3;3;3m[48;2;2;2;2m▀[38;2;0;0;0m[48;2;47;47;47m▀[38;2;223;223;223m[48;2;245;245;245m▀[38;2;43;43;43m[48;2;243;243;243m▀[38;2;0;0;0m[48;2;15;15;15m▀▀[38;2;43;43;43m[48;2;244;244;244m▀[38;2;222;222;222m[48;2;243;243;243m▀[38;2;9;9;9m[48;2;13;13;13m▀[38;2;0;0;0m[48;2;21;21;21m▀[38;2;18;18;18m[48;2;238;238;238m▀[38;2;0;0;0m[48;2;19;19;19m▀[38;2;35;35;35m[48;2;16;16;16m▀[38;2;223;223;223m[48;2;223;223;223m▀[38;2;35;35;35m[48;2;12;12;12m▀[38;2;0;0;0m[48;2;19;19;19m▀[38;2;18;18;18m[48;2;238;238;238m▀[38;2;0;0;0m[48;2;20;20;20m▀[38;2;31;31;31m[48;2;8;8;8m▀[38;2;239;239;239m[48;2;240;240;240m▀[38;2;252;252;252m[48;2;255;255;255m▀[38;2;251;251;251m▀▀[38;2;249;249;249m▀[38;2;255;255;255m[48;2;253;253;253m▀[38;2;226;226;226m[48;2;255;255;255m▀[38;2;47;47;47m[48;2;239;239;239m▀[38;2;0;0;0m[48;2;50;49;49m▀[38;2;3;6;6m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;3;6;6m▀[38;2;0;29;29m[48;2;0;0;0m▀[38;2;0;208;208m[48;2;0;16;16m▀[38;2;0;255;255m[48;2;0;205;205m▀[38;2;0;251;251m[48;2;0;255;255m▀▀▀▀[38;2;0;250;250m▀[38;2;0;255;255m▀▀▀▀[48;2;0;217;217m▀[48;2;0;199;199m▀[38;2;0;223;223m[48;2;0;13;13m▀[38;2;0;44;44m[48;2;0;0;0m▀[38;2;0;2;2m▀[38;2;0;1;1m▀[38;2;0;0;0m▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;16;16;16m[48;2;16;16;16m▀[38;2;243;243;243m[48;2;241;241;241m▀[38;2;237;237;237m[48;2;246;246;246m▀[38;2;16;16;16m[48;2;131;131;131m▀[38;2;235;235;235m[48;2;247;247;247m▀[38;2;239;239;239m[48;2;249;249;249m▀[38;2;14;14;14m[48;2;121;121;121m▀[38;2;120;120;120m[48;2;101;101;101m▀[38;2;22;22;22m[48;2;125;125;125m▀[38;2;208;208;208m[48;2;233;233;233m▀[38;2;30;30;30m[48;2;138;138;138m▀[38;2;205;205;205m[48;2;231;231;231m▀[38;2;27;27;27m[48;2;135;135;135m▀[38;2;230;230;230m[48;2;241;241;241m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;238;238;238m[48;2;237;237;237m▀[38;2;14;14;14m[48;2;18;18;18m▀[38;2;9;9;9m[48;2;0;0;0m▀[38;2;164;164;164m▀[38;2;180;180;180m▀[38;2;249;249;249m[48;2;238;238;238m▀[38;2;240;240;240m[48;2;255;255;255m▀[38;2;107;107;107m[48;2;153;153;153m▀[38;2;8;8;8m[48;2;0;0;0m▀[38;2;6;6;6m[48;2;9;9;9m▀[38;2;107;107;107m[48;2;155;155;155m▀[38;2;240;240;240m[48;2;255;255;255m▀[38;2;255;255;255m▀[38;2;239;239;239m[48;2;238;238;238m▀[38;2;13;13;13m[48;2;13;13;13m▀[38;2;12;12;12m[48;2;12;12;12m▀[38;2;244;244;244m[48;2;243;243;243m▀[38;2;243;243;243m[48;2;242;242;242m▀[38;2;13;13;13m[48;2;17;17;17m▀[38;2;12;12;12m[48;2;0;0;0m▀[38;2;153;153;153m▀[38;2;10;10;10m[48;2;6;6;6m▀[38;2;0;0;0m[48;2;137;137;137m▀[38;2;220;220;220m[48;2;231;231;231m▀[38;2;19;19;19m[48;2;20;20;20m▀[38;2;11;11;11m[48;2;0;0;0m▀[38;2;153;153;153m▀[38;2;12;12;12m▀[38;2;16;16;16m[48;2;23;23;23m▀[38;2;233;233;233m[48;2;217;217;217m▀[38;2;181;181;181m[48;2;0;0;0m▀[38;2;173;173;173m▀[38;2;174;174;174m▀[38;2;179;179;179m▀[38;2;249;249;249m[48;2;236;236;236m▀[38;2;253;253;253m[48;2;255;255;255m▀[38;2;255;255;255m[48;2;253;253;253m▀[38;2;243;243;243m[48;2;255;255;255m▀[38;2;90;90;90m▀[38;2;0;0;0m[48;2;115;115;115m▀[38;2;3;5;5m[48;2;0;0;0m▀[38;2;1;0;0m[48;2;2;3;3m▀[38;2;0;12;12m[48;2;1;0;0m▀[38;2;0;156;156m[48;2;0;0;0m▀[38;2;0;150;150m[48;2;0;96;96m▀[38;2;0;165;165m[48;2;0;8;8m▀[38;2;0;151;151m[48;2;0;93;93m▀[38;2;0;169;169m[48;2;0;0;0m▀[38;2;0;152;152m[48;2;0;91;91m▀[38;2;0;168;168m[48;2;0;0;0m▀[38;2;0;151;151m[48;2;0;95;95m▀[38;2;0;160;160m[48;2;0;0;0m▀[38;2;0;12;12m▀[38;2;0;1;1m▀[38;2;0;0;0m▀[38;2;0;1;1m▀[38;2;0;0;0m▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;17;17;17m[48;2;17;17;17m▀[38;2;238;238;238m[48;2;238;238;238m▀[38;2;255;255;255m[48;2;255;255;255m▀[48;2;250;250;250m▀[48;2;255;255;255m▀▀[48;2;251;251;251m▀▀▀[48;2;254;254;254m▀[48;2;252;252;252m▀[48;2;254;254;254m▀[48;2;251;251;251m▀[48;2;254;254;254m▀[48;2;255;255;255m▀[38;2;239;239;239m[48;2;239;239;239m▀[38;2;15;15;15m[48;2;14;14;14m▀[38;2;6;6;6m[48;2;16;16;16m▀[38;2;110;110;110m[48;2;255;255;255m▀[38;2;127;127;127m▀[38;2;241;241;241m[48;2;238;238;238m▀[38;2;135;135;135m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;18;18;18m▀[38;2;99;99;99m[48;2;252;252;252m▀[38;2;0;0;0m[48;2;171;171;171m▀[48;2;11;11;11m▀[38;2;135;135;135m[48;2;0;0;0m▀[38;2;249;249;249m[48;2;242;242;242m▀[38;2;240;240;240m[48;2;243;243;243m▀[38;2;13;13;13m[48;2;13;13;13m▀[38;2;12;12;12m▀[38;2;243;243;243m[48;2;243;243;243m▀[38;2;242;242;242m▀[38;2;14;14;14m[48;2;12;12;12m▀[38;2;8;8;8m[48;2;19;19;19m▀[38;2;105;105;105m[48;2;239;239;239m▀[38;2;17;17;17m[48;2;17;17;17m▀[38;2;155;155;155m[48;2;0;0;0m▀[38;2;235;235;235m[48;2;221;221;221m▀[38;2;15;15;15m[48;2;17;17;17m▀[38;2;8;8;8m[48;2;18;18;18m▀[38;2;106;106;106m[48;2;239;239;239m▀[38;2;8;8;8m[48;2;19;19;19m▀[38;2;17;17;17m[48;2;12;12;12m▀[38;2;229;229;229m[48;2;240;240;240m▀[38;2;132;132;132m[48;2;255;255;255m▀[38;2;119;119;119m▀[38;2;120;120;120m▀[38;2;129;129;129m▀[38;2;246;246;246m▀[38;2;255;255;255m▀▀[38;2;254;254;254m▀[38;2;253;253;253m[48;2;254;254;254m▀[38;2;255;255;255m[48;2;252;252;252m▀[38;2;118;118;118m[48;2;255;255;255m▀[38;2;0;0;0m[48;2;165;165;165m▀[38;2;1;1;1m[48;2;4;4;4m▀[38;2;1;18;18m[48;2;1;0;0m▀[38;2;0;136;136m[48;2;2;0;0m▀[38;2;0;30;30m[48;2;0;12;12m▀[38;2;0;130;130m[48;2;0;140;140m▀[38;2;0;141;141m[48;2;0;107;107m▀[38;2;0;142;142m[48;2;0;144;144m▀[38;2;0;137;137m[48;2;0;104;104m▀[38;2;0;145;145m[48;2;0;148;148m▀[38;2;0;128;128m[48;2;0;93;93m▀[38;2;0;13;13m[48;2;0;8;8m▀[38;2;0;1;1m[48;2;0;1;1m▀[48;2;0;0;0m▀[38;2;0;0;0m▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;17;17;17m[48;2;17;17;17m▀[38;2;238;238;238m[48;2;238;238;238m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;254;254;254m[48;2;252;252;252m▀[38;2;255;255;255m[48;2;253;253;253m▀▀▀[48;2;255;255;255m▀[48;2;253;253;253m▀▀▀▀[48;2;255;255;255m▀[38;2;254;254;254m[48;2;252;252;252m▀[38;2;255;255;255m[48;2;253;253;253m▀[38;2;238;238;238m[48;2;239;239;239m▀[38;2;12;12;12m[48;2;33;33;33m▀[38;2;0;0;0m[48;2;16;16;16m▀[38;2;47;47;47m[48;2;4;4;4m▀[38;2;68;68;68m[48;2;24;24;24m▀[38;2;225;225;225m[48;2;221;221;221m▀[38;2;16;16;16m[48;2;31;31;31m▀[38;2;7;7;7m[48;2;27;27;27m▀[38;2;240;240;240m[48;2;242;242;242m▀[38;2;255;255;255m[48;2;239;239;239m▀[38;2;9;9;9m[48;2;26;26;26m▀[38;2;11;11;11m[48;2;27;27;27m▀[38;2;243;243;243m[48;2;244;244;244m▀[48;2;242;242;242m▀[38;2;8;8;8m[48;2;26;26;26m▀▀[38;2;243;243;243m[48;2;242;242;242m▀[48;2;244;244;244m▀[38;2;7;7;7m[48;2;26;26;26m▀[38;2;13;13;13m[48;2;31;31;31m▀[38;2;219;219;219m[48;2;225;225;225m▀[38;2;12;12;12m[48;2;32;32;32m▀[38;2;16;16;16m[48;2;30;30;30m▀[38;2;223;223;223m[48;2;223;223;223m▀[38;2;12;12;12m[48;2;32;32;32m▀[48;2;30;30;30m▀[38;2;219;219;219m[48;2;223;223;223m▀[38;2;13;13;13m[48;2;31;31;31m▀[38;2;8;8;8m[48;2;27;27;27m▀[38;2;238;238;238m[48;2;240;240;240m▀[38;2;251;251;251m[48;2;253;253;253m▀[38;2;250;250;250m[48;2;252;252;252m▀[38;2;251;251;251m[48;2;255;255;255m▀[48;2;253;253;253m▀[38;2;255;255;255m▀[48;2;255;255;255m▀▀[48;2;253;253;253m▀▀[38;2;254;254;254m▀[38;2;252;252;252m[48;2;254;254;254m▀[38;2;255;255;255m[48;2;252;252;252m▀[38;2;187;187;187m[48;2;255;255;255m▀[38;2;6;6;6m[48;2;189;189;189m▀[38;2;0;0;0m[48;2;27;27;27m▀[38;2;2;9;9m[48;2;0;0;0m▀[38;2;0;84;84m[48;2;2;0;0m▀[38;2;0;168;168m[48;2;0;75;75m▀[38;2;0;95;95m[48;2;0;152;152m▀[38;2;0;163;163m[48;2;0;87;87m▀[38;2;0;99;99m[48;2;0;143;143m▀[38;2;0;161;161m[48;2;0;76;76m▀[38;2;0;16;16m[48;2;0;7;7m▀[38;2;0;0;0m[48;2;0;1;1m▀[38;2;0;1;1m[48;2;0;0;0m▀[38;2;0;0;0m▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;17;17;17m[48;2;17;17;17m▀[38;2;238;238;238m[48;2;239;239;239m▀[38;2;255;255;255m[48;2;253;253;253m▀[48;2;221;221;221m▀[48;2;216;216;216m▀▀[48;2;223;223;223m▀[48;2;250;250;250m▀[48;2;219;219;219m▀[48;2;216;216;216m▀[48;2;220;220;220m▀[48;2;223;223;223m▀[48;2;250;250;250m▀[48;2;219;219;219m▀[48;2;218;218;218m▀[38;2;254;254;254m[48;2;253;253;253m▀[38;2;239;239;239m[48;2;255;255;255m▀▀[38;2;249;249;249m[48;2;223;223;223m▀[38;2;251;251;251m[48;2;220;220;220m▀[38;2;255;255;255m▀[38;2;247;247;247m[48;2;227;227;227m▀[38;2;240;240;240m[48;2;254;254;254m▀[38;2;255;255;255m[48;2;223;223;223m▀[48;2;216;216;216m▀[38;2;248;248;248m[48;2;220;220;220m▀[38;2;247;247;247m[48;2;227;227;227m▀[38;2;255;255;255m[48;2;250;250;250m▀[48;2;219;219;219m▀[38;2;248;248;248m[48;2;220;220;220m▀[48;2;224;224;224m▀[38;2;255;255;255m[48;2;223;223;223m▀[48;2;250;250;250m▀[38;2;247;247;247m[48;2;223;223;223m▀[48;2;222;222;222m▀[38;2;253;253;253m[48;2;250;250;250m▀[38;2;239;239;239m[48;2;255;255;255m▀[38;2;247;247;247m[48;2;222;222;222m▀[38;2;255;255;255m[48;2;219;219;219m▀[38;2;240;240;240m[48;2;254;254;254m▀[38;2;247;247;247m[48;2;227;227;227m▀[38;2;255;255;255m[48;2;217;217;217m▀[38;2;248;248;248m[48;2;220;220;220m▀[38;2;247;247;247m[48;2;227;227;227m▀[38;2;255;255;255m[48;2;251;251;251m▀[48;2;218;218;218m▀[48;2;219;219;219m▀[48;2;250;250;250m▀[48;2;219;219;219m▀[48;2;217;217;217m▀[48;2;255;255;255m▀[38;2;252;252;252m▀[38;2;255;255;255m[48;2;220;220;220m▀▀▀[38;2;252;252;252m[48;2;255;255;255m▀[38;2;255;255;255m▀[48;2;217;217;217m▀[48;2;215;215;215m▀[38;2;227;227;227m[48;2;255;255;255m▀[38;2;47;47;47m[48;2;239;239;239m▀[38;2;0;0;0m[48;2;49;50;50m▀[38;2;3;0;0m[48;2;0;0;0m▀[38;2;0;25;25m▀[38;2;0;0;0m[48;2;0;18;18m▀[38;2;0;67;67m[48;2;0;161;161m▀[38;2;0;0;0m[48;2;0;18;18m▀[48;2;0;0;0m▀[48;2;0;1;1m▀[48;2;0;0;0m▀▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;16;16;16m[48;2;16;16;16m▀[38;2;242;242;242m[48;2;240;240;240m▀[38;2;241;241;241m[48;2;248;248;248m▀[38;2;1;1;1m[48;2;114;114;114m▀[38;2;0;0;0m[48;2;5;5;5m▀▀[38;2;7;7;7m[48;2;120;120;120m▀[38;2;218;218;218m[48;2;230;230;230m▀[38;2;23;23;23m[48;2;17;17;17m▀[38;2;0;0;0m[48;2;5;5;5m▀[48;2;102;102;102m▀[38;2;6;6;6m[48;2;122;122;122m▀[38;2;221;221;221m[48;2;229;229;229m▀[38;2;18;18;18m[48;2;15;15;15m▀[38;2;13;13;13m[48;2;12;12;12m▀[38;2;238;238;238m[48;2;238;238;238m▀[38;2;254;254;254m[48;2;255;255;255m▀[38;2;236;236;236m[48;2;237;237;237m▀[38;2;17;17;17m[48;2;15;15;15m▀[38;2;0;0;0m[48;2;5;5;5m▀[48;2;102;102;102m▀[38;2;5;5;5m[48;2;122;122;122m▀[38;2;216;216;216m[48;2;235;235;235m▀[38;2;7;7;7m[48;2;118;118;118m▀[38;2;0;0;0m[48;2;5;5;5m▀▀[38;2;6;6;6m[48;2;120;120;120m▀[38;2;218;218;218m[48;2;230;230;230m▀[38;2;23;23;23m[48;2;17;17;17m▀[38;2;0;0;0m[48;2;5;5;5m▀[48;2;102;102;102m▀[38;2;6;6;6m[48;2;122;122;122m▀[38;2;221;221;221m[48;2;227;227;227m▀[38;2;20;20;20m[48;2;1;1;1m▀[38;2;12;12;12m[48;2;7;7;7m▀[38;2;255;255;255m[48;2;147;147;147m▀[38;2;240;240;240m[48;2;250;250;250m▀[38;2;10;10;10m[48;2;16;16;16m▀[38;2;22;22;22m[48;2;0;0;0m▀[38;2;220;220;220m[48;2;230;230;230m▀[38;2;6;6;6m[48;2;120;120;120m▀[38;2;0;0;0m[48;2;5;5;5m▀▀[38;2;6;6;6m[48;2;120;120;120m▀[38;2;221;221;221m[48;2;231;231;231m▀[38;2;17;17;17m[48;2;13;13;13m▀[48;2;16;16;16m▀[38;2;223;223;223m[48;2;223;223;223m▀[38;2;17;17;17m[48;2;15;15;15m▀[38;2;13;13;13m[48;2;16;16;16m▀[38;2;236;236;236m[48;2;221;221;221m▀[38;2;169;169;169m[48;2;6;6;6m▀[38;2;11;11;11m[48;2;5;5;5m▀[38;2;0;0;0m[48;2;97;97;97m▀[38;2;11;11;11m[48;2;5;5;5m▀[38;2;169;169;169m[48;2;6;6;6m▀[38;2;236;236;236m[48;2;221;221;221m▀[38;2;14;14;14m[48;2;17;17;17m▀[38;2;13;13;13m[48;2;11;11;11m▀[38;2;237;237;237m[48;2;239;239;239m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;242;242;242m▀[38;2;91;92;92m[48;2;251;252;252m▀[38;2;6;5;5m[48;2;18;15;15m▀[38;2;1;8;8m[48;2;0;9;9m▀[38;2;0;96;96m[48;2;1;117;117m▀[38;2;0;10;10m[48;2;0;12;12m▀[38;2;0;0;0m[48;2;0;0;0m▀[48;2;0;1;1m▀[48;2;0;0;0m▀▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;17;17;17m[48;2;17;17;17m▀[38;2;237;237;237m[48;2;237;237;237m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;254;254;254m[48;2;234;234;234m▀[38;2;14;14;14m[48;2;13;13;13m▀[38;2;13;13;13m[48;2;12;12;12m▀[38;2;255;255;255m[48;2;239;239;239m▀[38;2;245;245;245m[48;2;242;242;242m▀[38;2;12;12;12m[48;2;15;15;15m▀[38;2;15;15;15m[48;2;4;4;4m▀[38;2;255;255;255m[48;2;77;77;77m▀[48;2;98;98;98m▀[38;2;240;240;240m[48;2;227;227;227m▀[38;2;13;13;13m[48;2;16;16;16m▀[38;2;14;14;14m[48;2;12;12;12m▀[38;2;238;238;238m[48;2;238;238;238m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;238;238;238m[48;2;237;237;237m▀[38;2;13;13;13m[48;2;16;16;16m▀[38;2;15;15;15m[48;2;4;4;4m▀[38;2;255;255;255m[48;2;78;78;78m▀[48;2;94;94;94m▀[48;2;246;246;246m▀[48;2;238;238;238m▀[38;2;15;15;15m[48;2;12;12;12m▀[38;2;13;13;13m▀[38;2;255;255;255m[48;2;239;239;239m▀[38;2;245;245;245m[48;2;242;242;242m▀[38;2;12;12;12m[48;2;15;15;15m▀[38;2;15;15;15m[48;2;4;4;4m▀[38;2;255;255;255m[48;2;78;78;78m▀[48;2;94;94;94m▀[38;2;247;247;247m[48;2;244;244;244m▀[38;2;118;118;118m[48;2;255;255;255m▀[38;2;0;0;0m[48;2;173;173;173m▀[48;2;12;12;12m▀[38;2;118;118;118m[48;2;0;0;0m▀[38;2;3;3;3m[48;2;172;172;172m▀[38;2;113;113;113m[48;2;255;255;255m▀[38;2;250;250;250m▀[38;2;255;255;255m[48;2;235;235;235m▀[38;2;14;14;14m[48;2;13;13;13m▀[38;2;13;13;13m[48;2;12;12;12m▀[38;2;255;255;255m[48;2;239;239;239m▀[38;2;245;245;245m[48;2;243;243;243m▀[38;2;11;11;11m[48;2;11;11;11m▀[38;2;18;18;18m[48;2;17;17;17m▀[38;2;223;223;223m[48;2;223;223;223m▀[38;2;16;16;16m[48;2;16;16;16m▀▀[38;2;223;223;223m[48;2;222;222;222m▀[38;2;18;18;18m[48;2;20;20;20m▀[38;2;19;19;19m[48;2;5;5;5m▀[38;2;253;253;253m[48;2;74;74;74m▀[38;2;19;19;19m[48;2;5;5;5m▀[38;2;18;18;18m[48;2;20;20;20m▀[38;2;223;223;223m[48;2;222;222;222m▀[38;2;17;17;17m[48;2;17;17;17m▀[38;2;13;13;13m[48;2;12;12;12m▀[38;2;239;239;239m[48;2;239;239;239m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;254;254;254m▀[38;2;235;235;235m[48;2;238;238;238m▀[38;2;17;15;15m[48;2;17;15;15m▀[38;2;0;7;7m[48;2;0;7;7m▀[38;2;1;98;98m[48;2;1;87;87m▀[38;2;0;10;10m[48;2;0;9;9m▀[38;2;0;0;0m[48;2;0;0;0m▀▀▀▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;17;17;17m[48;2;17;17;17m▀[38;2;237;237;237m[48;2;237;237;237m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;238;238;238m[48;2;238;238;238m▀[38;2;13;13;13m[48;2;13;13;13m▀[38;2;12;12;12m[48;2;12;12;12m▀[38;2;243;243;243m[48;2;243;243;243m▀[38;2;242;242;242m▀[38;2;16;16;16m[48;2;13;13;13m▀[38;2;0;0;0m[48;2;11;11;11m▀[48;2;196;196;196m▀[48;2;214;214;214m▀[38;2;220;220;220m[48;2;235;235;235m▀[38;2;17;17;17m[48;2;14;14;14m▀[38;2;12;12;12m[48;2;13;13;13m▀[38;2;236;236;236m[48;2;246;246;246m▀[38;2;253;253;253m[48;2;255;255;255m▀[38;2;237;237;237m[48;2;238;238;238m▀[38;2;17;17;17m[48;2;14;14;14m▀[38;2;0;0;0m[48;2;11;11;11m▀[48;2;197;197;197m▀[48;2;213;213;213m▀[38;2;241;241;241m[48;2;253;253;253m▀[38;2;243;243;243m[48;2;240;240;240m▀[38;2;12;12;12m[48;2;13;13;13m▀[48;2;12;12;12m▀[38;2;243;243;243m[48;2;243;243;243m▀[38;2;242;242;242m▀[38;2;16;16;16m[48;2;13;13;13m▀[38;2;0;0;0m[48;2;11;11;11m▀[48;2;196;196;196m▀[48;2;213;213;213m▀[38;2;239;239;239m[48;2;240;240;240m▀[38;2;249;249;249m[48;2;62;62;62m▀[38;2;82;82;82m[48;2;2;2;2m▀[38;2;0;0;0m[48;2;173;173;173m▀[38;2;3;3;3m[48;2;32;32;32m▀[38;2;83;83;83m[48;2;0;0;0m▀[38;2;245;245;245m[48;2;65;65;65m▀[38;2;255;255;255m[48;2;245;245;245m▀[38;2;238;238;238m[48;2;242;242;242m▀[38;2;13;13;13m[48;2;12;12;12m▀[38;2;12;12;12m▀[38;2;243;243;243m[48;2;243;243;243m▀▀[38;2;11;11;11m[48;2;13;13;13m▀[38;2;17;17;17m[48;2;18;18;18m▀[38;2;221;221;221m[48;2;230;230;230m▀[38;2;16;16;16m[48;2;17;17;17m▀[48;2;18;18;18m▀[38;2;222;222;222m[48;2;223;223;223m▀[38;2;23;23;23m[48;2;17;17;17m▀[38;2;0;0;0m[48;2;13;13;13m▀[48;2;177;177;177m▀[48;2;13;13;13m▀[38;2;23;23;23m[48;2;17;17;17m▀[38;2;222;222;222m[48;2;223;223;223m▀[38;2;17;17;17m[48;2;17;17;17m▀[38;2;12;12;12m[48;2;12;12;12m▀[38;2;237;237;237m[48;2;247;247;247m▀[38;2;253;253;253m[48;2;255;255;255m▀[38;2;255;255;255m▀[38;2;238;239;239m[48;2;238;238;238m▀[38;2;17;14;14m[48;2;17;15;15m▀[38;2;0;12;12m[48;2;0;7;7m▀[38;2;1;154;154m[48;2;1;89;89m▀[38;2;0;15;15m[48;2;0;9;9m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;1;1m▀[38;2;0;0;0m▀▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;17;17;17m[48;2;17;17;17m▀[38;2;237;237;237m[48;2;237;237;237m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;238;238;238m[48;2;237;237;237m▀[38;2;16;16;16m[48;2;0;0;0m▀[38;2;15;15;15m▀[38;2;243;243;243m[48;2;242;242;242m▀[48;2;241;241;241m▀[38;2;16;16;16m[48;2;1;1;1m▀[38;2;15;15;15m[48;2;0;0;0m▀[38;2;219;219;219m▀[38;2;236;236;236m[48;2;7;7;7m▀[38;2;237;237;237m[48;2;218;218;218m▀[38;2;17;17;17m[48;2;7;7;7m▀[38;2;15;15;15m[48;2;0;0;0m▀[38;2;207;207;207m▀[38;2;225;225;225m[48;2;9;9;9m▀[38;2;236;236;236m[48;2;218;218;218m▀[38;2;17;17;17m[48;2;7;7;7m▀[38;2;15;15;15m[48;2;0;0;0m▀[38;2;220;220;220m▀[38;2;236;236;236m▀[38;2;254;254;254m[48;2;241;241;241m▀[38;2;240;240;240m[48;2;242;242;242m▀[38;2;16;16;16m[48;2;0;0;0m▀[38;2;15;15;15m▀[38;2;243;243;243m[48;2;242;242;242m▀[48;2;241;241;241m▀[38;2;16;16;16m[48;2;1;1;1m▀[38;2;15;15;15m[48;2;0;0;0m▀[38;2;219;219;219m▀[38;2;236;236;236m[48;2;7;7;7m▀[48;2;220;220;220m▀[38;2;6;6;6m[48;2;4;4;4m▀[38;2;18;18;18m[48;2;0;0;0m▀[38;2;253;253;253m[48;2;240;240;240m▀[38;2;230;230;230m[48;2;246;246;246m▀[38;2;16;16;16m[48;2;0;0;0m▀[38;2;5;5;5m▀[38;2;242;242;242m[48;2;242;242;242m▀[38;2;243;243;243m▀[38;2;15;15;15m[48;2;0;0;0m▀▀[38;2;243;243;243m[48;2;241;241;241m▀[38;2;242;242;242m[48;2;244;244;244m▀[38;2;4;4;4m[48;2;49;49;49m▀[38;2;17;17;17m[48;2;0;0;0m▀[38;2;195;195;195m▀[38;2;16;16;16m▀[38;2;9;9;9m[48;2;55;55;55m▀[38;2;222;222;222m[48;2;224;224;224m▀[38;2;19;19;19m[48;2;0;0;0m▀[38;2;20;20;20m[48;2;1;1;1m▀[38;2;234;234;234m[48;2;219;219;219m▀[38;2;20;20;20m[48;2;1;1;1m▀[38;2;19;19;19m▀[38;2;223;223;223m[48;2;220;220;220m▀[38;2;21;21;21m[48;2;7;7;7m▀[38;2;14;14;14m[48;2;0;0;0m▀[38;2;208;208;208m▀[38;2;224;224;224m[48;2;3;3;3m▀[38;2;253;253;253m[48;2;241;241;241m▀[38;2;239;239;239m[48;2;242;242;242m▀[38;2;17;13;13m[48;2;16;15;15m▀[38;2;0;12;12m[48;2;0;4;4m▀[38;2;1;151;151m[48;2;1;57;57m▀[38;2;0;15;15m[48;2;0;6;6m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;1;1m▀[38;2;0;0;0m▀▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;17;17;17m[48;2;17;17;17m▀[38;2;237;237;237m[48;2;238;238;238m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;240;240;240m▀[38;2;90;90;90m▀▀[38;2;247;247;247m▀[38;2;246;246;246m▀[38;2;92;92;92m▀[38;2;82;82;82m▀[38;2;84;84;84m▀[38;2;99;99;99m▀[38;2;231;231;231m▀[38;2;96;96;96m▀[38;2;81;81;81m▀▀[38;2;99;99;99m▀[38;2;232;232;232m▀[38;2;100;100;100m▀[38;2;82;82;82m▀[38;2;81;81;81m▀[38;2;95;95;95m▀[38;2;246;246;246m▀[38;2;243;243;243m▀[38;2;93;93;93m▀[38;2;94;94;94m▀[38;2;247;247;247m▀[38;2;246;246;246m▀[38;2;93;93;93m▀[38;2;85;85;85m▀▀[38;2;99;99;99m▀[38;2;233;233;233m▀[38;2;93;93;93m▀[38;2;89;89;89m▀[38;2;243;243;243m▀[38;2;246;246;246m▀[38;2;93;93;93m▀▀[38;2;243;243;243m▀▀[38;2;93;93;93m▀[38;2;94;94;94m▀[38;2;243;243;243m▀[38;2;251;251;251m▀[38;2;238;238;238m▀[38;2;97;97;97m▀[38;2;85;85;85m▀[38;2;93;93;93m▀[38;2;242;242;242m▀[38;2;247;247;247m[48;2;254;254;254m▀[38;2;93;93;93m[48;2;255;255;255m▀[38;2;97;97;97m▀[38;2;233;233;233m▀[38;2;93;93;93m▀[38;2;96;96;96m▀[38;2;233;233;233m▀[38;2;100;100;100m▀[38;2;85;85;85m▀[38;2;81;81;81m▀[38;2;91;91;91m▀[38;2;246;246;246m▀[38;2;241;241;241m[48;2;237;237;237m▀[38;2;16;13;13m[48;2;17;17;17m▀[38;2;0;11;11m[48;2;0;0;0m▀[38;2;1;145;145m[48;2;1;0;0m▀[38;2;0;14;14m[48;2;0;0;0m▀[38;2;0;0;0m▀[38;2;0;1;1m▀[38;2;0;0;0m▀▀▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;16;16;16m[48;2;17;17;17m▀[38;2;240;240;240m[48;2;239;239;239m▀[38;2;248;248;248m[48;2;250;250;250m▀[38;2;133;133;133m[48;2;143;143;143m▀[48;2;5;5;5m▀[38;2;130;130;130m[48;2;143;143;143m▀[38;2;248;248;248m[48;2;250;250;250m▀[38;2;250;250;250m[48;2;234;234;234m▀[38;2;139;139;139m[48;2;13;13;13m▀[38;2;129;129;129m[48;2;128;128;128m▀[38;2;255;255;255m[48;2;105;105;105m▀[38;2;253;253;253m[48;2;239;239;239m▀[38;2;245;245;245m[48;2;248;248;248m▀[38;2;131;131;131m[48;2;143;143;143m▀[38;2;133;133;133m[48;2;5;5;5m▀[38;2;130;130;130m[48;2;143;143;143m▀[38;2;243;243;243m[48;2;248;248;248m▀[38;2;255;255;255m[48;2;239;239;239m▀[48;2;103;103;103m▀[38;2;127;127;127m[48;2;150;150;150m▀[38;2;126;126;126m[48;2;156;156;156m▀[38;2;246;246;246m[48;2;250;250;250m▀[38;2;247;247;247m[48;2;233;233;233m▀[38;2;153;153;153m[48;2;18;18;18m▀[38;2;242;242;242m[48;2;231;231;231m▀[38;2;252;252;252m[48;2;255;255;255m▀[38;2;255;255;255m▀[38;2;245;245;245m[48;2;231;231;231m▀[38;2;151;151;151m[48;2;19;19;19m▀[38;2;242;242;242m[48;2;231;231;231m▀[38;2;252;252;252m[48;2;255;255;255m▀[48;2;254;254;254m▀[38;2;246;246;246m[48;2;248;248;248m▀[38;2;131;131;131m[48;2;144;144;144m▀[38;2;133;133;133m[48;2;5;5;5m▀[38;2;134;134;134m[48;2;143;143;143m▀[38;2;246;246;246m[48;2;248;248;248m▀[38;2;253;253;253m[48;2;240;240;240m▀[38;2;255;255;255m[48;2;102;102;102m▀[38;2;131;131;131m[48;2;142;142;142m▀[38;2;130;130;130m[48;2;155;155;155m▀[38;2;243;243;243m[48;2;248;248;248m▀[38;2;253;253;253m[48;2;240;240;240m▀[38;2;255;255;255m[48;2;103;103;103m▀[38;2;130;130;130m[48;2;150;150;150m▀[38;2;129;129;129m[48;2;157;157;157m▀[38;2;246;246;246m[48;2;250;250;250m▀[38;2;247;247;247m[48;2;235;235;235m▀[38;2;139;139;139m[48;2;13;13;13m▀[38;2;132;132;132m[48;2;128;128;128m▀[38;2;255;255;255m[48;2;105;105;105m▀[38;2;253;253;253m[48;2;244;244;244m▀▀[38;2;255;255;255m[48;2;103;103;103m▀[38;2;141;141;141m[48;2;136;136;136m▀[38;2;255;255;255m[48;2;94;94;94m▀[48;2;243;243;243m▀[38;2;253;253;253m[48;2;244;244;244m▀[38;2;255;255;255m[48;2;102;102;102m▀[38;2;127;127;127m[48;2;150;150;150m▀[38;2;126;126;126m[48;2;157;157;157m▀[38;2;249;249;249m[48;2;250;250;250m▀[38;2;240;240;240m[48;2;240;240;240m▀[38;2;16;16;16m[48;2;17;17;17m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;5;3m[48;2;1;0;1m▀[38;2;0;2;0m[48;2;0;0;0m▀▀▀[38;2;0;0;0m[48;2;0;1;0m▀▀[48;2;0;0;0m▀▀▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;17;17;17m[48;2;17;17;17m▀[38;2;237;237;237m[48;2;237;237;237m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;248;248;248m[48;2;238;238;238m▀[38;2;41;41;41m[48;2;38;38;38m▀[38;2;248;248;248m[48;2;238;238;238m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;230;230;230m[48;2;231;231;231m▀[38;2;46;46;46m[48;2;41;41;41m▀[38;2;229;229;229m[48;2;210;210;210m▀[38;2;28;28;28m[48;2;45;45;45m▀[38;2;229;229;229m[48;2;232;232;232m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;249;249;249m[48;2;229;229;229m▀[38;2;41;41;41m[48;2;36;36;36m▀[38;2;250;250;250m[48;2;229;229;229m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;235;235;235m[48;2;233;233;233m▀[38;2;6;6;6m[48;2;25;25;25m▀[38;2;74;74;74m[48;2;179;179;179m▀[38;2;255;255;255m[48;2;255;255;255m▀▀[38;2;232;232;232m[48;2;233;233;233m▀[38;2;39;39;39m[48;2;37;37;37m▀[38;2;232;232;232m[48;2;243;243;243m▀[38;2;253;253;253m[48;2;255;255;255m▀[38;2;255;255;255m▀[38;2;233;233;233m[48;2;233;233;233m▀[38;2;38;38;38m[48;2;37;37;37m▀[38;2;232;232;232m[48;2;243;243;243m▀[38;2;253;253;253m[48;2;255;255;255m▀[48;2;253;253;253m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;249;249;249m[48;2;239;239;239m▀[38;2;41;41;41m[48;2;38;38;38m▀[38;2;248;248;248m[48;2;238;238;238m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;231;231;231m[48;2;231;231;231m▀[38;2;24;24;24m[48;2;35;35;35m▀[38;2;250;250;250m[48;2;222;222;222m▀[38;2;255;255;255m[48;2;87;87;87m▀[48;2;242;242;242m▀[38;2;236;236;236m[48;2;239;239;239m▀[38;2;6;6;6m[48;2;24;24;24m▀[38;2;74;74;74m[48;2;179;179;179m▀[38;2;255;255;255m[48;2;255;255;255m▀▀[38;2;231;231;231m[48;2;232;232;232m▀[38;2;46;46;46m[48;2;41;41;41m▀[38;2;229;229;229m[48;2;210;210;210m▀[38;2;27;27;27m[48;2;44;44;44m▀[38;2;237;237;237m[48;2;239;239;239m▀[38;2;238;238;238m▀[38;2;24;24;24m[48;2;30;30;30m▀[38;2;242;242;242m[48;2;238;238;238m▀[38;2;198;198;198m[48;2;248;248;248m▀[38;2;250;250;250m[48;2;254;254;254m▀[38;2;238;238;238m[48;2;234;234;234m▀[38;2;6;6;6m[48;2;25;25;25m▀[38;2;74;74;74m[48;2;179;179;179m▀[38;2;255;255;255m[48;2;255;255;255m▀▀[38;2;237;238;237m[48;2;238;239;238m▀[38;2;17;14;17m[48;2;17;13;17m▀[38;2;0;10;0m[48;2;0;14;0m▀[38;2;1;183;1m[48;2;1;251;1m▀[38;2;0;195;0m[48;2;0;255;0m▀▀[38;2;0;182;0m▀[38;2;0;6;0m[48;2;0;191;0m▀[38;2;0;0;0m[48;2;0;28;0m▀[38;2;0;2;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;2;0m▀[48;2;0;0;0m▀▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;17;17;17m[48;2;16;16;16m▀[38;2;238;238;238m[48;2;241;241;241m▀[38;2;253;253;253m[48;2;244;244;244m▀[38;2;193;193;193m[48;2;55;55;55m▀[38;2;21;21;21m[48;2;39;39;39m▀[38;2;193;193;193m[48;2;55;55;55m▀[38;2;253;253;253m[48;2;245;245;245m▀[38;2;231;231;231m[48;2;240;240;240m▀[38;2;32;32;32m[48;2;72;72;72m▀[38;2;210;210;210m[48;2;219;219;219m▀[38;2;32;32;32m[48;2;73;73;73m▀[38;2;230;230;230m[48;2;235;235;235m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;231;231;231m[48;2;236;236;236m▀[38;2;27;27;27m[48;2;69;69;69m▀[38;2;231;231;231m[48;2;236;236;236m▀[38;2;255;255;255m[48;2;255;255;255m▀[38;2;235;235;235m▀[38;2;65;65;65m[48;2;240;240;240m▀[38;2;206;206;206m[48;2;49;49;49m▀[38;2;213;213;213m[48;2;51;51;51m▀[38;2;253;253;253m[48;2;245;245;245m▀[38;2;234;234;234m[48;2;244;244;244m▀[38;2;24;24;24m[48;2;54;54;54m▀[38;2;191;191;191m[48;2;41;41;41m▀[38;2;212;212;212m[48;2;55;55;55m▀[38;2;253;253;253m[48;2;244;244;244m▀[38;2;234;234;234m▀[38;2;24;24;24m[48;2;54;54;54m▀[38;2;191;191;191m[48;2;41;41;41m▀[38;2;212;212;212m[48;2;55;55;55m▀[38;2;251;251;251m[48;2;244;244;244m▀[38;2;253;253;253m▀[38;2;194;194;194m[48;2;55;55;55m▀[38;2;21;21;21m[48;2;39;39;39m▀[38;2;193;193;193m[48;2;56;56;56m▀[38;2;252;252;252m[48;2;240;240;240m▀[38;2;234;234;234m[48;2;255;255;255m▀[38;2;68;68;68m[48;2;239;239;239m▀[38;2;174;174;174m[48;2;52;52;52m▀[38;2;16;16;16m[48;2;53;53;53m▀[38;2;237;237;237m[48;2;241;241;241m▀[38;2;241;241;241m[48;2;255;255;255m▀[38;2;63;63;63m[48;2;239;239;239m▀[38;2;206;206;206m[48;2;49;49;49m▀[38;2;213;213;213m[48;2;51;51;51m▀[38;2;253;253;253m[48;2;246;246;246m▀[38;2;232;232;232m[48;2;240;240;240m▀[38;2;32;32;32m[48;2;72;72;72m▀[38;2;210;210;210m[48;2;219;219;219m▀[38;2;32;32;32m[48;2;73;73;73m▀[38;2;236;236;236m[48;2;235;235;235m▀[38;2;240;240;240m[48;2;255;255;255m▀[38;2;66;66;66m[48;2;234;234;234m▀[38;2;180;180;180m[48;2;70;70;70m▀[38;2;78;78;78m[48;2;231;231;231m▀[38;2;241;241;241m[48;2;255;255;255m▀▀[38;2;63;63;63m[48;2;239;239;239m▀[38;2;206;206;206m[48;2;49;49;49m▀[38;2;213;213;213m[48;2;51;51;51m▀[38;2;253;253;253m[48;2;245;245;245m▀[38;2;239;240;239m[48;2;241;242;241m▀[38;2;17;13;17m[48;2;16;12;16m▀[38;2;0;13;0m[48;2;0;13;0m▀[38;2;1;236;1m[48;2;1;239;1m▀[38;2;0;252;0m[48;2;0;255;0m▀[38;2;0;251;0m[48;2;0;254;0m▀[38;2;0;252;0m[48;2;0;255;0m▀[38;2;0;255;0m[48;2;0;252;0m▀[38;2;0;226;0m[48;2;0;255;0m▀[38;2;0;47;0m[48;2;0;239;0m▀[38;2;0;0;0m[48;2;0;50;0m▀[38;2;0;3;0m[48;2;0;0;0m▀[38;2;0;0;0m▀▀▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;17;17;17m[48;2;18;18;18m▀[38;2;234;234;234m[48;2;255;255;255m▀[38;2;251;251;251m▀[38;2;248;248;248m▀[38;2;250;250;250m▀[38;2;249;249;249m▀[38;2;251;251;251m▀▀[38;2;250;250;250m▀[38;2;251;251;251m▀[38;2;250;250;250m▀[38;2;251;251;251m▀▀▀[38;2;250;250;250m▀[38;2;251;251;251m▀▀▀[38;2;252;252;252m▀[38;2;249;249;249m▀▀[38;2;251;251;251m▀▀[38;2;250;250;250m▀[38;2;249;249;249m▀▀[38;2;251;251;251m▀▀[38;2;250;250;250m▀[38;2;249;249;249m▀▀[38;2;251;251;251m▀▀[38;2;249;249;249m▀[38;2;250;250;250m▀[38;2;249;249;249m▀[38;2;251;251;251m▀▀[38;2;251;252;251m▀[38;2;249;249;249m▀[38;2;250;250;250m▀[38;2;251;251;251m▀▀[38;2;252;252;252m▀[38;2;249;249;249m▀▀[38;2;251;251;251m▀▀[38;2;250;250;250m▀[38;2;251;251;251m▀[38;2;250;250;250m▀[38;2;251;251;251m▀▀▀[38;2;250;250;250m▀[38;2;252;252;252m▀[38;2;251;251;251m▀▀[38;2;252;252;252m▀[38;2;249;249;249m▀[38;2;248;248;248m▀[38;2;251;251;251m▀[38;2;234;235;234m▀[38;2;17;13;17m[48;2;18;17;18m▀[38;2;0;13;0m[48;2;0;16;0m▀[38;2;1;239;1m[48;2;1;239;1m▀[38;2;0;255;0m[48;2;0;255;0m▀[38;2;0;254;0m[48;2;0;254;0m▀[38;2;0;255;0m[48;2;0;255;0m▀▀[38;2;0;253;0m▀[38;2;0;255;0m[48;2;0;253;0m▀[38;2;0;243;0m[48;2;0;255;0m▀[38;2;0;91;0m[48;2;0;251;0m▀[38;2;0;6;0m[48;2;0;18;0m▀[38;2;0;1;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;1;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;0;1m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;9;8;9m[48;2;0;11;0m▀[38;2;129;113;129m[48;2;0;150;0m▀[38;2;139;121;139m[48;2;0;160;0m▀[38;2;138;121;138m▀▀▀[38;2;139;121;139m▀▀[38;2;138;121;138m▀▀▀[38;2;139;121;139m▀▀▀[38;2;138;121;138m▀[38;2;139;121;139m▀▀▀▀[38;2;138;121;138m▀▀[38;2;139;121;139m▀▀[38;2;138;121;138m▀▀▀[38;2;139;121;139m▀▀[38;2;138;121;138m▀▀▀[38;2;139;121;139m▀▀[38;2;138;121;138m▀▀▀[38;2;139;121;139m▀▀▀[38;2;138;121;138m▀▀[38;2;139;121;139m▀▀▀[38;2;138;121;138m▀▀[38;2;139;121;139m▀▀[38;2;138;121;138m▀▀▀[38;2;139;121;139m▀▀▀[38;2;138;121;138m▀[38;2;139;121;139m▀▀▀▀[38;2;138;121;138m▀[38;2;138;120;138m▀[38;2;139;121;139m▀[38;2;129;113;129m[48;2;0;162;0m▀[38;2;9;0;9m[48;2;0;178;0m▀[38;2;0;0;0m[48;2;0;185;0m▀[38;2;1;236;1m[48;2;0;255;0m▀[38;2;0;253;0m▀[38;2;0;252;0m▀[38;2;0;253;0m▀▀▀[38;2;0;252;0m▀[38;2;0;253;0m▀[38;2;0;233;0m[48;2;0;247;0m▀[38;2;0;17;0m[48;2;0;18;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;1;0m[48;2;0;1;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀[38;2;0;5;0m▀[38;2;4;73;4m▀[38;2;4;79;4m▀[38;2;4;78;4m▀[38;2;4;79;4m▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀[38;2;4;78;4m▀[38;2;0;75;0m▀[38;2;0;73;0m▀[38;2;0;60;0m▀[38;2;0;59;0m▀▀▀▀▀[38;2;0;58;0m▀[38;2;0;59;0m▀[38;2;0;55;0m▀[38;2;0;4;0m▀[38;2;0;0;0m▀▀[0m
|
||||
BIN
tui/src/skywalker_tui/assets/splash/seti-satellite.png
Normal file
BIN
tui/src/skywalker_tui/assets/splash/seti-satellite.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.6 KiB |
32
tui/src/skywalker_tui/assets/splash/so-far-away.ans
Normal file
32
tui/src/skywalker_tui/assets/splash/so-far-away.ans
Normal file
@ -0,0 +1,32 @@
|
||||
[38;2;255;255;255m[48;2;253;253;253m▀▀▀▀▀▀[38;2;252;252;254m[48;2;251;251;253m▀[38;2;255;255;255m[48;2;253;253;253m▀[38;2;150;150;230m[48;2;194;194;234m▀[38;2;42;42;207m[48;2;140;140;206m▀[38;2;44;44;211m[48;2;107;107;192m▀[48;2;68;68;187m▀[48;2;69;69;187m▀[48;2;68;68;187m▀[38;2;45;45;211m[48;2;69;69;188m▀[38;2;44;44;211m[48;2;68;68;187m▀[38;2;82;82;228m[48;2;107;107;213m▀[38;2;130;130;234m[48;2;173;173;222m▀[38;2;122;122;233m[48;2;163;163;220m▀[38;2;123;123;233m[48;2;165;165;220m▀▀▀▀[38;2;122;122;232m[48;2;164;164;219m▀[38;2;129;129;235m[48;2;172;172;223m▀[38;2;86;86;216m[48;2;127;127;194m▀[38;2;44;44;211m[48;2;68;68;187m▀[38;2;46;46;211m[48;2;70;70;187m▀[38;2;44;44;211m[48;2;68;68;187m▀▀▀▀▀▀▀[38;2;43;43;211m[48;2;77;77;187m▀[38;2;38;38;208m[48;2;113;113;203m▀[38;2;38;38;207m[48;2;110;110;208m▀[48;2;110;110;207m▀▀▀▀▀▀▀▀▀▀▀[38;2;38;38;206m[48;2;113;113;209m▀[38;2;40;40;210m[48;2;101;101;193m▀[38;2;44;44;211m[48;2;69;69;188m▀[48;2;69;69;187m▀[48;2;68;68;187m▀▀▀[48;2;67;68;187m▀[38;2;44;45;211m[48;2;68;67;188m▀[38;2;43;44;211m[48;2;72;68;187m▀[38;2;51;51;218m[48;2;66;78;181m▀[38;2;81;84;230m[48;2;40;101;163m▀[38;2;45;80;200m[48;2;32;99;155m▀[38;2;23;81;172m[48;2;37;100;158m▀[38;2;24;81;176m[48;2;29;96;153m▀[38;2;23;81;175m[48;2;37;99;150m▀[38;2;11;76;168m[48;2;100;134;202m▀[38;2;44;96;171m[48;2;191;196;231m▀[38;2;108;133;224m[48;2;255;255;255m▀[38;2;202;198;255m[48;2;233;240;254m▀[38;2;249;244;255m[48;2;185;205;220m▀[38;2;231;231;239m[48;2;153;152;225m▀[38;2;131;131;231m[48;2;166;167;220m▀[38;2;125;125;233m[48;2;166;166;221m▀[38;2;100;100;233m[48;2;164;164;221m▀[38;2;78;78;233m[48;2;146;146;221m▀[38;2;77;77;233m[48;2;116;116;221m▀[38;2;81;81;233m[48;2;99;99;221m▀▀[38;2;82;82;234m[48;2;100;100;222m▀[38;2;75;75;229m[48;2;94;94;215m▀[0m
|
||||
[38;2;255;255;255m[48;2;170;170;213m▀[48;2;169;169;213m▀▀▀▀▀[48;2;168;168;213m▀[48;2;169;169;213m▀[38;2;202;202;255m[48;2;120;120;211m▀[38;2;164;164;230m[48;2;85;85;203m▀[38;2;128;128;202m[48;2;81;81;194m▀[38;2;63;63;193m[48;2;61;61;188m▀[38;2;65;65;193m[48;2;63;63;188m▀[38;2;63;63;193m[48;2;62;62;188m▀[38;2;64;64;194m[48;2;63;63;188m▀[38;2;63;63;193m[48;2;62;62;188m▀[38;2;103;103;220m[48;2;96;96;196m▀[38;2;169;169;230m[48;2;152;152;200m▀[38;2;159;159;228m[48;2;143;143;199m▀[38;2;161;161;228m[48;2;145;145;199m▀▀[48;2;143;143;199m▀[38;2;162;162;228m[48;2;142;142;200m▀[38;2;160;160;227m[48;2;141;141;200m▀[38;2;169;169;231m[48;2;148;148;201m▀[38;2;122;122;201m[48;2;107;107;191m▀[38;2;64;64;193m[48;2;59;59;189m▀[38;2;65;65;193m[48;2;60;60;188m▀[38;2;64;64;192m[48;2;56;56;192m▀[48;2;57;57;193m▀▀▀▀[38;2;65;65;192m[48;2;58;58;193m▀[38;2;65;65;193m[48;2;58;58;194m▀[38;2;79;79;192m[48;2;72;72;193m▀[38;2;165;165;219m[48;2;153;153;217m▀[38;2;166;166;229m[48;2;155;155;225m▀[38;2;164;164;226m[48;2;160;160;222m▀[38;2;165;165;227m▀▀▀▀▀▀▀▀[48;2;161;161;222m▀[38;2;163;163;226m[48;2;160;160;220m▀[38;2;173;173;230m[48;2;162;162;227m▀[38;2;116;116;192m[48;2;169;169;241m▀[38;2;58;58;188m[48;2;88;88;215m▀[38;2;65;65;192m[48;2;64;64;191m▀[38;2;63;63;192m[48;2;63;64;192m▀[48;2;64;63;192m▀[48;2;62;64;191m▀[38;2;67;63;192m[48;2;41;74;181m▀[38;2;61;66;189m[48;2;41;100;155m▀[38;2;40;73;182m[48;2;29;97;160m▀[38;2;41;100;155m[48;2;27;93;160m▀[38;2;31;96;160m[48;2;19;88;153m▀[38;2;30;92;161m[48;2;48;103;157m▀[38;2;24;93;154m[48;2;167;203;206m▀[38;2;52;108;177m[48;2;223;226;252m▀[38;2;161;190;212m[48;2;240;233;255m▀[38;2;255;253;255m[48;2;231;235;234m▀[38;2;226;225;255m[48;2;148;185;200m▀[38;2;204;233;208m[48;2;82;154;146m▀[38;2;119;183;173m[48;2;102;154;165m▀[38;2;101;155;170m[48;2;157;160;215m▀[38;2;160;157;227m[48;2;170;171;219m▀[38;2;154;156;223m[48;2;167;168;219m▀[38;2;158;158;224m[48;2;157;157;219m▀[48;2;158;158;223m▀[38;2;161;161;223m[48;2;158;158;224m▀[38;2;165;165;223m[48;2;157;157;223m▀[38;2;117;117;223m[48;2;166;166;223m▀[38;2;97;97;223m[48;2;108;108;223m▀[38;2;97;97;225m[48;2;96;96;225m▀[38;2;90;90;218m[48;2;91;91;218m▀[0m
|
||||
[38;2;47;47;187m[48;2;120;120;168m▀[38;2;49;49;188m[48;2;94;94;162m▀[48;2;96;96;164m▀[48;2;96;96;163m▀▀▀[48;2;95;95;165m▀[38;2;48;48;188m[48;2;99;99;161m▀[38;2;55;55;184m[48;2;77;77;201m▀[38;2;57;57;185m[48;2;79;79;216m▀[38;2;67;67;190m[48;2;87;87;194m▀[38;2;134;134;208m[48;2;161;161;217m▀[38;2;138;138;213m[48;2;164;164;228m▀[38;2;137;137;212m[48;2;163;163;226m▀▀▀[38;2;136;136;210m▀[38;2;135;135;209m[48;2;164;164;226m▀▀[48;2;166;166;227m▀[38;2;134;134;209m[48;2;156;156;225m▀[38;2;143;143;208m[48;2;222;222;231m▀[38;2;147;147;205m[48;2;255;255;247m▀[38;2;147;147;206m▀[38;2;147;147;205m▀[38;2;149;149;208m▀[48;2;255;255;246m▀[38;2;154;154;211m[48;2;255;255;248m▀[38;2;119;119;189m[48;2;255;255;236m▀[38;2;88;88;184m[48;2;255;255;233m▀[38;2;89;89;184m▀[38;2;88;88;184m▀▀[38;2;89;89;184m▀[38;2;89;89;185m▀[38;2;100;100;184m▀[38;2;170;170;212m[48;2;255;255;241m▀[38;2;170;170;222m[48;2;245;245;242m▀[38;2;149;149;225m[48;2;73;73;207m▀[38;2;147;147;226m[48;2;59;59;205m▀[38;2;147;147;227m[48;2;62;62;203m▀[48;2;62;62;202m▀▀▀▀▀▀▀[38;2;146;146;225m▀[38;2;148;148;231m[48;2;61;62;202m▀[38;2;225;225;224m[48;2;56;56;187m▀[38;2;125;126;205m[48;2;62;58;187m▀[38;2;63;62;193m[48;2;62;68;187m▀[38;2;70;66;192m[48;2;41;74;181m▀[38;2;62;67;188m[48;2;42;101;154m▀[38;2;38;73;182m[48;2;31;98;160m▀[38;2;30;101;156m[48;2;27;89;157m▀[38;2;32;95;163m[48;2;26;95;150m▀[38;2;25;89;157m[48;2;72;122;186m▀[38;2;49;108;157m[48;2;190;192;234m▀[38;2;118;153;206m[48;2;243;238;255m▀[38;2;194;197;236m[48;2;247;248;255m▀[38;2;245;237;255m[48;2;172;202;207m▀[38;2;242;245;237m[48;2;58;120;161m▀[38;2;144;177;202m[48;2;70;136;153m▀[38;2;93;153;159m[48;2;131;166;191m▀[38;2;93;156;157m[48;2;155;158;219m▀[38;2;125;157;192m[48;2;170;166;222m▀[38;2;159;163;233m[48;2;234;233;251m▀[38;2;232;232;246m[48;2;255;255;255m▀[38;2;255;255;243m[48;2;254;253;255m▀[38;2;250;250;243m[48;2;255;255;255m▀[38;2;224;224;244m▀[38;2;174;174;225m[48;2;244;244;247m▀[38;2;156;156;221m[48;2;169;169;227m▀[38;2;158;158;224m[48;2;158;158;222m▀[38;2;164;164;223m[48;2;158;158;223m▀[38;2;118;118;223m[48;2;165;165;223m▀[38;2;99;99;225m[48;2;112;112;224m▀[38;2;91;91;218m[48;2;91;91;217m▀[0m
|
||||
[38;2;95;95;164m[48;2;89;89;165m▀[38;2;97;97;157m[48;2;97;97;158m▀[38;2;96;96;159m[48;2;95;95;160m▀[38;2;96;96;158m[48;2;95;95;159m▀▀▀[38;2;97;97;160m[48;2;96;96;161m▀[38;2;98;98;156m[48;2;96;96;156m▀[38;2;111;111;210m[48;2;107;107;209m▀[38;2;172;172;231m[48;2;166;166;230m▀[38;2;131;131;195m[48;2;128;128;197m▀[38;2;150;150;213m[48;2;148;148;216m▀[38;2;161;161;224m[48;2;159;159;227m▀[38;2;158;158;222m[48;2;157;157;225m▀[38;2;159;159;222m▀▀▀▀▀[38;2;161;161;223m[48;2;160;160;225m▀[38;2;151;151;220m[48;2;150;150;224m▀[38;2;215;215;230m[48;2;215;215;230m▀[38;2;253;253;255m[48;2;254;254;253m▀[38;2;252;252;255m[48;2;253;253;252m▀[38;2;253;253;255m[48;2;254;254;253m▀▀▀▀▀[38;2;254;254;255m[48;2;254;254;252m▀▀▀▀▀[48;2;254;254;253m▀[38;2;253;253;255m[48;2;252;252;251m▀[38;2;254;254;255m[48;2;253;253;251m▀[38;2;239;239;253m[48;2;238;238;248m▀[38;2;99;99;171m[48;2;102;102;170m▀[38;2;97;97;155m[48;2;98;98;157m▀[38;2;70;70;184m[48;2;94;94;163m▀[38;2;62;62;191m[48;2;92;92;163m▀[38;2;63;63;190m[48;2;93;93;163m▀[38;2;62;62;191m[48;2;92;92;163m▀▀[48;2;93;92;163m▀[38;2;62;62;190m[48;2;92;93;163m▀[48;2;93;92;164m▀[38;2;61;62;191m[48;2;96;93;163m▀[38;2;62;62;191m[48;2;91;96;160m▀[38;2;62;63;194m[48;2;67;102;153m▀[38;2;40;73;184m[48;2;59;130;127m▀[38;2;39;98;157m[48;2;60;124;134m▀[38;2;28;95;163m[48;2;51;118;124m▀[38;2;25;91;164m[48;2;73;132;123m▀[38;2;21;89;154m[48;2;118;153;199m▀[38;2;62;117;178m[48;2;252;254;248m▀[38;2;150;183;209m[48;2;250;240;255m▀[38;2;233;237;249m[48;2;204;208;238m▀[38;2;255;250;255m[48;2;141;175;181m▀[38;2;184;192;230m[48;2;61;121;129m▀[38;2;58;121;175m[48;2;58;120;131m▀[38;2;15;87;154m[48;2;87;120;159m▀[38;2;30;90;164m[48;2;119;122;184m▀[38;2;117;146;197m[48;2;154;152;221m▀[38;2;171;164;229m[48;2;161;163;222m▀[38;2;152;152;222m[48;2;152;152;219m▀[38;2;201;202;236m[48;2;198;198;254m▀[38;2;255;255;252m[48;2;254;254;255m▀[38;2;252;252;254m[48;2;253;253;255m▀[38;2;255;255;254m[48;2;255;255;255m▀[38;2;255;255;255m▀[38;2;253;253;254m[48;2;254;254;254m▀[38;2;255;255;255m[48;2;255;255;254m▀[38;2;216;216;231m[48;2;218;218;230m▀[38;2;152;152;221m[48;2;151;151;221m▀[38;2;159;159;224m[48;2;160;160;223m▀[38;2;165;165;223m[48;2;162;162;223m▀[38;2;109;109;226m[48;2;132;132;203m▀[38;2;88;88;220m[48;2;124;124;182m▀[0m
|
||||
[38;2;90;90;165m[48;2;90;90;165m▀[38;2;97;97;158m[48;2;97;97;158m▀[38;2;95;95;160m[48;2;95;95;160m▀[38;2;95;95;159m[48;2;95;95;159m▀▀▀[38;2;97;97;160m[48;2;97;97;160m▀[38;2;94;94;159m[48;2;94;94;159m▀[38;2;131;131;186m[48;2;134;134;183m▀[38;2;196;196;200m[48;2;200;200;196m▀[38;2;158;158;166m[48;2;163;163;162m▀[38;2;178;178;185m[48;2;189;189;184m▀[38;2;189;189;195m[48;2;200;200;196m▀[38;2;187;187;193m[48;2;197;197;193m▀[48;2;198;198;194m▀▀▀▀▀[38;2;188;188;195m[48;2;199;199;194m▀[38;2;182;182;189m[48;2;194;194;193m▀[38;2;224;224;225m[48;2;220;220;199m▀[38;2;255;255;255m[48;2;246;246;209m▀▀▀[48;2;247;247;209m▀[48;2;246;246;209m▀[48;2;244;244;205m▀[48;2;244;244;204m▀▀▀▀▀[48;2;245;245;204m▀[48;2;235;235;206m▀[48;2;196;196;189m▀[48;2;199;199;185m▀[38;2;248;248;255m[48;2;190;190;183m▀[38;2;101;101;172m[48;2;102;102;161m▀[38;2;96;96;158m[48;2;96;96;159m▀[38;2;97;97;159m[48;2;96;96;160m▀[38;2;96;96;158m[48;2;95;95;159m▀▀[48;2;94;95;159m▀[48;2;95;95;160m▀[38;2;95;96;158m[48;2;100;95;160m▀[38;2;95;95;159m[48;2;99;111;144m▀[38;2;92;97;157m[48;2;82;143;115m▀[38;2;73;106;149m[48;2;64;130;128m▀[38;2;74;134;122m[48;2;57;122;130m▀[38;2;63;129;128m[48;2;56;123;121m▀[38;2;56;120;125m[48;2;104;160;140m▀[38;2;63;125;116m[48;2;175;206;200m▀[38;2;118;152;196m[48;2;220;212;255m▀[38;2;228;232;231m[48;2;241;241;255m▀[38;2;255;255;255m[48;2;193;222;184m▀[38;2;242;246;255m[48;2;90;151;143m▀[38;2;168;200;184m[48;2;49;121;124m▀[38;2;66;124;130m[48;2;65;126;130m▀[38;2;52;120;121m[48;2;101;130;165m▀[38;2;95;130;159m[48;2;135;128;198m▀[38;2;127;130;179m[48;2;126;126;186m▀[38;2;164;160;242m[48;2;202;203;233m▀[38;2;143;143;203m[48;2;159;159;202m▀[38;2;149;150;211m[48;2;146;146;212m▀[38;2;163;163;224m[48;2;163;163;223m▀[38;2;153;153;222m[48;2;157;157;224m▀[38;2;196;196;230m[48;2;166;166;218m▀[38;2;255;255;250m[48;2;239;239;250m▀[38;2;252;252;254m[48;2;255;255;255m▀[38;2;254;254;255m▀[48;2;255;255;253m▀[38;2;253;253;253m[48;2;255;255;255m▀[38;2;253;253;255m[48;2;243;243;240m▀[38;2;209;209;231m[48;2;159;159;224m▀[38;2;153;153;221m[48;2;160;160;223m▀[38;2;160;160;223m[48;2;158;158;222m▀[38;2;162;162;223m[48;2;165;165;225m▀[38;2;135;135;200m[48;2;135;135;202m▀[38;2;129;129;177m[48;2;127;127;178m▀[0m
|
||||
[38;2;90;90;165m[48;2;90;90;165m▀[38;2;97;97;158m[48;2;97;97;158m▀[38;2;96;96;160m[48;2;94;94;159m▀[38;2;97;97;162m[48;2;85;85;151m▀[48;2;85;85;150m▀▀[38;2;99;99;163m[48;2;86;86;151m▀[38;2;95;95;162m[48;2;83;83;150m▀[38;2;136;136;185m[48;2;118;118;177m▀[38;2;205;205;197m[48;2;176;176;191m▀[38;2;157;157;167m[48;2;131;131;158m▀[38;2;138;138;169m[48;2;81;81;153m▀[38;2;151;151;171m[48;2;91;91;157m▀[38;2;148;148;170m[48;2;89;89;157m▀[38;2;148;148;171m[48;2;86;86;159m▀[48;2;88;88;158m▀[48;2;89;89;157m▀▀▀[38;2;148;148;170m[48;2;90;90;157m▀[38;2;148;148;171m[48;2;89;89;157m▀[38;2;145;145;169m[48;2;90;90;158m▀[38;2;142;142;167m[48;2;90;90;157m▀▀[38;2;143;143;167m[48;2;91;91;157m▀[38;2;141;141;167m[48;2;90;90;157m▀[38;2;149;149;167m[48;2;91;91;157m▀[38;2;173;173;186m[48;2;94;94;168m▀[38;2;172;172;192m[48;2;94;94;172m▀[38;2;173;173;191m[48;2;94;94;171m▀▀▀▀[38;2;174;174;190m▀[38;2;163;163;194m[48;2;94;94;172m▀[38;2;87;87;161m[48;2;97;97;163m▀[38;2;85;85;153m[48;2;98;98;161m▀[38;2;84;84;153m▀[38;2;95;95;159m[48;2;95;95;160m▀[48;2;95;95;159m▀[48;2;94;95;159m▀[38;2;95;96;159m[48;2;96;95;160m▀[38;2;95;95;159m[48;2;94;95;159m▀[38;2;100;96;159m[48;2;72;106;149m▀[38;2;95;100;157m[48;2;74;133;124m▀[38;2;71;101;147m[48;2;61;129;129m▀[38;2;117;175;165m[48;2;60;126;141m▀[38;2;153;215;189m[48;2;99;158;140m▀[38;2;56;123;132m[48;2;116;151;200m▀[38;2;93;146;117m[48;2;198;201;231m▀[38;2;169;202;196m[48;2;255;255;255m▀[38;2;207;214;248m[48;2;220;223;239m▀[38;2;255;255;255m[48;2;135;167;181m▀[38;2;219;225;236m[48;2;68;124;132m▀[38;2;114;149;179m[48;2;50;125;120m▀[38;2;51;119;119m[48;2;68;119;139m▀[38;2;63;123;124m[48;2;89;94;163m▀[38;2;86;117;138m[48;2;98;94;160m▀[38;2;95;99;169m[48;2;103;103;166m▀[38;2;135;132;196m[48;2;127;127;196m▀[38;2;125;126;189m[48;2;127;127;190m▀[38;2;127;127;191m[48;2;127;127;191m▀[38;2;117;117;192m[48;2;130;130;191m▀[38;2;122;122;188m[48;2;129;129;192m▀[38;2;155;155;218m[48;2;143;143;191m▀[38;2;161;161;223m[48;2;160;160;218m▀[38;2;158;158;223m[48;2;160;160;223m▀[38;2;160;160;223m[48;2;158;158;223m▀[38;2;158;158;233m[48;2;158;158;221m▀[38;2;212;212;232m[48;2;154;154;219m▀[38;2;242;242;252m[48;2;157;157;231m▀[38;2;242;242;255m[48;2;157;157;234m▀[38;2;236;236;240m[48;2;155;155;223m▀[38;2;180;180;222m[48;2;155;155;222m▀[38;2;156;156;222m[48;2;159;159;224m▀[38;2;159;159;223m[48;2;162;162;222m▀[38;2;162;162;222m[48;2;153;153;224m▀[38;2;153;153;200m[48;2;129;129;198m▀[38;2;132;132;193m[48;2;127;127;192m▀[38;2;128;128;181m[48;2;128;128;181m▀[0m
|
||||
[38;2;90;90;165m[48;2;93;93;163m▀[38;2;95;95;159m[48;2;96;96;157m▀[38;2;104;104;160m[48;2;112;112;160m▀[38;2;157;157;219m[48;2;235;235;255m▀[38;2;159;159;227m[48;2;242;242;255m▀▀[38;2;159;159;228m▀[38;2;159;159;227m▀[38;2;158;158;236m[48;2;243;243;255m▀[38;2;155;155;239m[48;2;241;241;255m▀[38;2;159;159;230m[48;2;243;243;255m▀[38;2;136;136;186m[48;2;180;180;205m▀[38;2;94;94;159m[48;2;92;92;157m▀[38;2;97;97;158m[48;2;112;112;177m▀[38;2;107;107;150m[48;2;239;239;227m▀[38;2;98;98;153m[48;2;176;176;204m▀[38;2;94;94;157m[48;2;103;103;177m▀[38;2;94;94;156m[48;2;109;109;182m▀[48;2;107;107;181m▀▀[48;2;107;107;180m▀[48;2;105;105;183m▀[38;2;97;97;159m[48;2;95;95;165m▀[38;2;97;97;160m[48;2;95;95;160m▀▀[48;2;98;98;157m▀[48;2;97;97;158m▀[38;2;96;96;158m▀[38;2;96;96;157m▀▀[48;2;98;98;158m▀[48;2;96;96;160m▀[38;2;96;96;156m[48;2;99;99;157m▀[38;2;98;98;154m[48;2;102;102;154m▀[38;2;98;98;155m[48;2;104;104;152m▀[38;2;97;97;157m[48;2;104;104;151m▀[38;2;97;97;158m[48;2;104;104;150m▀[38;2;97;97;157m[48;2;103;104;151m▀[38;2;97;98;156m[48;2;104;99;156m▀[38;2;97;96;158m[48;2;97;103;152m▀[38;2;99;96;159m[48;2;72;103;152m▀[38;2;94;99;156m[48;2;75;134;125m▀[38;2;70;106;150m[48;2;57;125;129m▀[38;2;62;133;125m[48;2;53;120;121m▀[38;2;56;120;127m[48;2;97;153;141m▀[38;2;57;125;118m[48;2;175;210;199m▀[38;2;94;147;146m[48;2;247;251;246m▀[38;2;207;211;219m[48;2;221;214;255m▀[38;2;255;255;255m[48;2;225;231;199m▀[38;2;208;211;255m[48;2;123;185;117m▀[38;2;187;217;187m[48;2;81;149;94m▀[38;2;91;151;133m[48;2;88;154;95m▀[38;2;48;121;120m[48;2;95;126;133m▀[38;2;68;130;125m[48;2;96;102;153m▀[38;2;88;121;137m[48;2;105;102;153m▀[38;2;88;95;160m[48;2;105;104;152m▀[38;2;97;96;158m[48;2;94;95;160m▀[38;2;94;96;159m[48;2;97;97;159m▀[38;2;94;95;162m[48;2;96;97;158m▀[38;2;100;100;176m[48;2;104;104;164m▀[38;2;131;131;192m[48;2;127;127;197m▀[38;2;127;127;190m[48;2;123;123;193m▀[38;2;128;128;191m[48;2;125;125;194m▀[48;2;124;124;194m▀[38;2;124;124;191m[48;2;129;129;191m▀[38;2;142;142;191m[48;2;126;126;189m▀[38;2;160;160;219m[48;2;144;144;189m▀[38;2;162;162;223m[48;2;151;151;217m▀[38;2;159;159;223m[48;2;159;159;222m▀[38;2;160;160;224m[48;2;161;161;223m▀[38;2;159;159;222m[48;2;160;160;221m▀[38;2;159;159;221m[48;2;160;160;220m▀[38;2;160;160;223m[48;2;156;156;225m▀[48;2;156;156;226m▀[38;2;163;163;222m[48;2;147;147;226m▀[38;2;154;154;224m[48;2;122;122;203m▀[38;2;130;130;201m[48;2;121;121;191m▀[38;2;129;129;190m[48;2;122;122;192m▀[38;2;129;129;194m[48;2;122;122;196m▀[38;2;129;129;181m[48;2;121;121;182m▀[0m
|
||||
[38;2;100;100;155m[48;2;88;88;167m▀[38;2;105;105;150m[48;2;95;95;160m▀[38;2;103;103;152m[48;2;94;94;161m▀[38;2;93;93;173m[48;2;96;96;155m▀[38;2;92;92;175m[48;2;96;96;154m▀[48;2;96;96;155m▀[48;2;96;96;154m▀▀[38;2;92;92;176m▀[38;2;93;93;176m[48;2;96;96;155m▀[38;2;92;92;176m[48;2;96;96;154m▀[38;2;100;100;164m[48;2;95;95;159m▀[38;2;103;103;149m[48;2;94;94;158m▀[38;2;136;136;187m[48;2;126;126;191m▀[38;2;193;193;235m[48;2;157;157;223m▀[38;2;183;183;220m[48;2;157;157;217m▀[38;2;195;195;187m[48;2;170;170;209m▀[38;2;197;197;191m[48;2;170;170;210m▀[38;2;197;197;190m▀[48;2;170;170;211m▀[38;2;199;199;189m[48;2;172;172;210m▀[38;2;186;186;194m[48;2;159;159;213m▀[38;2;105;105;163m[48;2;78;78;190m▀[38;2;100;100;157m[48;2;73;73;184m▀[38;2;101;101;155m[48;2;78;78;179m▀[38;2;102;102;153m[48;2;93;93;164m▀[38;2;104;104;151m[48;2;94;94;163m▀▀[48;2;94;94;162m▀[48;2;94;94;161m▀▀[38;2;103;103;151m▀[38;2;102;102;153m▀[38;2;92;92;162m[48;2;96;97;158m▀[38;2;94;94;161m[48;2;96;95;160m▀[38;2;94;95;160m[48;2;96;91;164m▀[38;2;94;91;163m[48;2;96;101;154m▀[38;2;93;95;160m[48;2;97;130;126m▀[38;2;94;124;131m[48;2;98;167;91m▀[38;2;88;148;110m[48;2;80;146;101m▀[38;2;59;126;132m[48;2;61;124;121m▀[38;2;51;120;121m[48;2;126;160;195m▀[38;2;80;137;121m[48;2;201;205;231m▀[38;2;131;166;195m[48;2;245;234;255m▀[38;2;219;222;244m[48;2;238;241;255m▀[38;2;239;231;255m[48;2;160;193;186m▀[38;2;226;230;238m[48;2;62;118;133m▀[38;2;141;173;183m[48;2;47;119;122m▀[38;2;75;131;122m[48;2;70;132;124m▀[38;2;90;159;86m[48;2;97;128;129m▀[38;2;99;159;99m[48;2;95;101;154m▀[38;2;98;126;131m[48;2;96;92;163m▀[38;2;97;92;163m[48;2;95;97;158m▀[38;2;96;95;160m[48;2;96;96;159m▀[38;2;93;94;161m[48;2;97;97;158m▀[38;2;89;89;166m[48;2;95;95;160m▀[38;2;81;81;174m[48;2;108;108;146m▀[38;2;88;88;167m[48;2;116;116;139m▀[38;2;87;87;168m[48;2;114;114;141m▀[38;2;85;85;171m[48;2;114;114;140m▀[38;2;98;98;180m[48;2;123;123;138m▀[38;2;146;146;179m[48;2;166;166;138m▀[38;2;138;138;178m[48;2;183;183;138m▀[38;2;137;137;179m[48;2;179;179;138m▀[38;2;163;163;155m[48;2;179;179;140m▀[38;2;171;171;146m[48;2;178;178;140m▀[38;2;168;168;148m[48;2;180;180;143m▀[38;2;165;165;149m[48;2;175;175;136m▀[38;2;188;188;158m[48;2;218;218;204m▀[38;2;204;204;155m[48;2;255;255;242m▀[38;2;201;201;182m[48;2;254;254;244m▀[38;2;202;202;186m[48;2;255;255;247m▀[38;2;178;178;188m[48;2;255;255;241m▀[38;2;172;172;187m[48;2;255;255;240m▀[38;2;152;152;189m▀[38;2;151;151;185m[48;2;255;255;241m▀▀▀[38;2;151;151;189m▀[38;2;152;152;174m[48;2;255;255;238m▀[0m
|
||||
[38;2;91;91;166m[48;2;87;87;159m▀[38;2;98;98;159m[48;2;94;94;152m▀[38;2;97;97;161m[48;2;93;93;154m▀▀▀▀[48;2;93;93;153m▀[38;2;96;96;161m[48;2;94;94;157m▀[38;2;96;96;160m[48;2;97;97;159m▀▀▀[38;2;97;97;161m[48;2;97;97;160m▀[38;2;96;96;156m[48;2;97;97;158m▀[38;2;126;126;194m[48;2;100;100;169m▀[38;2;165;165;232m[48;2;117;117;174m▀[38;2;158;158;228m[48;2;115;115;173m▀[38;2;156;156;232m▀[38;2;156;156;231m[48;2;115;115;174m▀[38;2;155;155;231m[48;2;117;117;177m▀[38;2;152;152;226m[48;2;128;128;219m▀[38;2;154;154;227m[48;2;130;130;220m▀[38;2;147;147;219m[48;2;124;124;220m▀[38;2;92;92;167m[48;2;110;110;208m▀[38;2;87;87;158m[48;2;111;111;205m▀[38;2;88;88;159m[48;2;110;110;206m▀[38;2;93;93;153m[48;2;109;109;207m▀[38;2;92;92;153m[48;2;109;109;206m▀[48;2;110;110;209m▀[38;2;94;94;156m[48;2;104;104;186m▀[38;2;96;96;159m[48;2;96;96;158m▀[48;2;96;97;159m▀[38;2;96;96;158m[48;2;96;95;160m▀[38;2;96;97;158m[48;2;96;91;164m▀[38;2;96;94;161m[48;2;95;107;148m▀[38;2;96;101;154m[48;2;97;157;100m▀[38;2;96;126;130m[48;2;92;160;94m▀[38;2;98;157;101m[48;2;85;155;87m▀[38;2;92;159;95m[48;2;111;166;94m▀[38;2;90;157;87m[48;2;175;210;195m▀[38;2;125;180;114m[48;2;255;255;246m▀[38;2;160;189;202m[48;2;246;239;255m▀[38;2;249;243;255m[48;2;209;214;233m▀[38;2;238;235;255m[48;2;150;185;148m▀[38;2;189;219;179m[48;2;83;151;89m▀[38;2;123;181;118m[48;2;94;161;87m▀[38;2;82;151;94m[48;2;99;159;99m▀[38;2;93;159;95m[48;2;97;125;131m▀[38;2;96;125;133m[48;2;96;92;163m▀[38;2;94;100;155m[48;2;96;96;159m▀[38;2;96;91;164m[48;2;96;97;158m▀[38;2;96;94;160m[48;2;96;96;159m▀[38;2;96;97;158m▀[38;2;96;95;159m▀[38;2;96;96;159m▀[38;2;95;95;159m▀[38;2;96;96;159m▀[38;2;94;94;161m▀[38;2;92;92;163m[48;2;96;96;158m▀[38;2;92;92;162m▀[38;2;93;93;162m▀[38;2;91;91;163m[48;2;97;97;158m▀[38;2;95;95;163m[48;2;96;96;158m▀[38;2;142;142;163m[48;2;100;100;158m▀[38;2;158;158;163m[48;2;145;145;158m▀[38;2;155;155;162m[48;2;161;161;158m▀[48;2;164;164;158m▀[38;2;158;158;164m[48;2;162;162;160m▀[38;2;154;154;160m[48;2;156;156;156m▀[38;2;216;216;219m[48;2;215;215;215m▀[38;2;255;255;255m[48;2;254;254;254m▀[38;2;254;254;255m[48;2;253;253;253m▀[38;2;255;255;255m[48;2;254;254;254m▀[38;2;254;254;255m▀▀▀[38;2;253;253;255m▀▀▀[38;2;254;254;255m▀[38;2;253;253;255m▀[0m
|
||||
[38;2;101;101;216m[48;2;187;187;230m▀[38;2;107;107;207m[48;2;189;189;223m▀[38;2;105;105;209m[48;2;189;189;225m▀[48;2;188;188;225m▀▀[38;2;105;105;208m[48;2;187;187;224m▀[38;2;106;106;211m[48;2;194;194;227m▀[38;2;100;100;186m[48;2;154;154;191m▀[38;2;91;91;158m[48;2;120;120;157m▀[38;2;91;91;160m[48;2;121;121;160m▀[38;2;91;91;159m[48;2;120;120;159m▀▀▀[38;2;91;91;157m▀[38;2;88;88;155m[48;2;121;121;159m▀[38;2;89;89;155m[48;2;116;116;159m▀[38;2;93;93;155m[48;2;93;93;162m▀[38;2;93;93;157m[48;2;96;96;162m▀[38;2;101;101;160m[48;2;99;100;160m▀[38;2;161;162;223m[48;2;138;137;174m▀[38;2;166;167;227m[48;2;144;139;180m▀[38;2;166;167;228m[48;2;142;138;180m▀[38;2;168;169;231m[48;2;142;137;179m▀[48;2;141;136;180m▀[48;2;143;139;177m▀[38;2;168;168;232m[48;2;143;144;172m▀[38;2;167;167;231m[48;2;143;143;172m▀[38;2;174;174;235m[48;2;147;149;172m▀[38;2;133;133;195m[48;2;117;116;165m▀[38;2;96;95;158m[48;2;95;101;153m▀[38;2;97;92;165m[48;2;97;127;130m▀[38;2;96;101;154m[48;2;98;156;102m▀[38;2;97;126;131m[48;2;88;156;90m▀[38;2;97;155;103m[48;2;90;161;82m▀[38;2;86;152;94m[48;2;131;184;122m▀[38;2;112;170;91m[48;2;233;238;223m▀[38;2;146;180;169m[48;2;224;220;255m▀[38;2;232;235;230m[48;2;225;228;255m▀[38;2;255;255;255m[48;2;199;228;179m▀[38;2;238;242;238m[48;2;122;181;104m▀[38;2;172;205;149m[48;2;83;151;88m▀[38;2;100;155;106m[48;2;97;168;87m▀[38;2;88;156;89m[48;2;98;149;109m▀[38;2;100;160;99m[48;2;95;100;155m▀[38;2;97;128;129m[48;2;96;92;163m▀[38;2;96;102;153m[48;2;95;94;160m▀[38;2;97;93;163m[48;2;89;91;160m▀[38;2;97;98;158m[48;2;89;89;161m▀[38;2;97;97;159m▀▀▀▀▀▀▀▀▀▀▀▀▀▀[38;2;96;96;159m▀[38;2;95;95;159m[48;2;90;90;161m▀[38;2;111;111;159m[48;2;92;92;159m▀[38;2;144;144;159m[48;2;94;94;159m▀[38;2;162;162;161m[48;2;114;114;161m▀[38;2;161;161;157m[48;2;135;135;156m▀[38;2;223;223;215m[48;2;184;184;220m▀[38;2;255;255;253m[48;2;231;231;255m▀[38;2;255;255;252m[48;2;229;229;255m▀[38;2;255;255;253m[48;2;231;231;255m▀[48;2;230;230;255m▀▀▀▀▀▀▀▀[0m
|
||||
[38;2;233;233;237m[48;2;225;225;163m▀[38;2;224;224;231m[48;2;223;223;156m▀[38;2;226;226;233m[48;2;223;223;158m▀[38;2;226;226;232m[48;2;223;223;157m▀▀[38;2;225;225;231m[48;2;222;222;157m▀[38;2;228;228;234m[48;2;224;224;157m▀[38;2;193;193;198m[48;2;196;196;148m▀[38;2;158;158;162m[48;2;172;172;142m▀[38;2;161;161;165m[48;2;174;174;143m▀[38;2;160;160;164m[48;2;173;173;143m▀▀▀[38;2;159;159;164m▀[38;2;162;162;163m[48;2;176;176;142m▀[38;2;144;144;164m[48;2;157;157;143m▀[38;2;96;96;155m[48;2;141;140;109m▀[38;2;81;80;176m[48;2;134;137;119m▀[38;2;81;76;179m[48;2;133;163;93m▀[38;2;75;80;166m[48;2;133;191;66m▀[38;2;75;99;146m[48;2;133;201;55m▀[38;2;76;99;147m[48;2;134;202;55m▀[38;2;73;97;149m[48;2;130;198;59m▀[38;2;83;107;139m[48;2;147;213;44m▀[38;2;93;112;134m[48;2;111;179;78m▀[38;2;89;86;160m[48;2;95;140;117m▀[38;2;90;87;159m[48;2;97;121;136m▀[38;2;90;85;160m[48;2;97;127;132m▀[38;2;92;104;147m[48;2;97;157;102m▀[38;2;98;157;101m[48;2;84;153;88m▀[38;2;91;159;95m[48;2;115;173;90m▀[38;2;87;156;87m[48;2;148;183;168m▀[38;2;131;184;115m[48;2;219;221;245m▀[38;2;173;206;199m[48;2;255;252;255m▀[38;2;210;216;247m[48;2;224;227;224m▀[38;2;251;245;255m[48;2;183;216;133m▀[38;2;213;222;205m[48;2;113;167;87m▀[38;2;113;176;121m[48;2;107;173;74m▀[38;2;77;145;98m[48;2;116;175;83m▀[38;2;88;157;93m[48;2;114;145;112m▀[38;2;98;158;101m[48;2;99;106;149m▀[38;2;96;127;129m[48;2;96;92;163m▀[38;2;96;103;152m[48;2;96;95;160m▀[38;2;96;94;161m[48;2;97;98;158m▀[38;2;96;97;158m[48;2;95;95;159m▀[38;2;97;97;159m[48;2;110;110;161m▀[38;2;118;118;153m[48;2;246;246;229m▀[38;2;120;120;152m[48;2;255;255;238m▀[48;2;254;254;237m▀[48;2;255;255;238m▀▀▀▀▀▀▀▀▀▀▀▀[48;2;254;254;237m▀[48;2;255;255;237m▀[48;2;239;239;234m▀[38;2;96;96;162m[48;2;112;112;151m▀[38;2;91;91;164m[48;2;113;113;140m▀[38;2;89;89;164m[48;2;113;113;144m▀[38;2;86;86;163m[48;2;113;113;143m▀[38;2;84;84;175m[48;2;113;113;140m▀[38;2;91;91;181m[48;2;112;112;138m▀[48;2;112;112;139m▀[48;2;113;113;137m▀[38;2;95;95;177m[48;2;95;95;155m▀[38;2;96;96;176m[48;2;92;92;159m▀▀[48;2;91;91;159m▀▀[48;2;92;92;159m▀[38;2;95;95;177m[48;2;90;90;160m▀[38;2;100;100;172m[48;2;97;97;154m▀[0m
|
||||
[38;2;187;187;135m[48;2;156;156;163m▀[38;2;200;200;107m[48;2;179;179;134m▀[38;2;197;197;114m[48;2;172;172;140m▀[38;2;197;197;112m[48;2;175;175;139m▀[38;2;199;199;114m[48;2;165;165;131m▀[38;2;200;200;116m[48;2;157;157;122m▀[38;2;198;198;115m[48;2;167;167;129m▀[38;2;201;201;117m[48;2;166;166;130m▀[38;2;204;204;119m[48;2;164;164;129m▀[38;2;204;204;118m[48;2;165;165;129m▀▀▀▀[48;2;164;165;129m▀[48;2;165;163;133m▀[38;2;189;186;122m[48;2;156;167;119m▀[38;2;124;135;114m[48;2;122;183;71m▀[38;2;127;183;72m[48;2;128;192;63m▀[38;2;126;193;62m[48;2;127;190;65m▀[38;2;126;191;64m[48;2;127;191;64m▀[38;2;126;188;66m▀[38;2;126;189;66m[48;2;127;191;63m▀[38;2;122;185;70m[48;2;126;191;64m▀[38;2;139;199;56m[48;2;129;194;61m▀[38;2;111;175;80m[48;2;118;181;78m▀[38;2;98;163;93m[48;2;109;173;79m▀[38;2;100;168;91m[48;2;104;171;72m▀[38;2;93;163;85m[48;2;130;190;105m▀[38;2;98;162;84m[48;2;187;215;191m▀[38;2;146;180;169m[48;2;255;255;255m▀[38;2;215;219;231m[48;2;213;212;255m▀[38;2;255;255;255m[48;2;199;230;172m▀[38;2;219;224;250m[48;2;155;214;87m▀[38;2;197;230;145m[48;2;121;189;54m▀[38;2;130;188;71m[48;2;126;195;58m▀[38;2;126;196;46m[48;2;128;185;73m▀[38;2;136;206;49m[48;2;125;156;99m▀[38;2;138;189;68m[48;2;125;130;125m▀[38;2;132;134;121m[48;2;122;120;135m▀[38;2;149;145;110m[48;2;137;139;116m▀[38;2;107;106;149m[48;2;122;122;132m▀[38;2;91;92;163m[48;2;111;111;144m▀[38;2;92;92;163m[48;2;112;112;143m▀[38;2;92;92;164m[48;2;113;113;143m▀[38;2;89;90;165m[48;2;109;109;144m▀[38;2;107;107;165m[48;2;129;129;144m▀[38;2;245;245;248m[48;2;250;250;242m▀[38;2;253;253;255m[48;2;255;255;255m▀[38;2;254;254;255m▀[38;2;255;255;255m[48;2;253;253;255m▀▀▀▀▀▀▀▀▀▀▀▀[38;2;254;254;255m▀[48;2;253;253;254m▀[38;2;235;235;255m[48;2;240;240;254m▀[38;2;158;158;167m[48;2;172;172;211m▀[38;2;135;135;118m[48;2;121;121;142m▀[38;2;137;137;119m[48;2;127;127;127m▀[38;2;136;136;119m[48;2;125;125;131m▀[48;2;125;125;127m▀[38;2;137;137;119m[48;2;125;125;129m▀[38;2;133;133;123m[48;2;124;124;130m▀[38;2;148;148;107m[48;2;125;125;129m▀[38;2;124;124;132m[48;2;134;134;120m▀[38;2;111;111;144m[48;2;136;136;118m▀[38;2;113;113;143m▀[38;2;112;112;144m▀▀[38;2;113;113;144m[48;2;137;137;118m▀[38;2;110;110;146m[48;2;131;131;124m▀[38;2;120;120;136m[48;2;158;158;97m▀[0m
|
||||
[38;2;66;66;74m[48;2;34;34;0m▀[38;2;68;68;61m[48;2;24;24;0m▀[38;2;78;78;66m[48;2;27;27;0m▀[38;2;61;61;64m[48;2;25;25;0m▀[38;2;129;129;125m[48;2;46;46;14m▀[38;2;165;165;170m[48;2;129;129;102m▀[38;2;118;118;127m[48;2;186;186;160m▀[38;2;118;118;122m[48;2;146;146;133m▀[38;2;128;128;129m[48;2;105;105;119m▀[38;2;123;123;128m[48;2;124;124;118m▀[38;2;122;122;127m[48;2;132;132;127m▀[48;2;129;129;128m▀[38;2;122;123;127m[48;2;128;129;126m▀[38;2;122;120;130m[48;2;128;123;132m▀[38;2;122;135;115m[48;2;128;140;116m▀[38;2;123;181;70m[48;2;128;194;62m▀[38;2;127;192;63m[48;2;127;189;66m▀[38;2;127;190;64m[48;2;127;191;63m▀[38;2;127;191;63m[48;2;127;191;64m▀[38;2;127;191;64m[48;2;127;192;63m▀[38;2;127;191;63m[48;2;125;189;65m▀[38;2;126;191;63m[48;2;130;187;69m▀[38;2;133;188;68m[48;2;101;209;38m▀[38;2;132;186;68m[48;2;102;229;32m▀[38;2;118;187;50m[48;2;176;208;145m▀[38;2;140;201;67m[48;2;203;211;230m▀[38;2;208;241;165m[48;2;237;228;255m▀[38;2;237;240;249m[48;2;249;252;229m▀[38;2;217;211;255m[48;2;169;202;141m▀[38;2;233;239;226m[48;2;129;189;72m▀[38;2;175;211;121m[48;2;119;187;56m▀[38;2;118;188;51m[48;2;130;195;63m▀[38;2;122;187;59m[48;2;128;187;70m▀[38;2;129;190;67m[48;2;127;155;99m▀[38;2;127;158;97m[48;2;127;120;135m▀[38;2;127;132;123m[48;2;127;127;127m▀[38;2;127;123;132m[48;2;127;128;126m▀[38;2;127;126;128m[48;2;127;127;127m▀[38;2;127;128;126m▀[38;2;127;127;127m▀[38;2;134;135;120m[48;2;125;125;129m▀[38;2;136;136;118m▀▀[38;2;138;138;118m▀[38;2;129;129;122m[48;2;124;124;130m▀[38;2;163;163;108m[48;2;126;126;129m▀[38;2;247;247;219m[48;2;136;136;135m▀[38;2;243;243;246m[48;2;134;134;133m▀[38;2;250;250;249m[48;2;141;141;160m▀[38;2;255;255;250m[48;2;160;160;167m▀[48;2;159;159;166m▀[48;2;160;160;167m▀▀▀▀▀▀▀▀▀▀▀[38;2;255;255;249m▀[38;2;246;246;249m[48;2;158;158;166m▀[38;2;174;174;207m[48;2;145;145;167m▀[38;2;123;123;139m[48;2;125;125;136m▀[38;2;129;129;125m[48;2;128;128;126m▀[38;2;127;127;126m[48;2;127;127;125m▀[38;2;127;127;139m[48;2;127;127;148m▀[38;2;127;127;131m[48;2;127;127;134m▀[38;2;127;127;126m[48;2;127;127;125m▀[38;2;127;127;127m[48;2;127;127;127m▀[38;2;125;125;129m▀▀▀▀▀[38;2;126;126;129m[48;2;128;128;127m▀[38;2;120;120;135m[48;2;122;122;133m▀[38;2;146;146;109m[48;2;149;149;106m▀[0m
|
||||
[38;2;38;38;2m[48;2;37;37;0m▀[38;2;32;32;2m[48;2;31;31;0m▀[38;2;33;33;2m[48;2;32;32;0m▀[38;2;34;34;2m▀[38;2;29;29;0m[48;2;33;33;1m▀[38;2;16;16;0m[48;2;36;36;3m▀[38;2;46;46;16m[48;2;29;29;0m▀[38;2;120;120;94m[48;2;18;18;0m▀[38;2;142;142;130m[48;2;53;53;19m▀[38;2;156;156;112m[48;2;117;117;98m▀[38;2;115;115;134m[48;2;153;153;170m▀[38;2;121;121;120m[48;2;152;153;150m▀[38;2;128;127;130m[48;2;125;121;122m▀[38;2;126;130;124m[48;2;130;145;113m▀[38;2;127;160;95m[48;2;125;193;59m▀[38;2;127;190;64m[48;2;125;187;64m▀[48;2;126;190;62m▀[38;2;127;191;64m▀[38;2;127;191;63m[48;2;127;193;63m▀[38;2;123;187;66m[48;2;144;199;72m▀[38;2;140;201;60m[48;2;90;197;31m▀[38;2;82;237;14m[48;2;135;254;92m▀[38;2;99;255;44m[48;2;255;254;255m▀[38;2;193;239;201m[48;2;247;229;255m▀[38;2;244;232;255m[48;2;188;237;175m▀[38;2;248;244;255m[48;2;143;247;50m▀[38;2;196;229;170m[48;2;123;185;57m▀[38;2;148;207;75m[48;2;123;189;61m▀[38;2;117;186;52m[48;2;130;192;66m▀[38;2;128;192;62m[48;2;127;179;76m▀[38;2;129;187;70m[48;2;128;129;126m▀[38;2;127;158;96m[48;2;124;120;131m▀[38;2;127;131;123m[48;2;140;139;128m▀[38;2;126;123;131m[48;2;183;184;125m▀[38;2;126;128;125m[48;2;181;181;126m▀[38;2;126;126;127m[48;2;183;183;126m▀▀▀▀▀▀▀▀▀[38;2;127;127;127m[48;2;182;182;127m▀[38;2;127;127;126m[48;2;179;179;131m▀[38;2;125;125;124m▀[48;2;180;180;130m▀[38;2;123;123;123m[48;2;183;183;128m▀[38;2;120;120;122m▀[48;2;184;184;128m▀[48;2;172;172;128m▀[48;2;124;124;128m▀[48;2;130;130;128m▀[48;2;128;128;128m▀[48;2;129;129;128m▀[48;2;128;128;129m▀[38;2;121;121;121m[48;2;125;125;132m▀▀▀▀▀▀[38;2;121;121;122m[48;2;126;126;131m▀[38;2;124;124;122m[48;2;128;128;128m▀[38;2;127;127;126m[48;2;127;127;127m▀[38;2;127;127;127m▀▀[38;2;127;127;123m[48;2;127;127;128m▀[38;2;127;127;126m[48;2;127;127;127m▀[38;2;127;127;127m▀▀▀▀[48;2;127;127;128m▀[48;2;128;128;128m▀▀[38;2;128;128;127m[48;2;129;129;128m▀[38;2;122;122;133m[48;2;123;123;134m▀[38;2;149;149;106m[48;2;149;149;106m▀[0m
|
||||
[38;2;37;37;0m[48;2;37;37;0m▀[38;2;31;31;0m[48;2;31;31;0m▀[38;2;32;32;0m[48;2;32;32;0m▀▀▀▀[38;2;33;33;1m▀[38;2;35;35;3m[48;2;33;33;0m▀[38;2;27;27;0m[48;2;36;36;1m▀[38;2;19;19;0m[48;2;37;37;4m▀[38;2;50;50;21m[48;2;31;31;0m▀[38;2;146;146;142m[48;2;20;20;0m▀[38;2;133;129;171m[48;2;107;103;99m▀[38;2;116;129;104m[48;2;197;207;129m▀[38;2;137;198;69m[48;2;67;135;21m▀[38;2;138;200;71m[48;2;62;121;21m▀[38;2;132;196;69m[48;2;45;109;24m▀[38;2;133;197;70m[48;2;32;94;22m▀[38;2;128;191;72m[48;2;8;69;10m▀[38;2;72;127;35m[48;2;62;125;65m▀[38;2;21;110;23m[48;2;155;210;151m▀[38;2;102;241;113m[48;2;73;222;74m▀[38;2;170;253;169m[48;2;49;255;0m▀[38;2;133;255;97m[48;2;53;255;0m▀[38;2;64;255;1m[48;2;81;232;23m▀[38;2;104;232;13m[48;2;122;186;71m▀[38;2;134;187;72m[48;2;129;193;62m▀[38;2;127;193;63m[48;2;127;190;64m▀[38;2;127;191;63m[48;2;127;191;64m▀[38;2;127;177;78m[48;2;127;177;77m▀[38;2;128;120;135m[48;2;128;123;131m▀[38;2;124;126;124m[48;2;126;128;125m▀[38;2;141;142;127m[48;2;134;134;125m▀[38;2;190;190;130m[48;2;156;156;108m▀[38;2;189;189;131m[48;2;156;156;107m▀[38;2;190;190;131m[48;2;156;156;106m▀▀▀▀▀▀▀[38;2;190;190;130m▀[38;2;190;190;132m[48;2;156;156;107m▀[38;2;183;183;125m[48;2;157;157;103m▀[38;2;156;156;106m[48;2;159;159;93m▀[38;2;160;160;107m[48;2;158;158;92m▀[38;2;156;156;111m[48;2;146;146;100m▀[38;2;139;139;128m[48;2;113;113;133m▀[38;2;141;141;126m[48;2;117;117;129m▀[48;2;116;116;130m▀[38;2;138;138;126m▀[38;2;128;128;126m[48;2;119;119;130m▀[38;2;129;129;126m[48;2;118;118;130m▀[48;2;119;119;130m▀[38;2;128;128;127m[48;2;116;116;132m▀[38;2;134;134;122m[48;2;127;127;122m▀[38;2;149;149;106m[48;2;157;157;92m▀[38;2;148;148;107m[48;2;156;156;93m▀[38;2;149;149;107m[48;2;157;157;92m▀[38;2;149;149;106m[48;2;158;158;92m▀[38;2;147;147;107m[48;2;162;162;93m▀[38;2;148;148;106m▀[38;2;143;143;111m[48;2;154;154;100m▀[38;2;125;125;129m[48;2;125;125;129m▀[38;2;128;128;127m[48;2;129;129;125m▀[38;2;127;127;127m[48;2;128;128;126m▀▀▀▀▀▀[48;2;129;129;127m▀[48;2;126;126;124m▀[38;2;126;126;123m[48;2;137;137;145m▀[38;2;122;122;122m[48;2;168;168;150m▀[48;2;166;166;150m▀[38;2;123;123;123m[48;2;168;168;149m▀[38;2;118;118;129m[48;2;153;153;155m▀[38;2;149;149;105m[48;2;146;146;111m▀[0m
|
||||
[38;2;37;37;0m[48;2;37;37;0m▀[38;2;31;31;0m[48;2;31;31;0m▀[38;2;32;32;0m[48;2;32;32;0m▀▀▀▀[38;2;33;33;0m[48;2;34;34;0m▀[38;2;28;28;0m[48;2;29;29;0m▀[38;2;15;15;0m[48;2;0;0;0m▀[38;2;28;28;0m▀[38;2;10;10;1m[48;2;0;0;1m▀[38;2;2;2;3m[48;2;1;1;0m▀[38;2;8;8;0m[48;2;10;10;4m▀[38;2;118;118;87m[48;2;21;16;0m▀[38;2;101;124;129m[48;2;126;138;110m▀[38;2;63;128;37m[48;2;57;120;45m▀[38;2;31;87;9m[48;2;72;129;73m▀[38;2;16;80;18m[48;2;166;229;161m▀[38;2;138;196;136m[48;2;191;250;205m▀[38;2;101;166;114m[48;2;110;174;49m▀[38;2;100;160;36m[48;2;112;177;59m▀[38;2;128;196;66m[48;2;132;194;65m▀[38;2;120;214;41m[48;2;129;186;68m▀[38;2;120;209;49m[48;2;129;188;67m▀[38;2;129;188;67m[48;2;127;191;63m▀[38;2;129;192;63m[48;2;127;191;64m▀[38;2;127;191;64m▀[38;2;127;190;64m[48;2;128;191;64m▀[38;2;127;191;63m[48;2;126;190;65m▀[38;2;127;177;77m[48;2;129;179;77m▀[38;2;124;118;138m[48;2;149;145;111m▀[38;2;121;123;128m[48;2;147;149;107m▀[38;2;132;132;149m[48;2;151;151;103m▀[38;2;160;160;101m[48;2;159;159;96m▀[38;2;159;159;91m[48;2;159;159;97m▀[38;2;160;160;93m▀[38;2;160;160;92m[48;2;159;159;96m▀▀▀▀▀▀[38;2;160;160;93m▀[38;2;160;160;92m▀[38;2;160;160;93m[48;2;160;160;96m▀[38;2;157;157;97m[48;2;155;155;97m▀[38;2;168;168;93m[48;2;174;174;93m▀[38;2;197;197;141m[48;2;228;228;146m▀[38;2;187;187;163m[48;2;229;229;160m▀[38;2;189;189;160m[48;2;230;230;158m▀[38;2;188;188;161m▀▀▀▀▀[38;2;187;187;162m[48;2;231;231;158m▀[38;2;190;190;159m[48;2;230;230;159m▀[38;2;199;199;150m[48;2;228;228;161m▀[38;2;198;198;149m[48;2;227;227;160m▀[38;2;199;199;152m[48;2;228;228;165m▀[38;2;190;190;108m[48;2;210;210;110m▀[38;2;154;154;94m[48;2;162;162;94m▀[38;2;157;157;96m[48;2;188;188;96m▀[38;2;151;151;103m[48;2;153;153;98m▀[38;2;120;120;134m[48;2;148;148;107m▀[38;2;124;124;130m[48;2;148;148;106m▀[38;2;123;123;131m▀▀▀▀▀▀[38;2;124;124;133m[48;2;149;149;108m▀[38;2;119;119;124m[48;2;145;145;103m▀[38;2;139;139;184m[48;2;160;160;156m▀[38;2;194;194;199m[48;2;201;201;171m▀[38;2;192;192;199m[48;2;200;200;169m▀[38;2;195;195;198m[48;2;202;202;168m▀[38;2;172;172;202m[48;2;185;185;175m▀[38;2;139;139;126m[48;2;161;161;104m▀[0m
|
||||
[38;2;37;37;0m[48;2;36;36;0m▀[38;2;31;31;0m[48;2;31;31;0m▀[38;2;32;32;0m[48;2;32;32;0m▀▀▀[48;2;35;35;0m▀[48;2;31;31;0m▀[38;2;26;26;0m[48;2;0;0;0m▀[38;2;1;1;0m[48;2;1;1;0m▀[48;2;0;0;6m▀[38;2;0;0;0m[48;2;1;1;17m▀[48;2;1;1;1m▀[38;2;0;1;0m[48;2;0;1;0m▀[38;2;1;0;0m[48;2;26;26;28m▀[38;2;3;12;0m[48;2;185;183;191m▀[38;2;131;198;129m[48;2;132;155;128m▀[38;2;152;214;167m[48;2;0;53;0m▀[38;2;155;218;77m[48;2;60;121;34m▀[38;2;125;190;131m[48;2;138;200;74m▀[38;2;113;177;68m[48;2;120;182;62m▀[38;2;134;196;65m[48;2;130;193;60m▀[38;2;126;190;64m[48;2;127;191;64m▀[38;2;127;192;63m[48;2;127;191;63m▀[48;2;127;191;64m▀[38;2;127;191;64m▀[38;2;127;191;63m[48;2;128;191;64m▀[38;2;128;191;64m[48;2;126;191;64m▀[38;2;126;191;63m[48;2;128;191;63m▀[38;2;128;184;67m[48;2;153;183;91m▀[38;2;149;153;95m[48;2;170;166;122m▀[38;2;159;161;87m[48;2;167;168;119m▀[38;2;159;160;88m[48;2;168;168;119m▀[38;2;159;159;89m▀[38;2;157;157;91m▀[48;2;168;168;118m▀[38;2;157;157;90m[48;2;166;166;121m▀[38;2;159;159;94m[48;2;158;158;101m▀[38;2;159;159;95m[48;2;159;159;95m▀[48;2;159;159;96m▀[48;2;159;159;95m▀▀▀▀▀[38;2;160;160;95m[48;2;160;160;95m▀[38;2;156;156;97m[48;2;155;155;97m▀[38;2;173;173;93m[48;2;174;174;92m▀[38;2;221;221;144m[48;2;225;225;149m▀[38;2;219;219;160m[48;2;224;224;166m▀[38;2;221;221;158m[48;2;225;225;163m▀[48;2;225;225;164m▀▀▀[48;2;225;225;165m▀▀▀▀[38;2;221;221;157m▀[38;2;221;221;156m[48;2;225;225;161m▀[38;2;221;221;157m[48;2;225;225;179m▀[38;2;207;207;108m[48;2;211;211;115m▀[38;2;155;155;94m[48;2;153;153;93m▀[38;2;164;164;96m[48;2;160;160;96m▀[38;2;159;159;95m[48;2;159;159;95m▀[38;2;162;162;92m[48;2;158;158;96m▀[38;2;162;162;93m▀[38;2;162;162;92m▀[48;2;159;159;96m▀[48;2;158;158;96m▀▀▀▀[38;2;162;162;93m▀▀[38;2;162;162;100m[48;2;158;158;94m▀[38;2;161;161;102m[48;2;158;158;93m▀[48;2;158;158;94m▀[38;2;162;162;102m[48;2;159;159;94m▀[38;2;158;158;107m[48;2;155;155;98m▀[38;2;178;178;79m[48;2;175;175;79m▀[0m
|
||||
[38;2;41;41;0m[48;2;20;20;1m▀[38;2;31;31;0m[48;2;30;30;0m▀[38;2;32;32;0m[48;2;31;31;0m▀[48;2;35;35;0m▀[48;2;31;31;0m▀[38;2;28;28;0m[48;2;0;0;0m▀[38;2;10;10;0m▀[38;2;1;1;0m[48;2;1;1;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;11m[48;2;27;27;3m▀[38;2;0;0;33m[48;2;97;97;9m▀[38;2;2;2;1m[48;2;0;0;0m▀[38;2;0;0;1m[48;2;3;3;0m▀[38;2;44;44;39m[48;2;0;0;0m▀[38;2;109;109;81m▀[38;2;20;17;0m[48;2;10;9;2m▀[38;2;15;31;0m[48;2;52;52;20m▀[38;2;96;166;105m[48;2;119;134;113m▀[38;2;166;229;161m[48;2;88;134;71m▀[38;2;184;248;125m[48;2;183;249;187m▀[38;2;115;179;70m[48;2;157;221;80m▀[38;2;131;194;64m[48;2;121;190;59m▀[38;2;128;191;64m[48;2;125;193;64m▀[38;2;128;191;63m[48;2;124;191;63m▀[38;2;129;192;63m[48;2;122;187;67m▀[38;2;126;192;63m[48;2;128;188;66m▀[38;2;129;192;64m[48;2;152;182;75m▀[38;2;148;177;71m[48;2;157;151;97m▀[38;2;175;169;153m[48;2;174;176;143m▀[38;2;222;224;166m[48;2;228;228;161m▀[38;2;221;221;163m[48;2;226;226;158m▀[38;2;222;222;164m[48;2;228;228;159m▀[48;2;229;229;160m▀[48;2;228;228;160m▀[38;2;222;222;162m[48;2;229;229;158m▀[38;2;209;209;167m[48;2;214;214;163m▀[38;2;153;153;111m[48;2;154;154;110m▀[38;2;161;161;93m[48;2;162;162;95m▀[38;2;159;159;96m[48;2;160;160;97m▀[38;2;159;159;95m[48;2;160;160;96m▀▀▀▀▀[38;2;160;160;95m▀[38;2;156;156;96m▀[38;2;171;171;93m▀[38;2;214;214;127m[48;2;159;159;93m▀[38;2;212;212;136m[48;2;159;159;91m▀[38;2;214;214;135m[48;2;159;159;92m▀▀[48;2;159;159;90m▀[38;2;214;214;134m[48;2;159;159;95m▀[38;2;214;214;130m[48;2;159;159;116m▀[38;2;214;214;131m[48;2;159;159;114m▀▀[48;2;158;158;115m▀[48;2;158;158;116m▀[38;2;213;213;128m[48;2;158;158;110m▀[38;2;214;214;158m[48;2;158;158;86m▀[38;2;202;202;111m[48;2;158;158;94m▀[38;2;154;154;92m[48;2;159;159;96m▀[38;2;161;161;96m[48;2;159;159;95m▀[38;2;159;159;95m▀▀[48;2;159;159;96m▀[48;2;161;161;97m▀[38;2;158;158;95m[48;2;163;163;96m▀[38;2;159;159;95m[48;2;159;159;96m▀[48;2;159;159;95m▀[48;2;158;158;95m▀[48;2;159;159;96m▀▀[48;2;159;159;95m▀[38;2;159;159;96m▀▀▀[38;2;160;160;96m[48;2;160;160;95m▀[38;2;155;155;100m[48;2;155;155;100m▀[38;2;175;175;80m[48;2;175;175;80m▀[0m
|
||||
[38;2;0;0;0m[48;2;12;12;39m▀[38;2;9;9;0m[48;2;4;4;0m▀[38;2;38;38;0m[48;2;10;10;1m▀[38;2;27;27;0m[48;2;0;0;0m▀[38;2;11;11;0m▀[38;2;1;1;0m▀▀[38;2;0;0;0m▀[38;2;2;2;0m▀[38;2;8;8;0m▀[38;2;119;119;0m[48;2;1;1;0m▀[38;2;52;52;0m[48;2;63;63;0m▀[38;2;0;0;0m[48;2;20;20;0m▀[38;2;5;5;3m[48;2;0;0;0m▀[38;2;2;2;3m▀[38;2;5;6;0m▀[38;2;20;20;6m[48;2;98;98;9m▀[38;2;43;39;4m[48;2;121;122;61m▀[38;2;16;15;0m[48;2;23;23;2m▀[38;2;185;194;36m[48;2;102;99;52m▀[38;2;237;251;35m[48;2;239;237;75m▀[38;2;133;176;83m[48;2;163;158;91m▀[38;2;153;192;64m[48;2;157;152;104m▀[38;2;148;181;73m[48;2;161;157;97m▀[38;2;147;154;100m[48;2;163;160;93m▀[38;2;151;158;97m[48;2;162;160;94m▀[38;2;161;158;97m[48;2;159;160;94m▀[38;2;157;158;95m[48;2;160;160;95m▀[38;2;164;164;103m[48;2;158;159;93m▀[38;2;183;183;105m[48;2;156;156;93m▀[38;2;182;182;104m[48;2;153;153;92m▀[38;2;182;182;101m[48;2;164;164;111m▀[38;2;178;178;100m[48;2;195;195;118m▀[48;2;194;194;116m▀[48;2;195;195;117m▀[38;2;173;173;101m[48;2;196;196;116m▀[38;2;152;152;93m[48;2;200;200;118m▀[38;2;155;155;91m[48;2;199;199;119m▀[38;2;154;154;91m▀▀▀▀▀▀▀▀▀[38;2;154;154;92m▀▀[48;2;199;199;120m▀[38;2;155;155;92m[48;2;197;197;114m▀[38;2;157;157;97m[48;2;187;187;72m▀[38;2;157;157;101m[48;2;188;188;66m▀[38;2;157;157;114m[48;2;188;188;63m▀[38;2;157;157;112m▀[38;2;158;158;112m[48;2;181;181;70m▀[38;2;160;160;109m[48;2;154;154;100m▀[38;2;160;160;111m[48;2;158;158;93m▀[38;2;160;160;108m[48;2;156;156;92m▀[38;2;160;160;98m[48;2;157;157;96m▀[38;2;160;160;96m[48;2;156;156;94m▀▀▀[48;2;156;156;93m▀[38;2;159;159;96m[48;2;161;161;92m▀[38;2;153;153;92m[48;2;175;175;111m▀[38;2;161;161;87m[48;2;185;185;138m▀[38;2;182;182;90m[48;2;171;171;123m▀[38;2;154;154;91m[48;2;167;167;116m▀[38;2;159;159;95m[48;2;160;160;97m▀[38;2;163;163;98m[48;2;139;139;84m▀[38;2;156;156;93m[48;2;170;170;102m▀[38;2;160;160;94m[48;2;154;154;99m▀[38;2;159;159;95m[48;2;161;161;97m▀[48;2;159;159;94m▀[48;2;160;160;95m▀▀[38;2;160;160;95m▀[38;2;155;155;100m[48;2;156;156;99m▀[38;2;175;175;80m[48;2;176;176;79m▀[0m
|
||||
[38;2;89;89;97m[48;2;188;188;73m▀[38;2;2;2;0m[48;2;127;127;37m▀[38;2;0;0;0m[48;2;0;0;11m▀[38;2;2;2;1m[48;2;2;2;0m▀[38;2;0;0;0m[48;2;1;1;1m▀[48;2;0;0;0m▀▀▀▀[38;2;1;1;0m▀[38;2;0;0;0m[48;2;2;2;0m▀[38;2;4;4;0m[48;2;0;0;0m▀[38;2;27;27;8m[48;2;0;0;7m▀[38;2;76;76;50m[48;2;79;79;67m▀[38;2;58;58;19m[48;2;140;140;104m▀[38;2;35;35;0m[48;2;158;158;103m▀[38;2;230;230;124m[48;2;125;125;90m▀[38;2;100;100;91m[48;2;23;23;0m▀[38;2;27;27;0m[48;2;34;34;2m▀[38;2;30;30;14m[48;2;31;31;0m▀[38;2;203;203;140m[48;2;66;66;62m▀[38;2;247;248;36m[48;2;251;251;114m▀[38;2;192;193;57m[48;2;249;249;0m▀[38;2;182;183;73m[48;2;181;181;73m▀[38;2;154;155;103m[48;2;190;190;92m▀[38;2;158;158;98m[48;2;188;188;75m▀[38;2;157;157;97m[48;2;188;188;65m▀[48;2;187;187;68m▀[38;2;157;157;98m[48;2;187;187;67m▀[38;2;159;159;100m[48;2;188;188;69m▀[38;2;154;154;95m[48;2;185;185;65m▀[38;2;174;174;151m[48;2;196;196;123m▀[38;2;228;228;166m[48;2;225;225;166m▀[38;2;226;226;163m[48;2;224;224;159m▀[38;2;228;228;164m[48;2;225;225;160m▀▀[38;2;227;227;163m▀▀▀[48;2;225;225;161m▀▀[48;2;225;225;160m▀[48;2;225;225;161m▀[48;2;225;225;160m▀▀▀▀▀▀[38;2;227;227;164m[48;2;225;225;161m▀[38;2;219;219;159m[48;2;217;217;156m▀[38;2;189;189;78m[48;2;188;188;78m▀[38;2;193;193;62m[48;2;192;192;64m▀[38;2;192;192;64m[48;2;191;191;65m▀[48;2;191;191;64m▀[38;2;191;191;61m[48;2;192;192;65m▀[38;2;187;187;94m[48;2;191;191;62m▀[38;2;189;189;81m[48;2;198;198;68m▀[38;2;191;191;78m[48;2;228;228;166m▀[38;2;188;188;73m[48;2;238;238;201m▀[38;2;192;192;84m[48;2;221;221;113m▀[38;2;192;192;87m[48;2;224;224;99m▀[38;2;192;192;86m[48;2;223;223;101m▀[38;2;178;178;93m[48;2;224;224;107m▀[38;2;181;181;125m[48;2;212;212;85m▀[38;2;130;130;90m[48;2;23;23;7m▀[38;2;100;100;90m[48;2;0;0;0m▀[38;2;241;241;171m[48;2;185;185;125m▀[38;2;222;222;193m[48;2;249;249;174m▀[38;2;216;216;91m[48;2;197;197;59m▀[38;2;18;18;0m[48;2;16;16;0m▀[38;2;140;140;147m[48;2;88;88;73m▀[38;2;177;177;239m[48;2;233;233;239m▀[38;2;151;151;118m[48;2;194;194;95m▀[38;2;157;157;93m[48;2;192;192;58m▀[38;2;158;158;100m[48;2;185;185;65m▀[38;2;157;157;98m[48;2;185;185;64m▀[38;2;158;158;98m[48;2;186;186;64m▀[38;2;154;154;103m[48;2;182;182;67m▀[38;2;174;174;82m[48;2;197;197;53m▀[0m
|
||||
[38;2;178;178;74m[48;2;181;181;74m▀[38;2;207;207;68m[48;2;190;190;59m▀[38;2;121;121;59m[48;2;204;204;67m▀[38;2;0;0;10m[48;2;122;122;58m▀[38;2;2;2;0m[48;2;0;0;10m▀[38;2;1;1;0m[48;2;0;0;1m▀[38;2;0;0;0m[48;2;2;2;0m▀[48;2;10;10;0m▀[48;2;29;29;0m▀[38;2;2;2;0m[48;2;33;33;0m▀[38;2;0;0;0m[48;2;18;18;0m▀[38;2;6;6;0m[48;2;10;10;0m▀[38;2;18;18;0m[48;2;38;38;0m▀[38;2;0;0;0m[48;2;36;36;2m▀[38;2;14;14;0m[48;2;36;36;1m▀[38;2;30;30;4m[48;2;32;32;0m▀[38;2;18;18;0m[48;2;35;35;3m▀[38;2;33;33;0m[48;2;32;32;0m▀[38;2;32;32;0m▀[38;2;35;35;1m[48;2;33;33;1m▀[38;2;26;26;5m[48;2;33;33;0m▀[38;2;184;184;31m[48;2;46;46;15m▀[38;2;235;235;22m[48;2;189;188;58m▀[38;2;197;197;56m[48;2;254;254;1m▀[38;2;192;192;61m[48;2;182;182;72m▀[38;2;193;193;63m[48;2;188;188;56m▀[48;2;196;196;62m▀[38;2;196;196;58m[48;2;222;222;89m▀[48;2;221;221;87m▀[48;2;222;222;89m▀[38;2;194;194;59m[48;2;215;215;82m▀[38;2;196;196;71m[48;2;187;187;62m▀[38;2;212;212;77m[48;2;188;188;61m▀[38;2;211;211;76m▀[38;2;212;212;76m▀[38;2;212;212;77m[48;2;188;188;57m▀▀[48;2;188;188;58m▀▀[38;2;212;212;75m[48;2;188;188;63m▀[38;2;212;212;73m[48;2;187;187;77m▀[38;2;212;212;77m[48;2;187;187;56m▀▀▀[48;2;187;187;55m▀[38;2;212;212;76m[48;2;187;187;57m▀[48;2;187;187;60m▀▀▀[48;2;188;188;62m▀[38;2;207;207;76m[48;2;188;188;57m▀[38;2;189;189;65m[48;2;194;194;112m▀[38;2;189;189;61m[48;2;202;202;151m▀[38;2;188;188;61m[48;2;202;202;146m▀[48;2;202;202;147m▀▀[38;2;189;189;62m▀[38;2;184;184;60m[48;2;203;203;147m▀[38;2;201;201;106m[48;2;201;201;137m▀[38;2;234;234;118m[48;2;196;196;134m▀[38;2;180;180;80m[48;2;204;204;143m▀[38;2;186;186;70m[48;2;200;200;140m▀[38;2;197;197;74m[48;2;190;190;72m▀[38;2;214;214;79m[48;2;188;188;63m▀[38;2;182;182;56m[48;2;189;189;48m▀[38;2;26;26;0m[48;2;60;60;3m▀[38;2;30;30;3m[48;2;62;62;0m▀[38;2;184;184;137m[48;2;177;177;133m▀[38;2;245;245;204m[48;2;250;250;217m▀[38;2;183;183;119m[48;2;211;211;139m▀[38;2;37;37;11m[48;2;32;32;16m▀[38;2;38;38;0m[48;2;52;52;1m▀[38;2;166;166;131m[48;2;163;163;110m▀[38;2;183;183;145m[48;2;8;8;18m▀[38;2;215;215;152m[48;2;120;120;129m▀[38;2;200;200;150m[48;2;234;234;185m▀[38;2;203;203;148m[48;2;227;227;145m▀[38;2;203;203;146m[48;2;230;230;166m▀[38;2;201;201;147m[48;2;229;229;166m▀[38;2;212;212;139m[48;2;234;234;160m▀[0m
|
||||
[38;2;180;180;74m[48;2;181;181;76m▀[38;2;194;194;61m[48;2;194;194;62m▀[38;2;187;187;62m[48;2;189;189;66m▀[38;2;204;204;69m[48;2;190;190;64m▀[38;2;127;127;57m[48;2;130;130;37m▀[38;2;14;14;0m[48;2;33;33;1m▀[38;2;9;9;2m[48;2;3;3;3m▀[38;2;30;30;0m[48;2;0;0;0m▀[38;2;17;17;0m[48;2;9;9;1m▀[38;2;34;34;0m[48;2;36;36;0m▀[48;2;30;30;0m▀[38;2;33;33;0m[48;2;32;32;0m▀[38;2;31;31;0m▀[38;2;32;32;0m▀▀▀▀▀▀▀[38;2;36;36;0m[48;2;35;35;0m▀[38;2;21;21;15m[48;2;25;28;0m▀[38;2;160;164;39m[48;2;149;128;0m▀[38;2;250;251;11m[48;2;245;239;17m▀[38;2;185;185;76m[48;2;188;188;77m▀[38;2;203;203;112m[48;2;231;230;154m▀[38;2;198;198;114m[48;2;220;220;164m▀[38;2;188;188;84m[48;2;188;188;75m▀[38;2;189;189;77m[48;2;193;193;59m▀[38;2;188;188;79m[48;2;192;192;61m▀[38;2;189;189;74m[48;2;191;191;61m▀[38;2;191;191;64m[48;2;191;191;64m▀[38;2;192;192;65m[48;2;190;190;64m▀[38;2;191;191;64m[48;2;193;193;69m▀[38;2;189;189;64m[48;2;202;202;115m▀[38;2;189;189;84m[48;2;201;201;130m▀[38;2;189;189;81m[48;2;202;202;128m▀[38;2;189;189;82m[48;2;202;202;127m▀[38;2;189;189;81m[48;2;202;202;132m▀[38;2;190;190;90m[48;2;199;199;103m▀[38;2;192;192;100m[48;2;190;190;74m▀[38;2;192;192;88m[48;2;191;191;78m▀[38;2;192;192;89m[48;2;191;191;77m▀[38;2;192;192;88m▀[38;2;192;192;90m[48;2;190;190;78m▀[38;2;192;192;83m[48;2;190;190;74m▀[38;2;192;192;64m[48;2;190;190;63m▀[38;2;192;192;65m[48;2;190;190;64m▀[38;2;192;192;64m[48;2;190;190;63m▀[38;2;193;193;67m[48;2;188;188;63m▀[38;2;190;190;62m[48;2;186;186;58m▀[38;2;199;199;123m[48;2;195;195;118m▀[38;2;227;227;167m[48;2;222;222;163m▀[38;2;226;226;160m[48;2;222;222;161m▀[38;2;226;226;161m[48;2;225;225;165m▀▀▀▀[38;2;227;227;162m▀▀[38;2;226;226;162m[48;2;225;225;166m▀[38;2;218;218;157m[48;2;218;218;161m▀[38;2;188;188;78m[48;2;188;188;78m▀[38;2;191;191;64m[48;2;190;190;64m▀[38;2;192;192;62m[48;2;190;190;60m▀[38;2;72;72;36m[48;2;72;72;30m▀[38;2;55;55;0m[48;2;62;62;0m▀[38;2;179;179;142m[48;2;168;168;129m▀[38;2;248;248;182m[48;2;207;207;121m▀[38;2;197;197;102m[48;2;183;183;42m▀[38;2;24;24;11m[48;2;18;18;0m▀[38;2;21;21;3m[48;2;7;7;24m▀[38;2;179;179;128m[48;2;206;206;131m▀[38;2;19;19;17m[48;2;25;25;3m▀[38;2;125;125;125m[48;2;175;175;66m▀[38;2;198;198;126m[48;2;206;206;71m▀[38;2;199;199;57m[48;2;184;184;65m▀[38;2;204;204;86m[48;2;189;189;59m▀[38;2;208;208;78m[48;2;182;182;67m▀[38;2;218;218;66m[48;2;199;199;50m▀[0m
|
||||
[38;2;179;179;69m[48;2;185;189;103m▀[38;2;193;193;57m[48;2;197;197;80m▀[38;2;188;187;64m[48;2;195;198;92m▀[38;2;192;192;44m[48;2;183;182;69m▀[38;2;27;27;0m[48;2;20;20;2m▀[38;2;0;0;1m[48;2;6;6;3m▀[38;2;0;0;0m[48;2;96;96;109m▀[38;2;13;13;4m[48;2;224;225;120m▀[38;2;0;0;0m[48;2;86;86;15m▀[38;2;35;35;0m[48;2;0;0;14m▀[38;2;37;37;0m[48;2;12;11;0m▀[38;2;32;32;0m[48;2;34;33;0m▀[38;2;31;31;0m[48;2;36;36;0m▀[38;2;32;32;0m[48;2;32;32;0m▀[48;2;31;31;0m▀[48;2;32;32;0m▀▀▀▀▀[38;2;33;33;0m[48;2;33;33;0m▀[38;2;30;32;1m[48;2;32;31;0m▀[38;2;52;40;1m[48;2;41;44;1m▀[38;2;225;222;11m[48;2;240;240;0m▀[38;2;205;203;58m[48;2;247;253;9m▀[38;2;210;209;73m[48;2;180;181;68m▀[38;2;206;206;75m[48;2;189;189;60m▀[38;2;189;189;66m[48;2;191;190;64m▀[38;2;192;192;64m[48;2;189;189;65m▀[38;2;192;191;64m[48;2;187;191;67m▀[38;2;191;190;64m[48;2;190;194;64m▀[38;2;192;192;64m[48;2;190;191;64m▀[38;2;189;188;65m[48;2;189;193;66m▀[38;2;200;200;68m[48;2;195;195;63m▀[38;2;230;229;158m[48;2;210;214;98m▀[38;2;229;229;169m[48;2;210;209;107m▀[38;2;230;230;167m▀[38;2;229;229;166m[48;2;210;210;106m▀[38;2;229;229;174m[48;2;212;210;106m▀[38;2;220;221;105m[48;2;210;206;71m▀[38;2;188;188;60m[48;2;188;188;58m▀[38;2;192;192;63m[48;2;190;190;61m▀[38;2;191;191;61m[48;2;186;188;62m▀[38;2;192;192;61m[48;2;198;197;59m▀[38;2;195;195;61m[48;2;221;221;59m▀[38;2;195;195;62m▀[38;2;195;195;65m[48;2;221;224;59m▀[38;2;193;193;66m[48;2;213;213;62m▀[38;2;194;194;67m[48;2;194;194;69m▀[38;2;206;206;137m[48;2;215;216;154m▀[38;2;204;204;147m[48;2;214;215;167m▀[38;2;210;210;153m[48;2;213;214;161m▀[38;2;226;226;163m[48;2;211;212;168m▀[38;2;222;221;134m[48;2;206;210;100m▀[38;2;210;210;107m[48;2;186;188;55m▀[38;2;211;211;109m[48;2;192;191;55m▀[38;2;211;211;107m[48;2;189;190;55m▀[48;2;187;190;57m▀[38;2;211;211;108m[48;2;191;190;54m▀▀[38;2;211;211;107m[48;2;190;190;55m▀[38;2;207;206;107m[48;2;188;191;57m▀[38;2;188;188;73m[48;2;191;194;61m▀[38;2;189;189;65m[48;2;193;193;62m▀[38;2;189;188;57m[48;2;189;192;54m▀[38;2;62;62;21m[48;2;52;51;24m▀[38;2;60;60;0m[48;2;61;61;0m▀[38;2;161;161;124m[48;2;162;162;125m▀[38;2;188;188;106m[48;2;192;192;109m▀[38;2;191;190;45m[48;2;192;196;46m▀[38;2;11;11;0m[48;2;2;2;0m▀[38;2;73;73;93m[48;2;141;141;157m▀[38;2;220;220;124m[48;2;228;228;151m▀[38;2;18;18;0m[48;2;10;10;0m▀[38;2;183;183;13m[48;2;184;184;34m▀[38;2;248;248;71m[48;2;247;247;111m▀[38;2;182;182;70m[48;2;182;182;63m▀[38;2;194;194;65m[48;2;193;194;65m▀[38;2;187;186;69m[48;2;184;188;71m▀[38;2;203;203;53m[48;2;199;201;56m▀[0m
|
||||
[38;2;216;196;92m[48;2;178;159;69m▀[38;2;219;217;95m[48;2;190;163;67m▀[38;2;225;207;90m[48;2;194;183;68m▀[38;2;107;113;61m[48;2;75;55;44m▀[38;2;5;5;1m[48;2;5;5;0m▀[38;2;39;39;7m[48;2;47;46;15m▀[38;2;185;186;207m[48;2;199;200;221m▀[38;2;240;238;164m[48;2;193;185;95m▀[38;2;198;196;64m[48;2;223;191;25m▀[38;2;127;131;57m[48;2;232;200;34m▀[38;2;32;37;9m[48;2;219;198;29m▀[38;2;0;0;1m[48;2;130;106;0m▀[38;2;14;14;0m[48;2;12;11;1m▀[38;2;35;34;0m[48;2;0;0;0m▀[38;2;37;36;0m[48;2;8;12;0m▀[38;2;33;32;0m[48;2;31;32;0m▀[38;2;31;31;0m[48;2;38;35;0m▀[38;2;33;33;0m[48;2;34;31;0m▀[38;2;31;31;0m[48;2;36;36;1m▀[38;2;32;32;0m[48;2;33;32;0m▀[48;2;38;35;0m▀[38;2;34;34;0m[48;2;21;18;0m▀[38;2;35;34;0m[48;2;91;97;0m▀[38;2;236;240;0m[48;2;247;195;0m▀[38;2;242;210;15m[48;2;250;164;4m▀[38;2;186;179;69m[48;2;232;197;23m▀[38;2;197;200;59m[48;2;225;188;30m▀[38;2;193;197;62m[48;2;224;194;31m▀[38;2;198;198;57m[48;2;231;204;23m▀[38;2;207;187;49m[48;2;243;221;7m▀[38;2;193;175;62m[48;2;220;204;44m▀[38;2;195;192;59m[48;2;225;197;90m▀[38;2;195;175;59m[48;2;222;208;86m▀[38;2;193;191;60m[48;2;225;194;85m▀[38;2;189;169;56m[48;2;230;214;82m▀[38;2;187;191;57m[48;2;238;216;74m▀[38;2;191;192;53m[48;2;222;198;90m▀[38;2;186;189;58m[48;2;226;219;81m▀[38;2;194;188;50m[48;2;190;164;62m▀[38;2;215;188;41m[48;2;199;204;67m▀[38;2;190;196;95m[48;2;221;217;80m▀[38;2;199;198;83m[48;2;229;203;69m▀[38;2;206;194;77m[48;2;246;223;53m▀[38;2;187;191;92m[48;2;240;232;69m▀[38;2;191;191;88m[48;2;227;227;74m▀[38;2;188;183;91m[48;2;238;224;61m▀[38;2;192;165;90m[48;2;223;222;78m▀[38;2;191;192;83m[48;2;215;210;76m▀[38;2;190;190;64m[48;2;197;162;54m▀[38;2;188;184;71m[48;2;233;203;25m▀[38;2;188;184;73m[48;2;236;205;24m▀[38;2;187;183;73m[48;2;225;193;28m▀[38;2;201;194;76m[48;2;230;201;38m▀[38;2;237;222;76m[48;2;244;223;87m▀[38;2;237;226;73m[48;2;238;221;85m▀[38;2;224;226;87m[48;2;218;212;105m▀[38;2;230;228;80m[48;2;228;194;95m▀[38;2;239;226;72m[48;2;240;222;84m▀[38;2;224;226;86m[48;2;220;222;105m▀[38;2;226;227;85m[48;2;222;213;104m▀[38;2;229;228;81m[48;2;228;195;97m▀[38;2;240;226;70m[48;2;246;222;79m▀[38;2;235;225;72m[48;2;237;212;86m▀[38;2;223;219;90m[48;2;220;195;111m▀[38;2;211;183;64m[48;2;209;211;80m▀[38;2;34;38;0m[48;2;38;38;1m▀[38;2;64;63;0m[48;2;64;65;0m▀[38;2;160;163;124m[48;2;164;158;121m▀[38;2;187;186;110m[48;2;203;182;107m▀[38;2;191;169;46m[48;2;187;180;45m▀[38;2;4;6;0m[48;2;15;15;0m▀[38;2;130;129;138m[48;2;34;34;45m▀[38;2;154;154;144m[48;2;127;127;112m▀[38;2;23;23;0m[48;2;65;65;0m▀[38;2;189;189;36m[48;2;218;218;13m▀[38;2;223;223;120m[48;2;186;186;68m▀[38;2;185;186;64m[48;2;189;190;66m▀[38;2;192;186;65m[48;2;197;195;58m▀[38;2;193;170;62m[48;2;223;209;32m▀[38;2;216;204;39m[48;2;247;231;7m▀[0m
|
||||
[38;2;233;223;27m[48;2;236;209;46m▀[38;2;226;223;24m[48;2;224;198;39m▀[38;2;241;228;20m[48;2;235;218;11m▀[38;2;105;94;28m[48;2;25;30;20m▀[38;2;4;4;0m[48;2;8;8;0m▀[38;2;48;48;20m[48;2;36;36;5m▀[38;2;214;214;212m[48;2;44;44;34m▀[38;2;230;231;50m[48;2;149;151;38m▀[38;2;223;224;31m[48;2;224;219;32m▀[38;2;216;211;35m[48;2;228;206;31m▀[38;2;241;223;18m[48;2;171;184;74m▀[38;2;255;212;0m[48;2;104;96;15m▀[38;2;93;92;1m[48;2;91;61;1m▀[38;2;84;56;0m[48;2;103;80;0m▀[38;2;44;29;0m[48;2;233;88;0m▀[38;2;4;1;0m[48;2;212;47;0m▀[38;2;0;5;0m[48;2;130;22;0m▀[38;2;0;0;1m[48;2;106;24;0m▀[38;2;14;14;0m[48;2;33;30;15m▀[38;2;25;32;0m[48;2;82;52;9m▀[38;2;19;31;0m[48;2;112;34;0m▀[38;2;62;73;0m[48;2;241;144;2m▀[38;2;202;221;0m[48;2;255;155;1m▀[38;2;255;146;1m[48;2;254;133;0m▀[38;2;252;181;0m[48;2;255;187;0m▀[38;2;247;247;4m[48;2;255;252;8m▀[38;2;219;217;35m[48;2;220;185;37m▀[38;2;223;218;32m[48;2;219;201;35m▀[38;2;225;210;35m[48;2;226;226;31m▀[38;2;232;223;50m[48;2;247;224;21m▀[38;2;231;223;43m[48;2;244;221;25m▀[38;2;223;220;42m[48;2;235;209;27m▀[38;2;235;224;31m[48;2;245;219;7m▀[38;2;220;222;47m[48;2;219;194;33m▀[38;2;229;225;37m[48;2;223;225;27m▀[38;2;241;219;24m[48;2;225;225;25m▀[38;2;228;230;44m[48;2;177;147;41m▀[38;2;197;197;36m[48;2;98;70;46m▀[38;2;222;213;29m[48;2;135;112;37m▀[38;2;230;198;25m[48;2;226;220;23m▀[38;2;232;216;16m[48;2;249;227;6m▀[38;2;222;212;25m[48;2;216;190;46m▀[38;2;246;231;9m[48;2;136;123;27m▀[38;2;193;170;0m[48;2;62;62;1m▀[38;2;227;210;14m[48;2;106;88;4m▀[38;2;243;223;9m[48;2;202;213;33m▀[38;2;223;221;24m[48;2;233;228;26m▀[38;2;233;218;15m[48;2;247;225;11m▀[38;2;232;232;27m[48;2;166;146;47m▀[38;2;167;169;42m[48;2;73;72;87m▀[38;2;152;154;48m[48;2;52;51;105m▀[38;2;222;225;33m[48;2;143;143;60m▀[38;2;224;224;38m[48;2;229;223;27m▀[38;2;230;220;68m[48;2;255;235;0m▀[38;2;232;224;59m[48;2;232;216;30m▀[38;2;228;229;75m[48;2;121;116;74m▀[38;2;231;227;76m[48;2;129;95;43m▀[38;2;232;222;65m[48;2;228;214;8m▀[38;2;221;222;72m[48;2;223;223;32m▀[38;2;224;225;70m[48;2;220;186;27m▀[38;2;221;222;73m[48;2;221;199;28m▀[38;2;222;222;72m[48;2;232;224;20m▀[38;2;229;220;61m[48;2;252;221;8m▀[38;2;220;213;76m[48;2;224;200;33m▀[38;2;213;187;55m[48;2;213;212;20m▀[38;2;24;27;2m[48;2;15;17;2m▀[38;2;14;15;0m[48;2;7;7;0m▀[38;2;190;187;131m[48;2;154;156;102m▀[38;2;255;248;80m[48;2;246;247;147m▀[38;2;222;213;5m[48;2;231;211;38m▀[38;2;11;12;0m[48;2;10;13;0m▀[38;2;27;26;36m[48;2;27;26;29m▀[38;2;126;126;115m[48;2;118;118;79m▀[38;2;63;63;2m[48;2;54;54;0m▀[38;2;218;219;31m[48;2;226;225;228m▀[38;2;189;189;68m[48;2;199;199;97m▀[38;2;185;185;68m[48;2;201;195;53m▀[38;2;198;197;57m[48;2;221;190;36m▀[38;2;238;227;16m[48;2;218;199;40m▀[38;2;231;223;26m[48;2;99;80;138m▀[0m
|
||||
[38;2;215;187;37m[48;2;235;224;20m▀[38;2;233;217;22m[48;2;252;222;4m▀[38;2;216;194;22m[48;2;151;154;82m▀[38;2;18;20;0m[48;2;10;9;16m▀[38;2;6;6;1m[48;2;9;10;1m▀[38;2;43;43;5m[48;2;33;33;0m▀[38;2;66;66;38m[48;2;39;39;14m▀[38;2;53;54;68m[48;2;62;62;63m▀[38;2;146;146;32m[48;2;145;141;147m▀[38;2;145;143;112m[48;2;107;86;60m▀[38;2;75;62;56m[48;2;102;60;0m▀[38;2;64;58;5m[48;2;101;66;0m▀[38;2;66;64;1m[48;2;74;63;0m▀[38;2;59;60;1m[48;2;77;64;0m▀[38;2;98;59;3m[48;2;90;64;0m▀[38;2;242;66;0m[48;2;102;63;8m▀[38;2;255;68;15m[48;2;94;62;38m▀[38;2;149;68;66m[48;2;54;62;44m▀[38;2;70;68;35m[48;2;61;63;0m▀[38;2;100;66;23m[48;2;56;63;5m▀[38;2;235;66;12m[48;2;68;63;22m▀[38;2;255;59;0m[48;2;186;65;38m▀[38;2;255;83;0m[48;2;148;69;88m▀[38;2;254;176;16m[48;2;104;79;62m▀[38;2;195;159;5m[48;2;89;57;14m▀[38;2;143;142;5m[48;2;54;53;0m▀[38;2;217;212;26m[48;2;109;87;24m▀[38;2;239;226;21m[48;2;211;173;3m▀[38;2;230;216;24m[48;2;245;214;2m▀[38;2;223;195;38m[48;2;139;139;62m▀[38;2;194;171;32m[48;2;79;65;22m▀[38;2;168;152;24m[48;2;83;54;1m▀[38;2;219;202;41m[48;2;117;116;25m▀[38;2;229;223;26m[48;2;210;188;56m▀[38;2;213;187;48m[48;2;116;88;132m▀[38;2;121;121;113m[48;2;62;57;121m▀[38;2;75;59;91m[48;2;108;64;59m▀[38;2;75;64;93m[48;2;97;64;71m▀[38;2;53;54;89m[48;2;84;65;82m▀[38;2;116;114;47m[48;2;79;56;160m▀[38;2;185;160;75m[48;2;70;56;105m▀[38;2;109;92;73m[48;2;95;61;4m▀[38;2;77;57;9m[48;2;66;64;0m▀[38;2;71;65;1m[48;2;63;64;0m▀[38;2;86;60;0m[48;2;79;65;1m▀[38;2;95;85;1m[48;2;99;56;1m▀[38;2;207;175;40m[48;2;98;69;22m▀[38;2;149;125;75m[48;2;74;60;63m▀[38;2;72;58;88m[48;2;97;63;66m▀[38;2;63;63;95m[48;2;66;64;97m▀[38;2;69;69;93m[48;2;65;63;89m▀[38;2;56;55;101m[48;2;66;65;108m▀[38;2;146;140;52m[48;2;61;59;190m▀[38;2;174;143;94m[48;2;58;54;102m▀[38;2;105;87;87m[48;2;62;59;0m▀[38;2;58;58;13m[48;2;70;64;0m▀[38;2;66;57;0m[48;2;79;66;2m▀[38;2;108;87;34m[48;2;69;59;0m▀[38;2;183;174;43m[48;2;108;66;15m▀[38;2;234;222;28m[48;2;183;150;8m▀[38;2;225;226;37m[48;2;205;196;23m▀[38;2;220;220;34m[48;2;90;90;15m▀[38;2;164;167;25m[48;2;64;59;0m▀[38;2;195;194;27m[48;2;82;68;4m▀[38;2;232;231;29m[48;2;190;159;17m▀[38;2;92;82;1m[48;2;172;140;0m▀[38;2;8;8;1m[48;2;8;8;4m▀[38;2;74;76;7m[48;2;45;45;1m▀[38;2;219;211;225m[48;2;162;161;100m▀[38;2;216;194;91m[48;2;150;146;102m▀[38;2;21;23;0m[48;2;6;6;0m▀[38;2;1;1;4m[48;2;2;2;8m▀[38;2;21;21;0m[48;2;4;4;0m▀[38;2;135;134;81m[48;2;206;206;144m▀[38;2;189;191;210m[48;2;151;150;185m▀[38;2;118;114;73m[48;2;50;50;67m▀[38;2;159;133;38m[48;2;63;56;161m▀[38;2;109;106;139m[48;2;69;56;175m▀[38;2;102;71;150m[48;2;69;65;105m▀[38;2;69;48;124m[48;2;58;54;97m▀[0m
|
||||
[38;2;175;133;75m[48;2;184;66;73m▀[38;2;123;92;154m[48;2;171;61;57m▀[38;2;79;45;61m[48;2;120;52;0m▀[38;2;0;0;5m[48;2;0;0;0m▀[38;2;11;10;2m[48;2;12;10;1m▀[38;2;33;33;0m[48;2;33;33;0m▀[38;2;42;42;17m[48;2;41;41;17m▀[38;2;59;59;67m[48;2;61;59;66m▀[38;2;184;180;161m[48;2;175;173;158m▀[38;2;122;102;25m[48;2;178;103;30m▀[38;2;72;60;0m[48;2;147;59;0m▀[38;2;83;66;1m[48;2;150;63;2m▀[38;2;77;63;0m[48;2;150;65;13m▀[38;2;61;63;13m[48;2;153;68;58m▀[38;2;86;63;72m[48;2;149;64;53m▀[38;2;80;63;63m[48;2;153;65;5m▀[38;2;77;64;4m[48;2;156;65;0m▀[38;2;62;63;0m[48;2;167;66;1m▀[38;2;93;63;0m[48;2;161;64;0m▀[38;2;94;63;0m[48;2;154;65;0m▀[38;2;86;63;0m[48;2;160;66;0m▀[38;2;77;63;34m[48;2;154;68;0m▀[38;2;65;63;16m[48;2;156;66;0m▀[38;2;56;61;0m[48;2;157;66;2m▀[38;2;77;65;0m[48;2;150;64;1m▀[38;2;66;67;0m[48;2;153;64;13m▀[38;2;77;56;0m[48;2;156;66;28m▀[38;2;84;69;12m[48;2;149;58;29m▀[38;2;94;77;37m[48;2;145;53;9m▀[38;2;92;63;23m[48;2;167;64;0m▀[38;2;83;62;0m[48;2;160;66;0m▀[38;2;84;66;3m[48;2;150;64;0m▀[38;2;82;57;0m[48;2;158;66;1m▀[38;2;84;60;57m[48;2;149;65;0m▀[38;2;87;60;79m[48;2;176;67;0m▀[38;2;77;63;76m[48;2;177;70;21m▀[38;2;82;63;62m[48;2;149;70;33m▀[38;2;82;63;42m[48;2;147;66;37m▀[38;2;88;64;125m[48;2;166;62;64m▀[38;2;111;66;78m[48;2;182;61;0m▀[38;2;87;65;0m[48;2;154;62;0m▀[38;2;83;64;0m[48;2;150;64;1m▀[38;2;88;64;1m[48;2;163;60;0m▀[38;2;77;64;0m[48;2;176;63;0m▀[38;2;90;63;0m[48;2;155;65;9m▀[38;2;82;65;0m[48;2;154;66;12m▀[38;2;96;62;0m[48;2;158;66;4m▀[38;2;88;64;0m[48;2;155;66;3m▀[38;2;77;63;44m[48;2;150;67;9m▀[38;2;60;63;92m[48;2;153;65;74m▀[38;2;60;63;141m[48;2;154;70;91m▀[38;2;59;63;187m[48;2;152;66;42m▀[38;2;66;64;100m[48;2;156;65;0m▀[38;2;94;66;0m[48;2;123;64;1m▀[38;2;79;65;2m[48;2;105;63;0m▀[38;2;64;63;1m[48;2;98;64;0m▀[38;2;83;62;0m[48;2;104;68;0m▀[38;2;85;65;1m[48;2;111;66;0m▀[38;2;76;63;0m[48;2;116;64;0m▀[38;2;74;60;0m[48;2;93;63;0m▀[38;2;81;61;0m[48;2;87;65;1m▀[38;2;87;60;0m[48;2;106;62;1m▀[38;2;86;64;0m[48;2;98;64;10m▀[38;2;86;63;0m[48;2;110;65;26m▀[38;2;91;56;0m[48;2;143;66;66m▀[38;2;129;118;22m[48;2;85;61;68m▀[38;2;22;29;0m[48;2;78;50;20m▀[38;2;10;8;0m[48;2;0;2;5m▀[38;2;71;71;16m[48;2;15;14;0m▀[38;2;42;43;59m[48;2;14;14;0m▀[38;2;0;0;0m[48;2;2;1;1m▀[38;2;3;3;5m[48;2;0;0;0m▀[38;2;9;9;4m[48;2;18;18;23m▀[38;2;199;199;167m[48;2;235;243;243m▀[38;2;145;145;131m[48;2;125;92;28m▀[38;2;82;62;0m[48;2;111;61;1m▀[38;2;90;68;11m[48;2;99;70;0m▀[38;2;85;66;45m[48;2;87;61;0m▀[38;2;96;68;84m[48;2;98;64;16m▀[38;2;72;53;106m[48;2;86;54;68m▀[0m
|
||||
[38;2;207;12;24m[48;2;225;16;20m▀[38;2;226;10;0m[48;2;170;3;0m▀[38;2;43;8;0m[48;2;3;0;1m▀[38;2;0;0;0m[48;2;2;0;0m▀[38;2;11;9;0m[48;2;9;8;1m▀[38;2;34;34;0m[48;2;30;30;0m▀[38;2;42;41;16m[48;2;41;40;17m▀[38;2;61;63;66m[48;2;62;61;61m▀[38;2;180;159;155m[48;2;170;170;182m▀[38;2;234;28;38m[48;2;214;124;133m▀[38;2;230;14;3m[48;2;252;94;4m▀[38;2;239;20;1m[48;2;255;58;4m▀[38;2;238;22;21m[48;2;255;0;0m▀[38;2;238;37;5m▀[38;2;239;10;0m[48;2;255;0;2m▀[38;2;242;6;0m[48;2;246;48;0m▀[38;2;238;7;1m[48;2;232;76;9m▀[38;2;255;1;3m[48;2;209;60;26m▀[38;2;236;10;0m[48;2;201;1;11m▀[38;2;205;9;3m[48;2;230;17;27m▀[38;2;222;15;11m[48;2;211;14;23m▀[38;2;220;32;21m[48;2;210;12;53m▀[38;2;225;1;4m[48;2;234;41;6m▀[38;2;226;7;1m[48;2;217;12;0m▀[38;2;241;12;1m[48;2;223;0;0m▀[38;2;234;9;21m[48;2;238;17;0m▀[38;2;208;9;23m[48;2;216;32;19m▀[38;2;240;31;1m[48;2;236;79;10m▀[38;2;227;49;0m[48;2;255;83;0m▀[38;2;230;7;2m[48;2;250;65;9m▀[38;2;240;6;4m[48;2;233;25;24m▀[38;2;236;11;1m[48;2;255;49;0m▀[38;2;238;7;1m[48;2;255;76;0m▀[38;2;236;8;2m[48;2;255;61;0m▀[38;2;255;11;3m[48;2;253;40;0m▀[38;2;241;37;0m[48;2;255;43;0m▀[38;2;238;34;15m[48;2;255;53;0m▀[38;2;228;40;33m[48;2;255;40;0m▀[38;2;232;18;0m[48;2;255;65;1m▀[38;2;240;21;0m[48;2;255;88;1m▀[38;2;235;33;1m[48;2;255;50;0m▀[38;2;244;51;0m[48;2;218;19;1m▀[38;2;237;27;1m[48;2;249;85;0m▀[38;2;217;16;0m[48;2;202;31;38m▀[38;2;200;6;25m[48;2;150;12;99m▀[38;2;224;0;43m[48;2;224;62;31m▀[38;2;232;2;9m[48;2;255;40;8m▀[38;2;237;14;0m[48;2;255;16;3m▀[38;2;239;34;19m[48;2;255;0;0m▀[38;2;239;15;26m[48;2;224;0;6m▀[38;2;235;29;3m[48;2;224;51;28m▀[38;2;238;1;0m[48;2;255;74;3m▀[38;2;240;5;2m[48;2;248;94;3m▀[38;2;233;10;0m[48;2;226;62;0m▀[38;2;221;13;11m[48;2;234;36;19m▀[38;2;226;23;15m[48;2;231;15;26m▀[38;2;242;34;14m[48;2;230;5;24m▀[38;2;228;1;15m[48;2;234;41;27m▀[38;2;228;10;3m[48;2;254;83;5m▀[38;2;218;15;0m[48;2;246;103;0m▀[38;2;229;7;2m[48;2;223;21;10m▀[38;2;218;21;3m[48;2;223;40;24m▀[38;2;199;11;33m[48;2;236;79;20m▀[38;2;206;5;19m[48;2;207;25;41m▀[38;2;229;1;4m[48;2;230;40;23m▀[38;2;234;8;11m[48;2;231;26;0m▀[38;2;228;10;26m[48;2;252;45;3m▀[38;2;67;3;0m[48;2;187;22;47m▀[38;2;0;4;0m[48;2;56;0;8m▀[38;2;18;15;2m[48;2;0;0;0m▀[38;2;0;0;1m[48;2;2;1;1m▀[38;2;14;12;0m[48;2;16;14;0m▀[38;2;62;65;13m[48;2;77;91;24m▀[38;2;197;147;112m[48;2;216;108;67m▀[38;2;225;21;22m[48;2;200;15;47m▀[38;2;242;14;4m[48;2;220;63;9m▀[38;2;235;32;1m[48;2;224;41;0m▀[38;2;236;22;2m[48;2;255;87;0m▀[38;2;239;25;0m[48;2;231;74;2m▀[38;2;233;6;0m[48;2;249;48;3m▀[0m
|
||||
[38;2;251;132;16m[48;2;40;50;61m▀[38;2;104;61;3m[48;2;20;20;23m▀[38;2;0;0;0m[48;2;0;0;1m▀[38;2;4;2;0m[48;2;1;1;1m▀[38;2;0;0;1m[48;2;0;0;1m▀[38;2;6;6;0m[48;2;2;2;0m▀[38;2;50;50;19m[48;2;23;23;13m▀[38;2;63;61;65m[48;2;46;45;42m▀[38;2;176;188;195m[48;2;186;190;194m▀[38;2;255;210;140m[48;2;249;224;177m▀[38;2;245;123;3m[48;2;211;138;40m▀[38;2;255;166;2m[48;2;247;182;10m▀[38;2;250;120;5m[48;2;248;181;7m▀[38;2;246;100;7m[48;2;212;149;42m▀[38;2;255;58;0m[48;2;246;163;8m▀[38;2;226;84;1m[48;2;255;177;0m▀[38;2;204;59;0m[48;2;254;157;9m▀[38;2;246;108;3m[48;2;242;143;15m▀[38;2;224;58;20m[48;2;224;148;32m▀[38;2;254;56;0m[48;2;156;182;109m▀[38;2;233;47;0m[48;2;124;165;130m▀[38;2;251;99;2m[48;2;119;147;133m▀[38;2;255;114;0m[48;2;156;114;90m▀[38;2;223;110;10m[48;2;95;202;167m▀[38;2;218;71;9m[48;2;174;224;109m▀[38;2;238;41;12m[48;2;144;171;82m▀[38;2;224;29;8m[48;2;146;188;161m▀[38;2;164;36;31m[48;2;132;241;149m▀[38;2;232;85;13m[48;2;91;213;134m▀[38;2;245;105;0m[48;2;152;190;166m▀[38;2;248;45;8m[48;2;119;172;123m▀[38;2;240;80;10m[48;2;150;205;175m▀[38;2;243;138;12m[48;2;164;195;161m▀[38;2;255;138;9m[48;2;210;204;138m▀[38;2;255;81;1m[48;2;143;57;55m▀[38;2;255;58;3m[48;2;147;27;35m▀[38;2;255;86;0m[48;2;212;133;38m▀[38;2;255;111;0m[48;2;244;173;11m▀[38;2;255;112;0m[48;2;253;149;1m▀[38;2;255;86;0m[48;2;240;154;14m▀[38;2;255;73;0m[48;2;244;142;11m▀[38;2;230;76;1m[48;2;250;185;6m▀[38;2;217;52;2m[48;2;167;33;44m▀[38;2;214;32;9m[48;2;229;101;23m▀[38;2;251;80;4m[48;2;220;173;35m▀[38;2;255;94;0m[48;2;186;197;65m▀[38;2;207;41;0m[48;2;182;138;65m▀[38;2;234;80;0m[48;2;152;163;98m▀[38;2;252;68;0m[48;2;183;189;134m▀[38;2;245;74;0m[48;2;165;201;155m▀[38;2;249;85;0m[48;2;163;147;155m▀[38;2;253;95;0m[48;2;144;153;143m▀[38;2;255;104;0m[48;2;205;178;47m▀[38;2;224;73;0m[48;2;251;164;12m▀[38;2;251;63;0m[48;2;255;155;1m▀[38;2;255;46;0m[48;2;255;152;0m▀[38;2;255;97;0m[48;2;242;156;5m▀[38;2;241;95;0m[48;2;217;134;19m▀[38;2;224;54;2m[48;2;183;97;29m▀[38;2;255;112;0m[48;2;255;140;5m▀[38;2;253;105;0m[48;2;186;105;19m▀[38;2;255;42;1m[48;2;98;34;28m▀[38;2;239;20;0m[48;2;167;35;5m▀[38;2;254;49;0m[48;2;237;114;10m▀[38;2;236;118;0m[48;2;238;149;3m▀[38;2;255;112;0m[48;2;238;163;17m▀[38;2;249;48;3m[48;2;249;176;6m▀[38;2;247;24;15m[48;2;241;140;9m▀[38;2;222;80;2m[48;2;212;131;50m▀[38;2;39;22;1m[48;2;173;91;31m▀[38;2;1;0;1m[48;2;11;9;1m▀[38;2;16;14;0m[48;2;14;15;0m▀[38;2;78;91;34m[48;2;94;97;56m▀[38;2;189;101;126m[48;2;230;211;114m▀[38;2;170;31;17m[48;2;239;142;2m▀[38;2;255;79;0m[48;2;225;130;31m▀[38;2;254;54;2m[48;2;222;119;33m▀[38;2;254;69;0m[48;2;255;189;0m▀[38;2;254;109;0m[48;2;240;148;16m▀[38;2;255;89;0m[48;2;248;158;8m▀[0m
|
||||
[38;2;0;0;0m[48;2;2;2;0m▀[48;2;1;1;1m▀[38;2;0;0;1m[48;2;1;1;0m▀[38;2;0;0;0m[48;2;2;2;6m▀[38;2;1;1;0m[48;2;9;9;17m▀[38;2;2;2;0m[48;2;28;28;4m▀[38;2;5;5;0m[48;2;1;1;21m▀[38;2;35;36;9m[48;2;70;64;24m▀[38;2;97;99;104m[48;2;80;62;58m▀[38;2;231;238;234m[48;2;215;209;211m▀[38;2;192;122;88m[48;2;216;152;60m▀[38;2;198;158;54m[48;2;190;141;60m▀[38;2;239;175;17m[48;2;191;146;50m▀[38;2;199;145;61m[48;2;173;119;11m▀[38;2;197;159;62m[48;2;190;68;54m▀[38;2;237;182;15m[48;2;204;117;61m▀[38;2;209;161;45m[48;2;183;145;71m▀[38;2;192;131;62m[48;2;187;136;68m▀[38;2;149;207;97m[48;2;186;152;67m▀[38;2;159;250;230m[48;2;165;164;98m▀[38;2;228;240;232m[48;2;153;166;128m▀[38;2;209;227;217m[48;2;155;145;126m▀[38;2;212;245;229m[48;2;170;171;139m▀[38;2;176;239;255m[48;2;190;144;142m▀[38;2;231;254;216m[48;2;183;150;139m▀[38;2;122;217;218m[48;2;200;160;110m▀[38;2;169;230;254m[48;2;224;185;72m▀[38;2;160;216;218m[48;2;220;171;92m▀[38;2;156;230;232m[48;2;228;180;111m▀[38;2;178;237;255m[48;2;219;177;108m▀[38;2;178;216;209m[48;2;212;178;116m▀[38;2;103;223;174m[48;2;183;191;78m▀[38;2;101;224;154m[48;2;154;152;71m▀[38;2;112;187;141m[48;2;178;150;69m▀[38;2;141;126;78m[48;2;211;163;53m▀[38;2;175;126;24m[48;2;220;160;47m▀[38;2;203;151;45m[48;2;159;106;97m▀[38;2;190;143;66m[48;2;174;127;80m▀[38;2;214;166;40m[48;2;186;123;70m▀[38;2;208;156;48m[48;2;162;118;89m▀[38;2;166;112;90m[48;2;183;134;59m▀[38;2;189;136;74m[48;2;146;89;111m▀[38;2;116;66;49m[48;2;175;125;84m▀[38;2;168;93;15m[48;2;204;136;50m▀[38;2;105;155;156m[48;2;135;129;128m▀[38;2;188;240;177m[48;2;138;188;136m▀[38;2;228;255;255m[48;2;119;200;184m▀[38;2;218;255;255m[48;2;133;194;192m▀[38;2;237;255;255m[48;2;98;227;192m▀[38;2;244;255;255m[48;2;115;200;186m▀[38;2;255;255;255m[48;2;161;160;146m▀[38;2;171;255;223m[48;2;160;166;122m▀[38;2;108;175;131m[48;2;165;140;90m▀[38;2;193;158;60m[48;2;177;126;52m▀[38;2;241;189;12m[48;2;164;101;81m▀[38;2;107;70;84m[48;2;139;92;83m▀[38;2;115;17;54m[48;2;154;104;50m▀[38;2;198;130;39m[48;2;146;82;101m▀[38;2;179;134;53m[48;2;148;114;84m▀[38;2;78;48;56m[48;2;125;67;76m▀[38;2;187;134;43m[48;2;165;112;84m▀[38;2;159;106;38m[48;2;213;156;54m▀[38;2;163;125;7m[48;2;184;123;83m▀[38;2;214;165;41m[48;2;167;120;91m▀[38;2;206;160;51m[48;2;184;133;63m▀[38;2;191;139;60m[48;2;165;118;63m▀[38;2;223;168;33m[48;2;196;147;62m▀[38;2;214;163;38m[48;2;169;110;81m▀[38;2;197;149;65m[48;2;178;130;88m▀[38;2;154;109;27m[48;2;103;43;49m▀[38;2;9;11;2m[48;2;7;8;2m▀[38;2;14;13;0m[48;2;15;14;0m▀[38;2;115;117;69m[48;2;109;115;65m▀[38;2;206;200;131m[48;2;220;205;142m▀[38;2;199;144;45m[48;2;193;143;55m▀[38;2;202;155;56m[48;2;211;145;48m▀[38;2;226;175;29m[48;2;148;115;106m▀[38;2;243;188;12m[48;2;164;104;91m▀[38;2;225;170;30m[48;2;187;135;68m▀[38;2;221;183;34m[48;2;199;133;56m▀[0m
|
||||
[38;2;0;0;15m[48;2;1;1;40m▀[38;2;0;0;1m[48;2;2;2;36m▀[38;2;10;10;21m[48;2;9;9;53m▀[38;2;27;27;8m[48;2;26;26;5m▀[38;2;8;8;27m[48;2;4;4;35m▀[38;2;25;27;3m[48;2;26;25;32m▀[38;2;77;61;45m[48;2;42;38;66m▀[38;2;171;125;68m[48;2;25;18;54m▀[38;2;129;76;116m[48;2;50;46;73m▀[38;2;141;116;138m[48;2;39;15;88m▀[38;2;141;90;126m[48;2;77;67;90m▀[38;2;164;111;103m[48;2;69;46;91m▀[38;2;206;157;67m[48;2;100;82;71m▀[38;2;108;84;79m[48;2;135;95;69m▀[38;2;103;0;35m[48;2;73;54;96m▀[38;2;132;61;65m[48;2;97;65;39m▀[38;2;160;133;97m[48;2;139;123;103m▀[38;2;173;124;79m[48;2;192;126;78m▀[38;2;178;138;75m[48;2;150;139;113m▀[38;2;203;142;47m[48;2;191;130;78m▀[38;2;170;121;75m[48;2;148;118;123m▀[38;2;187;127;60m[48;2;169;124;94m▀[38;2;156;113;88m[48;2;148;122;102m▀[38;2;148;112;90m[48;2;166;120;92m▀[38;2;138;93;102m[48;2;123;84;133m▀[38;2;175;121;66m[48;2;142;107;113m▀[38;2;170;116;72m[48;2;140;90;116m▀[38;2;144;125;98m[48;2;130;110;130m▀[38;2;179;118;57m[48;2;151;99;107m▀[38;2;155;110;83m[48;2;164;145;93m▀[38;2;170;124;69m[48;2;184;131;73m▀[38;2;162;115;91m[48;2;150;123;105m▀[38;2;174;117;83m[48;2;139;96;116m▀[38;2;168;104;88m[48;2;134;97;119m▀[38;2;136;103;120m[48;2;129;101;117m▀[38;2;132;88;121m[48;2;147;93;109m▀[38;2;138;110;116m[48;2;156;127;98m▀[38;2;169;116;86m[48;2;150;114;105m▀[38;2;192;141;64m[48;2;170;124;84m▀[38;2;174;140;74m[48;2;172;133;83m▀[38;2;186;151;47m[48;2;170;137;89m▀[38;2;169;110;88m[48;2;176;136;78m▀[38;2;161;130;92m[48;2;169;130;83m▀[38;2;178;127;76m[48;2;179;149;83m▀[38;2;136;40;62m[48;2;98;49;75m▀[38;2;150;105;69m[48;2;119;91;32m▀[38;2;157;126;90m[48;2;155;119;98m▀[38;2;170;144;72m[48;2;163;120;85m▀[38;2;137;121;108m[48;2;158;118;101m▀[38;2;136;148;111m[48;2;149;94;107m▀[38;2;146;81;73m[48;2;168;138;94m▀[38;2;142;90;100m[48;2;143;98;114m▀[38;2;178;130;79m[48;2;144;120;110m▀[38;2;147;121;110m[48;2;139;90;114m▀[38;2;175;126;81m[48;2;145;121;110m▀[38;2;142;92;120m[48;2;137;95;116m▀[38;2;169;132;96m[48;2;158;115;94m▀[38;2;151;96;105m[48;2;168;110;86m▀[38;2;155;130;104m[48;2;130;120;124m▀[38;2;188;130;78m[48;2;168;105;82m▀[38;2;142;106;113m[48;2;133;117;131m▀[38;2;172;130;87m[48;2;85;31;91m▀[38;2;153;97;100m[48;2;31;17;69m▀[38;2;159;134;83m[48;2;176;117;15m▀[38;2;163;110;89m[48;2;143;120;116m▀[38;2;182;143;76m[48;2;189;144;65m▀[38;2;192;149;62m[48;2;136;92;118m▀[38;2;173;144;78m[48;2;158;132;93m▀[38;2;197;141;71m[48;2;150;94;125m▀[38;2;48;41;75m[48;2;60;48;70m▀[38;2;0;0;0m[48;2;0;1;1m▀[38;2;17;19;0m[48;2;17;18;0m▀[38;2;71;64;16m[48;2;81;74;26m▀[38;2;207;186;110m[48;2;208;206;124m▀[38;2;170;142;76m[48;2;132;76;108m▀[38;2;193;133;53m[48;2;146;119;93m▀[38;2;169;138;87m[48;2;155;105;102m▀[38;2;174;127;81m[48;2;148;119;106m▀[38;2;193;137;62m[48;2;177;116;78m▀[38;2;177;164;78m[48;2;148;151;107m▀[0m
|
||||
[38;2;11;11;60m[48;2;10;10;68m▀[38;2;27;27;13m[48;2;26;26;24m▀[38;2;3;3;21m[48;2;29;29;45m▀[38;2;25;25;10m[48;2;5;8;63m▀[38;2;24;27;72m[48;2;31;4;68m▀[38;2;4;4;64m[48;2;7;2;68m▀[38;2;23;25;62m[48;2;30;3;69m▀[38;2;1;3;64m[48;2;8;1;68m▀[38;2;21;24;61m[48;2;31;4;69m▀[38;2;0;4;58m[48;2;8;1;70m▀[38;2;18;20;57m[48;2;32;33;70m▀[38;2;0;1;58m[48;2;9;8;70m▀[38;2;13;18;62m[48;2;33;32;69m▀[38;2;0;0;65m[48;2;9;9;68m▀[38;2;37;35;64m[48;2;28;28;68m▀[38;2;23;22;67m[48;2;2;2;68m▀[38;2;48;53;70m[48;2;25;24;67m▀[38;2;36;17;91m[48;2;0;4;63m▀[38;2;52;49;88m[48;2;24;25;63m▀[38;2;58;41;89m[48;2;0;2;63m▀[38;2;83;83;89m[48;2;21;21;63m▀[38;2;95;74;85m[48;2;0;4;66m▀[38;2;107;109;102m[48;2;34;34;75m▀[38;2;119;73;143m[48;2;17;17;119m▀[38;2;125;105;133m[48;2;55;37;101m▀[38;2;129;87;132m[48;2;79;65;92m▀[38;2;127;110;131m[48;2;144;96;103m▀[38;2;112;68;129m[48;2;113;106;122m▀[38;2;125;117;125m[48;2;154;121;92m▀[38;2;149;95;106m[48;2;153;127;104m▀[38;2;134;127;120m[48;2;155;120;99m▀[38;2;147;95;107m[48;2;156;141;99m▀[38;2;117;97;140m[48;2;118;90;138m▀[38;2;138;91;107m[48;2;116;90;132m▀[38;2;114;102;108m[48;2;107;76;129m▀[38;2;139;88;120m[48;2;116;93;141m▀[38;2;131;119;123m[48;2;143;113;111m▀[38;2;158;107;96m[48;2;143;114;111m▀[38;2;132;122;122m[48;2;141;129;114m▀[38;2;151;101;103m[48;2;174;123;81m▀[38;2;129;121;124m[48;2;129;130;125m▀[38;2;139;89;115m[48;2;152;101;102m▀[38;2;131;119;123m[48;2;132;122;123m▀[38;2;138;88;117m[48;2;154;102;100m▀[38;2;137;126;118m[48;2;121;123;133m▀[38;2;172;117;97m[48;2;122;71;134m▀[38;2;58;53;110m[48;2;111;100;132m▀[38;2;69;21;63m[48;2;126;78;105m▀[38;2;108;103;88m[48;2;107;100;132m▀[38;2;139;87;126m[48;2;119;72;138m▀[38;2;108;100;144m[48;2;108;94;146m▀[38;2;128;82;126m[48;2;101;91;154m▀[38;2;130;114;124m[48;2;143;94;112m▀[38;2;143;97;111m[48;2;130;120;125m▀[38;2;134;117;121m[48;2;149;100;105m▀[38;2;143;96;112m[48;2;128;119;127m▀[38;2;134;117;120m[48;2;174;122;81m▀[38;2;157;131;97m[48;2;164;162;91m▀[38;2;165;128;89m[48;2;184;129;71m▀[38;2;152;127;101m[48;2;161;156;93m▀[38;2;172;135;87m[48;2;178;124;76m▀[38;2;125;103;97m[48;2;124;127;138m▀[38;2;115;82;88m[48;2;141;86;129m▀[38;2;131;107;98m[48;2;112;107;123m▀[38;2;148;100;108m[48;2;135;90;112m▀[38;2;136;125;118m[48;2;110;98;147m▀[38;2;145;90;110m[48;2;129;101;128m▀[38;2;130;125;117m[48;2;110;78;134m▀[38;2;158;103;105m[48;2;157;135;90m▀[38;2;35;31;96m[48;2;55;20;75m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;16;16;0m[48;2;16;16;0m▀[38;2;79;81;29m[48;2;87;91;22m▀[38;2;193;193;147m[48;2;162;132;200m▀[38;2;135;88;113m[48;2;111;102;148m▀[38;2;145;133;114m[48;2;126;81;127m▀[38;2;138;93;115m[48;2;149;139;106m▀[38;2;144;126;111m[48;2;152;104;103m▀[38;2;148;103;107m[48;2;131;117;124m▀[38;2;154;140;101m[48;2;171;153;84m▀[0m
|
||||
BIN
tui/src/skywalker_tui/assets/splash/so-far-away.gif
Normal file
BIN
tui/src/skywalker_tui/assets/splash/so-far-away.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 21 KiB |
32
tui/src/skywalker_tui/assets/splash/space-docker.ans
Normal file
32
tui/src/skywalker_tui/assets/splash/space-docker.ans
Normal file
@ -0,0 +1,32 @@
|
||||
[38;2;0;19;0m[48;2;0;29;0m▀[38;2;0;4;0m[48;2;0;6;0m▀[38;2;0;18;0m[48;2;0;28;0m▀[38;2;0;4;0m[48;2;0;6;0m▀[38;2;0;18;0m[48;2;0;28;0m▀[38;2;0;4;0m[48;2;0;6;0m▀[38;2;0;19;0m[48;2;0;28;0m▀[38;2;0;4;0m[48;2;0;7;0m▀[38;2;0;29;0m[48;2;0;35;0m▀[38;2;0;30;0m[48;2;0;69;0m▀[38;2;0;21;0m[48;2;0;108;0m▀[38;2;0;27;1m[48;2;0;88;0m▀[38;2;0;23;2m[48;2;0;96;0m▀[38;2;0;26;0m[48;2;0;93;0m▀[38;2;0;22;0m[48;2;0;104;0m▀[38;2;0;35;0m[48;2;0;39;0m▀[38;2;0;18;0m[48;2;0;28;0m▀[38;2;0;4;0m[48;2;0;6;0m▀[38;2;0;29;0m[48;2;0;37;0m▀[38;2;0;33;0m[48;2;0;31;0m▀[38;2;0;25;0m[48;2;0;33;0m▀[38;2;0;33;0m[48;2;0;35;0m▀[38;2;0;14;0m[48;2;0;100;0m▀[38;2;0;26;0m[48;2;0;101;0m▀[38;2;0;21;0m[48;2;0;45;0m▀[38;2;0;36;0m[48;2;0;29;0m▀[38;2;0;19;0m[48;2;0;35;0m▀[38;2;0;8;0m[48;2;0;36;0m▀[38;2;0;18;0m[48;2;0;28;0m▀[38;2;0;4;0m[48;2;0;6;0m▀[38;2;0;31;0m[48;2;0;39;0m▀[38;2;0;32;0m[48;2;0;28;0m▀[38;2;0;81;0m[48;2;0;95;0m▀[38;2;0;135;0m[48;2;0;135;0m▀[38;2;0;130;1m[48;2;0;118;0m▀[38;2;0;49;1m[48;2;0;30;0m▀[38;2;0;26;0m[48;2;0;33;0m▀[38;2;0;37;0m[48;2;0;34;0m▀[38;2;0;18;0m[48;2;0;28;0m▀[38;2;0;5;0m[48;2;0;7;0m▀[38;2;0;19;0m[48;2;0;28;0m▀[38;2;0;4;0m[48;2;0;6;0m▀[38;2;0;29;0m[48;2;0;37;0m▀[38;2;0;33;0m[48;2;0;30;0m▀[38;2;0;23;0m[48;2;0;39;0m▀[38;2;0;25;0m[48;2;0;101;0m▀[38;2;0;29;0m[48;2;0;123;0m▀[38;2;0;31;0m[48;2;0;89;0m▀[38;2;0;17;0m[48;2;0;44;0m▀[38;2;0;8;0m[48;2;0;33;0m▀[38;2;0;18;0m[48;2;0;29;0m▀[38;2;0;4;0m[48;2;0;6;0m▀[38;2;0;29;0m[48;2;0;37;0m▀[38;2;0;33;0m[48;2;0;30;0m▀[38;2;0;29;0m[48;2;0;41;0m▀[38;2;0;95;0m[48;2;0;120;0m▀[38;2;0;103;0m[48;2;0;134;0m▀[48;2;0;123;1m▀[38;2;1;103;1m[48;2;0;122;0m▀[38;2;1;101;1m[48;2;0;125;0m▀[38;2;0;105;0m[48;2;0;138;0m▀[38;2;0;69;0m[48;2;0;81;0m▀[38;2;0;54;0m[48;2;0;57;0m▀[38;2;0;31;0m[48;2;0;29;0m▀[38;2;0;26;0m[48;2;0;34;0m▀[38;2;0;34;0m[48;2;0;32;0m▀[38;2;0;25;0m[48;2;0;33;0m▀[38;2;0;36;0m▀[38;2;0;18;0m[48;2;0;28;0m▀[38;2;0;5;0m[48;2;0;7;0m▀[38;2;0;19;0m[48;2;0;28;0m▀[38;2;0;4;0m[48;2;0;7;0m▀[38;2;0;29;0m[48;2;0;37;0m▀[48;2;0;61;0m▀[38;2;0;17;0m[48;2;0;83;0m▀[38;2;0;27;0m[48;2;0;81;0m▀[38;2;0;20;0m[48;2;1;71;0m▀[38;2;0;25;0m[48;2;0;90;0m▀[38;2;0;24;0m[48;2;0;44;0m▀[38;2;0;35;0m[48;2;0;29;0m▀[0m
|
||||
[38;2;0;27;0m[48;2;0;27;0m▀[38;2;0;5;0m[48;2;0;5;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;7;0m[48;2;0;7;0m▀[38;2;0;33;0m[48;2;0;33;0m▀[38;2;0;92;1m[48;2;0;89;2m▀[38;2;0;137;0m[48;2;0;122;0m▀[38;2;0;154;21m[48;2;0;191;68m▀[38;2;0;166;37m[48;2;0;243;127m▀[38;2;0;139;5m[48;2;0;134;15m▀[38;2;0;129;0m[48;2;0;121;1m▀[38;2;0;47;0m[48;2;0;45;1m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;36;0m[48;2;0;36;0m▀[38;2;0;31;0m[48;2;0;29;0m▀[38;2;0;46;0m[48;2;0;59;0m▀[38;2;0;137;0m[48;2;0;123;0m▀[38;2;0;77;0m[48;2;0;19;0m▀[38;2;0;50;0m[48;2;0;17;0m▀[38;2;0;164;0m[48;2;0;128;0m▀[38;2;0;56;0m[48;2;0;66;0m▀[38;2;0;29;0m[48;2;0;28;0m▀[38;2;0;35;0m[48;2;0;36;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;36;0m[48;2;0;35;0m▀[38;2;0;33;0m[48;2;0;35;1m▀[38;2;0;49;0m[48;2;0;21;0m▀[38;2;0;130;1m[48;2;0;145;13m▀[38;2;0;175;15m[48;2;0;43;249m▀[38;2;0;138;8m[48;2;0;138;129m▀[38;2;0;41;0m[48;2;0;73;0m▀[38;2;0;33;0m[48;2;0;29;4m▀[38;2;0;26;0m[48;2;0;27;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;38;0m[48;2;0;38;0m▀[38;2;0;25;0m[48;2;0;27;0m▀[38;2;0;120;0m[48;2;0;124;0m▀[38;2;0;97;0m[48;2;0;46;0m▀[38;2;0;26;0m[48;2;0;30;0m▀[38;2;0;59;0m[48;2;0;13;0m▀[38;2;0;161;0m[48;2;0;154;0m▀[38;2;0;44;0m[48;2;0;75;0m▀[38;2;0;25;0m[48;2;0;23;0m▀[38;2;0;6;0m[48;2;0;7;0m▀[38;2;0;35;0m[48;2;0;36;0m▀[38;2;0;31;0m[48;2;0;31;0m▀[38;2;0;39;0m[48;2;0;39;0m▀[38;2;0;114;0m[48;2;1;114;3m▀[38;2;0;136;0m[48;2;0;139;0m▀[38;2;1;183;0m[48;2;13;253;103m▀[38;2;15;189;13m[48;2;249;255;255m▀[38;2;8;160;8m[48;2;129;196;122m▀[38;2;0;127;0m[48;2;0;122;0m▀[38;2;0;81;0m[48;2;4;82;4m▀[38;2;0;56;0m[48;2;0;57;0m▀[38;2;0;30;0m[48;2;0;30;0m▀[38;2;0;32;0m[48;2;0;33;0m▀[48;2;0;32;0m▀[38;2;0;31;0m▀[38;2;0;34;0m[48;2;0;34;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;7;0m[48;2;0;7;0m▀[38;2;0;33;0m[48;2;0;34;0m▀[38;2;0;92;0m[48;2;2;85;0m▀[38;2;0;141;0m[48;2;0;141;0m▀[38;2;0;160;0m[48;2;57;243;0m▀[38;2;0;165;0m[48;2;106;255;0m▀[38;2;0;156;0m[48;2;13;200;0m▀[38;2;0;72;0m[48;2;1;61;0m▀[38;2;0;26;0m[48;2;0;27;0m▀[0m
|
||||
[38;2;0;27;0m[48;2;0;27;0m▀[38;2;0;5;0m[48;2;0;5;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;7;0m[48;2;0;7;0m▀[38;2;0;33;0m[48;2;0;34;0m▀[38;2;0;90;0m[48;2;0;80;0m▀[38;2;0;136;0m[48;2;0;123;0m▀[38;2;0;133;6m[48;2;0;117;0m▀[38;2;0;137;9m[48;2;0;113;0m▀[38;2;0;131;2m[48;2;0;121;0m▀[38;2;0;129;0m[48;2;0;113;0m▀[38;2;0;46;0m[48;2;0;44;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;5;0m▀[38;2;0;36;0m[48;2;0;36;0m▀[38;2;0;33;0m[48;2;0;32;0m▀[38;2;0;28;0m[48;2;0;30;0m▀[38;2;0;139;0m[48;2;0;44;0m▀[38;2;0;80;0m[48;2;0;73;0m▀[38;2;0;77;0m[48;2;0;69;0m▀[38;2;0;139;0m[48;2;0;37;0m▀[38;2;0;40;0m[48;2;0;32;0m▀[38;2;0;31;0m[48;2;0;26;0m▀[38;2;0;32;0m[48;2;0;4;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;5;0m▀[38;2;0;35;0m[48;2;0;36;0m▀[38;2;0;34;0m[48;2;0;31;0m▀[38;2;0;28;0m[48;2;0;32;0m▀[38;2;0;120;4m[48;2;0;28;0m▀[38;2;0;140;70m[48;2;0;37;0m▀[38;2;0;143;36m[48;2;0;31;0m▀[38;2;0;52;0m[48;2;0;30;0m▀[38;2;0;32;1m[48;2;0;34;0m▀[38;2;0;27;0m[48;2;0;26;0m▀[38;2;0;7;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;5;0m▀[38;2;0;38;0m[48;2;0;35;0m▀[38;2;0;26;0m[48;2;0;29;0m▀[38;2;0;107;0m[48;2;0;31;0m▀[38;2;0;117;0m[48;2;0;99;0m▀[38;2;0;29;0m[48;2;0;85;0m▀[38;2;0;84;0m[48;2;0;97;0m▀[38;2;0;151;0m[48;2;0;43;0m▀[38;2;0;47;0m[48;2;0;26;0m▀[38;2;0;27;0m[48;2;0;27;0m▀[38;2;0;6;0m[48;2;0;5;0m▀[38;2;0;36;0m[48;2;0;36;0m▀[38;2;0;31;0m[48;2;0;31;0m▀[38;2;0;39;0m[48;2;0;39;0m▀[38;2;0;114;2m[48;2;0;117;0m▀[38;2;0;138;0m[48;2;0;133;0m▀[38;2;4;209;70m[48;2;0;124;0m▀[38;2;70;219;132m▀[38;2;36;175;37m[48;2;0;125;0m▀[38;2;0;125;0m[48;2;0;135;0m▀[38;2;1;81;1m[48;2;0;79;0m▀[38;2;0;57;0m[48;2;0;57;0m▀[38;2;0;30;0m[48;2;0;30;0m▀[38;2;0;33;0m[48;2;0;33;0m▀[38;2;0;32;0m[48;2;0;32;0m▀▀[38;2;0;34;0m[48;2;0;34;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;7;0m[48;2;0;7;0m▀[38;2;0;33;0m[48;2;0;34;0m▀[38;2;1;86;0m[48;2;0;91;0m▀[38;2;0;140;0m[48;2;0;137;0m▀[38;2;40;227;0m[48;2;0;140;0m▀[38;2;73;245;0m[48;2;0;137;0m▀[38;2;9;189;0m[48;2;0;145;0m▀[38;2;1;64;0m[48;2;0;69;0m▀[38;2;0;27;0m[48;2;0;28;0m▀[0m
|
||||
[38;2;0;27;0m[48;2;0;27;0m▀[38;2;0;6;0m[48;2;0;5;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;5;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;5;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;5;0m▀[38;2;0;35;0m[48;2;0;26;0m▀[38;2;0;27;0m[48;2;0;4;0m▀[38;2;1;33;1m[48;2;11;35;11m▀[38;2;3;40;4m[48;2;25;29;25m▀[38;2;2;32;3m[48;2;0;32;0m▀[38;2;4;42;4m[48;2;23;25;23m▀[38;2;2;29;2m[48;2;1;28;1m▀[38;2;4;35;4m[48;2;23;27;23m▀[38;2;2;28;2m[48;2;1;27;1m▀[38;2;4;9;4m[48;2;23;28;23m▀[38;2;2;36;2m[48;2;1;27;1m▀[38;2;4;32;4m[48;2;25;27;24m▀[38;2;1;34;1m[48;2;0;27;0m▀[38;2;1;30;2m[48;2;0;28;0m▀[38;2;1;25;2m▀[38;2;0;26;2m▀[38;2;2;32;4m[48;2;4;27;0m▀[38;2;4;36;6m[48;2;22;27;12m▀[38;2;2;28;4m[48;2;1;27;0m▀[38;2;4;11;6m[48;2;23;28;14m▀[38;2;2;28;4m[48;2;1;27;0m▀[38;2;4;9;6m[48;2;25;28;16m▀[38;2;1;36;3m[48;2;0;27;0m▀[38;2;1;33;3m▀▀[38;2;1;34;3m▀[38;2;1;32;6m▀[38;2;1;33;5m▀[38;2;1;33;3m▀[38;2;1;35;3m▀[38;2;2;28;4m[48;2;5;27;0m▀[38;2;4;10;6m[48;2;22;28;10m▀[38;2;2;28;4m[48;2;1;27;0m▀[38;2;4;9;7m[48;2;23;29;10m▀[38;2;2;28;4m[48;2;1;28;0m▀[38;2;4;8;7m[48;2;23;29;11m▀[38;2;2;36;4m[48;2;1;27;0m▀[38;2;4;23;7m[48;2;23;29;11m▀[38;2;2;29;4m[48;2;1;28;0m▀[38;2;4;25;7m[48;2;23;29;11m▀[38;2;2;26;4m[48;2;0;28;0m▀[38;2;4;9;7m[48;2;20;29;11m▀[38;2;2;28;4m[48;2;0;27;0m▀[38;2;5;9;7m[48;2;20;28;13m▀[38;2;2;37;3m[48;2;0;27;0m▀[38;2;2;32;4m[48;2;0;26;0m▀[38;2;2;41;3m[48;2;0;28;0m▀[38;2;2;113;4m[48;2;0;44;0m▀[38;2;3;123;3m[48;2;0;51;0m▀[38;2;3;123;4m[48;2;0;40;0m▀[38;2;4;122;5m[48;2;0;52;0m▀[38;2;3;121;3m[48;2;0;40;0m▀[38;2;1;125;1m[48;2;0;52;0m▀[38;2;1;82;1m[48;2;0;41;0m▀[38;2;1;58;1m[48;2;0;51;0m▀[38;2;1;31;1m[48;2;0;24;0m▀[38;2;1;34;1m[48;2;0;28;0m▀[38;2;1;33;1m[48;2;0;27;0m▀▀[38;2;1;35;1m[48;2;0;31;0m▀[38;2;1;27;1m[48;2;0;21;0m▀[38;2;0;7;0m[48;2;5;7;5m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;35;0m[48;2;0;26;0m▀[38;2;0;46;0m[48;2;0;1;0m▀[38;2;0;58;0m[48;2;0;21;0m▀[38;2;1;60;0m[48;2;0;0;0m▀[38;2;2;52;0m[48;2;0;22;0m▀[38;2;0;64;0m[48;2;0;0;0m▀[38;2;0;35;0m[48;2;0;27;0m▀[38;2;0;28;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;28;0m[48;2;0;38;0m▀[38;2;0;8;0m[48;2;0;32;0m▀[38;2;0;27;0m▀[38;2;0;8;0m[48;2;0;34;0m▀[38;2;0;27;0m[48;2;0;32;0m▀[38;2;0;8;0m[48;2;0;34;0m▀[38;2;0;27;0m[48;2;0;32;0m▀[38;2;0;8;0m[48;2;0;34;0m▀[38;2;0;27;0m[48;2;4;32;4m▀[38;2;2;9;2m[48;2;0;34;0m▀[38;2;2;36;2m[48;2;36;31;36m▀[38;2;36;33;36m[48;2;172;30;172m▀[38;2;80;36;80m[48;2;55;32;55m▀[38;2;87;91;87m[48;2;33;37;33m▀[38;2;68;94;68m[48;2;14;39;14m▀[38;2;88;94;88m[48;2;32;37;32m▀[38;2;68;94;68m[48;2;13;39;13m▀[38;2;88;94;88m[48;2;32;37;32m▀[38;2;68;94;67m[48;2;13;39;12m▀[38;2;88;94;90m[48;2;32;37;41m▀[38;2;68;94;75m[48;2;13;39;76m▀[38;2;90;95;117m[48;2;31;37;92m▀[38;2;68;94;86m[48;2;13;39;105m▀[38;2;90;95;113m[48;2;31;37;122m▀[38;2;67;94;98m[48;2;13;39;124m▀[38;2;88;95;135m[48;2;32;37;220m▀[38;2;68;94;108m[48;2;13;39;214m▀[38;2;88;94;130m[48;2;32;37;227m▀[38;2;67;94;109m[48;2;13;39;210m▀[38;2;90;94;132m[48;2;32;37;229m▀[38;2;62;94;104m[48;2;14;39;211m▀[38;2;66;94;108m[48;2;33;37;230m▀[38;2;62;94;104m[48;2;14;39;211m▀[38;2;65;95;107m[48;2;33;37;230m▀[38;2;62;94;104m[48;2;14;39;210m▀[38;2;65;95;107m[48;2;33;37;231m▀[38;2;63;94;104m[48;2;13;39;215m▀[38;2;65;95;106m[48;2;33;37;228m▀[38;2;71;94;118m[48;2;13;39;220m▀[38;2;88;94;145m[48;2;32;38;255m▀[38;2;68;94;116m[48;2;13;39;244m▀[38;2;88;91;150m[48;2;32;50;253m▀[38;2;68;93;117m[48;2;13;43;241m▀[38;2;88;94;147m[48;2;32;37;255m▀[38;2;68;94;116m[48;2;13;39;245m▀[38;2;88;94;147m[48;2;32;38;255m▀[38;2;68;94;116m[48;2;13;39;245m▀[38;2;88;95;147m[48;2;32;37;255m▀[38;2;73;94;116m[48;2;24;39;245m▀[38;2;104;94;147m[48;2;64;37;255m▀[38;2;71;94;115m[48;2;17;39;245m▀[38;2;115;94;149m[48;2;133;37;255m▀[38;2;67;94;110m[48;2;75;40;235m▀[38;2;87;94;122m[48;2;99;40;240m▀[38;2;70;93;110m[48;2;88;40;238m▀[38;2;75;91;118m[48;2;41;41;235m▀[38;2;88;92;94m[48;2;110;41;196m▀[38;2;89;91;88m[48;2;66;41;57m▀[38;2;62;92;62m[48;2;8;41;9m▀[38;2;62;91;62m[48;2;9;41;9m▀[38;2;62;92;62m[48;2;8;41;8m▀[38;2;62;91;62m[48;2;8;40;8m▀[38;2;62;92;62m▀[38;2;62;94;62m▀▀[38;2;61;93;61m▀[38;2;62;93;62m[48;2;10;40;10m▀[38;2;34;67;34m[48;2;11;42;11m▀[38;2;32;50;32m[48;2;169;77;169m▀[38;2;20;5;20m[48;2;118;49;118m▀[38;2;1;26;1m[48;2;0;25;0m▀[38;2;4;6;4m[48;2;34;6;34m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;7;0m[48;2;0;6;0m▀[38;2;0;28;0m[48;2;0;26;0m▀[38;2;0;8;0m[48;2;0;6;0m▀[38;2;0;27;0m[48;2;0;26;0m▀[38;2;0;8;0m[48;2;0;5;0m▀[38;2;0;28;0m[48;2;0;28;0m▀[38;2;0;1;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;37;0m[48;2;0;37;0m▀[38;2;0;30;0m[48;2;0;31;0m▀[38;2;0;32;0m[48;2;0;32;0m▀▀▀▀[48;2;2;32;2m▀[38;2;3;32;3m[48;2;0;32;0m▀[38;2;0;32;0m[48;2;77;29;77m▀[38;2;43;34;43m[48;2;103;34;103m▀[38;2;133;26;133m[48;2;21;26;21m▀[38;2;69;5;69m[48;2;16;7;16m▀[38;2;0;26;0m[48;2;7;26;7m▀[38;2;29;2;29m[48;2;25;6;25m▀[38;2;0;24;0m[48;2;0;26;0m▀[38;2;0;2;0m[48;2;1;6;1m▀[38;2;0;24;0m[48;2;0;26;0m▀[38;2;0;2;0m[48;2;1;6;1m▀[38;2;0;24;0m[48;2;0;26;0m▀[38;2;0;2;0m[48;2;1;6;1m▀[38;2;0;24;18m[48;2;0;26;4m▀[38;2;0;2;56m[48;2;1;6;15m▀[38;2;0;24;84m[48;2;0;26;81m▀[38;2;0;2;129m[48;2;1;6;123m▀[38;2;0;24;81m[48;2;0;26;107m▀[38;2;0;2;116m[48;2;1;6;115m▀[38;2;0;24;177m[48;2;0;26;81m▀[38;2;0;2;188m[48;2;1;6;178m▀[38;2;0;24;187m[48;2;0;26;192m▀[38;2;0;2;186m[48;2;1;6;189m▀[38;2;0;24;187m[48;2;0;26;190m▀[38;2;0;2;185m[48;2;1;6;194m▀[38;2;0;24;187m[48;2;0;26;191m▀[38;2;0;2;187m[48;2;1;6;189m▀[38;2;0;24;185m[48;2;0;26;190m▀[38;2;0;2;194m[48;2;1;6;189m▀[38;2;0;24;215m[48;2;0;26;188m▀[38;2;0;2;180m[48;2;1;6;193m▀[38;2;0;24;199m[48;2;0;26;188m▀[38;2;0;4;224m[48;2;1;7;191m▀[38;2;0;24;228m[48;2;0;26;231m▀[38;2;0;62;185m[48;2;1;21;235m▀[38;2;0;43;205m[48;2;0;31;225m▀[38;2;0;2;246m[48;2;1;6;249m▀[38;2;0;24;225m[48;2;0;27;229m▀[38;2;0;1;246m[48;2;4;10;249m▀[38;2;0;24;225m[48;2;2;28;229m▀[38;2;0;2;246m[48;2;1;6;249m▀[38;2;17;24;225m[48;2;19;26;229m▀[38;2;49;2;246m[48;2;51;6;249m▀[38;2;8;24;225m[48;2;10;27;229m▀[38;2;83;2;246m[48;2;60;6;249m▀[38;2;55;34;216m[48;2;51;35;220m▀[38;2;90;30;219m[48;2;98;29;226m▀[38;2;70;30;218m[48;2;69;32;223m▀[38;2;77;31;220m[48;2;93;30;224m▀[38;2;92;30;188m[48;2;55;32;209m▀[38;2;71;31;61m[48;2;102;30;119m▀[38;2;0;30;0m[48;2;5;32;3m▀[38;2;0;31;0m[48;2;2;30;3m▀[38;2;0;30;0m[48;2;0;32;0m▀[38;2;0;31;0m[48;2;0;30;0m▀[38;2;0;30;0m[48;2;0;32;0m▀[38;2;0;31;0m[48;2;0;30;0m▀[38;2;0;30;0m[48;2;0;32;0m▀[38;2;0;31;0m[48;2;0;30;0m▀[38;2;0;30;0m[48;2;0;31;0m▀[38;2;0;34;0m[48;2;1;32;1m▀[38;2;18;20;18m[48;2;6;28;6m▀[38;2;173;39;173m[48;2;36;3;36m▀[38;2;87;72;87m[48;2;152;49;152m▀[38;2;16;10;16m[48;2;116;13;116m▀[38;2;2;27;2m[48;2;0;26;0m▀[38;2;4;6;4m[48;2;34;6;34m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;5;0m[48;2;0;5;0m▀[38;2;0;28;0m[48;2;0;28;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;37;0m[48;2;0;39;0m▀[38;2;0;31;0m[48;2;0;28;0m▀[48;2;0;34;0m▀[38;2;0;33;0m[48;2;0;30;0m▀[38;2;0;31;0m[48;2;2;34;2m▀[38;2;0;33;0m[48;2;7;31;7m▀[38;2;0;32;0m[48;2;76;24;76m▀[38;2;91;31;91m[48;2;188;141;188m▀[38;2;139;41;139m[48;2;105;143;105m▀[38;2;4;34;4m[48;2;0;27;0m▀[38;2;10;27;10m[48;2;12;24;12m▀[38;2;31;9;31m[48;2;25;0;25m▀[38;2;0;27;0m[48;2;0;21;0m▀[38;2;0;7;0m[48;2;1;0;1m▀[38;2;0;27;0m[48;2;0;21;0m▀[38;2;0;7;0m[48;2;0;0;0m▀[38;2;0;27;0m[48;2;0;21;0m▀[38;2;0;7;0m[48;2;0;0;0m▀[38;2;0;27;0m[48;2;0;21;0m▀[38;2;0;7;0m[48;2;0;0;0m▀[38;2;0;27;1m[48;2;0;21;1m▀[38;2;0;7;0m[48;2;0;0;0m▀[38;2;0;27;43m[48;2;0;21;15m▀[38;2;0;7;88m[48;2;0;0;39m▀[38;2;0;27;91m[48;2;0;21;81m▀[38;2;0;7;130m[48;2;0;0;130m▀[38;2;0;27;81m[48;2;0;21;101m▀[38;2;0;7;105m[48;2;0;0;116m▀[38;2;0;27;200m[48;2;0;21;158m▀[38;2;0;7;197m[48;2;0;0;160m▀[38;2;0;27;195m[48;2;0;21;127m▀[38;2;0;7;179m[48;2;0;0;123m▀[38;2;0;27;191m[48;2;0;21;118m▀[38;2;0;7;203m[48;2;0;0;140m▀[38;2;0;27;194m[48;2;0;21;130m▀[38;2;0;7;197m[48;2;0;0;172m▀[38;2;0;27;193m[48;2;0;21;185m▀[38;2;0;7;190m[48;2;0;0;194m▀[38;2;0;27;192m[48;2;0;21;195m▀[38;2;0;7;186m[48;2;0;0;196m▀[38;2;0;27;205m[48;2;0;21;198m▀[38;2;0;5;225m[48;2;0;0;204m▀[38;2;0;27;219m[48;2;0;20;233m▀[38;2;1;8;248m[48;2;0;0;255m▀[38;2;0;27;227m[48;2;0;21;234m▀[38;2;27;34;248m[48;2;0;0;255m▀[38;2;9;36;228m[48;2;0;20;234m▀[38;2;0;7;248m[48;2;0;0;255m▀[38;2;18;28;228m[48;2;20;21;234m▀[38;2;50;7;248m[48;2;55;0;255m▀[38;2;12;27;228m[48;2;12;21;234m▀[38;2;53;7;248m[48;2;60;0;255m▀[38;2;11;27;228m[48;2;5;21;234m▀[38;2;119;6;249m[48;2;102;0;255m▀[38;2;75;27;228m[48;2;81;21;234m▀[38;2;117;6;247m[48;2;118;0;255m▀[38;2;70;27;224m[48;2;74;21;232m▀[38;2;138;6;191m[48;2;125;0;245m▀[38;2;29;27;23m[48;2;108;21;107m▀[38;2;0;6;0m[48;2;50;0;48m▀[38;2;1;27;1m[48;2;2;21;2m▀[38;2;0;6;0m[48;2;1;0;1m▀[38;2;0;27;0m[48;2;0;21;0m▀[38;2;0;6;0m[48;2;0;0;0m▀[38;2;0;27;0m[48;2;0;21;0m▀[38;2;0;6;0m[48;2;0;0;0m▀[38;2;0;27;0m[48;2;0;21;0m▀[38;2;0;6;0m[48;2;0;0;0m▀[38;2;11;27;11m[48;2;8;21;8m▀[38;2;26;8;26m[48;2;24;0;24m▀[38;2;1;23;1m[48;2;8;21;8m▀[38;2;148;5;148m[48;2;17;4;17m▀[38;2;77;25;77m[48;2;119;30;119m▀[38;2;12;4;12m[48;2;142;15;142m▀[38;2;1;27;1m[48;2;2;22;2m▀[38;2;4;6;4m[48;2;31;5;31m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;5;0m[48;2;0;5;0m▀[38;2;0;28;0m[48;2;0;28;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;74;0m[48;2;0;71;0m▀[38;2;0;54;0m[48;2;0;58;0m▀[38;2;0;65;0m[48;2;0;59;0m▀[38;2;2;56;2m[48;2;0;61;0m▀[38;2;0;67;0m[48;2;0;60;0m▀[38;2;73;51;73m[48;2;3;62;3m▀[38;2;61;21;61m[48;2;0;19;0m▀[38;2;125;175;125m[48;2;137;169;137m▀[38;2;121;152;121m[48;2;119;152;120m▀[38;2;0;25;0m[48;2;0;22;1m▀[38;2;3;48;3m[48;2;3;82;3m▀[38;2;0;55;0m[48;2;1;142;1m▀[38;2;0;53;0m[48;2;0;51;0m▀[38;2;0;50;0m[48;2;0;34;0m▀[38;2;0;55;0m[48;2;0;43;0m▀[38;2;0;50;0m[48;2;0;32;0m▀[38;2;0;55;0m[48;2;0;43;0m▀[38;2;0;50;0m[48;2;0;31;0m▀[38;2;0;55;0m[48;2;0;43;0m▀[38;2;0;50;0m[48;2;0;31;0m▀[38;2;0;55;0m[48;2;0;43;0m▀[38;2;0;50;0m[48;2;0;31;0m▀[38;2;0;55;0m[48;2;0;43;2m▀[38;2;0;50;4m[48;2;0;31;0m▀[38;2;0;55;60m[48;2;0;43;42m▀[38;2;0;50;61m[48;2;0;31;53m▀[38;2;0;55;90m[48;2;0;43;71m▀[38;2;0;50;108m[48;2;0;31;103m▀[38;2;0;55;90m[48;2;0;43;93m▀[38;2;0;50;100m[48;2;0;31;74m▀[38;2;0;55;94m[48;2;0;43;83m▀[38;2;0;50;107m[48;2;0;31;78m▀[38;2;0;55;89m[48;2;0;43;65m▀[38;2;0;50;63m[48;2;0;31;48m▀[38;2;0;55;70m[48;2;0;43;62m▀[38;2;0;50;10m[48;2;0;31;50m▀[38;2;0;55;60m[48;2;0;43;30m▀[38;2;0;50;162m[48;2;0;31;147m▀[38;2;0;55;167m[48;2;0;43;179m▀[38;2;0;50;167m[48;2;0;31;176m▀[38;2;0;55;167m[48;2;0;43;177m▀[38;2;0;51;163m[48;2;0;40;179m▀[38;2;0;58;175m[48;2;0;69;175m▀[38;2;0;50;206m[48;2;0;31;178m▀[38;2;0;55;200m[48;2;0;43;213m▀[38;2;1;50;205m[48;2;0;31;223m▀[38;2;0;55;200m[48;2;0;43;212m▀[38;2;0;50;205m[48;2;0;31;224m▀[38;2;12;55;200m[48;2;0;43;212m▀[38;2;32;50;205m[48;2;0;31;224m▀[38;2;7;55;200m[48;2;15;43;212m▀[38;2;34;50;205m[48;2;39;31;224m▀[38;2;3;55;200m[48;2;11;43;212m▀[38;2;50;50;205m[48;2;40;31;224m▀[38;2;60;55;200m[48;2;31;43;212m▀[38;2;98;50;205m[48;2;115;31;224m▀[38;2;71;55;199m[48;2;71;43;212m▀[38;2;92;50;201m[48;2;103;31;222m▀[38;2;103;55;145m[48;2;77;43;211m▀[38;2;48;50;45m[48;2;122;31;141m▀[38;2;0;55;0m[48;2;11;43;7m▀[38;2;2;50;2m[48;2;0;31;2m▀[38;2;0;55;0m[48;2;1;43;1m▀[38;2;0;50;0m[48;2;0;31;0m▀[38;2;0;55;0m[48;2;0;43;0m▀[38;2;0;50;0m[48;2;0;31;0m▀[38;2;0;55;0m[48;2;0;43;0m▀[38;2;0;50;0m[48;2;0;31;0m▀[38;2;0;55;0m[48;2;0;45;0m▀[38;2;0;50;0m[48;2;0;29;0m▀[38;2;10;57;10m[48;2;8;142;8m▀[38;2;29;15;29m[48;2;24;43;24m▀[38;2;1;32;1m[48;2;8;23;8m▀[38;2;168;57;168m[48;2;14;13;14m▀[38;2;131;48;131m[48;2;97;55;97m▀[38;2;21;11;21m[48;2;117;28;117m▀[38;2;0;27;0m[48;2;12;27;12m▀[38;2;4;6;4m[48;2;31;6;31m▀[38;2;0;28;0m[48;2;0;28;0m▀[38;2;0;0;0m[48;2;1;0;1m▀[0m
|
||||
[38;2;0;108;0m[48;2;0;130;0m▀[38;2;2;103;2m[48;2;0;127;0m▀[38;2;3;105;3m▀[38;2;0;103;0m[48;2;0;126;0m▀[38;2;0;109;0m[48;2;0;141;0m▀[38;2;4;69;4m[48;2;4;75;4m▀[38;2;2;20;2m[48;2;0;17;0m▀[38;2;137;170;138m[48;2;136;171;133m▀[38;2;119;151;114m[48;2;118;151;142m▀[38;2;0;22;0m[48;2;0;21;10m▀[38;2;3;56;5m[48;2;3;63;0m▀[38;2;0;119;0m[48;2;0;116;0m▀[38;2;0;36;1m[48;2;0;20;0m▀[38;2;0;2;0m[48;2;0;10;1m▀[38;2;0;23;0m[48;2;0;27;0m▀[38;2;0;0;0m[48;2;0;19;0m▀[38;2;0;21;0m[48;2;0;31;0m▀[38;2;0;0;0m[48;2;0;7;0m▀[38;2;0;22;0m[48;2;0;27;0m▀[38;2;0;0;0m[48;2;0;7;0m▀[38;2;0;22;0m[48;2;0;27;0m▀[38;2;0;0;0m[48;2;0;7;0m▀[38;2;0;22;0m[48;2;0;27;0m▀[38;2;0;0;0m[48;2;0;7;0m▀[38;2;0;22;8m[48;2;0;27;0m▀[38;2;0;0;18m[48;2;0;7;4m▀[38;2;0;22;70m[48;2;0;27;66m▀[38;2;0;0;67m[48;2;0;7;43m▀[38;2;0;22;61m[48;2;0;27;67m▀[38;2;0;0;61m[48;2;0;7;69m▀[38;2;0;22;60m[48;2;0;27;68m▀[38;2;0;0;61m[48;2;0;7;69m▀[38;2;0;22;64m[48;2;0;27;63m▀[38;2;0;0;68m[48;2;0;7;63m▀[38;2;0;22;65m[48;2;0;27;64m▀[38;2;0;0;72m[48;2;0;7;63m▀[38;2;0;22;53m[48;2;0;27;65m▀[38;2;0;0;24m[48;2;0;7;45m▀[38;2;0;22;170m[48;2;0;27;81m▀[38;2;0;0;196m[48;2;0;7;207m▀[38;2;0;22;190m[48;2;0;27;200m▀[38;2;0;0;190m[48;2;0;6;211m▀[38;2;0;20;196m[48;2;0;24;191m▀[38;2;0;0;190m[48;2;0;7;188m▀[38;2;0;22;209m[48;2;0;27;212m▀[38;2;0;0;254m[48;2;0;6;251m▀[38;2;0;23;232m[48;2;0;24;229m▀[38;2;0;0;254m[48;2;0;7;252m▀[38;2;1;22;232m[48;2;0;27;230m▀[38;2;1;0;254m[48;2;0;7;253m▀[38;2;19;22;233m[48;2;18;27;228m▀[38;2;54;0;255m[48;2;51;7;249m▀[38;2;12;22;233m[48;2;11;27;229m▀[38;2;59;0;255m[48;2;55;7;249m▀[38;2;9;22;233m[48;2;2;27;229m▀[38;2;106;0;255m[48;2;50;7;248m▀[38;2;80;22;233m[48;2;69;27;228m▀[38;2;118;0;254m[48;2;116;7;248m▀[38;2;71;22;228m[48;2;77;27;228m▀[38;2;141;0;234m[48;2;104;7;248m▀[38;2;100;22;95m[48;2;138;27;225m▀[38;2;43;0;38m[48;2;114;7;118m▀[38;2;1;22;2m[48;2;0;27;0m▀[38;2;2;0;2m[48;2;2;7;4m▀[38;2;0;22;0m[48;2;1;27;1m▀[38;2;0;0;0m[48;2;1;7;1m▀[38;2;0;22;0m[48;2;0;27;0m▀[38;2;0;0;0m[48;2;0;7;0m▀[38;2;0;25;0m[48;2;0;30;0m▀[38;2;0;0;0m[48;2;0;3;0m▀[38;2;0;135;0m[48;2;0;136;0m▀[38;2;0;41;0m[48;2;0;42;0m▀[38;2;10;24;10m[48;2;9;24;9m▀[38;2;28;3;28m[48;2;23;4;23m▀[38;2;13;48;13m[48;2;37;65;37m▀[38;2;125;85;125m[48;2;105;122;105m▀[38;2;15;24;15m[48;2;3;22;3m▀[38;2;30;8;30m[48;2;28;9;28m▀[38;2;0;28;0m[48;2;0;28;0m▀[38;2;1;0;1m[48;2;1;0;1m▀[0m
|
||||
[38;2;0;131;0m[48;2;0;139;0m▀[38;2;36;204;36m[48;2;127;250;127m▀[38;2;70;219;70m[48;2;249;255;249m▀[38;2;4;166;4m[48;2;13;201;13m▀[38;2;0;124;0m[48;2;0;136;0m▀[38;2;4;80;4m[48;2;4;79;4m▀[38;2;0;32;0m[48;2;0;62;1m▀[38;2;141;169;131m[48;2;116;168;108m▀[38;2;120;151;189m[48;2;112;147;180m▀[38;2;0;26;106m[48;2;0;45;103m▀[38;2;3;63;63m[48;2;3;69;112m▀[38;2;0;116;9m[48;2;0;118;64m▀[38;2;0;23;7m[48;2;0;24;127m▀[38;2;0;9;0m[48;2;0;11;41m▀[38;2;0;26;2m[48;2;0;25;0m▀[38;2;0;27;1m[48;2;0;1;0m▀[38;2;0;33;0m[48;2;0;25;1m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;27;0m[48;2;0;25;0m▀[38;2;0;6;0m[48;2;0;3;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;1m▀[38;2;0;26;11m[48;2;0;26;0m▀[38;2;0;6;41m[48;2;0;6;0m▀[38;2;0;26;34m[48;2;0;26;0m▀[38;2;0;6;38m[48;2;0;6;0m▀[38;2;0;26;69m[48;2;0;26;11m▀[38;2;0;6;66m[48;2;0;6;64m▀[38;2;0;26;62m[48;2;0;26;76m▀[38;2;0;6;63m[48;2;0;6;65m▀[38;2;0;26;64m[48;2;0;26;64m▀[38;2;0;6;69m[48;2;0;6;63m▀[38;2;0;26;54m[48;2;0;26;67m▀[38;2;0;6;129m[48;2;0;6;53m▀[38;2;0;26;203m[48;2;0;26;122m▀[38;2;0;10;199m[48;2;0;13;189m▀[38;2;0;38;176m[48;2;0;47;168m▀[38;2;0;6;198m[48;2;0;6;191m▀[38;2;0;26;225m[48;2;0;26;187m▀[38;2;4;10;228m[48;2;7;13;187m▀[38;2;12;38;222m[48;2;21;47;188m▀[38;2;0;6;229m[48;2;0;6;186m▀[38;2;1;27;222m[48;2;1;27;188m▀[38;2;0;6;228m[48;2;0;6;186m▀[38;2;19;26;229m[48;2;3;26;194m▀[38;2;51;6;249m[48;2;7;6;195m▀[38;2;11;26;226m[48;2;17;26;207m▀[38;2;53;6;249m[48;2;50;6;241m▀[38;2;10;26;226m[48;2;12;26;199m▀[38;2;41;6;249m[48;2;58;6;249m▀[38;2;11;26;230m[48;2;6;26;225m▀[38;2;124;6;249m[48;2;61;6;249m▀[38;2;76;26;229m[48;2;68;26;229m▀[38;2;116;6;248m[48;2;121;6;249m▀[38;2;65;26;229m[48;2;77;26;228m▀[38;2;152;6;244m[48;2;105;6;249m▀[38;2;127;26;122m[48;2;143;26;234m▀[38;2;42;6;37m[48;2;164;6;169m▀[38;2;0;26;0m[48;2;34;26;20m▀[38;2;0;6;0m[48;2;16;6;14m▀[38;2;0;26;0m[48;2;0;26;2m▀[38;2;0;6;0m[48;2;2;6;3m▀[38;2;0;29;0m[48;2;0;29;0m▀[38;2;0;2;0m[48;2;1;2;1m▀[38;2;0;136;0m[48;2;0;136;0m▀[38;2;0;42;0m[48;2;0;42;0m▀[38;2;0;24;0m[48;2;1;24;1m▀[38;2;0;4;0m[48;2;0;4;0m▀[38;2;36;62;36m[48;2;36;62;36m▀[38;2;111;114;111m[48;2;110;116;110m▀[38;2;0;23;0m[48;2;0;22;0m▀[38;2;1;8;1m[48;2;4;8;4m▀[38;2;0;28;0m[48;2;0;28;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;128;0m[48;2;0;131;0m▀[38;2;8;178;8m[48;2;0;125;0m▀[38;2;15;188;15m[48;2;0;123;0m▀[38;2;1;156;1m[48;2;0;124;0m▀[38;2;0;151;0m[48;2;0;137;0m▀[38;2;3;72;3m[48;2;4;77;4m▀[38;2;0;15;0m[48;2;0;21;0m▀[38;2;125;172;119m[48;2;140;169;133m▀[38;2;115;146;161m[48;2;119;161;168m▀[38;2;0;41;101m[48;2;0;34;100m▀[38;2;3;64;109m[48;2;3;69;102m▀[38;2;0;139;49m[48;2;0;113;69m▀[38;2;0;38;132m[48;2;0;28;125m▀[38;2;0;36;124m[48;2;0;28;127m▀[38;2;0;29;64m[48;2;0;62;107m▀[38;2;0;11;9m[48;2;0;42;121m▀[38;2;0;27;0m[48;2;0;26;43m▀[38;2;0;6;2m[48;2;0;6;0m▀[38;2;0;30;0m[48;2;0;33;0m▀[38;2;0;18;0m[48;2;0;27;1m▀[38;2;0;26;0m[48;2;0;27;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;1m[48;2;0;6;0m▀[38;2;0;26;1m[48;2;0;26;0m▀[38;2;0;6;1m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;13m[48;2;0;26;0m▀[38;2;0;6;41m[48;2;0;6;0m▀[38;2;0;26;67m[48;2;0;26;5m▀[38;2;0;6;64m[48;2;0;6;14m▀[38;2;0;26;64m[48;2;0;26;71m▀[38;2;0;6;66m[48;2;0;6;69m▀[38;2;0;26;61m[48;2;0;26;59m▀[38;2;0;4;193m[48;2;0;6;118m▀[38;2;0;22;193m[48;2;0;26;173m▀[38;2;0;6;190m[48;2;0;6;196m▀[38;2;0;26;192m[48;2;0;26;189m▀[38;2;0;4;192m[48;2;0;6;189m▀[38;2;0;22;193m[48;2;1;27;197m▀[38;2;0;6;196m[48;2;0;6;221m▀[38;2;0;26;195m[48;2;0;26;213m▀[38;2;0;6;192m[48;2;0;6;188m▀[38;2;0;26;192m[48;2;0;26;191m▀[38;2;0;6;185m[48;2;0;6;188m▀[38;2;20;26;212m[48;2;12;26;201m▀[38;2;55;6;247m[48;2;32;6;215m▀[38;2;11;26;203m[48;2;14;26;204m▀[38;2;53;6;244m[48;2;52;6;243m▀[38;2;9;26;199m[48;2;12;26;201m▀[38;2;40;6;249m[48;2;60;6;249m▀[38;2;7;26;229m[48;2;3;26;225m▀[38;2;104;6;249m[48;2;50;6;249m▀[38;2;79;26;229m[48;2;70;26;229m▀[38;2;115;6;249m[48;2;123;6;249m▀[38;2;64;26;226m[48;2;77;26;229m▀[38;2;136;6;255m[48;2;110;6;246m▀[38;2;130;26;196m[48;2;64;26;233m▀[38;2;110;6;116m[48;2;146;6;244m▀[38;2;13;26;0m[48;2;86;26;148m▀[38;2;0;6;0m[48;2;83;6;95m▀[38;2;0;28;1m[48;2;15;33;2m▀[38;2;0;2;0m[48;2;12;3;8m▀[38;2;0;136;0m[48;2;0;136;0m▀[38;2;2;42;3m[48;2;0;42;0m▀[38;2;1;24;2m[48;2;0;24;0m▀[38;2;1;4;1m[48;2;0;4;0m▀[38;2;36;62;37m[48;2;34;62;33m▀[38;2;110;116;110m[48;2;110;116;110m▀[38;2;0;22;0m[48;2;0;22;0m▀[38;2;3;8;3m[48;2;3;8;3m▀[38;2;0;28;0m[48;2;0;28;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;95;0m[48;2;0;69;0m▀[38;2;1;87;1m[48;2;0;59;0m▀[38;2;1;90;1m[48;2;0;58;0m▀[38;2;0;87;0m[48;2;0;61;0m▀[38;2;0;93;0m[48;2;0;58;0m▀[38;2;4;65;4m[48;2;4;63;4m▀[38;2;0;20;0m[48;2;0;19;0m▀[38;2;137;167;122m[48;2;137;170;119m▀[38;2;118;173;213m[48;2;119;147;233m▀[38;2;0;16;197m[48;2;0;21;232m▀[38;2;3;86;151m[48;2;4;61;202m▀[38;2;0;123;105m[48;2;0;114;146m▀[38;2;1;29;149m[48;2;10;28;235m▀[38;2;3;42;121m[48;2;29;18;242m▀[38;2;0;60;90m[48;2;1;40;198m▀[38;2;0;56;78m[48;2;3;75;110m▀[38;2;0;83;68m[48;2;0;36;127m▀[38;2;0;35;44m[48;2;0;73;98m▀[38;2;0;23;9m[48;2;0;34;85m▀[38;2;0;3;0m[48;2;0;5;16m▀[38;2;0;24;1m[48;2;0;37;0m▀[38;2;0;5;1m[48;2;0;7;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;3;0m[48;2;0;17;2m▀[38;2;0;27;0m[48;2;0;24;1m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;27;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;1m[48;2;0;6;0m▀[38;2;0;26;0m[48;2;0;26;0m▀[38;2;0;6;0m[48;2;0;6;1m▀[38;2;0;26;12m[48;2;0;26;0m▀[38;2;0;6;41m[48;2;0;6;0m▀[38;2;0;26;66m[48;2;0;26;47m▀[38;2;0;7;61m[48;2;0;14;64m▀[38;2;0;30;103m[48;2;0;52;19m▀[38;2;0;6;185m[48;2;0;6;65m▀[38;2;0;26;195m[48;2;0;27;174m▀[38;2;0;6;194m[48;2;0;6;176m▀[38;2;0;26;195m[48;2;0;26;174m▀[38;2;0;6;190m[48;2;0;6;184m▀[38;2;0;26;193m[48;2;0;26;179m▀[38;2;0;6;192m[48;2;0;6;194m▀[38;2;0;26;197m[48;2;0;26;170m▀[38;2;0;6;194m[48;2;0;6;170m▀[38;2;0;26;203m[48;2;1;26;188m▀[38;2;0;6;215m[48;2;1;6;190m▀[38;2;19;26;217m[48;2;19;26;160m▀[38;2;51;6;243m[48;2;52;6;243m▀[38;2;11;26;202m[48;2;11;26;204m▀[38;2;53;6;243m[48;2;52;6;244m▀[38;2;10;26;199m[48;2;12;26;201m▀[38;2;42;6;249m[48;2;58;6;249m▀[38;2;7;26;228m[48;2;4;26;229m▀[38;2;91;6;249m[48;2;21;6;249m▀[38;2;76;26;229m[48;2;9;26;229m▀[38;2;123;6;249m[48;2;90;6;249m▀[38;2;77;26;227m[48;2;77;26;229m▀[38;2;111;6;250m[48;2;122;6;249m▀[38;2;75;27;241m[48;2;75;26;226m▀[38;2;121;6;247m[48;2;113;6;250m▀[38;2;84;56;153m[48;2;73;27;238m▀[38;2;153;7;166m[48;2;136;2;255m▀[38;2;43;134;45m[48;2;60;136;120m▀[38;2;66;42;83m[48;2;134;42;227m▀[38;2;14;24;35m[48;2;96;24;225m▀[38;2;11;4;18m[48;2;137;4;236m▀[38;2;43;62;48m[48;2;83;62;136m▀[38;2;109;116;108m[48;2;102;116;95m▀[38;2;0;22;0m[48;2;0;22;0m▀[38;2;3;8;3m[48;2;3;8;3m▀[38;2;0;28;0m[48;2;0;28;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;40;0m[48;2;0;37;0m▀[48;2;0;28;0m▀[38;2;0;33;0m[48;2;0;32;0m▀[38;2;0;42;0m[48;2;0;30;0m▀[38;2;0;33;0m[48;2;0;32;0m▀[38;2;4;46;4m[48;2;4;33;4m▀[38;2;0;21;0m[48;2;0;23;0m▀[38;2;137;169;120m[48;2;137;170;119m▀[38;2;119;153;228m[48;2;119;149;233m▀[38;2;0;22;223m[48;2;0;49;197m▀[38;2;3;102;155m[48;2;4;90;168m▀[38;2;0;130;123m[48;2;0;120;135m▀[38;2;10;16;237m[48;2;6;47;208m▀[38;2;25;42;214m[48;2;25;55;196m▀[38;2;7;61;201m[48;2;3;90;153m▀[38;2;30;31;230m[48;2;25;71;179m▀[38;2;1;40;199m[48;2;3;36;209m▀[38;2;4;63;118m[48;2;29;0;247m▀[38;2;1;33;110m[48;2;0;38;155m▀[38;2;0;53;103m[48;2;2;54;101m▀[38;2;1;53;85m[48;2;0;40;125m▀[38;2;0;17;40m[48;2;2;39;129m▀[38;2;1;44;1m[48;2;0;53;101m▀[38;2;0;29;0m[48;2;0;40;65m▀[38;2;0;36;0m[48;2;0;79;31m▀[38;2;0;6;1m[48;2;0;33;0m▀[38;2;0;24;1m[48;2;0;36;0m▀[38;2;0;6;1m[48;2;0;5;0m▀[38;2;0;26;0m[48;2;0;27;0m▀[38;2;0;6;1m[48;2;0;5;0m▀[38;2;0;26;0m[48;2;0;30;0m▀[38;2;0;6;0m[48;2;0;8;1m▀[38;2;0;25;0m[48;2;0;31;0m▀[38;2;0;6;0m[48;2;0;8;0m▀[38;2;0;25;0m[48;2;0;31;0m▀[38;2;0;6;0m[48;2;0;8;0m▀[38;2;0;25;0m[48;2;0;31;0m▀[38;2;0;6;0m[48;2;0;8;0m▀[38;2;0;25;0m[48;2;0;31;0m▀[38;2;0;6;1m[48;2;0;9;0m▀[38;2;0;25;7m[48;2;0;31;0m▀[38;2;0;6;15m[48;2;0;16;0m▀[38;2;0;27;74m[48;2;0;56;5m▀[38;2;0;6;44m[48;2;0;8;19m▀[38;2;0;25;51m[48;2;0;32;68m▀[38;2;0;6;20m[48;2;0;8;47m▀[38;2;0;25;37m[48;2;0;31;23m▀[38;2;0;6;33m[48;2;0;8;1m▀[38;2;0;25;36m[48;2;0;31;24m▀[38;2;0;6;26m[48;2;0;8;1m▀[38;2;0;25;30m[48;2;0;31;26m▀[38;2;0;6;14m[48;2;0;8;4m▀[38;2;0;25;32m[48;2;0;31;25m▀[38;2;0;6;0m[48;2;0;8;8m▀[38;2;3;25;17m[48;2;0;31;27m▀[38;2;7;6;137m[48;2;0;8;19m▀[38;2;17;25;210m[48;2;19;31;198m▀[38;2;51;6;241m[48;2;51;8;246m▀[38;2;11;25;201m[48;2;11;31;199m▀[38;2;53;6;249m[48;2;50;8;240m▀[38;2;10;24;227m[48;2;8;35;189m▀[38;2;46;3;252m[48;2;55;18;235m▀[38;2;5;25;229m[48;2;6;29;224m▀[38;2;21;5;249m[48;2;45;7;247m▀[38;2;9;25;229m[48;2;1;29;225m▀[38;2;91;6;249m[48;2;20;6;247m▀[38;2;77;25;230m[48;2;7;29;225m▀[38;2;124;6;249m[48;2;65;6;249m▀[38;2;76;29;224m[48;2;64;32;223m▀[38;2;117;2;250m[48;2;117;2;253m▀[38;2;47;135;119m[48;2;39;139;116m▀[38;2;101;42;210m[48;2;112;42;213m▀[38;2;77;23;232m[48;2;75;27;227m▀[38;2;112;4;255m[48;2;113;3;250m▀[38;2;73;62;135m[48;2;72;62;132m▀[38;2;105;116;96m[48;2;103;116;95m▀[38;2;1;23;1m[48;2;0;22;0m▀[38;2;3;8;3m[48;2;3;10;3m▀[38;2;0;27;0m[48;2;0;32;0m▀[38;2;0;0;0m[48;2;0;1;0m▀[0m
|
||||
[38;2;0;37;0m[48;2;0;39;0m▀[38;2;0;31;0m[48;2;0;29;0m▀[48;2;0;34;0m▀[38;2;0;33;0m[48;2;0;30;0m▀[38;2;0;31;0m[48;2;1;35;1m▀[38;2;3;36;3m[48;2;5;35;5m▀[38;2;1;22;1m[48;2;0;23;0m▀[38;2;136;169;119m[48;2;139;169;122m▀[38;2;119;151;230m[48;2;116;151;228m▀[38;2;0;19;226m[48;2;2;22;226m▀[38;2;4;59;200m[48;2;0;69;189m▀[38;2;6;108;147m[48;2;11;110;145m▀[38;2;26;11;244m[48;2;37;0;255m▀[38;2;29;1;246m[48;2;32;14;244m▀[38;2;23;11;228m[48;2;34;36;211m▀[38;2;30;7;239m[48;2;33;8;245m▀[38;2;23;71;136m[48;2;35;10;252m▀[38;2;31;56;190m[48;2;26;125;131m▀[38;2;27;37;217m[48;2;15;78;175m▀[38;2;32;14;187m[48;2;28;81;178m▀[38;2;27;30;127m[48;2;14;53;188m▀[38;2;34;0;158m[48;2;27;55;143m▀[38;2;23;68;94m[48;2;15;121;49m▀[38;2;4;49;115m[48;2;29;105;74m▀[38;2;1;26;144m[48;2;0;63;105m▀[38;2;0;62;66m[48;2;3;72;113m▀[38;2;1;74;64m[48;2;0;72;98m▀[38;2;0;31;47m[48;2;0;114;77m▀[38;2;0;36;9m[48;2;1;74;76m▀[38;2;0;9;15m[48;2;0;80;75m▀[38;2;0;7;1m[48;2;0;53;69m▀[38;2;0;0;0m[48;2;0;48;42m▀[38;2;0;1;0m[48;2;0;42;8m▀[38;2;0;0;1m[48;2;0;48;0m▀[38;2;0;0;0m[48;2;0;47;0m▀[48;2;0;48;0m▀[48;2;0;46;0m▀[48;2;0;48;0m▀[48;2;0;46;0m▀[48;2;0;48;0m▀[48;2;0;46;0m▀[38;2;0;0;1m[48;2;0;58;0m▀[38;2;0;8;0m[48;2;0;78;1m▀[38;2;0;0;0m[48;2;0;48;1m▀[38;2;0;0;6m[48;2;0;47;0m▀[38;2;0;0;11m[48;2;0;48;0m▀[38;2;0;0;31m[48;2;0;46;3m▀[38;2;0;0;7m[48;2;0;48;1m▀[38;2;0;0;26m[48;2;0;46;30m▀[38;2;0;0;4m[48;2;0;48;16m▀[38;2;0;0;22m[48;2;0;46;45m▀[38;2;0;0;5m[48;2;0;48;12m▀[38;2;0;0;27m[48;2;0;46;24m▀[38;2;0;0;6m[48;2;0;49;5m▀[38;2;0;0;28m[48;2;0;47;26m▀[38;2;0;0;8m[48;2;0;47;6m▀[38;2;3;1;105m[48;2;0;44;14m▀[38;2;7;0;213m[48;2;0;48;95m▀[38;2;17;0;255m[48;2;11;45;141m▀[38;2;62;0;253m[48;2;36;51;136m▀[38;2;30;10;224m[48;2;24;28;147m▀[38;2;55;23;237m[48;2;60;0;167m▀[38;2;29;9;251m[48;2;38;0;162m▀[38;2;59;3;255m[48;2;57;0;162m▀[38;2;26;9;251m[48;2;40;0;161m▀[38;2;49;2;255m[48;2;62;0;180m▀[38;2;18;9;251m[48;2;36;0;221m▀[38;2;20;2;253m[48;2;53;0;255m▀[38;2;27;12;243m[48;2;30;1;253m▀[38;2;39;1;254m[48;2;27;0;255m▀[38;2;29;119;136m[48;2;38;108;147m▀[38;2;89;38;217m[48;2;33;36;220m▀[38;2;82;8;246m[48;2;37;0;255m▀[38;2;116;6;254m[48;2;41;8;255m▀[38;2;84;62;152m[48;2;57;61;163m▀[38;2;109;115;99m[48;2;117;116;101m▀[38;2;16;24;16m[48;2;27;25;27m▀[38;2;3;2;3m[48;2;2;12;1m▀[38;2;0;2;5m[48;2;1;35;0m▀[38;2;0;0;2m[48;2;0;29;0m▀[0m
|
||||
[38;2;0;9;0m[48;2;0;0;0m▀[38;2;0;0;0m▀[38;2;0;9;0m▀[38;2;0;1;0m▀[38;2;10;19;10m[48;2;9;7;9m▀[38;2;37;37;37m[48;2;39;39;39m▀[38;2;14;22;16m[48;2;24;22;26m▀[38;2;169;169;152m[48;2;169;169;152m▀[38;2;141;153;248m[48;2;154;153;255m▀[38;2;27;21;255m[48;2;24;21;249m▀[38;2;22;37;219m[48;2;14;82;174m▀[38;2;6;137;119m[48;2;9;114;142m▀[38;2;34;7;248m[48;2;38;0;255m▀[38;2;31;6;251m[48;2;31;1;254m▀[38;2;31;30;204m[48;2;31;2;255m▀[38;2;34;28;220m[48;2;34;17;239m▀[38;2;26;29;228m[48;2;26;34;221m▀[38;2;2;129;116m[48;2;7;107;149m▀[38;2;24;74;161m[48;2;38;8;248m▀[38;2;29;92;166m[48;2;32;23;232m▀[38;2;20;47;197m[48;2;35;31;202m▀[38;2;29;77;182m[48;2;33;56;197m▀[38;2;20;33;169m[48;2;35;48;177m▀[38;2;29;26;111m[48;2;33;0;222m▀[38;2;23;22;140m[48;2;34;26;156m▀[38;2;33;18;150m[48;2;33;53;132m▀[38;2;19;50;110m[48;2;36;30;127m▀[38;2;3;57;114m[48;2;35;38;117m▀[38;2;0;81;85m[48;2;19;8;155m▀[38;2;0;100;81m[48;2;0;15;129m▀[38;2;4;91;85m[48;2;32;96;104m▀[38;2;0;89;64m[48;2;62;126;114m▀[38;2;11;69;89m[48;2;26;69;90m▀[38;2;0;29;64m[48;2;11;63;64m▀[38;2;1;26;10m[48;2;0;20;10m▀[38;2;0;29;1m[48;2;0;0;3m▀[38;2;0;28;0m[48;2;0;0;0m▀▀▀▀▀[38;2;0;42;0m▀[38;2;1;72;0m[48;2;0;0;23m▀[38;2;0;28;0m[48;2;0;0;8m▀[38;2;0;30;0m[48;2;1;0;1m▀[38;2;0;28;0m[48;2;0;0;0m▀[48;2;1;0;1m▀[48;2;0;0;0m▀[38;2;0;28;3m▀[38;2;0;28;19m▀[38;2;0;28;38m▀[38;2;0;28;45m▀[38;2;0;29;86m[48;2;0;0;16m▀[38;2;0;24;60m[48;2;0;14;24m▀[38;2;0;27;80m[48;2;0;0;101m▀[38;2;0;37;62m[48;2;0;0;70m▀[38;2;0;55;79m[48;2;0;0;92m▀[38;2;0;29;110m▀[38;2;0;28;112m[48;2;0;0;129m▀[38;2;0;62;90m[48;2;1;30;117m▀[38;2;14;117;61m[48;2;2;109;74m▀[38;2;62;1;127m[48;2;11;0;136m▀[38;2;40;4;118m[48;2;20;3;127m▀[38;2;61;0;120m[48;2;39;0;129m▀[38;2;35;0;122m[48;2;44;0;129m▀[38;2;57;0;114m[48;2;61;0;131m▀[38;2;38;0;140m[48;2;36;0;124m▀[38;2;61;0;247m[48;2;57;0;209m▀[38;2;34;3;251m[48;2;38;3;254m▀[38;2;50;0;255m[48;2;60;0;255m▀[38;2;34;110;145m[48;2;38;110;145m▀[38;2;49;36;219m[48;2;62;36;219m▀[38;2;29;0;255m[48;2;35;0;255m▀[38;2;24;7;255m[48;2;49;7;255m▀[38;2;60;61;161m[48;2;56;61;161m▀[38;2;116;119;101m[48;2;117;119;102m▀[38;2;24;23;24m[48;2;25;20;25m▀[38;2;2;111;7m[48;2;2;123;12m▀[38;2;1;107;140m[48;2;1;80;206m▀[38;2;0;153;78m[48;2;0;150;115m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀[38;2;0;1;0m▀[38;2;0;0;0m▀[38;2;9;10;9m[48;2;9;9;9m▀[38;2;38;38;38m[48;2;39;39;39m▀[38;2;21;22;23m[48;2;22;22;24m▀[38;2;169;169;152m[48;2;169;169;152m▀[38;2;152;153;255m[48;2;152;154;255m▀[38;2;22;21;251m[48;2;23;20;255m▀[38;2;0;52;204m[48;2;4;30;225m▀[38;2;4;113;143m[48;2;0;122;134m▀[38;2;17;38;217m[48;2;0;30;224m▀[38;2;32;15;239m[48;2;0;14;244m▀[38;2;35;7;251m[48;2;15;55;180m▀[38;2;33;0;255m[48;2;36;54;195m▀[38;2;26;38;216m[48;2;26;40;217m▀[38;2;7;113;142m[48;2;0;111;140m▀[38;2;36;0;255m[48;2;33;60;175m▀[38;2;31;36;221m[48;2;32;30;219m▀[38;2;32;62;191m[48;2;32;1;253m▀[38;2;32;78;153m[48;2;32;18;235m▀[38;2;32;84;168m[48;2;32;51;199m▀[38;2;32;39;213m[48;2;33;59;182m▀[38;2;31;75;185m[48;2;36;82;167m▀[38;2;27;32;225m[48;2;69;41;224m▀[38;2;30;31;203m[48;2;47;32;243m▀[38;2;17;24;171m[48;2;87;58;238m▀[38;2;83;73;151m[48;2;69;47;213m▀[38;2;61;36;166m[48;2;104;113;199m▀[38;2;17;50;103m[48;2;52;26;224m▀[38;2;26;144;45m[48;2;25;86;95m▀[38;2;53;109;108m[48;2;28;80;94m▀[38;2;32;70;113m[48;2;9;59;94m▀[38;2;13;97;43m[48;2;19;136;59m▀[38;2;1;30;0m[48;2;0;58;63m▀[38;2;0;0;1m[48;2;1;17;3m▀[38;2;0;2;0m[48;2;0;1;1m▀[38;2;0;1;0m[48;2;0;2;1m▀[38;2;0;0;0m[48;2;0;8;0m▀[38;2;1;0;1m[48;2;8;16;8m▀[38;2;8;0;8m[48;2;37;6;37m▀[38;2;16;0;19m[48;2;45;8;44m▀[38;2;4;3;5m[48;2;26;0;25m▀[38;2;0;2;0m[48;2;12;0;12m▀[38;2;0;1;0m[48;2;7;0;7m▀[48;2;18;0;18m▀[48;2;0;1;0m▀▀[38;2;0;0;1m[48;2;0;27;0m▀[38;2;0;4;1m[48;2;0;35;0m▀[38;2;0;11;0m[48;2;0;10;0m▀[38;2;0;28;0m[48;2;0;4;1m▀[38;2;0;13;0m[48;2;0;0;0m▀[38;2;0;6;26m[48;2;0;0;7m▀[38;2;0;1;72m[48;2;0;0;49m▀[38;2;0;0;90m[48;2;0;0;92m▀[38;2;0;2;66m[48;2;0;1;69m▀[38;2;0;1;105m[48;2;0;0;88m▀[38;2;0;37;112m[48;2;0;36;97m▀[38;2;0;110;73m[48;2;0;110;71m▀[38;2;0;0;134m[48;2;1;0;135m▀[38;2;0;3;126m[48;2;1;3;125m▀[38;2;0;0;127m[48;2;0;0;127m▀[38;2;21;0;127m▀[38;2;39;0;130m[48;2;0;0;128m▀[38;2;44;0;117m[48;2;21;0;124m▀[38;2;61;0;188m[48;2;39;0;145m▀[38;2;36;3;254m[48;2;43;3;247m▀[38;2;58;0;254m[48;2;59;0;255m▀[38;2;36;110;144m[48;2;42;110;149m▀[38;2;56;36;217m[48;2;62;36;230m▀[38;2;38;0;253m[48;2;42;0;255m▀[38;2;60;7;252m[48;2;61;7;255m▀[38;2;55;61;161m[48;2;55;61;163m▀[38;2;117;117;101m[48;2;117;115;100m▀[38;2;25;23;25m[48;2;25;25;25m▀[38;2;2;34;2m[48;2;2;0;2m▀[38;2;1;80;0m[48;2;1;0;3m▀[38;2;0;72;0m[48;2;0;0;1m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀▀[38;2;9;9;9m[48;2;9;9;9m▀[38;2;39;39;39m[48;2;39;39;39m▀[38;2;22;22;24m[48;2;22;22;24m▀[38;2;169;169;152m[48;2;169;169;152m▀[38;2;152;153;255m[48;2;151;154;255m▀[38;2;22;21;255m[48;2;25;21;255m▀[38;2;0;36;219m[48;2;20;37;219m▀[38;2;0;114;142m[48;2;4;110;146m▀[38;2;0;6;248m[48;2;27;0;255m▀[38;2;9;2;254m[48;2;35;3;251m▀[38;2;23;20;223m[48;2;34;0;255m▀[38;2;36;28;222m[48;2;36;0;255m▀[38;2;23;26;225m[48;2;25;35;218m▀[38;2;39;149;141m[48;2;35;136;144m▀[38;2;45;31;218m[48;2;97;42;255m▀[38;2;28;19;230m[48;2;50;73;202m▀[38;2;32;0;255m[48;2;28;51;202m▀[48;2;30;3;249m▀[38;2;33;0;255m[48;2;30;0;255m▀[38;2;32;40;219m[48;2;31;0;255m▀[38;2;39;9;251m[48;2;29;11;242m▀[38;2;55;92;183m[48;2;36;13;243m▀[38;2;45;147;120m[48;2;56;100;180m▀[38;2;69;70;223m[48;2;19;66;175m▀[38;2;45;102;167m[48;2;25;71;180m▀[38;2;90;108;206m[48;2;74;108;189m▀[38;2;64;114;175m[48;2;41;125;137m▀[38;2;67;41;246m[48;2;52;70;205m▀[38;2;51;138;131m[48;2;115;140;187m▀[38;2;0;147;87m[48;2;39;110;162m▀[38;2;10;152;87m[48;2;23;166;105m▀[38;2;4;54;110m[48;2;8;82;151m▀[38;2;0;83;45m[48;2;0;35;160m▀[38;2;0;12;3m[48;2;0;36;77m▀[38;2;0;5;0m[48;2;0;22;15m▀[38;2;1;40;1m[48;2;0;29;1m▀[38;2;8;42;8m[48;2;1;11;2m▀[38;2;57;85;57m[48;2;1;0;1m▀[38;2;72;61;72m[48;2;0;0;0m▀[38;2;110;78;110m[48;2;33;40;33m▀[38;2;62;22;62m[48;2;133;139;133m▀[38;2;39;4;39m[48;2;43;17;43m▀[38;2;32;0;32m[48;2;33;2;33m▀[38;2;4;0;4m[48;2;31;2;31m▀[38;2;1;0;1m[48;2;1;2;1m▀[38;2;0;3;0m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;2;0m▀▀▀[38;2;0;0;1m▀[38;2;0;0;0m[48;2;0;1;1m▀[38;2;0;0;11m[48;2;0;0;10m▀[38;2;0;0;103m[48;2;0;0;74m▀[38;2;0;1;70m[48;2;0;1;51m▀[38;2;0;0;94m[48;2;0;0;104m▀[38;2;0;36;52m[48;2;0;36;56m▀[38;2;0;110;58m[48;2;0;110;47m▀[38;2;0;0;139m[48;2;0;0;137m▀[38;2;0;3;125m[48;2;0;3;126m▀[38;2;0;0;127m[48;2;0;0;126m▀[38;2;1;0;127m[48;2;0;0;129m▀[38;2;0;0;126m[48;2;0;0;132m▀[38;2;0;0;130m[48;2;1;0;123m▀[38;2;0;0;128m[48;2;0;0;89m▀[38;2;12;3;205m[48;2;0;3;106m▀[38;2;9;0;242m[48;2;0;0;88m▀[38;2;20;110;85m[48;2;0;110;0m▀[38;2;34;36;158m[48;2;0;36;0m▀[38;2;17;0;165m[48;2;0;0;16m▀[38;2;39;7;104m[48;2;3;7;0m▀[38;2;57;61;78m[48;2;62;61;55m▀[38;2;116;116;113m[48;2;115;116;116m▀[38;2;25;25;25m[48;2;25;23;25m▀[38;2;2;5;2m[48;2;2;33;2m▀[38;2;1;21;1m[48;2;1;122;1m▀[38;2;0;18;0m[48;2;0;27;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;1;0m▀[48;2;0;0;0m▀[48;2;0;1;0m▀[48;2;0;0;0m▀[38;2;9;9;9m[48;2;10;10;10m▀[38;2;38;39;38m[48;2;39;38;39m▀[38;2;22;22;24m[48;2;22;22;24m▀[38;2;169;169;152m[48;2;168;168;152m▀[38;2;149;153;255m[48;2;155;158;255m▀[38;2;24;19;255m[48;2;33;27;255m▀[38;2;31;37;219m[48;2;27;34;219m▀[38;2;6;111;145m[48;2;6;111;145m▀[38;2;38;0;255m[48;2;35;0;255m▀[38;2;31;3;253m[48;2;31;3;252m▀[38;2;30;6;248m[48;2;32;4;252m▀[38;2;43;47;214m[48;2;33;26;229m▀[38;2;63;79;217m[48;2;45;65;208m▀[38;2;1;100;145m[48;2;15;116;148m▀[38;2;68;30;254m[48;2;28;0;255m▀[38;2;70;49;245m[48;2;26;0;250m▀[38;2;42;54;211m[48;2;39;26;236m▀[38;2;40;18;247m[48;2;53;25;251m▀[38;2;42;12;226m[48;2;51;17;255m▀[38;2;36;6;244m[48;2;39;6;255m▀[38;2;32;21;234m[48;2;36;6;252m▀[38;2;34;19;236m[48;2;26;60;196m▀[38;2;34;30;224m[48;2;13;98;153m▀[38;2;47;54;217m[48;2;46;80;186m▀[38;2;38;5;254m[48;2;19;111;151m▀[38;2;36;20;241m[48;2;26;82;158m▀[38;2;62;52;232m[48;2;9;69;184m▀[38;2;25;13;230m[48;2;26;112;133m▀[38;2;40;3;201m[48;2;12;65;161m▀[38;2;61;79;206m[48;2;21;54;196m▀[38;2;0;56;164m[48;2;1;73;177m▀[38;2;0;140;100m[48;2;1;176;55m▀[38;2;0;77;185m[48;2;0;160;95m▀[38;2;0;19;182m[48;2;0;73;149m▀[38;2;0;74;48m[48;2;0;49;48m▀[38;2;0;11;0m[48;2;0;3;1m▀[38;2;0;0;1m[48;2;0;1;2m▀[38;2;0;1;0m[48;2;0;0;0m▀[38;2;3;3;3m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;61;85;61m[48;2;41;40;41m▀[38;2;34;56;34m[48;2;111;98;111m▀[38;2;34;0;34m[48;2;27;20;27m▀[38;2;28;0;28m[48;2;30;50;30m▀[38;2;1;0;1m[48;2;1;45;1m▀[48;2;1;49;1m▀[38;2;0;0;0m[48;2;0;49;0m▀▀[48;2;0;48;0m▀[48;2;0;51;0m▀[48;2;0;32;0m▀[48;2;0;0;0m▀[48;2;0;1;0m▀[38;2;0;1;5m▀[38;2;0;0;50m[48;2;0;0;0m▀[38;2;0;36;29m[48;2;0;36;0m▀[38;2;0;110;32m[48;2;0;110;46m▀[38;2;0;0;121m[48;2;0;0;78m▀[38;2;0;3;126m[48;2;0;3;103m▀[38;2;0;0;130m[48;2;0;0;121m▀[38;2;0;0;122m[48;2;0;0;100m▀[38;2;0;0;92m[48;2;0;0;62m▀[38;2;0;0;93m[48;2;0;0;87m▀[38;2;0;0;63m[48;2;0;0;80m▀[38;2;1;3;88m[48;2;0;3;87m▀[38;2;0;0;50m[48;2;0;0;52m▀[38;2;1;110;2m[48;2;0;110;42m▀[38;2;1;36;16m[48;2;0;36;22m▀[38;2;1;0;31m[48;2;1;1;29m▀[38;2;8;8;17m[48;2;7;7;14m▀[38;2;61;61;60m[48;2;61;62;59m▀[38;2;115;116;116m[48;2;116;116;116m▀[38;2;25;22;25m[48;2;24;22;24m▀[38;2;2;32;2m[48;2;2;29;2m▀[38;2;1;95;1m[48;2;1;91;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;25;0m▀[38;2;0;3;0m[48;2;0;26;0m▀[38;2;0;0;0m[48;2;0;21;0m▀[38;2;0;3;0m[48;2;0;27;0m▀[38;2;8;6;8m[48;2;0;20;0m▀[38;2;36;39;36m[48;2;10;37;10m▀[38;2;22;22;24m[48;2;25;22;27m▀[38;2;168;168;152m[48;2;169;170;151m▀[38;2;156;159;255m[48;2;146;150;255m▀[38;2;52;44;255m[48;2;40;33;255m▀[38;2;30;37;219m[48;2;42;47;219m▀[38;2;6;110;145m[48;2;7;110;145m▀[38;2;35;0;255m[48;2;39;0;255m▀[38;2;31;4;252m[48;2;32;3;251m▀[38;2;32;1;254m[48;2;32;0;253m▀[38;2;34;0;255m[48;2;36;0;255m▀[38;2;23;74;178m[48;2;30;47;212m▀[38;2;1;110;143m[48;2;5;115;112m▀[38;2;57;18;255m[48;2;51;7;252m▀[38;2;39;19;244m[48;2;38;3;255m▀[38;2;25;18;235m[48;2;38;1;255m▀[38;2;52;19;255m[48;2;32;0;254m▀[38;2;92;74;221m[48;2;40;30;221m▀[38;2;65;29;248m[48;2;75;48;243m▀[38;2;48;51;226m[48;2;28;46;209m▀[38;2;2;131;122m[48;2;5;99;150m▀[38;2;34;47;206m[48;2;40;0;255m▀[38;2;52;49;214m[48;2;33;23;238m▀[38;2;19;52;170m[48;2;63;45;235m▀[38;2;43;100;141m[48;2;60;47;237m▀[38;2;16;59;191m[48;2;30;34;217m▀[38;2;5;94;139m[48;2;32;61;195m▀[38;2;26;86;134m[48;2;27;15;218m▀[38;2;31;135;105m[48;2;75;105;170m▀[38;2;1;98;159m[48;2;14;28;244m▀[38;2;1;65;195m[48;2;0;46;210m▀[38;2;0;42;204m[48;2;0;45;208m▀[38;2;0;69;190m[48;2;0;0;255m▀[38;2;0;36;98m[48;2;0;25;69m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;1;3m[48;2;0;1;3m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;1;1m▀[48;2;3;3;3m▀[38;2;22;24;22m[48;2;0;0;0m▀[38;2;141;132;141m[48;2;101;93;101m▀[38;2;45;24;45m[48;2;69;27;69m▀[38;2;29;34;29m[48;2;27;1;27m▀[38;2;1;46;1m[48;2;2;25;2m▀[38;2;1;28;1m[48;2;1;0;1m▀[38;2;0;29;0m[48;2;0;0;0m▀▀[38;2;0;28;0m▀[38;2;0;62;0m[48;2;0;30;0m▀[38;2;0;117;0m[48;2;0;109;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;3;0m[48;2;0;3;0m▀[38;2;0;1;0m[48;2;0;1;0m▀[38;2;0;0;1m[48;2;0;0;0m▀[38;2;0;36;1m[48;2;0;36;0m▀[38;2;0;110;6m[48;2;0;110;0m▀[38;2;0;0;17m[48;2;0;0;0m▀[38;2;0;3;75m[48;2;0;3;9m▀[38;2;0;0;74m[48;2;0;0;45m▀[38;2;0;0;94m[48;2;0;0;66m▀[38;2;0;0;73m[48;2;0;0;79m▀[38;2;0;0;95m[48;2;0;0;117m▀[38;2;0;0;131m[48;2;0;0;121m▀[38;2;0;3;118m[48;2;0;3;105m▀[38;2;0;0;35m[48;2;0;4;67m▀[38;2;0;108;6m[48;2;0;136;26m▀[38;2;0;38;0m[48;2;0;67;28m▀[38;2;1;0;30m[48;2;1;19;65m▀[38;2;8;10;11m[48;2;2;33;30m▀[38;2;64;61;62m[48;2;35;58;31m▀[38;2;113;116;114m[48;2;83;115;84m▀[38;2;28;23;28m[48;2;9;26;9m▀[38;2;2;35;2m[48;2;2;56;2m▀[38;2;1;101;1m[48;2;0;96;0m▀[38;2;0;3;0m[48;2;0;28;0m▀[0m
|
||||
[38;2;0;56;0m[48;2;0;130;0m▀[38;2;1;51;0m[48;2;0;157;0m▀[38;2;2;43;0m[48;2;0;162;0m▀[38;2;0;57;0m[48;2;0;143;0m▀[38;2;0;45;0m[48;2;0;126;0m▀[38;2;12;38;12m[48;2;12;48;12m▀[38;2;25;23;27m[48;2;25;23;27m▀[38;2;168;169;151m[48;2;166;167;152m▀[38;2;152;153;255m[48;2;161;166;253m▀[38;2;16;11;255m[48;2;44;49;244m▀[38;2;35;63;218m[48;2;0;27;221m▀[38;2;9;119;146m[48;2;9;122;147m▀[38;2;13;0;252m[48;2;23;19;232m▀[38;2;31;4;255m[48;2;8;57;197m▀[38;2;31;15;255m[48;2;31;46;241m▀[38;2;28;17;235m[48;2;0;6;247m▀[38;2;10;69;189m[48;2;0;38;191m▀[38;2;2;113;140m[48;2;0;106;141m▀[38;2;13;24;228m[48;2;0;4;252m▀[38;2;33;32;230m[48;2;0;23;231m▀[38;2;41;27;254m[48;2;0;0;255m▀[38;2;23;0;255m[48;2;0;20;236m▀[38;2;13;0;255m[48;2;4;12;243m▀[38;2;49;12;254m[48;2;58;33;244m▀[38;2;43;75;201m[48;2;50;57;226m▀[38;2;9;112;119m[48;2;12;124;138m▀[38;2;36;6;244m[48;2;33;22;232m▀[38;2;29;7;248m[48;2;33;1;255m▀[38;2;43;16;251m[48;2;29;0;255m▀[38;2;32;22;231m[48;2;33;9;245m▀[38;2;58;30;249m[48;2;42;36;229m▀[38;2;75;56;246m[48;2;56;93;187m▀[38;2;64;53;237m[48;2;49;68;202m▀[38;2;80;85;220m[48;2;48;77;196m▀[38;2;10;96;141m[48;2;2;66;185m▀[38;2;6;58;176m[48;2;25;109;165m▀[38;2;3;76;168m[48;2;0;71;183m▀[38;2;1;16;251m[48;2;0;89;163m▀[38;2;0;35;127m[48;2;1;74;171m▀[38;2;0;0;10m[48;2;0;2;18m▀[38;2;0;1;3m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;0;1m▀[48;2;1;1;1m▀[38;2;1;1;1m[48;2;0;0;0m▀[38;2;11;13;11m[48;2;47;47;46m▀[38;2;116;106;116m[48;2;122;126;119m▀[38;2;49;8;49m[48;2;26;26;26m▀[38;2;27;3;27m[48;2;30;41;30m▀[38;2;2;21;2m[48;2;0;59;0m▀[38;2;1;0;1m[48;2;1;31;1m▀[38;2;0;3;0m[48;2;0;53;0m▀[38;2;0;0;0m[48;2;0;21;0m▀[48;2;0;2;0m▀[38;2;0;38;0m[48;2;0;32;0m▀[38;2;0;110;0m[48;2;0;108;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;3;0m[48;2;0;4;0m▀[38;2;0;1;0m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;36;0m[48;2;0;36;0m▀[38;2;0;110;0m[48;2;0;110;0m▀[38;2;0;0;1m[48;2;0;0;0m▀[38;2;0;3;0m[48;2;0;3;0m▀[38;2;0;0;0m[48;2;0;0;1m▀[48;2;0;0;0m▀[38;2;0;0;2m▀[38;2;0;0;10m▀[38;2;0;0;7m▀[38;2;0;2;13m[48;2;0;3;0m▀[38;2;0;6;6m[48;2;0;6;0m▀[38;2;0;147;1m[48;2;0;144;0m▀[38;2;0;67;20m[48;2;0;67;0m▀[38;2;1;30;30m[48;2;1;27;0m▀[38;2;0;29;12m[48;2;0;30;0m▀[38;2;25;59;24m[48;2;28;59;29m▀[38;2;82;115;82m[48;2;86;115;86m▀[38;2;0;26;0m[48;2;0;24;0m▀[38;2;2;59;2m[48;2;2;52;2m▀[38;2;0;106;0m[48;2;0;93;0m▀[38;2;0;27;0m[48;2;0;22;0m▀[0m
|
||||
[38;2;0;137;0m[48;2;0;133;0m▀[38;2;32;242;0m[48;2;49;225;0m▀[38;2;69;255;0m[48;2;103;244;0m▀[38;2;6;193;0m[48;2;10;181;0m▀[38;2;1;115;0m[48;2;1;116;0m▀[38;2;12;50;12m[48;2;12;49;12m▀[38;2;25;23;27m[48;2;25;23;27m▀[38;2;168;168;153m[48;2;168;170;151m▀[38;2;153;161;252m[48;2;152;151;255m▀[38;2;25;39;234m[48;2;22;25;252m▀[38;2;4;37;218m[48;2;3;65;191m▀[38;2;2;113;144m[48;2;0;101;151m▀[38;2;7;6;255m[48;2;26;24;255m▀[38;2;5;30;231m[48;2;4;7;248m▀[38;2;11;33;233m[48;2;0;29;217m▀[38;2;1;15;241m[48;2;1;24;232m▀[38;2;1;46;206m[48;2;0;64;192m▀[38;2;0;114;140m[48;2;0;110;146m▀[38;2;1;22;233m[48;2;0;11;244m▀[38;2;0;25;229m[48;2;7;12;250m▀[38;2;0;0;254m[48;2;33;33;255m▀[38;2;0;24;230m[48;2;23;38;239m▀[38;2;1;17;239m[48;2;9;15;249m▀[38;2;10;21;235m[48;2;32;22;255m▀[38;2;24;28;220m[48;2;10;32;220m▀[38;2;13;118;143m[48;2;8;113;148m▀[38;2;62;15;255m[48;2;23;16;251m▀[38;2;29;25;226m[48;2;3;31;226m▀[38;2;33;2;252m[48;2;22;35;231m▀[38;2;30;104;152m[48;2;1;124;130m▀[38;2;32;70;183m[48;2;10;51;205m▀[38;2;25;81;169m[48;2;1;28;228m▀[38;2;30;55;193m[48;2;21;22;245m▀[38;2;19;125;125m[48;2;6;40;223m▀[38;2;0;98;154m[48;2;11;135;128m▀[38;2;15;86;183m[48;2;20;50;212m▀[38;2;42;121;175m[48;2;62;55;231m▀[38;2;24;151;126m[48;2;56;21;255m▀[38;2;0;112;125m[48;2;22;25;246m▀[38;2;1;7;52m[48;2;1;26;110m▀[38;2;0;2;0m[48;2;1;1;0m▀[38;2;0;0;2m[48;2;0;1;3m▀[38;2;3;3;3m[48;2;0;0;1m▀[38;2;0;0;0m[48;2;1;1;0m▀[38;2;112;110;109m[48;2;15;13;29m▀[38;2;95;111;153m[48;2;42;63;95m▀[38;2;27;45;42m[48;2;31;14;34m▀[38;2;34;56;30m[48;2;35;0;36m▀[38;2;18;58;19m[48;2;31;0;31m▀[38;2;0;127;0m[48;2;3;107;3m▀[38;2;1;29;1m[48;2;0;38;0m▀[38;2;0;22;0m[48;2;0;0;0m▀[38;2;0;11;0m[48;2;0;2;0m▀[38;2;0;54;0m[48;2;0;46;0m▀[38;2;0;120;0m[48;2;0;128;0m▀[38;2;0;2;0m[48;2;0;8;0m▀[38;2;0;0;0m[48;2;0;23;0m▀[38;2;0;2;0m[48;2;0;0;0m▀[38;2;0;0;0m▀[38;2;0;36;0m[48;2;0;36;0m▀[38;2;0;110;0m[48;2;0;110;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;3;0m[48;2;0;3;0m▀[38;2;0;0;0m[48;2;0;0;0m▀▀▀[38;2;0;0;1m▀▀[38;2;0;3;1m[48;2;0;3;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;145;0m[48;2;0;145;0m▀[38;2;0;67;1m[48;2;0;67;0m▀[38;2;1;28;1m[48;2;0;28;0m▀[38;2;0;30;0m[48;2;0;31;0m▀[38;2;21;59;21m[48;2;17;57;17m▀[38;2;65;115;65m[48;2;53;122;53m▀[38;2;0;35;0m[48;2;0;63;0m▀[38;2;2;77;2m[48;2;1;59;1m▀[38;2;0;118;0m[48;2;0;84;0m▀[38;2;0;50;0m[48;2;0;86;0m▀[0m
|
||||
[38;2;0;132;0m[48;2;0;88;0m▀[38;2;0;142;0m[48;2;1;66;0m▀[38;2;0;141;0m[48;2;1;82;0m▀[38;2;0;138;0m[48;2;0;67;0m▀[38;2;0;130;0m[48;2;1;86;1m▀[38;2;11;49;11m[48;2;15;38;15m▀[38;2;25;23;27m[48;2;25;24;26m▀[38;2;168;170;151m[48;2;168;167;154m▀[38;2;152;150;255m[48;2;152;170;237m▀[38;2;23;21;255m[48;2;23;30;241m▀[38;2;3;29;226m[48;2;3;93;162m▀[38;2;1;123;133m[48;2;1;133;124m▀[38;2;0;0;255m[48;2;1;25;228m▀[38;2;18;20;227m[48;2;25;34;247m▀[38;2;24;26;244m[48;2;26;26;255m▀[38;2;0;0;255m[48;2;21;20;255m▀[38;2;1;34;222m[48;2;1;35;218m▀[38;2;0;108;146m[48;2;2;108;149m▀[38;2;1;4;252m[48;2;1;1;255m▀[38;2;1;24;228m[48;2;0;6;249m▀[38;2;31;36;250m[48;2;2;3;254m▀[38;2;12;36;231m[48;2;0;4;251m▀[38;2;0;0;255m[48;2;0;23;232m▀[48;2;1;41;214m▀[38;2;0;38;216m[48;2;0;89;166m▀[38;2;7;142;121m[48;2;0;100;151m▀[38;2;16;27;244m[48;2;0;18;234m▀[38;2;3;21;238m[48;2;3;12;244m▀[38;2;19;22;252m[48;2;3;0;255m▀[38;2;0;118;133m[48;2;24;145;134m▀[38;2;0;67;190m[48;2;0;71;179m▀[38;2;0;0;255m[48;2;2;44;201m▀[38;2;17;53;222m[48;2;0;22;226m▀[38;2;16;26;247m[48;2;14;27;234m▀[38;2;39;67;221m[48;2;49;39;245m▀[38;2;34;0;255m[48;2;117;95;244m▀[38;2;53;32;255m[48;2;143;154;160m▀[38;2;151;136;227m[48;2;49;78;37m▀[38;2;68;55;180m[48;2;7;11;0m▀[38;2;0;0;66m[48;2;1;2;0m▀[38;2;2;2;2m[48;2;0;0;0m▀[38;2;0;0;2m▀[38;2;0;0;0m▀[38;2;2;2;3m▀[38;2;0;0;0m[48;2;3;3;3m▀[38;2;82;82;100m[48;2;1;1;14m▀[38;2;74;73;77m[48;2;75;83;91m▀[38;2;22;0;21m[48;2;76;111;72m▀[38;2;38;2;39m[48;2;4;3;3m▀[38;2;33;111;33m[48;2;39;112;39m▀[38;2;18;36;18m[48;2;30;37;30m▀[38;2;0;1;0m[48;2;3;0;3m▀[38;2;1;0;1m[48;2;0;0;0m▀[38;2;0;34;0m[48;2;0;36;0m▀[38;2;0;105;0m[48;2;0;111;0m▀[38;2;0;2;0m[48;2;0;0;0m▀[38;2;0;14;0m▀[38;2;0;27;0m[48;2;0;4;0m▀[38;2;0;7;0m[48;2;0;1;0m▀[38;2;0;34;0m[48;2;0;36;0m▀[38;2;0;110;0m[48;2;0;110;0m▀[38;2;0;0;0m[48;2;0;1;0m▀[38;2;0;3;0m[48;2;0;4;0m▀[38;2;0;0;0m[48;2;0;0;0m▀▀[48;2;0;1;0m▀[48;2;0;0;0m▀▀[38;2;0;3;0m[48;2;0;3;0m▀[38;2;0;6;0m[48;2;0;6;0m▀[38;2;0;145;0m[48;2;0;145;0m▀[38;2;0;67;0m[48;2;0;67;0m▀[38;2;1;28;1m[48;2;0;28;0m▀[38;2;0;31;0m[48;2;0;31;0m▀[38;2;18;58;18m[48;2;18;59;18m▀[38;2;55;118;55m[48;2;55;115;55m▀[38;2;0;89;0m[48;2;0;109;0m▀[38;2;2;109;2m[48;2;2;133;2m▀[38;2;0;105;0m[48;2;2;120;2m▀[38;2;0;98;0m[48;2;1;123;1m▀[0m
|
||||
[38;2;0;3;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;2;0m▀[38;2;0;3;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;2;0m▀[38;2;10;12;10m[48;2;9;8;9m▀[38;2;40;36;40m[48;2;38;39;38m▀[38;2;22;22;23m[48;2;22;21;24m▀[38;2;169;167;153m[48;2;169;170;151m▀[38;2;153;165;245m[48;2;148;145;255m▀[38;2;23;21;248m[48;2;22;21;249m▀[38;2;3;63;192m[48;2;3;58;198m▀[38;2;1;114;141m[48;2;1;104;151m▀[38;2;0;45;210m[48;2;0;3;252m▀[38;2;0;5;244m[48;2;1;7;249m▀[38;2;0;1;253m[48;2;0;0;254m▀[38;2;12;11;255m[48;2;0;0;255m▀[38;2;0;33;221m[48;2;0;27;222m▀[38;2;0;122;127m[48;2;48;183;120m▀[38;2;0;2;252m[48;2;16;14;250m▀[38;2;0;2;253m[48;2;0;0;255m▀[38;2;0;1;252m[48;2;1;5;253m▀[38;2;0;3;252m[48;2;1;25;230m▀[38;2;0;9;246m[48;2;0;7;248m▀[38;2;0;18;238m[48;2;1;18;237m▀[38;2;0;66;189m[48;2;0;15;234m▀[38;2;12;142;123m[48;2;21;194;82m▀[38;2;14;59;209m[48;2;6;69;191m▀[38;2;27;30;247m[48;2;3;6;250m▀[38;2;36;30;255m[48;2;30;31;251m▀[38;2;40;147;145m[48;2;3;110;143m▀[38;2;20;52;221m[48;2;19;49;218m▀[38;2;0;8;223m[48;2;66;60;255m▀[38;2;8;0;244m[48;2;23;66;203m▀[38;2;31;35;208m[48;2;58;121;168m▀[38;2;80;49;240m[48;2;124;93;157m▀[38;2;94;77;120m[48;2;20;22;9m▀[38;2;0;9;0m[48;2;3;0;6m▀[38;2;0;0;0m[48;2;4;4;3m▀[38;2;0;0;1m[48;2;1;1;1m▀[38;2;0;0;2m▀[38;2;0;0;0m▀▀▀▀[38;2;0;0;1m▀[38;2;1;1;0m[48;2;2;2;3m▀[38;2;9;7;32m[48;2;1;2;0m▀[38;2;131;150;185m[48;2;2;23;23m▀[38;2;92;90;95m[48;2;112;101;194m▀[38;2;24;93;21m[48;2;115;222;115m▀[38;2;37;35;37m[48;2;9;40;7m▀[38;2;34;0;34m[48;2;33;2;33m▀[38;2;19;0;19m[48;2;36;1;36m▀[38;2;4;36;4m[48;2;29;37;29m▀[38;2;1;109;1m[48;2;0;113;0m▀[38;2;0;0;0m[48;2;1;0;1m▀[38;2;0;3;0m[48;2;0;3;0m▀[38;2;0;0;0m[48;2;0;1;0m▀[48;2;0;0;0m▀[38;2;0;36;0m[48;2;0;36;0m▀[38;2;0;109;0m[48;2;0;110;0m▀[38;2;0;5;0m[48;2;0;0;0m▀[38;2;0;56;0m[48;2;0;4;0m▀[38;2;0;9;0m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;9;1m▀[48;2;0;31;1m▀[48;2;0;14;1m▀[48;2;0;2;2m▀[38;2;0;2;0m[48;2;0;3;2m▀[38;2;0;6;0m[48;2;0;6;1m▀[38;2;0;145;0m[48;2;0;145;0m▀[38;2;0;67;0m[48;2;0;67;0m▀[38;2;0;28;0m[48;2;0;28;1m▀[38;2;0;31;0m[48;2;0;31;0m▀[38;2;18;58;18m[48;2;18;58;18m▀[38;2;55;117;55m[48;2;56;117;56m▀[38;2;0;100;0m[48;2;0;99;0m▀[38;2;1;159;1m[48;2;12;194;12m▀[38;2;0;204;0m[48;2;206;72;206m▀[38;2;0;193;0m[48;2;115;154;115m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀[38;2;0;1;0m▀[38;2;0;0;0m[48;2;0;1;1m▀[38;2;9;10;9m[48;2;9;10;10m▀[38;2;39;38;39m[48;2;38;38;38m▀[38;2;22;22;24m[48;2;22;22;24m▀[38;2;166;166;152m[48;2;168;168;152m▀[38;2;173;174;255m[48;2;162;163;255m▀[38;2;25;22;254m[48;2;24;21;255m▀[38;2;2;38;215m[48;2;3;35;221m▀[38;2;1;115;141m[48;2;1;114;141m▀[38;2;0;40;215m[48;2;1;14;241m▀[38;2;0;10;245m[48;2;0;3;250m▀[38;2;1;1;255m[48;2;39;40;250m▀[38;2;1;4;252m[48;2;13;37;230m▀[38;2;0;33;220m[48;2;0;40;213m▀[38;2;16;141;129m[48;2;0;113;138m▀[38;2;5;6;252m[48;2;0;1;253m▀[38;2;0;9;239m[48;2;0;5;247m▀[38;2;0;28;199m[48;2;7;20;238m▀[38;2;0;21;233m[48;2;16;20;252m▀[38;2;0;0;255m[48;2;3;4;254m▀[38;2;0;4;245m[48;2;0;2;253m▀[38;2;0;64;164m[48;2;0;39;218m▀[38;2;0;106;150m[48;2;1;111;145m▀[38;2;0;0;253m[48;2;1;0;252m▀[38;2;23;64;193m[48;2;12;51;203m▀[38;2;17;83;187m[48;2;13;81;183m▀[38;2;22;143;131m[48;2;30;144;139m▀[38;2;7;36;222m[48;2;0;56;195m▀[38;2;73;101;217m[48;2;4;15;235m▀[38;2;62;64;233m[48;2;38;3;217m▀[38;2;122;119;158m[48;2;33;4;45m▀[38;2;16;6;14m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;2;1;2m▀[38;2;3;1;1m[48;2;0;2;0m▀[38;2;0;0;0m[48;2;13;26;28m▀[48;2;16;28;26m▀[48;2;15;28;30m▀[48;2;16;28;26m▀[48;2;15;28;30m▀[48;2;16;28;26m▀[48;2;15;28;30m▀[48;2;16;28;25m▀[48;2;15;28;27m▀[48;2;16;28;25m▀[48;2;14;28;26m▀[38;2;1;0;4m[48;2;0;4;0m▀[38;2;122;132;127m[48;2;0;0;3m▀[38;2;53;79;65m[48;2;62;66;84m▀[38;2;7;29;7m[48;2;11;40;10m▀[38;2;39;0;40m[48;2;16;19;15m▀[38;2;30;31;30m[48;2;36;27;36m▀[38;2;19;92;19m[48;2;30;81;30m▀[38;2;1;0;1m[48;2;1;0;1m▀[38;2;0;3;0m[48;2;1;2;1m▀[38;2;0;1;0m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;36;0m[48;2;0;36;0m▀[38;2;0;110;0m[48;2;0;110;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;3;0m[48;2;0;3;0m▀[38;2;0;0;0m[48;2;0;0;3m▀[38;2;0;1;0m[48;2;0;1;11m▀[38;2;0;8;0m[48;2;0;9;5m▀[38;2;0;14;0m[48;2;0;32;27m▀[38;2;0;0;0m[48;2;0;15;49m▀[38;2;0;3;0m[48;2;0;4;32m▀[38;2;0;6;0m[48;2;0;6;3m▀[38;2;0;145;0m[48;2;0;142;0m▀[38;2;0;67;0m[48;2;0;68;2m▀[38;2;0;28;1m[48;2;1;28;2m▀[38;2;0;31;0m[48;2;0;31;1m▀[38;2;18;58;18m[48;2;18;58;18m▀[38;2;56;117;56m[48;2;56;116;56m▀[38;2;0;101;0m[48;2;0;107;0m▀[38;2;9;167;9m[48;2;0;132;0m▀[38;2;139;85;139m[48;2;0;145;0m▀[38;2;78;137;78m[48;2;0;135;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀[48;2;0;6;6m▀[38;2;10;7;7m[48;2;8;24;24m▀[38;2;39;40;40m[48;2;36;30;30m▀[38;2;22;21;24m[48;2;22;23;25m▀[38;2;166;166;152m[48;2;168;168;152m▀[38;2;176;177;255m[48;2;154;155;255m▀[38;2;25;21;255m[48;2;26;22;253m▀[38;2;0;33;219m[48;2;30;63;216m▀[38;2;1;111;146m[48;2;1;105;144m▀[38;2;0;0;255m[48;2;1;0;255m▀[38;2;0;2;250m[48;2;0;2;255m▀[38;2;19;47;225m[48;2;0;0;255m▀[38;2;6;10;247m[48;2;0;4;255m▀[38;2;0;34;219m[48;2;0;55;204m▀[38;2;1;133;121m[48;2;0;101;160m▀[38;2;1;7;248m[48;2;0;0;255m▀[38;2;7;10;250m[48;2;4;0;255m▀[38;2;39;38;255m[48;2;9;0;255m▀[38;2;28;29;252m[48;2;0;0;255m▀[38;2;6;9;251m[48;2;0;48;209m▀[38;2;0;0;255m[48;2;0;10;248m▀[38;2;0;37;216m[48;2;0;25;234m▀[38;2;0;110;143m[48;2;0;108;152m▀[38;2;0;2;252m[48;2;0;0;255m▀[38;2;0;11;242m▀[38;2;0;21;233m▀[38;2;3;105;150m[48;2;0;112;151m▀[38;2;0;86;163m[48;2;0;37;239m▀[38;2;10;34;229m[48;2;10;22;177m▀[38;2;25;0;91m[48;2;31;1;32m▀[38;2;0;0;0m[48;2;1;1;3m▀[38;2;4;1;4m[48;2;2;0;0m▀[38;2;2;0;6m[48;2;7;0;10m▀[38;2;120;3;30m[48;2;129;0;35m▀[38;2;244;45;76m[48;2;192;0;24m▀[38;2;240;49;71m[48;2;180;0;28m▀[38;2;248;48;80m[48;2;185;0;24m▀[38;2;242;49;71m[48;2;183;0;28m▀[38;2;247;49;80m[48;2;189;0;23m▀[38;2;242;49;72m[48;2;181;0;24m▀[38;2;248;49;82m[48;2;185;0;24m▀[38;2;242;49;65m[48;2;182;0;29m▀[38;2;247;48;55m[48;2;185;0;26m▀[38;2;241;49;65m[48;2;178;0;28m▀[38;2;237;45;52m[48;2;193;0;28m▀[38;2;44;4;21m[48;2;92;0;33m▀[38;2;6;7;5m[48;2;0;0;0m▀[38;2;18;15;13m[48;2;10;7;6m▀[38;2;27;37;31m[48;2;25;32;50m▀[38;2;1;31;4m[48;2;21;23;140m▀[38;2;38;28;38m[48;2;36;27;32m▀[38;2;27;83;28m[48;2;27;86;26m▀[38;2;1;0;1m[48;2;1;0;1m▀[38;2;1;3;1m▀[38;2;0;1;0m[48;2;0;0;0m▀▀[38;2;0;36;0m[48;2;0;35;0m▀[38;2;0;110;0m[48;2;0;111;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;4;2m[48;2;0;0;1m▀[38;2;0;1;14m▀[38;2;0;10;107m[48;2;0;0;16m▀[38;2;0;43;206m[48;2;0;4;105m▀[38;2;0;65;208m[48;2;0;28;216m▀[38;2;0;42;201m[48;2;0;40;204m▀[38;2;0;0;224m[48;2;0;61;193m▀[38;2;0;9;153m[48;2;0;13;254m▀[38;2;0;154;35m[48;2;0;196;62m▀[38;2;0;63;0m[48;2;0;76;30m▀[38;2;0;28;0m[48;2;1;28;42m▀[38;2;0;31;0m[48;2;0;29;11m▀[38;2;17;58;18m[48;2;23;61;18m▀[38;2;52;116;52m[48;2;72;112;73m▀[38;2;0;98;0m[48;2;0;30;0m▀[38;2;2;126;2m[48;2;2;42;2m▀[38;2;4;113;4m[48;2;0;33;0m▀[38;2;2;119;2m[48;2;0;39;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀[38;2;0;8;8m[48;2;0;9;9m▀[38;2;0;48;48m[48;2;0;38;38m▀[38;2;10;64;64m[48;2;12;148;148m▀[38;2;25;17;19m[48;2;25;49;52m▀[38;2;168;172;155m[48;2;166;155;137m▀[38;2;151;152;255m[48;2;151;156;255m▀[38;2;23;21;255m[48;2;22;21;221m▀[38;2;7;41;232m[48;2;1;23;163m▀[38;2;0;121;147m[48;2;9;100;108m▀[38;2;0;11;247m[48;2;27;60;175m▀[38;2;0;9;195m[48;2;0;36;2m▀[38;2;1;29;179m[48;2;1;32;0m▀[38;2;0;44;165m[48;2;0;59;0m▀[38;2;0;66;168m[48;2;0;85;0m▀[38;2;0;115;108m[48;2;0;78;0m▀[38;2;0;50;184m[48;2;0;87;0m▀[38;2;0;62;160m▀[38;2;0;45;189m[48;2;0;79;0m▀[38;2;1;36;189m[48;2;0;82;0m▀[38;2;0;55;172m▀[38;2;0;54;144m[48;2;0;81;0m▀[38;2;0;71;169m[48;2;0;74;0m▀[38;2;0;119;106m[48;2;0;66;0m▀[38;2;0;45;189m[48;2;0;85;0m▀[38;2;0;39;184m[48;2;0;82;0m▀[38;2;0;45;188m[48;2;0;80;0m▀[38;2;0;91;104m[48;2;0;24;0m▀[38;2;0;47;176m[48;2;0;28;0m▀[38;2;3;1;120m[48;2;0;32;5m▀[38;2;10;1;15m[48;2;0;1;2m▀[38;2;0;0;3m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;13;0;10m[48;2;8;0;3m▀[38;2;66;0;38m[48;2;26;0;9m▀[38;2;55;2;27m[48;2;14;0;0m▀[38;2;63;2;16m[48;2;25;0;0m▀[38;2;57;2;28m[48;2;15;0;0m▀[38;2;57;2;16m[48;2;21;0;0m▀[38;2;34;2;34m[48;2;2;0;2m▀[38;2;66;2;37m[48;2;27;0;9m▀[38;2;55;2;28m[48;2;14;0;0m▀[38;2;64;2;16m[48;2;25;0;0m▀[38;2;55;2;27m[48;2;14;0;0m▀[38;2;64;2;17m[48;2;32;0;6m▀[38;2;64;2;32m[48;2;50;0;24m▀[38;2;53;0;10m[48;2;48;0;0m▀[38;2;0;1;1m[48;2;1;3;3m▀[38;2;10;10;8m[48;2;6;6;6m▀[38;2;64;65;74m[48;2;151;148;149m▀[38;2;41;62;204m[48;2;58;72;61m▀[38;2;30;36;113m[48;2;0;24;27m▀[38;2;32;72;33m[48;2;11;0;13m▀[38;2;1;9;2m[48;2;0;46;0m▀[38;2;1;25;1m[48;2;0;86;0m▀[38;2;0;11;0m[48;2;0;72;0m▀[38;2;0;24;0m[48;2;0;94;0m▀[38;2;0;37;0m[48;2;0;70;0m▀[38;2;0;106;0m[48;2;0;89;0m▀[38;2;0;11;0m[48;2;0;70;0m▀[38;2;0;27;0m[48;2;0;90;0m▀[38;2;0;11;0m[48;2;0;72;0m▀[38;2;0;24;0m[48;2;0;95;1m▀[38;2;0;15;0m[48;2;0;70;4m▀[38;2;0;42;87m[48;2;0;92;13m▀[38;2;0;30;224m[48;2;0;40;213m▀[38;2;0;47;205m[48;2;0;39;232m▀[38;2;0;52;198m[48;2;0;41;226m▀[38;2;0;155;98m[48;2;0;148;108m▀[38;2;0;90;148m[48;2;0;91;168m▀[38;2;1;73;142m[48;2;1;50;204m▀[38;2;0;36;102m[48;2;0;21;189m▀[38;2;29;50;62m[48;2;18;94;132m▀[38;2;90;118;84m[48;2;56;98;57m▀[38;2;0;28;0m[48;2;0;29;0m▀[38;2;2;32;2m[48;2;2;34;2m▀[38;2;0;33;0m[48;2;0;33;0m▀[38;2;0;28;0m[48;2;0;31;0m▀[0m
|
||||
[38;2;0;0;0m[48;2;0;0;0m▀▀▀[38;2;0;11;11m[48;2;0;3;3m▀[38;2;0;34;34m[48;2;0;20;20m▀[38;2;12;47;47m[48;2;12;30;30m▀[38;2;24;147;151m[48;2;31;36;40m▀[38;2;176;206;193m[48;2;113;241;222m▀[38;2;157;145;255m[48;2;125;136;254m▀[38;2;22;24;120m[48;2;24;22;126m▀[38;2;3;1;0m[48;2;2;3;2m▀[38;2;2;1;0m[48;2;1;0;5m▀[38;2;3;18;0m[48;2;0;10;2m▀[38;2;0;28;1m[48;2;0;60;0m▀[38;2;0;56;2m[48;2;0;43;0m▀[38;2;0;61;2m[48;2;0;36;0m▀[38;2;0;25;2m[48;2;0;59;0m▀[38;2;0;15;1m[48;2;0;2;0m▀[38;2;0;7;2m▀[38;2;0;18;3m[48;2;0;65;0m▀[38;2;0;45;2m[48;2;0;78;0m▀[38;2;0;30;2m[48;2;0;33;0m▀[38;2;0;23;2m[48;2;0;34;0m▀[38;2;0;15;1m[48;2;0;27;0m▀[38;2;0;82;2m[48;2;0;57;0m▀[38;2;0;103;1m[48;2;0;54;0m▀[38;2;0;11;2m[48;2;0;81;0m▀[38;2;0;25;2m[48;2;0;50;0m▀[38;2;0;23;2m[48;2;0;9;0m▀[38;2;0;71;2m[48;2;0;77;0m▀[38;2;0;64;2m▀[38;2;0;25;25m[48;2;0;0;4m▀[38;2;0;2;8m[48;2;0;2;1m▀[38;2;0;1;0m[48;2;0;0;0m▀[38;2;0;0;0m▀[38;2;10;0;0m[48;2;9;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;4;0;1m[48;2;6;0;0m▀[38;2;27;0;0m[48;2;26;0;0m▀[38;2;4;0;1m[48;2;6;0;0m▀[38;2;28;0;1m[48;2;26;0;0m▀[38;2;7;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;4;0;1m[48;2;6;0;0m▀[38;2;27;0;0m[48;2;26;0;0m▀[38;2;4;0;1m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;1;0;0m[48;2;7;0;1m▀[38;2;28;0;1m[48;2;29;0;0m▀[38;2;2;3;3m[48;2;2;2;2m▀[38;2;5;5;5m[48;2;0;0;0m▀[38;2;150;150;151m[48;2;83;83;83m▀[38;2;65;62;64m[48;2;37;36;37m▀[38;2;0;0;0m[48;2;0;8;1m▀[38;2;0;30;0m[48;2;1;38;1m▀[38;2;0;25;0m[48;2;0;39;0m▀[38;2;0;6;0m[48;2;0;20;0m▀[38;2;0;21;0m[48;2;0;3;0m▀[38;2;0;9;0m[48;2;0;0;0m▀[38;2;0;23;0m▀[38;2;0;13;0m▀[38;2;0;32;0m[48;2;0;41;0m▀[38;2;0;27;0m[48;2;0;83;0m▀[38;2;0;22;0m[48;2;0;36;0m▀[38;2;0;7;0m[48;2;0;14;0m▀[38;2;0;23;0m[48;2;0;0;0m▀[38;2;0;4;6m[48;2;0;32;0m▀[38;2;0;6;60m[48;2;0;124;0m▀[38;2;0;15;58m[48;2;0;9;0m▀[38;2;0;21;92m[48;2;0;4;12m▀[38;2;0;145;93m[48;2;0;155;85m▀[38;2;0;87;176m[48;2;0;106;122m▀[38;2;0;30;199m[48;2;0;135;201m▀[38;2;0;144;219m[48;2;0;146;101m▀[38;2;0;154;130m[48;2;0;26;0m▀[38;2;0;31;3m[48;2;0;33;4m▀[38;2;0;33;2m[48;2;0;35;0m▀[38;2;0;33;0m[48;2;0;30;0m▀[38;2;0;32;0m[48;2;0;36;0m▀[38;2;0;31;0m[48;2;0;28;0m▀[0m
|
||||
[38;2;0;1;0m[48;2;0;0;0m▀[38;2;0;0;0m▀[38;2;0;1;0m▀[38;2;0;0;0m▀[38;2;0;7;6m▀[38;2;3;38;37m[48;2;0;0;2m▀[38;2;15;27;27m[48;2;0;17;21m▀[38;2;47;102;88m[48;2;4;18;18m▀[38;2;30;197;255m[48;2;23;132;162m▀[38;2;23;27;129m[48;2;4;95;136m▀[38;2;2;8;3m[48;2;0;0;0m▀[38;2;3;32;7m[48;2;0;48;0m▀[38;2;2;79;2m[48;2;0;21;0m▀[38;2;3;56;3m[48;2;0;9;0m▀[38;2;1;33;2m[48;2;0;0;0m▀[38;2;2;46;2m▀[38;2;2;159;2m▀[38;2;2;18;2m▀[38;2;3;52;3m[48;2;0;28;0m▀[38;2;3;58;3m[48;2;0;14;0m▀[38;2;2;27;2m[48;2;0;18;0m▀[38;2;2;2;2m[48;2;0;0;0m▀[38;2;2;13;2m▀[38;2;2;7;2m▀[38;2;3;0;3m▀[38;2;3;13;3m[48;2;0;60;0m▀[38;2;2;122;2m[48;2;0;73;0m▀[38;2;3;41;3m[48;2;0;6;0m▀[38;2;2;2;2m[48;2;0;0;0m▀[38;2;2;0;2m▀[38;2;0;0;0m▀[48;2;1;1;1m▀[48;2;0;0;0m▀▀▀[38;2;9;0;0m[48;2;9;0;0m▀[38;2;25;0;0m[48;2;25;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;5;0;0m[48;2;5;0;0m▀[38;2;28;0;0m[48;2;28;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;0;0m[48;2;1;0;0m▀[38;2;0;0;0m[48;2;1;1;1m▀[48;2;0;0;0m▀[38;2;1;13;1m▀[38;2;2;39;2m[48;2;0;8;0m▀[38;2;3;87;3m[48;2;0;18;0m▀[38;2;2;57;2m[48;2;0;102;0m▀[38;2;3;27;3m[48;2;0;47;0m▀[38;2;2;10;2m[48;2;0;2;0m▀[38;2;3;36;3m[48;2;0;1;0m▀[38;2;3;82;3m[48;2;0;132;0m▀[38;2;3;40;3m[48;2;0;17;0m▀[38;2;4;24;4m[48;2;0;0;0m▀[38;2;4;102;4m[48;2;0;22;0m▀[38;2;4;61;4m[48;2;0;36;0m▀[38;2;4;7;4m[48;2;0;8;0m▀[38;2;4;26;4m[48;2;0;0;0m▀[38;2;4;82;8m▀[38;2;4;13;7m▀[38;2;2;9;36m[48;2;0;0;6m▀[38;2;0;133;110m[48;2;0;172;195m▀[38;2;0;197;170m[48;2;0;145;136m▀[38;2;0;158;139m[48;2;0;26;36m▀[38;2;0;26;27m[48;2;0;30;29m▀[38;2;0;38;30m[48;2;0;9;13m▀[38;2;0;28;28m[48;2;0;1;0m▀[38;2;0;10;0m[48;2;0;0;0m▀[38;2;0;0;1m[48;2;0;2;0m▀[38;2;0;10;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;3;0m▀[0m
|
||||
[38;2;0;19;0m[48;2;0;41;0m▀[38;2;0;7;0m[48;2;0;30;0m▀[38;2;0;19;0m[48;2;0;26;0m▀[38;2;0;8;0m[48;2;0;25;0m▀[38;2;0;19;0m[48;2;0;28;0m▀[38;2;0;8;0m[48;2;0;25;0m▀[38;2;1;15;0m[48;2;0;35;1m▀[38;2;1;12;12m[48;2;1;32;5m▀[38;2;4;31;33m[48;2;0;13;16m▀[38;2;69;146;143m[48;2;26;44;44m▀[38;2;90;196;189m[48;2;56;191;192m▀[38;2;169;189;161m[48;2;97;228;225m▀[38;2;182;214;179m[48;2;128;154;143m▀[38;2;173;205;179m[48;2;113;149;152m▀[38;2;186;203;203m[48;2;130;159;162m▀[38;2;205;207;206m[48;2;149;147;148m▀[38;2;204;206;205m[48;2;157;158;158m▀[38;2;206;210;206m[48;2;148;147;148m▀[38;2;196;212;196m[48;2;159;156;159m▀[38;2;180;207;180m[48;2;150;148;150m▀[38;2;205;215;205m[48;2;158;156;158m▀[38;2;206;206;206m[48;2;148;148;148m▀[38;2;205;205;205m[48;2;158;158;158m▀[38;2;206;207;206m[48;2;148;148;148m▀[38;2;196;204;196m[48;2;159;158;159m▀[38;2;182;217;182m[48;2;150;145;150m▀[38;2;199;212;199m[48;2;158;156;158m▀[38;2;179;205;179m[48;2;150;149;150m▀[38;2;202;202;202m[48;2;153;153;153m▀[38;2;201;200;201m[48;2;84;84;84m▀[38;2;126;126;126m[48;2;38;38;38m▀[38;2;4;4;4m[48;2;0;0;0m▀[38;2;2;2;2m[48;2;1;1;1m▀[38;2;0;0;0m[48;2;0;0;0m▀▀[38;2;9;0;0m[48;2;9;0;0m▀[38;2;25;0;0m[48;2;25;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;5;0;0m[48;2;5;0;0m▀[38;2;28;0;0m[48;2;28;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;1;0;0m[48;2;1;0;0m▀[38;2;3;3;3m[48;2;2;2;2m▀[38;2;63;63;63m[48;2;38;38;38m▀[38;2;62;61;62m[48;2;141;141;141m▀[38;2;51;47;51m[48;2;131;130;131m▀[38;2;79;83;79m[48;2;139;143;139m▀[38;2;60;137;60m[48;2;134;143;134m▀[38;2;75;143;75m[48;2;116;136;116m▀[38;2;60;92;60m[48;2;143;153;143m▀[38;2;83;85;83m[48;2;144;145;144m▀[38;2;82;76;82m[48;2;155;156;155m▀[38;2;83;80;83m[48;2;145;146;145m▀[38;2;112;122;112m[48;2;159;159;159m▀[38;2;145;169;145m[48;2;153;151;153m▀[38;2;142;152;142m[48;2;163;162;163m▀[38;2;145;170;145m[48;2;153;151;153m▀[38;2;142;144;143m[48;2;155;165;164m▀[38;2;134;148;145m[48;2;116;151;152m▀[38;2;127;128;128m[48;2;133;245;245m▀[38;2;60;147;145m[48;2;26;158;159m▀[38;2;0;147;153m[48;2;0;25;26m▀[38;2;2;26;25m[48;2;1;34;30m▀[38;2;0;35;10m[48;2;0;32;0m▀[38;2;0;28;0m[48;2;0;41;1m▀[38;2;0;19;0m[48;2;0;42;0m▀[38;2;0;31;0m[48;2;0;38;0m▀[38;2;0;21;0m[48;2;0;42;0m▀[38;2;0;31;0m[48;2;0;34;0m▀[38;2;0;23;0m[48;2;0;39;0m▀[38;2;0;33;0m[48;2;0;30;0m▀[0m
|
||||
[38;2;0;34;0m[48;2;0;47;0m▀[38;2;0;56;0m[48;2;0;165;0m▀[38;2;0;88;0m[48;2;0;167;0m▀[38;2;0;92;0m[48;2;0;166;0m▀[38;2;0;81;0m[48;2;0;160;0m▀[38;2;0;94;0m[48;2;0;195;0m▀[38;2;0;42;0m[48;2;0;88;0m▀[38;2;0;27;0m[48;2;0;23;0m▀[38;2;0;0;0m[48;2;0;2;1m▀[38;2;0;6;6m[48;2;1;5;5m▀[38;2;0;29;29m[48;2;2;19;18m▀[38;2;0;132;134m[48;2;3;27;21m▀[38;2;0;60;66m[48;2;4;39;16m▀[38;2;0;11;4m[48;2;0;36;2m▀[38;2;0;14;0m[48;2;1;36;1m▀[38;2;14;13;13m[48;2;5;34;6m▀[38;2;15;16;15m[48;2;12;10;12m▀[38;2;11;11;11m[48;2;4;5;4m▀[38;2;15;16;15m[48;2;13;13;13m▀[38;2;10;11;10m[48;2;4;5;4m▀[38;2;15;16;15m[48;2;13;13;13m▀[38;2;11;11;11m[48;2;4;5;4m▀[38;2;15;15;15m[48;2;13;14;13m▀[38;2;11;11;11m[48;2;4;5;4m▀[38;2;15;15;15m[48;2;13;14;13m▀[38;2;10;11;10m[48;2;4;4;4m▀[38;2;15;16;15m[48;2;13;13;13m▀[38;2;12;12;12m[48;2;4;4;4m▀[38;2;13;13;13m[48;2;14;14;14m▀[38;2;0;0;0m[48;2;3;3;3m▀[48;2;0;2;1m▀[38;2;1;0;1m[48;2;0;0;0m▀[38;2;0;0;0m▀▀▀[38;2;9;0;0m[48;2;9;0;0m▀[38;2;25;0;0m[48;2;25;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;5;0;0m[48;2;5;0;0m▀[38;2;28;0;0m[48;2;28;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[48;2;1;0;0m▀[38;2;9;7;8m[48;2;0;4;5m▀[38;2;23;21;21m[48;2;8;21;20m▀[38;2;54;53;53m[48;2;16;21;19m▀[38;2;130;131;130m[48;2;10;10;10m▀[38;2;28;28;28m[48;2;32;32;32m▀[38;2;19;18;19m[48;2;12;14;12m▀[38;2;15;14;15m[48;2;4;6;4m▀[38;2;19;16;19m[48;2;12;13;12m▀[38;2;11;11;11m[48;2;4;5;4m▀[38;2;16;16;16m[48;2;12;15;12m▀[38;2;11;9;11m[48;2;4;13;4m▀[38;2;15;13;15m[48;2;13;39;13m▀[38;2;9;12;9m[48;2;4;35;4m▀[38;2;15;12;14m[48;2;8;35;13m▀[38;2;12;12;10m[48;2;1;37;4m▀[38;2;12;10;12m[48;2;14;35;13m▀[38;2;0;31;28m[48;2;3;36;11m▀[38;2;0;123;123m[48;2;4;29;31m▀[38;2;0;26;25m[48;2;1;28;27m▀[38;2;0;36;38m[48;2;0;9;11m▀[38;2;0;32;26m[48;2;0;8;0m▀[38;2;0;31;1m[48;2;0;35;0m▀[38;2;0;88;1m[48;2;0;79;0m▀[38;2;0;153;0m[48;2;0;197;0m▀[38;2;0;122;0m[48;2;0;149;0m▀[38;2;0;142;0m[48;2;0;128;0m▀[38;2;0;152;0m[48;2;0;177;0m▀[38;2;0;80;0m[48;2;0;82;0m▀[38;2;0;26;0m[48;2;0;24;0m▀[0m
|
||||
[38;2;0;60;0m[48;2;0;59;0m▀[38;2;0;168;0m[48;2;0;177;0m▀[38;2;0;115;0m[48;2;0;138;0m▀[38;2;0;123;0m[48;2;0;143;0m▀[38;2;0;110;0m[48;2;0;133;0m▀[38;2;0;187;0m[48;2;0;200;0m▀[38;2;0;91;0m[48;2;0;90;0m▀[38;2;0;23;0m[48;2;0;23;0m▀[38;2;0;2;0m[48;2;0;2;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;7;0m[48;2;1;9;1m▀[38;2;0;37;0m[48;2;0;37;1m▀[38;2;1;29;0m[48;2;13;27;1m▀[38;2;15;29;1m[48;2;250;2;0m▀[38;2;8;37;1m[48;2;129;15;0m▀[38;2;0;31;0m[48;2;0;36;0m▀[38;2;0;16;0m[48;2;4;30;0m▀[38;2;0;1;0m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;21;0m▀[48;2;0;14;0m▀[48;2;0;18;0m▀[48;2;0;17;0m▀[48;2;0;26;0m▀[48;2;0;29;0m▀[48;2;0;30;0m▀[48;2;0;3;0m▀[48;2;0;1;0m▀[48;2;0;0;0m▀[48;2;3;0;2m▀[48;2;0;0;0m▀[38;2;4;0;4m[48;2;71;0;46m▀[38;2;12;0;6m[48;2;157;0;95m▀[38;2;8;1;9m[48;2;145;0;109m▀[38;2;2;0;7m[48;2;50;0;68m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;9;0;0m[48;2;11;0;2m▀[38;2;25;0;0m[48;2;25;1;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;6;0;0m[48;2;6;0;0m▀[38;2;26;0;0m[48;2;26;0;0m▀[38;2;5;0;0m[48;2;6;0;0m▀[38;2;28;0;0m[48;2;28;0;0m▀[38;2;0;0;0m[48;2;2;0;1m▀[48;2;0;0;0m▀[38;2;34;0;0m[48;2;92;0;43m▀[38;2;58;0;3m[48;2;196;1;96m▀[38;2;23;0;7m[48;2;84;1;43m▀[38;2;0;0;0m[48;2;1;1;1m▀[48;2;3;5;2m▀[48;2;0;40;0m▀[48;2;0;23;0m▀[48;2;0;25;0m▀[48;2;0;24;0m▀[38;2;0;3;0m[48;2;0;35;0m▀[38;2;0;36;0m[48;2;1;40;0m▀[38;2;0;31;0m[48;2;0;30;0m▀[38;2;1;33;0m[48;2;13;30;0m▀[38;2;13;35;0m[48;2;250;6;0m▀[38;2;8;28;0m[48;2;129;9;0m▀[38;2;0;34;0m[48;2;0;36;0m▀[38;2;0;31;4m[48;2;4;25;0m▀[38;2;0;12;11m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;2;1m▀[48;2;0;1;0m▀[38;2;0;12;0m[48;2;0;11;0m▀[38;2;0;34;0m[48;2;0;34;0m▀[38;2;0;83;0m[48;2;0;85;0m▀[38;2;0;170;0m[48;2;0;168;0m▀[38;2;0;135;0m[48;2;0;171;0m▀[38;2;0;111;0m[48;2;0;146;0m▀[38;2;0;180;0m[48;2;0;177;0m▀[38;2;0;86;0m[48;2;0;86;0m▀[38;2;0;24;0m[48;2;0;24;0m▀[0m
|
||||
[38;2;0;41;0m[48;2;0;41;0m▀[38;2;0;122;0m▀[38;2;0;157;0m[48;2;0;62;0m▀[38;2;0;156;0m▀[38;2;0;149;0m[48;2;0;57;0m▀[38;2;0;167;0m[48;2;0;64;0m▀[38;2;0;69;0m[48;2;0;41;0m▀[38;2;0;26;0m[48;2;0;28;0m▀[38;2;0;1;0m[48;2;0;1;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;9;0m[48;2;0;9;0m▀[38;2;0;34;0m[48;2;0;36;0m▀[38;2;4;31;0m▀[38;2;69;32;0m[48;2;0;32;0m▀[38;2;36;19;0m[48;2;0;41;0m▀[38;2;0;36;0m[48;2;0;29;0m▀[38;2;1;30;0m[48;2;0;11;0m▀[38;2;0;1;0m[48;2;0;1;0m▀[38;2;0;12;0m[48;2;0;0;0m▀[38;2;0;8;0m▀[38;2;0;10;0m▀[38;2;0;9;0m▀[38;2;0;15;0m▀[38;2;0;19;0m▀[38;2;0;44;0m▀[38;2;0;4;0m▀[38;2;0;0;0m▀▀[38;2;1;0;3m[48;2;0;0;1m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;51;0;84m[48;2;0;0;40m▀[38;2;64;9;204m[48;2;0;1;72m▀[38;2;65;26;186m[48;2;0;4;75m▀[38;2;56;0;80m[48;2;0;0;36m▀[38;2;0;1;0m[48;2;0;0;0m▀[38;2;12;0;3m[48;2;4;7;1m▀[38;2;28;0;0m[48;2;10;22;0m▀[38;2;5;0;0m[48;2;10;0;0m▀[38;2;25;0;0m[48;2;31;1;0m▀[38;2;5;0;0m[48;2;7;0;0m▀[38;2;25;0;0m[48;2;31;0;0m▀[38;2;5;0;0m[48;2;7;0;0m▀[38;2;25;0;0m[48;2;31;0;0m▀[38;2;5;0;0m[48;2;7;0;0m▀[38;2;25;0;0m[48;2;31;0;0m▀[38;2;5;0;0m[48;2;7;0;0m▀[38;2;25;0;0m[48;2;31;0;0m▀[38;2;5;0;0m[48;2;7;0;0m▀[38;2;27;0;0m[48;2;34;0;0m▀[38;2;0;0;3m[48;2;0;0;0m▀[38;2;1;0;0m[48;2;1;0;1m▀[38;2;12;0;87m[48;2;8;0;0m▀[38;2;104;0;192m[48;2;18;0;117m▀[38;2;54;0;79m[48;2;0;0;77m▀[38;2;0;0;0m[48;2;1;0;0m▀[38;2;2;3;3m[48;2;0;0;2m▀[38;2;0;23;0m[48;2;0;0;0m▀[38;2;0;13;0m▀[38;2;0;14;0m▀▀[38;2;0;22;0m▀[38;2;0;36;0m[48;2;0;1;0m▀[38;2;0;34;0m[48;2;0;19;0m▀[38;2;4;29;0m[48;2;0;35;0m▀[38;2;69;20;0m[48;2;0;39;0m▀[38;2;36;38;0m[48;2;0;33;0m▀[38;2;0;26;0m[48;2;0;34;0m▀[38;2;1;0;0m[48;2;0;1;0m▀[38;2;0;1;0m▀[38;2;0;0;0m[48;2;0;0;0m▀▀[38;2;0;10;0m[48;2;0;11;0m▀[38;2;0;32;0m[48;2;0;40;0m▀[38;2;0;80;0m[48;2;0;31;0m▀[38;2;0;113;0m[48;2;0;34;0m▀[38;2;0;102;0m[48;2;0;28;0m▀[38;2;0;112;0m[48;2;0;33;0m▀[38;2;0;100;0m[48;2;0;29;0m▀[38;2;0;66;0m[48;2;0;37;0m▀[38;2;0;27;0m[48;2;0;30;0m▀[0m
|
||||
BIN
tui/src/skywalker_tui/assets/splash/space-docker.gif
Normal file
BIN
tui/src/skywalker_tui/assets/splash/space-docker.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 37 KiB |
@ -4,14 +4,9 @@ Same sweep mechanics as the spectrum screen, but with LNB disabled (direct input
|
||||
and band allocation overlays showing what service each frequency range belongs to.
|
||||
"""
|
||||
|
||||
import sys
|
||||
import os
|
||||
|
||||
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "..", "..", "tools"))
|
||||
|
||||
from textual.app import ComposeResult
|
||||
from textual.containers import Container, Horizontal, Vertical
|
||||
from textual.widgets import Label, Input, Button, Static, ProgressBar, Checkbox
|
||||
from textual.widgets import Label, Input, Button, Static, ProgressBar
|
||||
from textual import work
|
||||
from textual.worker import Worker
|
||||
|
||||
|
||||
@ -9,7 +9,7 @@ from textual.app import ComposeResult
|
||||
from textual.containers import Container, Horizontal, Vertical
|
||||
from textual.widgets import Label, Input, Button, Static
|
||||
from textual import work
|
||||
from textual.worker import Worker, WorkerState
|
||||
from textual.worker import Worker
|
||||
|
||||
from skywalker_tui.widgets.signal_gauge import SignalGauge
|
||||
from skywalker_tui.widgets.sparkline_widget import SparklineWidget
|
||||
|
||||
@ -4,9 +4,6 @@ Multi-phase pipeline: coarse sweep → peak detection → fine sweep → blind s
|
||||
Shows progress, spectrum visualization, and a results table.
|
||||
"""
|
||||
|
||||
import struct
|
||||
import time
|
||||
|
||||
from textual.app import ComposeResult
|
||||
from textual.containers import Container, Horizontal, Vertical
|
||||
from textual.widgets import Label, Input, Button, Static, ProgressBar
|
||||
@ -157,7 +154,6 @@ class ScanScreen(Container):
|
||||
# Phase 1: Coarse sweep
|
||||
self.app.call_from_thread(self._set_phase, "Phase 1: Coarse sweep", 0)
|
||||
coarse_step = 10
|
||||
total_steps = max(1, int((stop - start) / coarse_step) + 1)
|
||||
|
||||
def coarse_cb(freq, step_num, total, result):
|
||||
pct = (step_num + 1) / total * 100
|
||||
|
||||
@ -109,15 +109,30 @@ class SpectrumScreen(Container):
|
||||
def _start_sweep(self) -> None:
|
||||
if self._sweeping:
|
||||
return
|
||||
self._sweeping = True
|
||||
|
||||
# Validate inputs
|
||||
try:
|
||||
start = float(self.query_one("#spec-start", Input).value or "950")
|
||||
stop = float(self.query_one("#spec-stop", Input).value or "2150")
|
||||
step = float(self.query_one("#spec-step", Input).value or "5")
|
||||
dwell = int(self.query_one("#spec-dwell", Input).value or "10")
|
||||
dwell = int(float(self.query_one("#spec-dwell", Input).value or "10"))
|
||||
lnb_lo = float(self.query_one("#spec-lnb", Input).value or "0")
|
||||
continuous = self.query_one("#spec-continuous", Checkbox).value
|
||||
except ValueError:
|
||||
self._update_status("Invalid input — check numeric fields")
|
||||
return
|
||||
|
||||
if not (950 <= start <= 2150) or not (950 <= stop <= 2150):
|
||||
self._update_status("Frequency out of range (950–2150 MHz)")
|
||||
return
|
||||
if start >= stop:
|
||||
self._update_status("Start must be less than Stop")
|
||||
return
|
||||
if not (0.1 <= step <= 500):
|
||||
self._update_status("Step out of range (0.1–500 MHz)")
|
||||
return
|
||||
|
||||
continuous = self.query_one("#spec-continuous", Checkbox).value
|
||||
self._sweeping = True
|
||||
self._sweep_worker = self._do_sweep(start, stop, step, dwell, lnb_lo, continuous)
|
||||
|
||||
def _stop_sweep(self) -> None:
|
||||
@ -140,7 +155,6 @@ class SpectrumScreen(Container):
|
||||
sweep_num = 0
|
||||
while self._sweeping:
|
||||
sweep_num += 1
|
||||
total_steps = max(1, int((stop - start) / step) + 1)
|
||||
step_count = [0]
|
||||
|
||||
def progress_cb(freq, step_num, total, result):
|
||||
|
||||
151
tui/src/skywalker_tui/screens/splash.py
Normal file
151
tui/src/skywalker_tui/screens/splash.py
Normal file
@ -0,0 +1,151 @@
|
||||
"""Splash screen — renders 16colo.rs art on startup.
|
||||
|
||||
Pre-baked ANSI half-block art (.ans files) display instantly — no runtime
|
||||
image decoding or terminal protocol detection needed. Generated by
|
||||
scripts/prebake_splash.py from the original artwork.
|
||||
|
||||
Randomly selects from bundled artwork on each launch. Auto-dismisses
|
||||
after 5 seconds or on any keypress.
|
||||
"""
|
||||
|
||||
import os
|
||||
import random
|
||||
from pathlib import Path
|
||||
|
||||
from textual.app import ComposeResult
|
||||
from textual.binding import Binding
|
||||
from textual.screen import Screen
|
||||
from textual.containers import Vertical
|
||||
from textual.widgets import Static
|
||||
from rich.text import Text
|
||||
|
||||
|
||||
ASSETS_DIR = Path(__file__).resolve().parent.parent / "assets" / "splash"
|
||||
|
||||
# Artwork catalog — stem (sans extension), artist, title
|
||||
ART_CATALOG = [
|
||||
("seti-satellite", "Illarterate", "S.E.T.I. Satellite"),
|
||||
("dialtone", "192.168.10.13", "Dialtone"),
|
||||
("so-far-away", "Blippypixel", "So Far Away"),
|
||||
("prodigy-out-of-space", "Jellica Jake", "Prodigy / Out of Space"),
|
||||
("space-docker", "Blippypixel", "Space Docker"),
|
||||
]
|
||||
|
||||
|
||||
def _is_kitty() -> bool:
|
||||
"""Detect if running inside Kitty terminal."""
|
||||
return bool(os.environ.get("KITTY_WINDOW_ID"))
|
||||
|
||||
|
||||
class SplashScreen(Screen):
|
||||
"""Full-screen splash with 16colo.rs art, auto-dismisses."""
|
||||
|
||||
BINDINGS = [
|
||||
Binding("escape", "dismiss_splash", "Skip", show=False),
|
||||
]
|
||||
|
||||
DEFAULT_CSS = """
|
||||
SplashScreen {
|
||||
align: center middle;
|
||||
background: #000000;
|
||||
}
|
||||
SplashScreen #splash-container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
align: center middle;
|
||||
background: #000000;
|
||||
}
|
||||
SplashScreen #splash-title {
|
||||
height: 1;
|
||||
color: #00d4aa;
|
||||
text-style: bold;
|
||||
text-align: center;
|
||||
dock: bottom;
|
||||
margin: 0 0 2 0;
|
||||
}
|
||||
SplashScreen #splash-credit {
|
||||
height: 1;
|
||||
color: #506878;
|
||||
text-align: center;
|
||||
dock: bottom;
|
||||
margin: 0 0 1 0;
|
||||
}
|
||||
SplashScreen #splash-skip {
|
||||
height: 1;
|
||||
color: #2a3a4a;
|
||||
text-align: center;
|
||||
dock: bottom;
|
||||
}
|
||||
SplashScreen #splash-art {
|
||||
width: 100%;
|
||||
height: 1fr;
|
||||
content-align: center middle;
|
||||
background: #000000;
|
||||
}
|
||||
SplashScreen #splash-fallback {
|
||||
width: 100%;
|
||||
height: 1fr;
|
||||
content-align: center middle;
|
||||
color: #00d4aa;
|
||||
text-style: bold;
|
||||
}
|
||||
"""
|
||||
|
||||
def __init__(self, **kwargs):
|
||||
super().__init__(**kwargs)
|
||||
self._ans_path: Path | None = None
|
||||
self._artist = ""
|
||||
self._title = ""
|
||||
self._select_art()
|
||||
|
||||
def _select_art(self) -> None:
|
||||
"""Pick a random artwork from available pre-baked .ans files."""
|
||||
available = []
|
||||
for stem, artist, title in ART_CATALOG:
|
||||
ans_path = ASSETS_DIR / f"{stem}.ans"
|
||||
if ans_path.exists():
|
||||
available.append((ans_path, artist, title))
|
||||
|
||||
if available:
|
||||
self._ans_path, self._artist, self._title = random.choice(available)
|
||||
|
||||
def compose(self) -> ComposeResult:
|
||||
with Vertical(id="splash-container"):
|
||||
if self._ans_path:
|
||||
ansi_content = self._ans_path.read_text()
|
||||
yield Static(Text.from_ansi(ansi_content), id="splash-art")
|
||||
else:
|
||||
yield Static(
|
||||
"S K Y W A L K E R - 1",
|
||||
id="splash-fallback",
|
||||
)
|
||||
|
||||
kitty_tag = " \U0001f431" if _is_kitty() else ""
|
||||
yield Static(
|
||||
f"S K Y W A L K E R - 1 / DVB-S RF Tool{kitty_tag}",
|
||||
id="splash-title",
|
||||
)
|
||||
if self._artist:
|
||||
yield Static(
|
||||
f"Art by {self._artist} \u2014 16colo.rs/mistigris",
|
||||
id="splash-credit",
|
||||
)
|
||||
yield Static("[any key to skip]", id="splash-skip")
|
||||
|
||||
def on_mount(self) -> None:
|
||||
# Brief delay before accepting key dismissal — prevents eating
|
||||
# keystrokes from the transition that pushed this screen
|
||||
self._accept_keys = False
|
||||
self.set_timer(0.3, self._enable_keys)
|
||||
self.set_timer(5, self.action_dismiss_splash)
|
||||
|
||||
def _enable_keys(self) -> None:
|
||||
self._accept_keys = True
|
||||
|
||||
def on_key(self) -> None:
|
||||
if getattr(self, "_accept_keys", False):
|
||||
self.action_dismiss_splash()
|
||||
|
||||
def action_dismiss_splash(self) -> None:
|
||||
if self.is_current:
|
||||
self.app.pop_screen()
|
||||
448
tui/src/skywalker_tui/screens/starwars.py
Normal file
448
tui/src/skywalker_tui/screens/starwars.py
Normal file
@ -0,0 +1,448 @@
|
||||
"""Star Wars Easter egg — ASCII Star Wars via telnet with offline fallback.
|
||||
|
||||
Attempts to connect to towel.blinkenlights.nl:23 for the famous ASCII
|
||||
Star Wars animation. If the network blocks port 23 (common), falls back
|
||||
to a built-in opening crawl with ASCII art.
|
||||
|
||||
The telnet stream uses VT100 escape sequences:
|
||||
ESC[H — cursor home (frame boundary)
|
||||
ESC[J — clear to end of screen
|
||||
ESC[...m — SGR color/style codes
|
||||
We detect ESC[H as "new frame", buffer the frame text, then render it
|
||||
atomically via Rich's Text.from_ansi() which handles native ANSI styling.
|
||||
|
||||
Hidden binding: ctrl+w (W for Wars/Walker).
|
||||
"""
|
||||
|
||||
import socket
|
||||
import time
|
||||
|
||||
from textual.app import ComposeResult
|
||||
from textual.binding import Binding
|
||||
from textual.screen import Screen
|
||||
from textual.containers import Vertical
|
||||
from textual.widgets import Static, RichLog
|
||||
from textual import work
|
||||
from rich.text import Text
|
||||
|
||||
|
||||
TELNET_HOST = "towel.blinkenlights.nl"
|
||||
TELNET_PORT = 23
|
||||
RECV_SIZE = 4096
|
||||
CONNECT_TIMEOUT = 8
|
||||
|
||||
|
||||
# ── Built-in offline crawl ────────────────────────────────────────────
|
||||
# Shown when telnet is unreachable. Frames are (lines, delay_seconds).
|
||||
|
||||
_CRAWL_FRAMES = [
|
||||
# Pause on black
|
||||
([""], 2.0),
|
||||
# Title card
|
||||
([
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
" . . . . . . . . .",
|
||||
"",
|
||||
" A long time ago in a galaxy far,",
|
||||
" far away....",
|
||||
"",
|
||||
"",
|
||||
], 3.0),
|
||||
# Clear + logo
|
||||
([
|
||||
"",
|
||||
"",
|
||||
r" ________________. ___ .______",
|
||||
r" / | / \ | _ \ ",
|
||||
r" | (-----| |----`/ ^ \ | |_) |",
|
||||
r" \ \ | | / /_\ \ | /",
|
||||
r" .-----) | | | / _____ \ | |\ \------.",
|
||||
r" |________/ |__| /__/ \__\| _| `.________|",
|
||||
"",
|
||||
r" ____ __ ____ ___ .______ ________.",
|
||||
r" \ \ / \ / / / \ | _ \ / |",
|
||||
r" \ \/ \/ / / ^ \ | |_) || (-----`",
|
||||
r" \ / / /_\ \ | / \ \ ",
|
||||
r" \ /\ / / _____ \ | |\ \---) |",
|
||||
r" \__/ \__/ /__/ \__\|__| `._______/",
|
||||
"",
|
||||
"",
|
||||
], 4.0),
|
||||
# Episode info
|
||||
([
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
" Episode IV.I",
|
||||
"",
|
||||
" A N E W F R E Q U E N C Y",
|
||||
"",
|
||||
"",
|
||||
], 3.0),
|
||||
# Opening crawl text — the SkyWalker-1 version
|
||||
([
|
||||
" It is a period of civil engineering.",
|
||||
" Rebel hackers, armed with USB cables",
|
||||
" and logic analyzers, have won their",
|
||||
" first victory against the evil",
|
||||
" Proprietary Firmware Empire.",
|
||||
"",
|
||||
" During the battle, rebel spies managed",
|
||||
" to steal secret plans to the Empire's",
|
||||
" ultimate weapon, the GP8PSK USB protocol,",
|
||||
" a device with enough power to receive",
|
||||
" an entire satellite transponder.",
|
||||
"",
|
||||
" Pursued by the Empire's sinister agents,",
|
||||
" Princess SkyWalker races home aboard her",
|
||||
" DVB-S receiver, custodian of the stolen",
|
||||
" vendor commands that can save her people",
|
||||
" and restore signal lock to the galaxy....",
|
||||
"",
|
||||
], 0.18), # per-line scroll for this frame
|
||||
# Star Destroyer ASCII art
|
||||
([
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
" . ",
|
||||
" /|\\ ",
|
||||
" / | \\ ",
|
||||
" / | \\ ",
|
||||
" / | \\ ",
|
||||
" ____/ | \\____ ",
|
||||
" ____/ _______|_______ \\____ ",
|
||||
" ____/ ____/ | \\____ \\____",
|
||||
" _____/ ___/ | \\____\\_____ ",
|
||||
" /______/=====_____________|_____________=====\\______\\",
|
||||
" \\ \\============|============/ /",
|
||||
" \\ \\ | / /",
|
||||
" \\ |__________|__________| /",
|
||||
" \\ | | | /",
|
||||
" \\___|__________|__________|___/",
|
||||
" \\ | /",
|
||||
" \\_______/ \\_______/",
|
||||
"",
|
||||
"",
|
||||
" >>> GENPIX SKYWALKER-1 DVB-S RECEIVER <<<",
|
||||
" Firmware reversed. Signal acquired.",
|
||||
"",
|
||||
"",
|
||||
], 3.5),
|
||||
# Credits
|
||||
([
|
||||
"",
|
||||
" ==========================================",
|
||||
" Directed by .............. Ryan Malloy",
|
||||
" Firmware by ........... Genpix Electronics",
|
||||
" Reversed by ........... USB sniffers & gdb",
|
||||
" Radar Scope by ........ P1 green phosphor",
|
||||
" Theme Music by ........ 22 kHz tone burst",
|
||||
"",
|
||||
" ASCII Star Wars originally by:",
|
||||
" Simon Jansen (asciimation.co.nz)",
|
||||
" Sten Spans (blinkenlights.nl)",
|
||||
" Mike Edwards (terminal tricks)",
|
||||
"",
|
||||
" Telnet blocked? Blame your ISP.",
|
||||
" ==========================================",
|
||||
"",
|
||||
"",
|
||||
" [ESC to close]",
|
||||
"",
|
||||
], 0),
|
||||
]
|
||||
|
||||
|
||||
class _TelnetStripper:
|
||||
"""Stateful telnet IAC sequence stripper that handles chunk boundaries.
|
||||
|
||||
Telnet IAC sequences can span TCP segment boundaries. This class
|
||||
buffers partial sequences across feed() calls so they're correctly
|
||||
stripped even when split across recv() chunks.
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
self._pending = b""
|
||||
|
||||
def feed(self, data: bytes) -> bytes:
|
||||
data = self._pending + data
|
||||
self._pending = b""
|
||||
result = bytearray()
|
||||
i = 0
|
||||
while i < len(data):
|
||||
if data[i] == 0xFF:
|
||||
if i + 1 >= len(data):
|
||||
self._pending = data[i:]
|
||||
break
|
||||
if data[i + 1] == 0xFF: # escaped 0xFF
|
||||
result.append(0xFF)
|
||||
i += 2
|
||||
elif data[i + 1] in (0xFB, 0xFC, 0xFD, 0xFE): # WILL/WONT/DO/DONT
|
||||
if i + 2 >= len(data):
|
||||
self._pending = data[i:]
|
||||
break
|
||||
i += 3
|
||||
elif data[i + 1] == 0xFA: # Sub-negotiation
|
||||
end = data.find(b"\xff\xf0", i)
|
||||
if end == -1:
|
||||
self._pending = data[i:]
|
||||
break
|
||||
i = end + 2
|
||||
else:
|
||||
i += 2
|
||||
else:
|
||||
result.append(data[i])
|
||||
i += 1
|
||||
return bytes(result)
|
||||
|
||||
|
||||
class StarWarsScreen(Screen):
|
||||
"""Modal overlay streaming ASCII Star Wars from telnet, with offline fallback."""
|
||||
|
||||
BINDINGS = [
|
||||
Binding("escape", "dismiss", "Close", show=True),
|
||||
Binding("q", "dismiss", "Close", show=False),
|
||||
]
|
||||
|
||||
DEFAULT_CSS = """
|
||||
StarWarsScreen {
|
||||
align: center middle;
|
||||
background: #000000 90%;
|
||||
}
|
||||
StarWarsScreen #sw-container {
|
||||
width: 90%;
|
||||
height: 90%;
|
||||
background: #000000;
|
||||
border: round #1a3050;
|
||||
}
|
||||
StarWarsScreen #sw-header {
|
||||
height: 1;
|
||||
color: #e8a020;
|
||||
text-style: bold;
|
||||
text-align: center;
|
||||
padding: 0 1;
|
||||
}
|
||||
StarWarsScreen #sw-log {
|
||||
height: 1fr;
|
||||
background: #000000;
|
||||
color: #c8d0d8;
|
||||
}
|
||||
StarWarsScreen #sw-footer {
|
||||
height: 1;
|
||||
color: #506878;
|
||||
text-align: center;
|
||||
}
|
||||
"""
|
||||
|
||||
def __init__(self, **kwargs):
|
||||
super().__init__(**kwargs)
|
||||
self._socket: socket.socket | None = None
|
||||
self._running = False
|
||||
|
||||
def compose(self) -> ComposeResult:
|
||||
with Vertical(id="sw-container"):
|
||||
yield Static(
|
||||
"A long time ago in a galaxy far, far away....",
|
||||
id="sw-header",
|
||||
)
|
||||
yield RichLog(id="sw-log", wrap=False, markup=False)
|
||||
yield Static("[ESC] Close", id="sw-footer")
|
||||
|
||||
def on_mount(self) -> None:
|
||||
self._running = True
|
||||
self._stream_starwars()
|
||||
|
||||
def on_unmount(self) -> None:
|
||||
self._running = False
|
||||
self._close_socket()
|
||||
|
||||
def action_dismiss(self) -> None:
|
||||
self._running = False
|
||||
self._close_socket()
|
||||
self.app.pop_screen()
|
||||
|
||||
def _close_socket(self) -> None:
|
||||
if self._socket:
|
||||
try:
|
||||
self._socket.close()
|
||||
except Exception:
|
||||
pass
|
||||
self._socket = None
|
||||
|
||||
def _safe_write(self, text: str) -> None:
|
||||
"""Write to RichLog only if screen is still mounted and running."""
|
||||
if not self._running or not self.is_mounted:
|
||||
return
|
||||
try:
|
||||
log = self.query_one("#sw-log", RichLog)
|
||||
log.write(text)
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
def _safe_clear(self) -> None:
|
||||
"""Clear the RichLog."""
|
||||
if not self._running or not self.is_mounted:
|
||||
return
|
||||
try:
|
||||
self.query_one("#sw-log", RichLog).clear()
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
@work(thread=True)
|
||||
def _stream_starwars(self) -> None:
|
||||
"""Try telnet first, fall back to built-in crawl."""
|
||||
self.app.call_from_thread(
|
||||
self._safe_write, "Connecting to towel.blinkenlights.nl:23..."
|
||||
)
|
||||
|
||||
if self._try_telnet():
|
||||
return # telnet worked, we're done
|
||||
|
||||
# Telnet failed — play the built-in crawl
|
||||
self.app.call_from_thread(self._safe_write, "Falling back to local crawl...\n")
|
||||
time.sleep(1.0)
|
||||
self.app.call_from_thread(self._safe_clear)
|
||||
self._play_offline_crawl()
|
||||
|
||||
def _try_telnet(self) -> bool:
|
||||
"""Attempt telnet connection. Returns True if streaming completed.
|
||||
|
||||
Uses AF_UNSPEC to try both IPv6 and IPv4 (happy eyeballs style).
|
||||
Many networks route IPv6 correctly but block or drop IPv4 on port 23.
|
||||
"""
|
||||
try:
|
||||
addrs = socket.getaddrinfo(TELNET_HOST, TELNET_PORT,
|
||||
socket.AF_UNSPEC, socket.SOCK_STREAM)
|
||||
if not addrs:
|
||||
raise socket.gaierror("No address found")
|
||||
labels = []
|
||||
for fam, _, _, _, sa in addrs:
|
||||
tag = "v6" if fam == socket.AF_INET6 else "v4"
|
||||
labels.append(f"{tag}:{sa[0]}")
|
||||
self.app.call_from_thread(
|
||||
self._safe_write, f"Resolved: {', '.join(labels)}"
|
||||
)
|
||||
except socket.gaierror as e:
|
||||
self.app.call_from_thread(
|
||||
self._safe_write, f"DNS failed: {e}"
|
||||
)
|
||||
return False
|
||||
|
||||
# Try each address until one connects (IPv6 first if available)
|
||||
sock = None
|
||||
last_err = None
|
||||
for fam, socktype, proto, _canon, sa in addrs:
|
||||
tag = "v6" if fam == socket.AF_INET6 else "v4"
|
||||
self.app.call_from_thread(
|
||||
self._safe_write, f"Trying {tag}:{sa[0]}..."
|
||||
)
|
||||
try:
|
||||
s = socket.socket(fam, socktype, proto)
|
||||
s.settimeout(CONNECT_TIMEOUT)
|
||||
s.connect(sa)
|
||||
s.settimeout(2.0)
|
||||
sock = s
|
||||
break
|
||||
except (socket.timeout, OSError) as e:
|
||||
last_err = e
|
||||
try:
|
||||
s.close()
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
if sock is None:
|
||||
self.app.call_from_thread(
|
||||
self._safe_write, f"All addresses failed: {last_err}"
|
||||
)
|
||||
return False
|
||||
|
||||
self._socket = sock
|
||||
|
||||
self.app.call_from_thread(self._safe_write, "Connected! Streaming...\n")
|
||||
|
||||
stripper = _TelnetStripper()
|
||||
buffer = b""
|
||||
while self._running:
|
||||
try:
|
||||
chunk = sock.recv(RECV_SIZE)
|
||||
if not chunk:
|
||||
break
|
||||
clean = stripper.feed(chunk)
|
||||
buffer += clean
|
||||
|
||||
# ESC[H (cursor home) marks frame boundaries.
|
||||
# Buffer until we have a complete frame, then render atomically.
|
||||
while b"\x1b[H" in buffer:
|
||||
frame_data, buffer = buffer.split(b"\x1b[H", 1)
|
||||
if frame_data.strip():
|
||||
self.app.call_from_thread(
|
||||
self._render_frame, frame_data
|
||||
)
|
||||
|
||||
except socket.timeout:
|
||||
# Timeout with no ESC[H — flush buffer as partial frame
|
||||
if buffer.strip():
|
||||
self.app.call_from_thread(
|
||||
self._render_frame, buffer
|
||||
)
|
||||
buffer = b""
|
||||
continue
|
||||
except Exception:
|
||||
break
|
||||
|
||||
# Flush anything remaining
|
||||
if buffer.strip():
|
||||
self.app.call_from_thread(self._render_frame, buffer)
|
||||
|
||||
self.app.call_from_thread(self._safe_write, "\n[Stream ended]")
|
||||
self._close_socket()
|
||||
return True
|
||||
|
||||
def _render_frame(self, data: bytes) -> None:
|
||||
"""Render a complete animation frame, replacing previous content.
|
||||
|
||||
Uses Rich's Text.from_ansi() to natively handle any ANSI styling
|
||||
in the stream. ESC[J (clear) is stripped since we replace the
|
||||
whole frame anyway.
|
||||
"""
|
||||
if not self._running or not self.is_mounted:
|
||||
return
|
||||
try:
|
||||
log = self.query_one("#sw-log", RichLog)
|
||||
log.clear()
|
||||
# Decode frame, strip ESC[J (redundant — we clear anyway)
|
||||
text = data.replace(b"\x1b[J", b"")
|
||||
text = text.decode("ascii", errors="replace")
|
||||
text = text.replace("\r", "")
|
||||
# Rich's from_ansi() renders ANSI color/style codes natively
|
||||
log.write(Text.from_ansi(text))
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
def _play_offline_crawl(self) -> None:
|
||||
"""Play the built-in Star Wars opening crawl frame by frame."""
|
||||
for lines, delay in _CRAWL_FRAMES:
|
||||
if not self._running:
|
||||
return
|
||||
|
||||
# The opening crawl frame scrolls line-by-line
|
||||
if delay > 0 and delay < 0.5 and len(lines) > 3:
|
||||
# Per-line scroll mode
|
||||
self.app.call_from_thread(self._safe_clear)
|
||||
for line in lines:
|
||||
if not self._running:
|
||||
return
|
||||
self.app.call_from_thread(self._safe_write, line)
|
||||
time.sleep(delay)
|
||||
else:
|
||||
# Full-frame mode
|
||||
self.app.call_from_thread(self._safe_clear)
|
||||
for line in lines:
|
||||
if not self._running:
|
||||
return
|
||||
self.app.call_from_thread(self._safe_write, line)
|
||||
if delay > 0:
|
||||
time.sleep(delay)
|
||||
@ -1,13 +1,14 @@
|
||||
"""Track screen — carrier/beacon tracker with logging and export.
|
||||
"""Track screen — carrier/beacon tracker with radar scope, logging, and export.
|
||||
|
||||
Locks to a single frequency and records SNR, power, lock state over time.
|
||||
Displays dual sparklines, an event log for lock transitions, and stats.
|
||||
Supports CSV/JSONL export.
|
||||
Features a hero radar scope (P1 phosphor CRT aesthetic), dual sparklines,
|
||||
event log for lock transitions, and stats. Supports CSV/JSONL export.
|
||||
"""
|
||||
|
||||
import csv
|
||||
import json
|
||||
import time
|
||||
from collections import deque
|
||||
from datetime import datetime
|
||||
from pathlib import Path
|
||||
|
||||
@ -17,12 +18,12 @@ from textual.widgets import Label, Input, Button, Static, RichLog
|
||||
from textual import work
|
||||
from textual.worker import Worker
|
||||
|
||||
from skywalker_tui.widgets.signal_gauge import SignalGauge
|
||||
from skywalker_tui.widgets.radar_scope import RadarScope
|
||||
from skywalker_tui.widgets.sparkline_widget import SparklineWidget
|
||||
|
||||
|
||||
class TrackScreen(Container):
|
||||
"""Long-running carrier tracker with event log and export."""
|
||||
"""Long-running carrier tracker with radar scope and event log."""
|
||||
|
||||
DEFAULT_CSS = """
|
||||
TrackScreen {
|
||||
@ -30,18 +31,27 @@ class TrackScreen(Container):
|
||||
}
|
||||
TrackScreen #track-main {
|
||||
height: 1fr;
|
||||
layout: vertical;
|
||||
layout: horizontal;
|
||||
padding: 1 2;
|
||||
}
|
||||
TrackScreen #track-upper {
|
||||
height: auto;
|
||||
layout: horizontal;
|
||||
}
|
||||
TrackScreen #track-gauge-col {
|
||||
TrackScreen #track-radar-col {
|
||||
width: 1fr;
|
||||
min-width: 30;
|
||||
layout: vertical;
|
||||
}
|
||||
TrackScreen #track-radar-label {
|
||||
height: 1;
|
||||
color: #0a5a10;
|
||||
text-style: bold;
|
||||
padding: 0 1;
|
||||
}
|
||||
TrackScreen #track-data-col {
|
||||
width: 1fr;
|
||||
layout: vertical;
|
||||
padding: 0 0 0 1;
|
||||
}
|
||||
TrackScreen #track-sparklines {
|
||||
width: 1fr;
|
||||
height: auto;
|
||||
layout: vertical;
|
||||
}
|
||||
TrackScreen #track-log-container {
|
||||
@ -101,13 +111,15 @@ class TrackScreen(Container):
|
||||
self._peak_snr = 0.0
|
||||
self._start_time = 0.0
|
||||
self._was_locked: bool | None = None
|
||||
self._records: list[dict] = []
|
||||
self._records: deque[dict] = deque(maxlen=360_000) # ~10h at 10Hz
|
||||
|
||||
def compose(self) -> ComposeResult:
|
||||
with Vertical(id="track-main"):
|
||||
with Horizontal(id="track-upper"):
|
||||
with Vertical(id="track-gauge-col"):
|
||||
yield SignalGauge(id="track-gauge")
|
||||
with Horizontal(id="track-main"):
|
||||
with Vertical(id="track-radar-col"):
|
||||
yield Static("[#0a5a10 bold]Radar Scope[/]", id="track-radar-label")
|
||||
yield RadarScope(id="track-radar")
|
||||
|
||||
with Vertical(id="track-data-col"):
|
||||
with Vertical(id="track-sparklines"):
|
||||
yield SparklineWidget(title="SNR (dB)", color="#00d4aa",
|
||||
id="track-snr-spark")
|
||||
@ -156,6 +168,36 @@ class TrackScreen(Container):
|
||||
def _start_tracking(self) -> None:
|
||||
if self._tracking:
|
||||
return
|
||||
|
||||
log = self.query_one("#track-log", RichLog)
|
||||
|
||||
# C3: Validate inputs before starting
|
||||
try:
|
||||
freq = float(self.query_one("#trk-freq", Input).value or "1200")
|
||||
except ValueError:
|
||||
log.write("[bold #e04040]Invalid frequency — must be a number[/]")
|
||||
return
|
||||
try:
|
||||
sr = int(float(self.query_one("#trk-sr", Input).value or "20000"))
|
||||
except ValueError:
|
||||
log.write("[bold #e04040]Invalid symbol rate — must be a number[/]")
|
||||
return
|
||||
try:
|
||||
rate = float(self.query_one("#trk-rate", Input).value or "1")
|
||||
except ValueError:
|
||||
log.write("[bold #e04040]Invalid rate — must be a number[/]")
|
||||
return
|
||||
|
||||
if not (950 <= freq <= 2150):
|
||||
log.write("[bold #e04040]Frequency out of range (950–2150 MHz)[/]")
|
||||
return
|
||||
if not (256 <= sr <= 30000):
|
||||
log.write("[bold #e04040]Symbol rate out of range (256–30000 ksps)[/]")
|
||||
return
|
||||
if not (0.1 <= rate <= 100):
|
||||
log.write("[bold #e04040]Rate out of range (0.1–100 Hz)[/]")
|
||||
return
|
||||
|
||||
self._tracking = True
|
||||
self._sample_count = 0
|
||||
self._peak_snr = 0.0
|
||||
@ -163,14 +205,9 @@ class TrackScreen(Container):
|
||||
self._records.clear()
|
||||
self._start_time = time.monotonic()
|
||||
|
||||
freq = float(self.query_one("#trk-freq", Input).value or "1200")
|
||||
sr = int(self.query_one("#trk-sr", Input).value or "20000")
|
||||
rate = float(self.query_one("#trk-rate", Input).value or "1")
|
||||
|
||||
self.query_one("#trk-status", Static).update(
|
||||
"[#506878]Status:[/] [bold #00d4aa]Tracking[/]"
|
||||
)
|
||||
log = self.query_one("#track-log", RichLog)
|
||||
log.clear()
|
||||
log.write("[#506878]Tracking started[/]")
|
||||
|
||||
@ -192,7 +229,8 @@ class TrackScreen(Container):
|
||||
|
||||
@work(thread=True)
|
||||
def _do_track(self, freq_mhz: float, sr_ksps: int, rate: float) -> None:
|
||||
"""Background tracking loop."""
|
||||
"""Background tracking loop with circuit breaker."""
|
||||
max_consecutive_errors = 10
|
||||
interval = 1.0 / max(0.1, rate)
|
||||
freq_khz = int(freq_mhz * 1000)
|
||||
sr_sps = sr_ksps * 1000
|
||||
@ -201,14 +239,29 @@ class TrackScreen(Container):
|
||||
self._bridge.ensure_booted()
|
||||
self._bridge.tune(sr_sps, freq_khz, 0, 5)
|
||||
time.sleep(0.3)
|
||||
except Exception:
|
||||
pass
|
||||
except Exception as e:
|
||||
self.app.call_from_thread(
|
||||
self._log_event,
|
||||
f"[bold #e04040]Boot/tune failed:[/] [#e04040]{e}[/]",
|
||||
)
|
||||
|
||||
consecutive_errors = 0
|
||||
while self._tracking:
|
||||
t0 = time.monotonic()
|
||||
try:
|
||||
sig = self._bridge.signal_monitor()
|
||||
consecutive_errors = 0 # reset on success
|
||||
except Exception:
|
||||
consecutive_errors += 1
|
||||
if consecutive_errors >= max_consecutive_errors:
|
||||
self.app.call_from_thread(
|
||||
self._log_event,
|
||||
f"[bold #e04040]Circuit breaker: "
|
||||
f"{max_consecutive_errors} consecutive errors, stopping[/]",
|
||||
)
|
||||
self._tracking = False
|
||||
self.app.call_from_thread(self._mark_stopped)
|
||||
return
|
||||
time.sleep(interval)
|
||||
continue
|
||||
|
||||
@ -251,10 +304,19 @@ class TrackScreen(Container):
|
||||
if not self.is_mounted:
|
||||
return
|
||||
|
||||
self.query_one("#track-gauge", SignalGauge).update_signal(sig)
|
||||
self.query_one("#track-snr-spark", SparklineWidget).push(sig.get("snr_db", 0))
|
||||
snr_db = sig.get("snr_db", 0.0)
|
||||
locked = sig.get("locked", False)
|
||||
|
||||
# Feed radar scope
|
||||
radar = self.query_one("#track-radar", RadarScope)
|
||||
radar.push(snr_db)
|
||||
radar.set_locked(locked)
|
||||
|
||||
# Feed sparklines
|
||||
self.query_one("#track-snr-spark", SparklineWidget).push(snr_db)
|
||||
self.query_one("#track-power-spark", SparklineWidget).push(sig.get("power_db", -40))
|
||||
|
||||
# Update stats
|
||||
self.query_one("#trk-samples", Static).update(
|
||||
f"[#506878]Samples:[/] [#00d4aa]{self._sample_count}[/]"
|
||||
)
|
||||
@ -278,23 +340,53 @@ class TrackScreen(Container):
|
||||
f"[#506878]{ts}[/] [bold #e04040]LOCK LOST[/]"
|
||||
)
|
||||
|
||||
def _log_event(self, markup: str) -> None:
|
||||
"""Write a message to the event log (safe from any thread via call_from_thread)."""
|
||||
if not self.is_mounted:
|
||||
return
|
||||
try:
|
||||
self.query_one("#track-log", RichLog).write(markup)
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
def _mark_stopped(self) -> None:
|
||||
"""Update UI to stopped state (called from circuit breaker)."""
|
||||
if not self.is_mounted:
|
||||
return
|
||||
try:
|
||||
self.query_one("#trk-status", Static).update(
|
||||
"[#506878]Status:[/] [bold #e04040]Error[/]"
|
||||
)
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
def _export_csv(self) -> None:
|
||||
if not self._records:
|
||||
return
|
||||
log = self.query_one("#track-log", RichLog)
|
||||
path = Path(f"skywalker-track-{datetime.now().strftime('%Y%m%d-%H%M%S')}.csv")
|
||||
try:
|
||||
with open(path, "w", newline="") as f:
|
||||
w = csv.DictWriter(f, fieldnames=list(self._records[0].keys()))
|
||||
w.writeheader()
|
||||
w.writerows(self._records)
|
||||
log = self.query_one("#track-log", RichLog)
|
||||
log.write(f"[#00d4aa]CSV exported: {path}[/]")
|
||||
except PermissionError:
|
||||
log.write(f"[bold #e04040]Permission denied: {path}[/]")
|
||||
except OSError as e:
|
||||
log.write(f"[bold #e04040]Export failed: {e}[/]")
|
||||
|
||||
def _export_jsonl(self) -> None:
|
||||
if not self._records:
|
||||
return
|
||||
log = self.query_one("#track-log", RichLog)
|
||||
path = Path(f"skywalker-track-{datetime.now().strftime('%Y%m%d-%H%M%S')}.jsonl")
|
||||
try:
|
||||
with open(path, "w") as f:
|
||||
for rec in self._records:
|
||||
f.write(json.dumps(rec) + "\n")
|
||||
log = self.query_one("#track-log", RichLog)
|
||||
log.write(f"[#00d4aa]JSONL exported: {path}[/]")
|
||||
except PermissionError:
|
||||
log.write(f"[bold #e04040]Permission denied: {path}[/]")
|
||||
except OSError as e:
|
||||
log.write(f"[bold #e04040]Export failed: {e}[/]")
|
||||
|
||||
@ -303,3 +303,52 @@ ProgressBar Bar {
|
||||
.right-panel {
|
||||
width: 1fr;
|
||||
}
|
||||
|
||||
/* ─── Radar scope ─── */
|
||||
|
||||
RadarScope {
|
||||
min-height: 12;
|
||||
min-width: 24;
|
||||
height: 1fr;
|
||||
background: #0a0a0a;
|
||||
border: round #0a2a0a;
|
||||
}
|
||||
|
||||
#track-radar-col {
|
||||
width: 1fr;
|
||||
min-width: 30;
|
||||
}
|
||||
|
||||
/* ─── Splash screen overlay ─── */
|
||||
|
||||
SplashScreen {
|
||||
align: center middle;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
SplashScreen #splash-container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
align: center middle;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
SplashScreen #splash-image {
|
||||
width: 100%;
|
||||
height: 1fr;
|
||||
content-align: center middle;
|
||||
}
|
||||
|
||||
/* ─── Star Wars overlay ─── */
|
||||
|
||||
StarWarsScreen {
|
||||
align: center middle;
|
||||
background: #000000 90%;
|
||||
}
|
||||
|
||||
StarWarsScreen #sw-container {
|
||||
width: 90%;
|
||||
height: 90%;
|
||||
background: #000000;
|
||||
border: round #1a3050;
|
||||
}
|
||||
|
||||
276
tui/src/skywalker_tui/widgets/radar_scope.py
Normal file
276
tui/src/skywalker_tui/widgets/radar_scope.py
Normal file
@ -0,0 +1,276 @@
|
||||
"""Radar scope widget — P1 green phosphor CRT aesthetic.
|
||||
|
||||
Renders a circular radar display using half-block characters for 2x vertical
|
||||
resolution. Each terminal cell becomes two pixel rows via the ▀ character
|
||||
with independent fg (top) and bg (bottom) colors.
|
||||
|
||||
The sweep beam rotates through 360 positions. Signal strength determines
|
||||
radial distance from center. Older samples decay in brightness (phosphor
|
||||
persistence). Concentric range rings and a crosshair provide scale reference.
|
||||
"""
|
||||
|
||||
import math
|
||||
from collections import deque
|
||||
|
||||
from textual.widget import Widget
|
||||
from textual.strip import Strip
|
||||
from rich.segment import Segment
|
||||
from rich.style import Style
|
||||
|
||||
|
||||
# P1 green phosphor palette — 8 intensity levels from dead to peak burn
|
||||
PHOSPHOR = [
|
||||
"#0a0a0a", # background / dead pixel
|
||||
"#0a1a0a", # very faint trace
|
||||
"#0a2a0a", # dim afterglow
|
||||
"#0a3a0a", # fading
|
||||
"#0a4a0f", # moderate
|
||||
"#0a5a10", # bright trace
|
||||
"#0a6a15", # very bright
|
||||
"#10ff30", # peak phosphor burn
|
||||
]
|
||||
|
||||
PHOSPHOR_STYLES = [Style(color=c) for c in PHOSPHOR]
|
||||
BG_COLOR = "#0a0a0a"
|
||||
BG_STYLE = Style(color=BG_COLOR, bgcolor=BG_COLOR)
|
||||
RING_COLOR = "#0a2a0a"
|
||||
CROSSHAIR_COLOR = "#0a3a0a"
|
||||
LOCK_RING_COLOR = "#10ff30"
|
||||
|
||||
|
||||
class RadarScope(Widget):
|
||||
"""Circular radar scope with phosphor decay and sweep beam."""
|
||||
|
||||
DEFAULT_CSS = """
|
||||
RadarScope {
|
||||
min-height: 12;
|
||||
min-width: 24;
|
||||
background: #0a0a0a;
|
||||
}
|
||||
"""
|
||||
|
||||
def __init__(self, max_samples: int = 360, **kwargs):
|
||||
super().__init__(**kwargs)
|
||||
self._samples: deque[float] = deque([0.0] * max_samples, maxlen=max_samples)
|
||||
self._max_samples = max_samples
|
||||
self._angle_idx = 0 # current sweep position (0..max_samples-1)
|
||||
self._locked = False
|
||||
|
||||
# Pre-computed geometry + LUTs (rebuilt on resize)
|
||||
self._cx = 0.0
|
||||
self._cy = 0.0
|
||||
self._radius = 0.0
|
||||
self._cols = 0
|
||||
self._rows = 0 # pixel rows (2x terminal rows)
|
||||
# Per-pixel LUTs: distance from center, angle-to-sample index
|
||||
self._dist_lut: list[list[float]] = []
|
||||
self._angle_lut: list[list[int]] = []
|
||||
# Per-pixel dx/dy for crosshair checks
|
||||
self._dx_lut: list[list[float]] = []
|
||||
self._dy_lut: list[list[float]] = []
|
||||
|
||||
def push(self, snr_db: float, max_snr: float = 16.0) -> None:
|
||||
"""Push a new signal sample. SNR is normalized to 0.0-1.0 range."""
|
||||
normalized = max(0.0, min(1.0, snr_db / max(0.1, max_snr)))
|
||||
self._samples.append(normalized)
|
||||
self._angle_idx = (self._angle_idx + 1) % self._max_samples
|
||||
self.refresh()
|
||||
|
||||
def set_locked(self, locked: bool) -> None:
|
||||
if locked != self._locked:
|
||||
self._locked = locked
|
||||
self.refresh()
|
||||
|
||||
def _recompute_geometry(self, width: int, height: int) -> None:
|
||||
"""Recompute center, radius, and per-pixel LUTs for current dimensions.
|
||||
|
||||
Pre-computes dist/angle for every pixel so render_line() avoids
|
||||
math.sqrt/math.atan2 per pixel per frame — ~O(1) lookup instead.
|
||||
"""
|
||||
self._cols = width
|
||||
self._rows = height * 2 # 2x vertical resolution via half-blocks
|
||||
# Radius fits within both dimensions, accounting for ~2:1 terminal char aspect
|
||||
rx = (width - 2) / 2.0
|
||||
ry = (height * 2 - 2) / 2.0
|
||||
self._radius = min(rx, ry)
|
||||
cx = width / 2.0
|
||||
cy = height # center in pixel rows (height * 2 / 2)
|
||||
self._cx = cx
|
||||
self._cy = cy
|
||||
|
||||
# Build LUTs for all pixel rows (height * 2) × columns
|
||||
pixel_rows = height * 2
|
||||
dist_lut = []
|
||||
angle_lut = []
|
||||
dx_lut = []
|
||||
dy_lut = []
|
||||
sqrt = math.sqrt
|
||||
atan2 = math.atan2
|
||||
degrees = math.degrees
|
||||
ms = self._max_samples
|
||||
|
||||
for py in range(pixel_rows):
|
||||
d_row = []
|
||||
a_row = []
|
||||
dxr = []
|
||||
dyr = []
|
||||
dy = py - cy
|
||||
for px in range(width):
|
||||
dx = px - cx
|
||||
dist = sqrt(dx * dx + dy * dy)
|
||||
d_row.append(dist)
|
||||
dxr.append(dx)
|
||||
dyr.append(dy)
|
||||
if dist >= 1.0:
|
||||
angle = atan2(dy, dx)
|
||||
angle_deg = (degrees(angle) + 360) % 360
|
||||
a_row.append(int(angle_deg / 360 * ms) % ms)
|
||||
else:
|
||||
a_row.append(0) # center pixel — angle irrelevant
|
||||
dist_lut.append(d_row)
|
||||
angle_lut.append(a_row)
|
||||
dx_lut.append(dxr)
|
||||
dy_lut.append(dyr)
|
||||
|
||||
self._dist_lut = dist_lut
|
||||
self._angle_lut = angle_lut
|
||||
self._dx_lut = dx_lut
|
||||
self._dy_lut = dy_lut
|
||||
|
||||
def render_line(self, y: int) -> Strip:
|
||||
"""Render one terminal row of the radar scope."""
|
||||
width = self.size.width
|
||||
height = self.size.height
|
||||
|
||||
if width < 4 or height < 4:
|
||||
return Strip([Segment(" " * width, BG_STYLE)])
|
||||
|
||||
if self._cols != width or self._rows != height * 2:
|
||||
self._recompute_geometry(width, height)
|
||||
|
||||
radius = self._radius
|
||||
if radius < 2:
|
||||
return Strip([Segment(" " * width, BG_STYLE)])
|
||||
|
||||
# Snapshot mutable state for consistent rendering across the frame
|
||||
samples = list(self._samples)
|
||||
angle_idx = self._angle_idx
|
||||
locked = self._locked
|
||||
|
||||
# Two pixel rows per terminal row
|
||||
py_top = y * 2
|
||||
py_bot = y * 2 + 1
|
||||
|
||||
# LUT rows for this terminal row
|
||||
dist_top = self._dist_lut[py_top] if py_top < len(self._dist_lut) else None
|
||||
dist_bot = self._dist_lut[py_bot] if py_bot < len(self._dist_lut) else None
|
||||
angle_top = self._angle_lut[py_top] if py_top < len(self._angle_lut) else None
|
||||
angle_bot = self._angle_lut[py_bot] if py_bot < len(self._angle_lut) else None
|
||||
dx_top = self._dx_lut[py_top] if py_top < len(self._dx_lut) else None
|
||||
dx_bot = self._dx_lut[py_bot] if py_bot < len(self._dx_lut) else None
|
||||
dy_top = self._dy_lut[py_top] if py_top < len(self._dy_lut) else None
|
||||
dy_bot = self._dy_lut[py_bot] if py_bot < len(self._dy_lut) else None
|
||||
|
||||
if not dist_top or not dist_bot:
|
||||
return Strip([Segment(" " * width, BG_STYLE)])
|
||||
|
||||
_pi = self._pixel_intensity
|
||||
segments = []
|
||||
for x in range(width):
|
||||
top_intensity = _pi(
|
||||
dist_top[x], angle_top[x], dx_top[x], dy_top[x],
|
||||
radius, samples, angle_idx, locked,
|
||||
)
|
||||
bot_intensity = _pi(
|
||||
dist_bot[x], angle_bot[x], dx_bot[x], dy_bot[x],
|
||||
radius, samples, angle_idx, locked,
|
||||
)
|
||||
|
||||
top_color = PHOSPHOR[top_intensity]
|
||||
bot_color = PHOSPHOR[bot_intensity]
|
||||
|
||||
# ▀ char: fg = top pixel, bg = bottom pixel
|
||||
style = Style(color=top_color, bgcolor=bot_color)
|
||||
segments.append(Segment("\u2580", style))
|
||||
|
||||
return Strip(segments)
|
||||
|
||||
def _pixel_intensity(self, dist: float, sample_idx: int,
|
||||
dx: float, dy: float,
|
||||
radius: float, samples: list[float],
|
||||
angle_idx: int, locked: bool) -> int:
|
||||
"""Compute phosphor intensity (0-7) for a single pixel.
|
||||
|
||||
Uses pre-computed dist/sample_idx/dx/dy from LUTs (no trig per pixel).
|
||||
Uses snapshot data (samples, angle_idx, locked) rather than mutable
|
||||
instance state for frame-consistent rendering.
|
||||
"""
|
||||
# Outside the scope circle
|
||||
if dist > radius + 1:
|
||||
return 0
|
||||
|
||||
# Lock ring — outer edge glow
|
||||
if locked and abs(dist - radius) < 1.5:
|
||||
return 7
|
||||
|
||||
# Range rings at 25%, 50%, 75% radius
|
||||
for ring_r in (0.25, 0.5, 0.75):
|
||||
if abs(dist - radius * ring_r) < 0.7:
|
||||
return 2 # dim ring
|
||||
|
||||
# Outer boundary ring
|
||||
if abs(dist - radius) < 0.7:
|
||||
return 2
|
||||
|
||||
# Crosshair (horizontal and vertical through center)
|
||||
if abs(dx) < 0.7 and dist < radius:
|
||||
return 2
|
||||
if abs(dy) < 0.7 and dist < radius:
|
||||
return 2
|
||||
|
||||
# Signal trace — map pixel angle to sample buffer
|
||||
if dist < 1.0:
|
||||
return 1 # center dot
|
||||
|
||||
if dist > radius:
|
||||
return 0
|
||||
|
||||
# sample_idx already computed in LUT via atan2 → degrees → index
|
||||
strength = samples[sample_idx]
|
||||
|
||||
# Signal renders as a blip at radial distance proportional to strength
|
||||
signal_dist = strength * radius * 0.85 # 85% of radius at max
|
||||
noise_floor_dist = radius * 0.05 # tiny noise floor ring
|
||||
|
||||
# Distance from the signal blip center
|
||||
blip_dist = abs(dist - signal_dist)
|
||||
noise_dist = abs(dist - noise_floor_dist)
|
||||
|
||||
# Age-based decay: how far behind the sweep beam is this angle?
|
||||
age = (angle_idx - sample_idx) % self._max_samples
|
||||
age_ratio = age / self._max_samples # 0 = newest, 1 = oldest
|
||||
|
||||
# Intensity from signal blip proximity
|
||||
if strength > 0.02 and blip_dist < 2.0:
|
||||
proximity = max(0.0, 1.0 - blip_dist / 2.0)
|
||||
freshness = max(0.0, 1.0 - age_ratio * 1.2)
|
||||
raw_intensity = proximity * freshness * strength
|
||||
return max(1, min(7, int(raw_intensity * 7 + 0.5)))
|
||||
|
||||
# Sweep beam — the most recent angle is brightest
|
||||
if age < 3:
|
||||
beam_intensity = max(0.0, 1.0 - age / 3.0)
|
||||
if dist < radius * 0.9:
|
||||
return max(1, min(5, int(beam_intensity * 5)))
|
||||
|
||||
# Noise floor glow
|
||||
if noise_dist < 1.0 and strength > 0:
|
||||
return 1
|
||||
|
||||
# Fill between center and signal (faint trail)
|
||||
if strength > 0.1 and dist < signal_dist and age_ratio < 0.5:
|
||||
trail = max(0.0, (1.0 - age_ratio * 2) * 0.3)
|
||||
if trail > 0.05:
|
||||
return 1
|
||||
|
||||
return 0
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
from textual.app import ComposeResult
|
||||
from textual.widget import Widget
|
||||
from textual.widgets import Label, Static
|
||||
from textual.widgets import Static
|
||||
from textual.reactive import reactive
|
||||
|
||||
|
||||
|
||||
@ -1,12 +1,6 @@
|
||||
"""Device status bar — connection state, firmware version, config bits."""
|
||||
|
||||
import sys
|
||||
import os
|
||||
|
||||
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "..", "..", "..", "tools"))
|
||||
|
||||
from textual.app import ComposeResult
|
||||
from textual.containers import Horizontal
|
||||
from textual.widget import Widget
|
||||
from textual.widgets import Label
|
||||
|
||||
|
||||
0
tui/tests/__init__.py
Normal file
0
tui/tests/__init__.py
Normal file
192
tui/tests/test_radar_scope.py
Normal file
192
tui/tests/test_radar_scope.py
Normal file
@ -0,0 +1,192 @@
|
||||
"""Tests for the radar scope widget — LUT geometry and pixel intensity."""
|
||||
|
||||
from skywalker_tui.widgets.radar_scope import RadarScope
|
||||
|
||||
|
||||
class TestRadarGeometry:
|
||||
"""LUT pre-computation and geometry tests."""
|
||||
|
||||
def _make_scope(self, width=40, height=20):
|
||||
scope = RadarScope()
|
||||
scope._recompute_geometry(width, height)
|
||||
return scope
|
||||
|
||||
def test_lut_dimensions(self):
|
||||
scope = self._make_scope(40, 20)
|
||||
# pixel rows = terminal rows * 2
|
||||
assert len(scope._dist_lut) == 40
|
||||
assert len(scope._angle_lut) == 40
|
||||
assert len(scope._dx_lut) == 40
|
||||
assert len(scope._dy_lut) == 40
|
||||
# each row has `width` columns
|
||||
assert len(scope._dist_lut[0]) == 40
|
||||
assert len(scope._angle_lut[0]) == 40
|
||||
|
||||
def test_center_pixel_distance_near_zero(self):
|
||||
scope = self._make_scope(40, 20)
|
||||
# center = (20, 20) in pixel coords
|
||||
cx_int = int(scope._cx)
|
||||
cy_int = int(scope._cy)
|
||||
dist = scope._dist_lut[cy_int][cx_int]
|
||||
assert dist < 1.0, f"Center pixel distance should be ~0, got {dist}"
|
||||
|
||||
def test_corner_pixel_outside_circle(self):
|
||||
scope = self._make_scope(40, 20)
|
||||
dist = scope._dist_lut[0][0]
|
||||
assert dist > scope._radius, "Corner should be outside the radar circle"
|
||||
|
||||
def test_radius_fits_within_bounds(self):
|
||||
scope = self._make_scope(60, 30)
|
||||
# radius should be ≤ half the smaller dimension
|
||||
assert scope._radius <= 30 # half of width
|
||||
assert scope._radius <= 29 # half of pixel height (60) - 1
|
||||
|
||||
def test_recompute_updates_on_resize(self):
|
||||
scope = self._make_scope(40, 20)
|
||||
r1 = scope._radius
|
||||
scope._recompute_geometry(80, 40)
|
||||
r2 = scope._radius
|
||||
assert r2 > r1, "Larger terminal should give larger radius"
|
||||
|
||||
|
||||
class TestPixelIntensity:
|
||||
"""Tests for _pixel_intensity with pre-computed LUT values."""
|
||||
|
||||
def _make_scope(self, width=40, height=20):
|
||||
scope = RadarScope()
|
||||
scope._recompute_geometry(width, height)
|
||||
return scope
|
||||
|
||||
def test_outside_circle_returns_zero(self):
|
||||
scope = self._make_scope()
|
||||
samples = [0.0] * 360
|
||||
result = scope._pixel_intensity(
|
||||
dist=scope._radius + 5,
|
||||
sample_idx=0, dx=20.0, dy=0.0,
|
||||
radius=scope._radius, samples=samples,
|
||||
angle_idx=0, locked=False,
|
||||
)
|
||||
assert result == 0
|
||||
|
||||
def test_center_on_crosshair(self):
|
||||
"""At exact center, crosshair check (abs(dx) < 0.7) fires before center dot."""
|
||||
scope = self._make_scope()
|
||||
samples = [0.0] * 360
|
||||
result = scope._pixel_intensity(
|
||||
dist=0.5, sample_idx=0, dx=0.0, dy=0.0,
|
||||
radius=scope._radius, samples=samples,
|
||||
angle_idx=0, locked=False,
|
||||
)
|
||||
assert result == 2 # crosshair overlaps center
|
||||
|
||||
def test_center_off_crosshair(self):
|
||||
"""Near center but off crosshair axes → center dot (1)."""
|
||||
scope = self._make_scope()
|
||||
samples = [0.0] * 360
|
||||
result = scope._pixel_intensity(
|
||||
dist=0.8, sample_idx=45, dx=0.8, dy=0.8,
|
||||
radius=scope._radius, samples=samples,
|
||||
angle_idx=0, locked=False,
|
||||
)
|
||||
assert result == 1 # center dot, off crosshair axes
|
||||
|
||||
def test_lock_ring_at_edge(self):
|
||||
scope = self._make_scope()
|
||||
samples = [0.0] * 360
|
||||
result = scope._pixel_intensity(
|
||||
dist=scope._radius, sample_idx=0, dx=scope._radius, dy=0.0,
|
||||
radius=scope._radius, samples=samples,
|
||||
angle_idx=0, locked=True,
|
||||
)
|
||||
assert result == 7 # peak phosphor for lock ring
|
||||
|
||||
def test_no_lock_ring_when_unlocked(self):
|
||||
scope = self._make_scope()
|
||||
samples = [0.0] * 360
|
||||
result = scope._pixel_intensity(
|
||||
dist=scope._radius, sample_idx=0, dx=scope._radius, dy=0.0,
|
||||
radius=scope._radius, samples=samples,
|
||||
angle_idx=0, locked=False,
|
||||
)
|
||||
# Should be boundary ring (2), not lock ring (7)
|
||||
assert result != 7
|
||||
|
||||
def test_crosshair_on_vertical(self):
|
||||
scope = self._make_scope()
|
||||
samples = [0.0] * 360
|
||||
# Point on the vertical crosshair (dx near 0, inside circle)
|
||||
result = scope._pixel_intensity(
|
||||
dist=scope._radius * 0.5,
|
||||
sample_idx=90, dx=0.0, dy=scope._radius * 0.5,
|
||||
radius=scope._radius, samples=samples,
|
||||
angle_idx=0, locked=False,
|
||||
)
|
||||
assert result == 2 # crosshair intensity
|
||||
|
||||
def test_strong_signal_blip_near_sweep(self):
|
||||
scope = self._make_scope()
|
||||
samples = [0.0] * 360
|
||||
# strength 0.47 → blip at 0.47 * r * 0.85 = 0.40*r
|
||||
# Clear of range rings at 0.25r, 0.50r, 0.75r (nearest gap: 0.15r ≈ 2.85px)
|
||||
samples[180] = 0.47
|
||||
signal_dist = 0.47 * scope._radius * 0.85
|
||||
# Verify we're not on a range ring
|
||||
r = scope._radius
|
||||
for ring_r in (0.25, 0.5, 0.75):
|
||||
assert abs(signal_dist - r * ring_r) > 0.7, (
|
||||
f"Signal blip at {signal_dist:.2f} overlaps range ring at {r * ring_r:.2f}"
|
||||
)
|
||||
result = scope._pixel_intensity(
|
||||
dist=signal_dist,
|
||||
sample_idx=180, dx=5.0, dy=5.0,
|
||||
radius=scope._radius, samples=samples,
|
||||
angle_idx=180, locked=False,
|
||||
)
|
||||
# Newest sample at sweep position should be visible
|
||||
assert result >= 3
|
||||
|
||||
def test_old_signal_decays(self):
|
||||
scope = self._make_scope()
|
||||
samples = [0.0] * 360
|
||||
samples[0] = 0.8
|
||||
signal_dist = 0.8 * scope._radius * 0.85
|
||||
# Sample at index 0, sweep beam at index 300 → age = 300
|
||||
result = scope._pixel_intensity(
|
||||
dist=signal_dist,
|
||||
sample_idx=0, dx=5.0, dy=5.0,
|
||||
radius=scope._radius, samples=samples,
|
||||
angle_idx=300, locked=False,
|
||||
)
|
||||
# Old sample should be dim or invisible
|
||||
assert result <= 2
|
||||
|
||||
|
||||
class TestRadarPush:
|
||||
"""Tests for the push() method and normalization."""
|
||||
|
||||
def test_push_normalizes_to_range(self):
|
||||
scope = RadarScope(max_samples=10)
|
||||
scope.push(8.0, max_snr=16.0)
|
||||
assert scope._samples[-1] == 0.5
|
||||
|
||||
def test_push_clamps_above_max(self):
|
||||
scope = RadarScope(max_samples=10)
|
||||
scope.push(20.0, max_snr=16.0)
|
||||
assert scope._samples[-1] == 1.0
|
||||
|
||||
def test_push_clamps_below_zero(self):
|
||||
scope = RadarScope(max_samples=10)
|
||||
scope.push(-5.0, max_snr=16.0)
|
||||
assert scope._samples[-1] == 0.0
|
||||
|
||||
def test_angle_index_wraps(self):
|
||||
scope = RadarScope(max_samples=4)
|
||||
for _ in range(5):
|
||||
scope.push(1.0)
|
||||
assert scope._angle_idx == 1 # 5 % 4 = 1
|
||||
|
||||
def test_set_locked(self):
|
||||
scope = RadarScope()
|
||||
assert scope._locked is False
|
||||
scope.set_locked(True)
|
||||
assert scope._locked is True
|
||||
48
tui/tests/test_splash.py
Normal file
48
tui/tests/test_splash.py
Normal file
@ -0,0 +1,48 @@
|
||||
"""Tests for the splash screen art catalog and selection."""
|
||||
|
||||
from skywalker_tui.screens.splash import SplashScreen, ASSETS_DIR, ART_CATALOG
|
||||
|
||||
|
||||
class TestSplashArtCatalog:
|
||||
"""Verify bundled pre-baked .ans art assets exist and catalog is consistent."""
|
||||
|
||||
def test_assets_dir_exists(self):
|
||||
assert ASSETS_DIR.is_dir(), f"Assets dir missing: {ASSETS_DIR}"
|
||||
|
||||
def test_all_catalog_entries_have_ans_files(self):
|
||||
missing = []
|
||||
for stem, artist, title in ART_CATALOG:
|
||||
path = ASSETS_DIR / f"{stem}.ans"
|
||||
if not path.exists():
|
||||
missing.append(f"{stem}.ans")
|
||||
assert not missing, f"Missing pre-baked .ans files: {missing}"
|
||||
|
||||
def test_catalog_has_entries(self):
|
||||
assert len(ART_CATALOG) >= 1
|
||||
|
||||
def test_ans_files_not_empty(self):
|
||||
for stem, _, _ in ART_CATALOG:
|
||||
path = ASSETS_DIR / f"{stem}.ans"
|
||||
if path.exists():
|
||||
assert path.stat().st_size > 0, f"{stem}.ans is empty"
|
||||
|
||||
def test_ans_files_contain_ansi_escapes(self):
|
||||
"""Pre-baked files should contain ANSI color escape sequences."""
|
||||
for stem, _, _ in ART_CATALOG:
|
||||
path = ASSETS_DIR / f"{stem}.ans"
|
||||
if path.exists():
|
||||
content = path.read_text()
|
||||
assert "\033[" in content, f"{stem}.ans has no ANSI escapes"
|
||||
assert "\u2580" in content, f"{stem}.ans has no half-block chars"
|
||||
|
||||
|
||||
class TestSplashScreenInit:
|
||||
"""Test SplashScreen construction (no app needed)."""
|
||||
|
||||
def test_selects_art_on_init(self):
|
||||
screen = SplashScreen()
|
||||
assert screen._ans_path is not None or len(ART_CATALOG) == 0
|
||||
if screen._ans_path:
|
||||
assert screen._ans_path.exists()
|
||||
assert screen._artist != ""
|
||||
assert screen._title != ""
|
||||
108
tui/tests/test_telnet_stripper.py
Normal file
108
tui/tests/test_telnet_stripper.py
Normal file
@ -0,0 +1,108 @@
|
||||
"""Tests for the stateful telnet IAC sequence stripper."""
|
||||
|
||||
from skywalker_tui.screens.starwars import _TelnetStripper
|
||||
|
||||
|
||||
class TestTelnetStripper:
|
||||
"""Edge cases for IAC parsing across chunk boundaries."""
|
||||
|
||||
def test_plain_text_passthrough(self):
|
||||
s = _TelnetStripper()
|
||||
assert s.feed(b"hello world") == b"hello world"
|
||||
|
||||
def test_strips_will_command(self):
|
||||
# IAC WILL ECHO = FF FB 01
|
||||
s = _TelnetStripper()
|
||||
assert s.feed(b"\xff\xfb\x01hello") == b"hello"
|
||||
|
||||
def test_strips_wont_command(self):
|
||||
s = _TelnetStripper()
|
||||
assert s.feed(b"\xff\xfc\x03data") == b"data"
|
||||
|
||||
def test_strips_do_command(self):
|
||||
s = _TelnetStripper()
|
||||
assert s.feed(b"\xff\xfd\x01data") == b"data"
|
||||
|
||||
def test_strips_dont_command(self):
|
||||
s = _TelnetStripper()
|
||||
assert s.feed(b"\xff\xfe\x01data") == b"data"
|
||||
|
||||
def test_escaped_0xff(self):
|
||||
"""Doubled 0xFF = literal 0xFF byte in content."""
|
||||
s = _TelnetStripper()
|
||||
assert s.feed(b"\xff\xff") == b"\xff"
|
||||
|
||||
def test_sub_negotiation(self):
|
||||
# IAC SB 0x01 ... IAC SE = FF FA 01 xx xx FF F0
|
||||
s = _TelnetStripper()
|
||||
data = b"before\xff\xfa\x01\x00\x00\xff\xf0after"
|
||||
assert s.feed(data) == b"beforeafter"
|
||||
|
||||
def test_split_iac_across_chunks(self):
|
||||
"""IAC command split: FF in chunk 1, FB 01 in chunk 2."""
|
||||
s = _TelnetStripper()
|
||||
out1 = s.feed(b"hello\xff")
|
||||
out2 = s.feed(b"\xfb\x01world")
|
||||
assert out1 == b"hello"
|
||||
assert out2 == b"world"
|
||||
|
||||
def test_split_will_at_boundary(self):
|
||||
"""IAC WILL split: FF FB in chunk 1, option byte in chunk 2."""
|
||||
s = _TelnetStripper()
|
||||
out1 = s.feed(b"aaa\xff\xfb")
|
||||
out2 = s.feed(b"\x03bbb")
|
||||
assert out1 == b"aaa"
|
||||
assert out2 == b"bbb"
|
||||
|
||||
def test_split_sub_negotiation(self):
|
||||
"""Sub-negotiation without closing IAC SE — buffers until next chunk."""
|
||||
s = _TelnetStripper()
|
||||
out1 = s.feed(b"x\xff\xfa\x01\x00")
|
||||
out2 = s.feed(b"\xff\xf0y")
|
||||
assert out1 == b"x"
|
||||
assert out2 == b"y"
|
||||
|
||||
def test_multiple_commands_in_one_chunk(self):
|
||||
s = _TelnetStripper()
|
||||
data = b"\xff\xfb\x01\xff\xfc\x03text\xff\xfd\x01"
|
||||
assert s.feed(data) == b"text"
|
||||
|
||||
def test_empty_input(self):
|
||||
s = _TelnetStripper()
|
||||
assert s.feed(b"") == b""
|
||||
|
||||
def test_just_iac_byte(self):
|
||||
"""Single 0xFF byte — should buffer, waiting for next byte."""
|
||||
s = _TelnetStripper()
|
||||
out1 = s.feed(b"\xff")
|
||||
assert out1 == b""
|
||||
out2 = s.feed(b"\xfb\x01done")
|
||||
assert out2 == b"done"
|
||||
|
||||
def test_unknown_iac_command(self):
|
||||
"""Unknown command byte after IAC — stripped as 2-byte sequence."""
|
||||
s = _TelnetStripper()
|
||||
assert s.feed(b"\xff\xf1text") == b"text"
|
||||
|
||||
|
||||
class TestFrameParsing:
|
||||
"""Tests for the ESC[H frame boundary detection logic."""
|
||||
|
||||
def test_frame_split_on_cursor_home(self):
|
||||
"""ESC[H splits data into frames."""
|
||||
data = b"frame1\x1b[Hframe2\x1b[Hframe3"
|
||||
frames = data.split(b"\x1b[H")
|
||||
assert frames == [b"frame1", b"frame2", b"frame3"]
|
||||
|
||||
def test_esc_j_in_frame(self):
|
||||
"""ESC[J (clear to end) can be stripped from frame data."""
|
||||
data = b"\x1b[Jsome text here"
|
||||
clean = data.replace(b"\x1b[J", b"")
|
||||
assert clean == b"some text here"
|
||||
|
||||
def test_empty_frames_between_homes(self):
|
||||
"""Consecutive ESC[H produces empty frames (filtered in code)."""
|
||||
data = b"\x1b[H\x1b[Htext"
|
||||
frames = data.split(b"\x1b[H")
|
||||
non_empty = [f for f in frames if f.strip()]
|
||||
assert non_empty == [b"text"]
|
||||
165
tui/uv.lock
generated
165
tui/uv.lock
generated
@ -2,6 +2,24 @@ version = 1
|
||||
revision = 3
|
||||
requires-python = ">=3.11"
|
||||
|
||||
[[package]]
|
||||
name = "colorama"
|
||||
version = "0.4.6"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "iniconfig"
|
||||
version = "2.3.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "linkify-it-py"
|
||||
version = "2.0.3"
|
||||
@ -52,6 +70,102 @@ wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "packaging"
|
||||
version = "26.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/65/ee/299d360cdc32edc7d2cf530f3accf79c4fca01e96ffc950d8a52213bd8e4/packaging-26.0.tar.gz", hash = "sha256:00243ae351a257117b6a241061796684b084ed1c516a08c48a3f7e147a9d80b4", size = 143416, upload-time = "2026-01-21T20:50:39.064Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/b7/b9/c538f279a4e237a006a2c98387d081e9eb060d203d8ed34467cc0f0b9b53/packaging-26.0-py3-none-any.whl", hash = "sha256:b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529", size = 74366, upload-time = "2026-01-21T20:50:37.788Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pillow"
|
||||
version = "12.1.1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/1f/42/5c74462b4fd957fcd7b13b04fb3205ff8349236ea74c7c375766d6c82288/pillow-12.1.1.tar.gz", hash = "sha256:9ad8fa5937ab05218e2b6a4cff30295ad35afd2f83ac592e68c0d871bb0fdbc4", size = 46980264, upload-time = "2026-02-11T04:23:07.146Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/2b/46/5da1ec4a5171ee7bf1a0efa064aba70ba3d6e0788ce3f5acd1375d23c8c0/pillow-12.1.1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:e879bb6cd5c73848ef3b2b48b8af9ff08c5b71ecda8048b7dd22d8a33f60be32", size = 5304084, upload-time = "2026-02-11T04:20:27.501Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/78/93/a29e9bc02d1cf557a834da780ceccd54e02421627200696fcf805ebdc3fb/pillow-12.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:365b10bb9417dd4498c0e3b128018c4a624dc11c7b97d8cc54effe3b096f4c38", size = 4657866, upload-time = "2026-02-11T04:20:29.827Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/13/84/583a4558d492a179d31e4aae32eadce94b9acf49c0337c4ce0b70e0a01f2/pillow-12.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d4ce8e329c93845720cd2014659ca67eac35f6433fd3050393d85f3ecef0dad5", size = 6232148, upload-time = "2026-02-11T04:20:31.329Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/d5/e2/53c43334bbbb2d3b938978532fbda8e62bb6e0b23a26ce8592f36bcc4987/pillow-12.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc354a04072b765eccf2204f588a7a532c9511e8b9c7f900e1b64e3e33487090", size = 8038007, upload-time = "2026-02-11T04:20:34.225Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/b8/a6/3d0e79c8a9d58150dd98e199d7c1c56861027f3829a3a60b3c2784190180/pillow-12.1.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7e7976bf1910a8116b523b9f9f58bf410f3e8aa330cd9a2bb2953f9266ab49af", size = 6345418, upload-time = "2026-02-11T04:20:35.858Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a2/c8/46dfeac5825e600579157eea177be43e2f7ff4a99da9d0d0a49533509ac5/pillow-12.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:597bd9c8419bc7c6af5604e55847789b69123bbe25d65cc6ad3012b4f3c98d8b", size = 7034590, upload-time = "2026-02-11T04:20:37.91Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/af/bf/e6f65d3db8a8bbfeaf9e13cc0417813f6319863a73de934f14b2229ada18/pillow-12.1.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2c1fc0f2ca5f96a3c8407e41cca26a16e46b21060fe6d5b099d2cb01412222f5", size = 6458655, upload-time = "2026-02-11T04:20:39.496Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f9/c2/66091f3f34a25894ca129362e510b956ef26f8fb67a0e6417bc5744e56f1/pillow-12.1.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:578510d88c6229d735855e1f278aa305270438d36a05031dfaae5067cc8eb04d", size = 7159286, upload-time = "2026-02-11T04:20:41.139Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/7b/5a/24bc8eb526a22f957d0cec6243146744966d40857e3d8deb68f7902ca6c1/pillow-12.1.1-cp311-cp311-win32.whl", hash = "sha256:7311c0a0dcadb89b36b7025dfd8326ecfa36964e29913074d47382706e516a7c", size = 6328663, upload-time = "2026-02-11T04:20:43.184Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/31/03/bef822e4f2d8f9d7448c133d0a18185d3cce3e70472774fffefe8b0ed562/pillow-12.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:fbfa2a7c10cc2623f412753cddf391c7f971c52ca40a3f65dc5039b2939e8563", size = 7031448, upload-time = "2026-02-11T04:20:44.696Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/49/70/f76296f53610bd17b2e7d31728b8b7825e3ac3b5b3688b51f52eab7c0818/pillow-12.1.1-cp311-cp311-win_arm64.whl", hash = "sha256:b81b5e3511211631b3f672a595e3221252c90af017e399056d0faabb9538aa80", size = 2453651, upload-time = "2026-02-11T04:20:46.243Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/07/d3/8df65da0d4df36b094351dce696f2989bec731d4f10e743b1c5f4da4d3bf/pillow-12.1.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ab323b787d6e18b3d91a72fc99b1a2c28651e4358749842b8f8dfacd28ef2052", size = 5262803, upload-time = "2026-02-11T04:20:47.653Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/d6/71/5026395b290ff404b836e636f51d7297e6c83beceaa87c592718747e670f/pillow-12.1.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:adebb5bee0f0af4909c30db0d890c773d1a92ffe83da908e2e9e720f8edf3984", size = 4657601, upload-time = "2026-02-11T04:20:49.328Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/b1/2e/1001613d941c67442f745aff0f7cc66dd8df9a9c084eb497e6a543ee6f7e/pillow-12.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:bb66b7cc26f50977108790e2456b7921e773f23db5630261102233eb355a3b79", size = 6234995, upload-time = "2026-02-11T04:20:51.032Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/07/26/246ab11455b2549b9233dbd44d358d033a2f780fa9007b61a913c5b2d24e/pillow-12.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:aee2810642b2898bb187ced9b349e95d2a7272930796e022efaf12e99dccd293", size = 8045012, upload-time = "2026-02-11T04:20:52.882Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/b2/8b/07587069c27be7535ac1fe33874e32de118fbd34e2a73b7f83436a88368c/pillow-12.1.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a0b1cd6232e2b618adcc54d9882e4e662a089d5768cd188f7c245b4c8c44a397", size = 6349638, upload-time = "2026-02-11T04:20:54.444Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/ff/79/6df7b2ee763d619cda2fb4fea498e5f79d984dae304d45a8999b80d6cf5c/pillow-12.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7aac39bcf8d4770d089588a2e1dd111cbaa42df5a94be3114222057d68336bd0", size = 7041540, upload-time = "2026-02-11T04:20:55.97Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/2c/5e/2ba19e7e7236d7529f4d873bdaf317a318896bac289abebd4bb00ef247f0/pillow-12.1.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ab174cd7d29a62dd139c44bf74b698039328f45cb03b4596c43473a46656b2f3", size = 6462613, upload-time = "2026-02-11T04:20:57.542Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/03/03/31216ec124bb5c3dacd74ce8efff4cc7f52643653bad4825f8f08c697743/pillow-12.1.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:339ffdcb7cbeaa08221cd401d517d4b1fe7a9ed5d400e4a8039719238620ca35", size = 7166745, upload-time = "2026-02-11T04:20:59.196Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/1f/e7/7c4552d80052337eb28653b617eafdef39adfb137c49dd7e831b8dc13bc5/pillow-12.1.1-cp312-cp312-win32.whl", hash = "sha256:5d1f9575a12bed9e9eedd9a4972834b08c97a352bd17955ccdebfeca5913fa0a", size = 6328823, upload-time = "2026-02-11T04:21:01.385Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/3d/17/688626d192d7261bbbf98846fc98995726bddc2c945344b65bec3a29d731/pillow-12.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:21329ec8c96c6e979cd0dfd29406c40c1d52521a90544463057d2aaa937d66a6", size = 7033367, upload-time = "2026-02-11T04:21:03.536Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/ed/fe/a0ef1f73f939b0eca03ee2c108d0043a87468664770612602c63266a43c4/pillow-12.1.1-cp312-cp312-win_arm64.whl", hash = "sha256:af9a332e572978f0218686636610555ae3defd1633597be015ed50289a03c523", size = 2453811, upload-time = "2026-02-11T04:21:05.116Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/d5/11/6db24d4bd7685583caeae54b7009584e38da3c3d4488ed4cd25b439de486/pillow-12.1.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:d242e8ac078781f1de88bf823d70c1a9b3c7950a44cdf4b7c012e22ccbcd8e4e", size = 4062689, upload-time = "2026-02-11T04:21:06.804Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/33/c0/ce6d3b1fe190f0021203e0d9b5b99e57843e345f15f9ef22fcd43842fd21/pillow-12.1.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:02f84dfad02693676692746df05b89cf25597560db2857363a208e393429f5e9", size = 4138535, upload-time = "2026-02-11T04:21:08.452Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a0/c6/d5eb6a4fb32a3f9c21a8c7613ec706534ea1cf9f4b3663e99f0d83f6fca8/pillow-12.1.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:e65498daf4b583091ccbb2556c7000abf0f3349fcd57ef7adc9a84a394ed29f6", size = 3601364, upload-time = "2026-02-11T04:21:10.194Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/14/a1/16c4b823838ba4c9c52c0e6bbda903a3fe5a1bdbf1b8eb4fff7156f3e318/pillow-12.1.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6c6db3b84c87d48d0088943bf33440e0c42370b99b1c2a7989216f7b42eede60", size = 5262561, upload-time = "2026-02-11T04:21:11.742Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/bb/ad/ad9dc98ff24f485008aa5cdedaf1a219876f6f6c42a4626c08bc4e80b120/pillow-12.1.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:8b7e5304e34942bf62e15184219a7b5ad4ff7f3bb5cca4d984f37df1a0e1aee2", size = 4657460, upload-time = "2026-02-11T04:21:13.786Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/9e/1b/f1a4ea9a895b5732152789326202a82464d5254759fbacae4deea3069334/pillow-12.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:18e5bddd742a44b7e6b1e773ab5db102bd7a94c32555ba656e76d319d19c3850", size = 6232698, upload-time = "2026-02-11T04:21:15.949Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/95/f4/86f51b8745070daf21fd2e5b1fe0eb35d4db9ca26e6d58366562fb56a743/pillow-12.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc44ef1f3de4f45b50ccf9136999d71abb99dca7706bc75d222ed350b9fd2289", size = 8041706, upload-time = "2026-02-11T04:21:17.723Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/29/9b/d6ecd956bb1266dd1045e995cce9b8d77759e740953a1c9aad9502a0461e/pillow-12.1.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5a8eb7ed8d4198bccbd07058416eeec51686b498e784eda166395a23eb99138e", size = 6346621, upload-time = "2026-02-11T04:21:19.547Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/71/24/538bff45bde96535d7d998c6fed1a751c75ac7c53c37c90dc2601b243893/pillow-12.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:47b94983da0c642de92ced1702c5b6c292a84bd3a8e1d1702ff923f183594717", size = 7038069, upload-time = "2026-02-11T04:21:21.378Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/94/0e/58cb1a6bc48f746bc4cb3adb8cabff73e2742c92b3bf7a220b7cf69b9177/pillow-12.1.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:518a48c2aab7ce596d3bf79d0e275661b846e86e4d0e7dec34712c30fe07f02a", size = 6460040, upload-time = "2026-02-11T04:21:23.148Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/6c/57/9045cb3ff11eeb6c1adce3b2d60d7d299d7b273a2e6c8381a524abfdc474/pillow-12.1.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a550ae29b95c6dc13cf69e2c9dc5747f814c54eeb2e32d683e5e93af56caa029", size = 7164523, upload-time = "2026-02-11T04:21:25.01Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/73/f2/9be9cb99f2175f0d4dbadd6616ce1bf068ee54a28277ea1bf1fbf729c250/pillow-12.1.1-cp313-cp313-win32.whl", hash = "sha256:a003d7422449f6d1e3a34e3dd4110c22148336918ddbfc6a32581cd54b2e0b2b", size = 6332552, upload-time = "2026-02-11T04:21:27.238Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/3f/eb/b0834ad8b583d7d9d42b80becff092082a1c3c156bb582590fcc973f1c7c/pillow-12.1.1-cp313-cp313-win_amd64.whl", hash = "sha256:344cf1e3dab3be4b1fa08e449323d98a2a3f819ad20f4b22e77a0ede31f0faa1", size = 7040108, upload-time = "2026-02-11T04:21:29.462Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/d5/7d/fc09634e2aabdd0feabaff4a32f4a7d97789223e7c2042fd805ea4b4d2c2/pillow-12.1.1-cp313-cp313-win_arm64.whl", hash = "sha256:5c0dd1636633e7e6a0afe7bf6a51a14992b7f8e60de5789018ebbdfae55b040a", size = 2453712, upload-time = "2026-02-11T04:21:31.072Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/19/2a/b9d62794fc8a0dd14c1943df68347badbd5511103e0d04c035ffe5cf2255/pillow-12.1.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0330d233c1a0ead844fc097a7d16c0abff4c12e856c0b325f231820fee1f39da", size = 5264880, upload-time = "2026-02-11T04:21:32.865Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/26/9d/e03d857d1347fa5ed9247e123fcd2a97b6220e15e9cb73ca0a8d91702c6e/pillow-12.1.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5dae5f21afb91322f2ff791895ddd8889e5e947ff59f71b46041c8ce6db790bc", size = 4660616, upload-time = "2026-02-11T04:21:34.97Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f7/ec/8a6d22afd02570d30954e043f09c32772bfe143ba9285e2fdb11284952cd/pillow-12.1.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2e0c664be47252947d870ac0d327fea7e63985a08794758aa8af5b6cb6ec0c9c", size = 6269008, upload-time = "2026-02-11T04:21:36.623Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/3d/1d/6d875422c9f28a4a361f495a5f68d9de4a66941dc2c619103ca335fa6446/pillow-12.1.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:691ab2ac363b8217f7d31b3497108fb1f50faab2f75dfb03284ec2f217e87bf8", size = 8073226, upload-time = "2026-02-11T04:21:38.585Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a1/cd/134b0b6ee5eda6dc09e25e24b40fdafe11a520bc725c1d0bbaa5e00bf95b/pillow-12.1.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e9e8064fb1cc019296958595f6db671fba95209e3ceb0c4734c9baf97de04b20", size = 6380136, upload-time = "2026-02-11T04:21:40.562Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/7a/a9/7628f013f18f001c1b98d8fffe3452f306a70dc6aba7d931019e0492f45e/pillow-12.1.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:472a8d7ded663e6162dafdf20015c486a7009483ca671cece7a9279b512fcb13", size = 7067129, upload-time = "2026-02-11T04:21:42.521Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/1e/f8/66ab30a2193b277785601e82ee2d49f68ea575d9637e5e234faaa98efa4c/pillow-12.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:89b54027a766529136a06cfebeecb3a04900397a3590fd252160b888479517bf", size = 6491807, upload-time = "2026-02-11T04:21:44.22Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/da/0b/a877a6627dc8318fdb84e357c5e1a758c0941ab1ddffdafd231983788579/pillow-12.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:86172b0831b82ce4f7877f280055892b31179e1576aa00d0df3bb1bbf8c3e524", size = 7190954, upload-time = "2026-02-11T04:21:46.114Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/83/43/6f732ff85743cf746b1361b91665d9f5155e1483817f693f8d57ea93147f/pillow-12.1.1-cp313-cp313t-win32.whl", hash = "sha256:44ce27545b6efcf0fdbdceb31c9a5bdea9333e664cda58a7e674bb74608b3986", size = 6336441, upload-time = "2026-02-11T04:21:48.22Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/3b/44/e865ef3986611bb75bfabdf94a590016ea327833f434558801122979cd0e/pillow-12.1.1-cp313-cp313t-win_amd64.whl", hash = "sha256:a285e3eb7a5a45a2ff504e31f4a8d1b12ef62e84e5411c6804a42197c1cf586c", size = 7045383, upload-time = "2026-02-11T04:21:50.015Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a8/c6/f4fb24268d0c6908b9f04143697ea18b0379490cb74ba9e8d41b898bd005/pillow-12.1.1-cp313-cp313t-win_arm64.whl", hash = "sha256:cc7d296b5ea4d29e6570dabeaed58d31c3fea35a633a69679fb03d7664f43fb3", size = 2456104, upload-time = "2026-02-11T04:21:51.633Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/03/d0/bebb3ffbf31c5a8e97241476c4cf8b9828954693ce6744b4a2326af3e16b/pillow-12.1.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:417423db963cb4be8bac3fc1204fe61610f6abeed1580a7a2cbb2fbda20f12af", size = 4062652, upload-time = "2026-02-11T04:21:53.19Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/2d/c0/0e16fb0addda4851445c28f8350d8c512f09de27bbb0d6d0bbf8b6709605/pillow-12.1.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:b957b71c6b2387610f556a7eb0828afbe40b4a98036fc0d2acfa5a44a0c2036f", size = 4138823, upload-time = "2026-02-11T04:22:03.088Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/6b/fb/6170ec655d6f6bb6630a013dd7cf7bc218423d7b5fa9071bf63dc32175ae/pillow-12.1.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:097690ba1f2efdeb165a20469d59d8bb03c55fb6621eb2041a060ae8ea3e9642", size = 3601143, upload-time = "2026-02-11T04:22:04.909Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/59/04/dc5c3f297510ba9a6837cbb318b87dd2b8f73eb41a43cc63767f65cb599c/pillow-12.1.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:2815a87ab27848db0321fb78c7f0b2c8649dee134b7f2b80c6a45c6831d75ccd", size = 5266254, upload-time = "2026-02-11T04:22:07.656Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/05/30/5db1236b0d6313f03ebf97f5e17cda9ca060f524b2fcc875149a8360b21c/pillow-12.1.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:f7ed2c6543bad5a7d5530eb9e78c53132f93dfa44a28492db88b41cdab885202", size = 4657499, upload-time = "2026-02-11T04:22:09.613Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/6f/18/008d2ca0eb612e81968e8be0bbae5051efba24d52debf930126d7eaacbba/pillow-12.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:652a2c9ccfb556235b2b501a3a7cf3742148cd22e04b5625c5fe057ea3e3191f", size = 6232137, upload-time = "2026-02-11T04:22:11.434Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/70/f1/f14d5b8eeb4b2cd62b9f9f847eb6605f103df89ef619ac68f92f748614ea/pillow-12.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d6e4571eedf43af33d0fc233a382a76e849badbccdf1ac438841308652a08e1f", size = 8042721, upload-time = "2026-02-11T04:22:13.321Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/5a/d6/17824509146e4babbdabf04d8171491fa9d776f7061ff6e727522df9bd03/pillow-12.1.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b574c51cf7d5d62e9be37ba446224b59a2da26dc4c1bb2ecbe936a4fb1a7cb7f", size = 6347798, upload-time = "2026-02-11T04:22:15.449Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/d1/ee/c85a38a9ab92037a75615aba572c85ea51e605265036e00c5b67dfafbfe2/pillow-12.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a37691702ed687799de29a518d63d4682d9016932db66d4e90c345831b02fb4e", size = 7039315, upload-time = "2026-02-11T04:22:17.24Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/ec/f3/bc8ccc6e08a148290d7523bde4d9a0d6c981db34631390dc6e6ec34cacf6/pillow-12.1.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:f95c00d5d6700b2b890479664a06e754974848afaae5e21beb4d83c106923fd0", size = 6462360, upload-time = "2026-02-11T04:22:19.111Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f6/ab/69a42656adb1d0665ab051eec58a41f169ad295cf81ad45406963105408f/pillow-12.1.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:559b38da23606e68681337ad74622c4dbba02254fc9cb4488a305dd5975c7eeb", size = 7165438, upload-time = "2026-02-11T04:22:21.041Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/02/46/81f7aa8941873f0f01d4b55cc543b0a3d03ec2ee30d617a0448bf6bd6dec/pillow-12.1.1-cp314-cp314-win32.whl", hash = "sha256:03edcc34d688572014ff223c125a3f77fb08091e4607e7745002fc214070b35f", size = 6431503, upload-time = "2026-02-11T04:22:22.833Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/40/72/4c245f7d1044b67affc7f134a09ea619d4895333d35322b775b928180044/pillow-12.1.1-cp314-cp314-win_amd64.whl", hash = "sha256:50480dcd74fa63b8e78235957d302d98d98d82ccbfac4c7e12108ba9ecbdba15", size = 7176748, upload-time = "2026-02-11T04:22:24.64Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/e4/ad/8a87bdbe038c5c698736e3348af5c2194ffb872ea52f11894c95f9305435/pillow-12.1.1-cp314-cp314-win_arm64.whl", hash = "sha256:5cb1785d97b0c3d1d1a16bc1d710c4a0049daefc4935f3a8f31f827f4d3d2e7f", size = 2544314, upload-time = "2026-02-11T04:22:26.685Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/6c/9d/efd18493f9de13b87ede7c47e69184b9e859e4427225ea962e32e56a49bc/pillow-12.1.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:1f90cff8aa76835cba5769f0b3121a22bd4eb9e6884cfe338216e557a9a548b8", size = 5268612, upload-time = "2026-02-11T04:22:29.884Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f8/f1/4f42eb2b388eb2ffc660dcb7f7b556c1015c53ebd5f7f754965ef997585b/pillow-12.1.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1f1be78ce9466a7ee64bfda57bdba0f7cc499d9794d518b854816c41bf0aa4e9", size = 4660567, upload-time = "2026-02-11T04:22:31.799Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/01/54/df6ef130fa43e4b82e32624a7b821a2be1c5653a5fdad8469687a7db4e00/pillow-12.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:42fc1f4677106188ad9a55562bbade416f8b55456f522430fadab3cef7cd4e60", size = 6269951, upload-time = "2026-02-11T04:22:33.921Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a9/48/618752d06cc44bb4aae8ce0cd4e6426871929ed7b46215638088270d9b34/pillow-12.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:98edb152429ab62a1818039744d8fbb3ccab98a7c29fc3d5fcef158f3f1f68b7", size = 8074769, upload-time = "2026-02-11T04:22:35.877Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/c3/bd/f1d71eb39a72fa088d938655afba3e00b38018d052752f435838961127d8/pillow-12.1.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d470ab1178551dd17fdba0fef463359c41aaa613cdcd7ff8373f54be629f9f8f", size = 6381358, upload-time = "2026-02-11T04:22:37.698Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/64/ef/c784e20b96674ed36a5af839305f55616f8b4f8aa8eeccf8531a6e312243/pillow-12.1.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6408a7b064595afcab0a49393a413732a35788f2a5092fdc6266952ed67de586", size = 7068558, upload-time = "2026-02-11T04:22:39.597Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/73/cb/8059688b74422ae61278202c4e1ad992e8a2e7375227be0a21c6b87ca8d5/pillow-12.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:5d8c41325b382c07799a3682c1c258469ea2ff97103c53717b7893862d0c98ce", size = 6493028, upload-time = "2026-02-11T04:22:42.73Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/c6/da/e3c008ed7d2dd1f905b15949325934510b9d1931e5df999bb15972756818/pillow-12.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:c7697918b5be27424e9ce568193efd13d925c4481dd364e43f5dff72d33e10f8", size = 7191940, upload-time = "2026-02-11T04:22:44.543Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/01/4a/9202e8d11714c1fc5951f2e1ef362f2d7fbc595e1f6717971d5dd750e969/pillow-12.1.1-cp314-cp314t-win32.whl", hash = "sha256:d2912fd8114fc5545aa3a4b5576512f64c55a03f3ebcca4c10194d593d43ea36", size = 6438736, upload-time = "2026-02-11T04:22:46.347Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f3/ca/cbce2327eb9885476b3957b2e82eb12c866a8b16ad77392864ad601022ce/pillow-12.1.1-cp314-cp314t-win_amd64.whl", hash = "sha256:4ceb838d4bd9dab43e06c363cab2eebf63846d6a4aeaea283bbdfd8f1a8ed58b", size = 7182894, upload-time = "2026-02-11T04:22:48.114Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/ec/d2/de599c95ba0a973b94410477f8bf0b6f0b5e67360eb89bcb1ad365258beb/pillow-12.1.1-cp314-cp314t-win_arm64.whl", hash = "sha256:7b03048319bfc6170e93bd60728a1af51d3dd7704935feb228c4d4faab35d334", size = 2546446, upload-time = "2026-02-11T04:22:50.342Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/56/11/5d43209aa4cb58e0cc80127956ff1796a68b928e6324bbf06ef4db34367b/pillow-12.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:600fd103672b925fe62ed08e0d874ea34d692474df6f4bf7ebe148b30f89f39f", size = 5228606, upload-time = "2026-02-11T04:22:52.106Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/5f/d5/3b005b4e4fda6698b371fa6c21b097d4707585d7db99e98d9b0b87ac612a/pillow-12.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:665e1b916b043cef294bc54d47bf02d87e13f769bc4bc5fa225a24b3a6c5aca9", size = 4622321, upload-time = "2026-02-11T04:22:53.827Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/df/36/ed3ea2d594356fd8037e5a01f6156c74bc8d92dbb0fa60746cc96cabb6e8/pillow-12.1.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:495c302af3aad1ca67420ddd5c7bd480c8867ad173528767d906428057a11f0e", size = 5247579, upload-time = "2026-02-11T04:22:56.094Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/54/9a/9cc3e029683cf6d20ae5085da0dafc63148e3252c2f13328e553aaa13cfb/pillow-12.1.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8fd420ef0c52c88b5a035a0886f367748c72147b2b8f384c9d12656678dfdfa9", size = 6989094, upload-time = "2026-02-11T04:22:58.288Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/00/98/fc53ab36da80b88df0967896b6c4b4cd948a0dc5aa40a754266aa3ae48b3/pillow-12.1.1-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f975aa7ef9684ce7e2c18a3aa8f8e2106ce1e46b94ab713d156b2898811651d3", size = 5313850, upload-time = "2026-02-11T04:23:00.554Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/30/02/00fa585abfd9fe9d73e5f6e554dc36cc2b842898cbfc46d70353dae227f8/pillow-12.1.1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8089c852a56c2966cf18835db62d9b34fef7ba74c726ad943928d494fa7f4735", size = 5963343, upload-time = "2026-02-11T04:23:02.934Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f2/26/c56ce33ca856e358d27fda9676c055395abddb82c35ac0f593877ed4562e/pillow-12.1.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:cb9bb857b2d057c6dfc72ac5f3b44836924ba15721882ef103cecb40d002d80e", size = 7029880, upload-time = "2026-02-11T04:23:04.783Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "platformdirs"
|
||||
version = "4.7.0"
|
||||
@ -61,6 +175,15 @@ wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/cb/e3/1eddccb2c39ecfbe09b3add42a04abcc3fa5b468aa4224998ffb8a7e9c8f/platformdirs-4.7.0-py3-none-any.whl", hash = "sha256:1ed8db354e344c5bb6039cd727f096af975194b508e37177719d562b2b540ee6", size = 18983, upload-time = "2026-02-12T22:21:52.237Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pluggy"
|
||||
version = "1.6.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload-time = "2025-05-15T12:30:07.975Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pygments"
|
||||
version = "2.19.2"
|
||||
@ -70,6 +193,35 @@ wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pytest"
|
||||
version = "9.0.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
dependencies = [
|
||||
{ name = "colorama", marker = "sys_platform == 'win32'" },
|
||||
{ name = "iniconfig" },
|
||||
{ name = "packaging" },
|
||||
{ name = "pluggy" },
|
||||
{ name = "pygments" },
|
||||
]
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/d1/db/7ef3487e0fb0049ddb5ce41d3a49c235bf9ad299b6a25d5780a89f19230f/pytest-9.0.2.tar.gz", hash = "sha256:75186651a92bd89611d1d9fc20f0b4345fd827c41ccd5c299a868a05d70edf11", size = 1568901, upload-time = "2025-12-06T21:30:51.014Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/3b/ab/b3226f0bd7cdcf710fbede2b3548584366da3b19b5021e74f5bde2a8fa3f/pytest-9.0.2-py3-none-any.whl", hash = "sha256:711ffd45bf766d5264d487b917733b453d917afd2b0ad65223959f59089f875b", size = 374801, upload-time = "2025-12-06T21:30:49.154Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pytest-asyncio"
|
||||
version = "1.3.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
dependencies = [
|
||||
{ name = "pytest" },
|
||||
{ name = "typing-extensions", marker = "python_full_version < '3.13'" },
|
||||
]
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/90/2c/8af215c0f776415f3590cac4f9086ccefd6fd463befeae41cd4d3f193e5a/pytest_asyncio-1.3.0.tar.gz", hash = "sha256:d7f52f36d231b80ee124cd216ffb19369aa168fc10095013c6b014a34d3ee9e5", size = 50087, upload-time = "2025-11-10T16:07:47.256Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/e5/35/f8b19922b6a25bc0880171a2f1a003eaeb93657475193ab516fd87cac9da/pytest_asyncio-1.3.0-py3-none-any.whl", hash = "sha256:611e26147c7f77640e6d0a92a38ed17c3e9848063698d5c93d5aa7aa11cebff5", size = 15075, upload-time = "2025-11-10T16:07:45.537Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pyusb"
|
||||
version = "1.3.1"
|
||||
@ -101,11 +253,24 @@ dependencies = [
|
||||
{ name = "textual" },
|
||||
]
|
||||
|
||||
[package.optional-dependencies]
|
||||
dev = [
|
||||
{ name = "pillow" },
|
||||
]
|
||||
test = [
|
||||
{ name = "pytest" },
|
||||
{ name = "pytest-asyncio" },
|
||||
]
|
||||
|
||||
[package.metadata]
|
||||
requires-dist = [
|
||||
{ name = "pillow", marker = "extra == 'dev'", specifier = ">=10.0" },
|
||||
{ name = "pytest", marker = "extra == 'test'", specifier = ">=8.0" },
|
||||
{ name = "pytest-asyncio", marker = "extra == 'test'", specifier = ">=0.24" },
|
||||
{ name = "pyusb", specifier = ">=1.3" },
|
||||
{ name = "textual", specifier = ">=3.0" },
|
||||
]
|
||||
provides-extras = ["dev", "test"]
|
||||
|
||||
[[package]]
|
||||
name = "textual"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user