diff --git a/.gitattributes b/.gitattributes index 55cab133643a2a73e083373d2106533678d0edd5..5b56d6db2c1cb387b69d35913568548fb13b5098 100644 --- a/.gitattributes +++ b/.gitattributes @@ -56,3 +56,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text # Video files - compressed *.mp4 filter=lfs diff=lfs merge=lfs -text *.webm filter=lfs diff=lfs merge=lfs -text +# Video files +*.mov filter=lfs diff=lfs merge=lfs -text +*.mp4 filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..496ee2ca6a2f08396a4076fe43dedf3dc0da8b6d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store \ No newline at end of file diff --git a/create-video.ipynb b/create-video.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..adbe3a73b0159a610dbef100f80f4135b374aacb --- /dev/null +++ b/create-video.ipynb @@ -0,0 +1,274 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Create Video!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "pip install opencv-python-headless # If you do not need GUI features\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Creating the demo\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import subprocess\n", + "import logging\n", + "from glob import glob\n", + "import re\n", + "\n", + "# Configure logging\n", + "logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')\n", + "logger = logging.getLogger(__name__)\n", + "\n", + "def create_near_lossless_h265_video(input_folder, output_file, fps=30, frames_per_image=3, crf=10):\n", + " if not os.path.exists(input_folder):\n", + " logger.error(f\"Input folder '{input_folder}' does not exist.\")\n", + " return\n", + "\n", + " png_files = sorted(glob(os.path.join(input_folder, '*.png')))\n", + " if not png_files:\n", + " logger.error(f\"No PNG files found in {input_folder}\")\n", + " return\n", + "\n", + " num_images = len(png_files)\n", + " logger.info(f\"Found {num_images} PNG files.\")\n", + "\n", + " # Calculate expected duration\n", + " expected_duration = (num_images * frames_per_image) / fps\n", + " logger.info(f\"Expected duration: {expected_duration:.2f} seconds\")\n", + "\n", + " # FFmpeg command for near-lossless 10-bit H.265 encoding\n", + " ffmpeg_command = [\n", + " 'ffmpeg',\n", + " '-framerate', f'{1/(frames_per_image/fps)}', # Input framerate\n", + " '-i', os.path.join(input_folder, '%*.png'), # Input pattern for all PNG files\n", + " '-fps_mode', 'vfr',\n", + " '-pix_fmt', 'yuv420p10le', # 10-bit pixel format\n", + " '-c:v', 'libx265', # Use libx265 encoder\n", + " '-preset', 'slow', # Slowest preset for best compression efficiency\n", + " '-crf', str(crf), # Constant Rate Factor (0-51, lower is higher quality)\n", + " '-profile:v', 'main10', # 10-bit profile\n", + " '-x265-params', f\"log-level=error:keyint={2*fps}:min-keyint={fps}:scenecut=0\", # Ensure consistent encoding\n", + " '-tag:v', 'hvc1',\n", + " '-y',\n", + " output_file\n", + " ]\n", + "\n", + " try:\n", + " logger.info(\"Starting near-lossless 10-bit video creation...\")\n", + " process = subprocess.Popen(ffmpeg_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)\n", + " \n", + " encoding_speed = None\n", + " \n", + " for line in process.stderr:\n", + " print(line, end='') # Print FFmpeg output in real-time\n", + " \n", + " speed_match = re.search(r'speed=\\s*([\\d.]+)x', line)\n", + " if speed_match:\n", + " encoding_speed = float(speed_match.group(1))\n", + " \n", + " process.wait()\n", + " \n", + " if encoding_speed:\n", + " logger.info(f\"Encoding speed: {encoding_speed:.2f}x\")\n", + " \n", + " if process.returncode == 0:\n", + " logger.info(f\"Video created successfully: {output_file}\")\n", + " \n", + " probe_command = ['ffprobe', '-v', 'error', '-show_entries', 'stream=codec_name,width,height,duration,bit_rate,profile', '-of', 'default=noprint_wrappers=1', output_file]\n", + " probe_result = subprocess.run(probe_command, capture_output=True, text=True)\n", + " logger.info(f\"Video properties:\\n{probe_result.stdout}\")\n", + " \n", + " duration_command = ['ffprobe', '-v', 'error', '-show_entries', 'format=duration', '-of', 'default=noprint_wrappers=1:nokey=1', output_file]\n", + " duration_result = subprocess.run(duration_command, capture_output=True, text=True)\n", + " actual_duration = float(duration_result.stdout.strip())\n", + " logger.info(f\"Actual video duration: {actual_duration:.2f} seconds\")\n", + " if abs(actual_duration - expected_duration) > 1:\n", + " logger.warning(f\"Video duration mismatch. Expected: {expected_duration:.2f}, Actual: {actual_duration:.2f}\")\n", + " else:\n", + " logger.info(\"Video duration check passed.\")\n", + " else:\n", + " logger.error(f\"Error during video creation. FFmpeg returned code {process.returncode}\")\n", + "\n", + " except subprocess.CalledProcessError as e:\n", + " logger.error(f\"Error during video creation: {e}\")\n", + " logger.error(f\"FFmpeg error output:\\n{e.stderr}\")\n", + "\n", + "if __name__ == \"__main__\":\n", + " input_folder = 'train'\n", + " output_file = 'near_lossless_output.mp4'\n", + " fps = 30\n", + " frames_per_image = 3\n", + " crf = 18 # Very low CRF for near-lossless quality (0 is lossless, but often overkill)\n", + "\n", + " create_near_lossless_h265_video(input_folder, output_file, fps, frames_per_image, crf)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Transfer File" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import subprocess\n", + "import logging\n", + "from glob import glob\n", + "import re\n", + "\n", + "# Configure logging\n", + "logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')\n", + "logger = logging.getLogger(__name__)\n", + "\n", + "def create_high_quality_video(input_folder, output_file, fps=60, frames_per_image=3, codec='ffv1'):\n", + " if not os.path.exists(input_folder):\n", + " logger.error(f\"Input folder '{input_folder}' does not exist.\")\n", + " return\n", + "\n", + " png_files = sorted(glob(os.path.join(input_folder, '*.png')))\n", + " if not png_files:\n", + " logger.error(f\"No PNG files found in {input_folder}\")\n", + " return\n", + "\n", + " num_images = len(png_files)\n", + " logger.info(f\"Found {num_images} PNG files.\")\n", + "\n", + " # Calculate expected duration\n", + " expected_duration = (num_images * frames_per_image) / fps\n", + " logger.info(f\"Expected duration: {expected_duration:.2f} seconds\")\n", + "\n", + " # Base FFmpeg command\n", + " ffmpeg_command = [\n", + " 'ffmpeg',\n", + " '-framerate', f'{1/(frames_per_image/fps)}', # Input framerate\n", + " '-i', os.path.join(input_folder, '%*.png'), # Input pattern for all PNG files\n", + " '-fps_mode', 'vfr',\n", + " ]\n", + "\n", + " # Codec-specific settings\n", + " if codec == 'ffv1':\n", + " output_file = output_file.rsplit('.', 1)[0] + '.mkv' # FFV1 is typically used with MKV container\n", + " ffmpeg_command.extend([\n", + " '-c:v', 'ffv1',\n", + " '-level', '3',\n", + " '-coder', '1',\n", + " '-context', '1',\n", + " '-g', '1',\n", + " '-slices', '24',\n", + " '-slicecrc', '1'\n", + " ])\n", + " logger.info(\"Using FFV1 codec (lossless)\")\n", + " elif codec == 'prores':\n", + " output_file = output_file.rsplit('.', 1)[0] + '.mov' # ProRes is typically used with MOV container\n", + " ffmpeg_command.extend([\n", + " '-c:v', 'prores_ks',\n", + " '-profile:v', 'proxy', # Use ProRes 422 Proxy profile\n", + " '-qscale:v', '11' # Adjust quality scale; higher values mean lower quality. 11 is typical for proxy quality.\n", + "])\n", + "\n", + " logger.info(\"Using ProRes codec (near-lossless)\")\n", + " else:\n", + " logger.error(f\"Unsupported codec: {codec}\")\n", + " return\n", + "\n", + " ffmpeg_command.extend(['-y', output_file])\n", + "\n", + " try:\n", + " logger.info(f\"Starting high-quality video creation with {codec} codec...\")\n", + " process = subprocess.Popen(ffmpeg_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)\n", + " \n", + " encoding_speed = None\n", + " \n", + " for line in process.stderr:\n", + " print(line, end='') # Print FFmpeg output in real-time\n", + " \n", + " speed_match = re.search(r'speed=\\s*([\\d.]+)x', line)\n", + " if speed_match:\n", + " encoding_speed = float(speed_match.group(1))\n", + " \n", + " process.wait()\n", + " \n", + " if encoding_speed:\n", + " logger.info(f\"Encoding speed: {encoding_speed:.4f}x\")\n", + " \n", + " if process.returncode == 0:\n", + " logger.info(f\"Video created successfully: {output_file}\")\n", + " \n", + " probe_command = ['ffprobe', '-v', 'error', '-show_entries', 'stream=codec_name,width,height,duration,bit_rate', '-of', 'default=noprint_wrappers=1', output_file]\n", + " probe_result = subprocess.run(probe_command, capture_output=True, text=True)\n", + " logger.info(f\"Video properties:\\n{probe_result.stdout}\")\n", + " \n", + " duration_command = ['ffprobe', '-v', 'error', '-show_entries', 'format=duration', '-of', 'default=noprint_wrappers=1:nokey=1', output_file]\n", + " duration_result = subprocess.run(duration_command, capture_output=True, text=True)\n", + " actual_duration = float(duration_result.stdout.strip())\n", + " logger.info(f\"Actual video duration: {actual_duration:.2f} seconds\")\n", + " if abs(actual_duration - expected_duration) > 1:\n", + " logger.warning(f\"Video duration mismatch. Expected: {expected_duration:.2f}, Actual: {actual_duration:.2f}\")\n", + " else:\n", + " logger.info(\"Video duration check passed.\")\n", + " else:\n", + " logger.error(f\"Error during video creation. FFmpeg returned code {process.returncode}\")\n", + "\n", + " except subprocess.CalledProcessError as e:\n", + " logger.error(f\"Error during video creation: {e}\")\n", + " logger.error(f\"FFmpeg error output:\\n{e.stderr}\")\n", + "\n", + "if __name__ == \"__main__\":\n", + " input_folder = 'train'\n", + " output_file = 'high_quality_output.mp4'\n", + " fps = 60\n", + " frames_per_image = 3\n", + " codec = 'prores' # Options: 'ffv1' (lossless) or 'prores' (near-lossless)\n", + "\n", + " create_high_quality_video(input_folder, output_file, fps, frames_per_image, codec)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.14" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/high_quality_output.mov b/high_quality_output.mov new file mode 100644 index 0000000000000000000000000000000000000000..c34ad4c1eb4ef36a552890c577dd6311b65c5c05 --- /dev/null +++ b/high_quality_output.mov @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc424361abf95a0d587a9d1b8529a3d378688d3ef770e8eae13eb699a1a0fff1 +size 237462852 diff --git a/image_metadata_extraction.ipynb b/image_metadata_extraction.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..055637bc9ec5827e66d7832d1e8be1fb1299f2c8 --- /dev/null +++ b/image_metadata_extraction.ipynb @@ -0,0 +1,173 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Dependencies" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "pip install pillow datasets pandas pypng uuid\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Preproccessing" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import uuid\n", + "import shutil\n", + "\n", + "def rename_and_move_images(source_dir, target_dir):\n", + " # Create the target directory if it doesn't exist\n", + " os.makedirs(target_dir, exist_ok=True)\n", + "\n", + " # List of common image file extensions\n", + " image_extensions = ('.jpg', '.jpeg', '.png', '.gif', '.bmp', '.tiff')\n", + "\n", + " # Walk through the source directory and its subdirectories\n", + " for root, dirs, files in os.walk(source_dir):\n", + " for file in files:\n", + " # Check if the file has an image extension\n", + " if file.lower().endswith(image_extensions):\n", + " # Generate a new filename with UUID\n", + " new_filename = str(uuid.uuid4()) + os.path.splitext(file)[1]\n", + " \n", + " # Construct full file paths\n", + " old_path = os.path.join(root, file)\n", + " new_path = os.path.join(target_dir, new_filename)\n", + " \n", + " # Move and rename the file\n", + " shutil.move(old_path, new_path)\n", + " print(f\"Moved and renamed: {old_path} -> {new_path}\")\n", + "\n", + "# Usage\n", + "source_directory = \"images\"\n", + "target_directory = \"train\"\n", + "\n", + "rename_and_move_images(source_directory, target_directory)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Extract the Metadata" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import json\n", + "import png\n", + "import pandas as pd\n", + "\n", + "# Directory containing images\n", + "image_dir = 'train'\n", + "metadata_list = []\n", + "\n", + "# Function to extract the JSON data from the tEXt chunk in PNG images\n", + "def extract_metadata_from_png(image_path):\n", + " with open(image_path, 'rb') as f:\n", + " reader = png.Reader(file=f)\n", + " chunks = reader.chunks()\n", + " for chunk_type, chunk_data in chunks:\n", + " if chunk_type == b'tEXt':\n", + " # Convert bytes to string\n", + " chunk_text = chunk_data.decode('latin1')\n", + " if 'prompt' in chunk_text:\n", + " try:\n", + " # Extract JSON string after \"prompt\\0\"\n", + " json_str = chunk_text.split('prompt\\0', 1)[1]\n", + " json_data = json.loads(json_str)\n", + " inputs = json_data.get('3', {}).get('inputs', {})\n", + " seed = inputs.get('seed', 'N/A')\n", + " positive_prompt = json_data.get('6', {}).get('inputs', {}).get('text', 'N/A')\n", + " negative_prompt = json_data.get('7', {}).get('inputs', {}).get('text', 'N/A')\n", + " model = json_data.get('4', {}).get('inputs', {}).get('ckpt_name', 'N/A')\n", + " steps = inputs.get('steps', 'N/A')\n", + " cfg = inputs.get('cfg', 'N/A')\n", + " sampler_name = inputs.get('sampler_name', 'N/A')\n", + " scheduler = inputs.get('scheduler', 'N/A')\n", + " denoise = inputs.get('denoise', 'N/A')\n", + " return {\n", + " 'seed': seed,\n", + " 'positive_prompt': positive_prompt,\n", + " 'negative_prompt': negative_prompt,\n", + " 'model': model,\n", + " 'steps': steps,\n", + " 'cfg': cfg,\n", + " 'sampler_name': sampler_name,\n", + " 'scheduler': scheduler,\n", + " 'denoise': denoise\n", + " }\n", + " except json.JSONDecodeError:\n", + " pass\n", + " return {}\n", + "\n", + "# Loop through all images in the directory\n", + "for file_name in os.listdir(image_dir):\n", + " if file_name.endswith('.png'):\n", + " image_path = os.path.join(image_dir, file_name)\n", + " metadata = extract_metadata_from_png(image_path)\n", + " metadata['file_name'] = file_name\n", + " metadata_list.append(metadata)\n", + "\n", + "# Convert metadata to DataFrame\n", + "metadata_df = pd.DataFrame(metadata_list)\n", + "\n", + "# Ensure 'file_name' is the first column\n", + "columns_order = ['file_name', 'seed', 'positive_prompt', 'negative_prompt', 'model', 'steps', 'cfg', 'sampler_name', 'scheduler', 'denoise']\n", + "metadata_df = metadata_df[columns_order]\n", + "\n", + "# Save metadata to a CSV file\n", + "metadata_csv_path = 'train/metadata.csv'\n", + "metadata_df.to_csv(metadata_csv_path, index=False)\n", + "\n", + "print(\"Metadata extraction complete. Metadata saved to:\", metadata_csv_path)\n", + "\n", + "\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.14" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/train/00455cd0-6372-41e6-9ec0-07e92a0c9a08.png b/train/00455cd0-6372-41e6-9ec0-07e92a0c9a08.png new file mode 100644 index 0000000000000000000000000000000000000000..920e39f6d830796b149f4e04a1184cd7482e75eb --- /dev/null +++ b/train/00455cd0-6372-41e6-9ec0-07e92a0c9a08.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae5ffef5c9c1f0294d2c4685e4d95463c1d416d12c6afd6c22f4a3908e0e64c2 +size 2068241 diff --git a/train/0071a8c3-b16d-4de5-932b-d40b5b7661d1.png b/train/0071a8c3-b16d-4de5-932b-d40b5b7661d1.png new file mode 100644 index 0000000000000000000000000000000000000000..dfb351432debb5b97e2e2aafdb57a30d025303ba --- /dev/null +++ b/train/0071a8c3-b16d-4de5-932b-d40b5b7661d1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aeb898def0803557ce3e1591dcc27d53c63f94927dcf25a3dee7bd10b5da5c1 +size 2080276 diff --git a/train/0092e70e-e5d0-416f-a08d-738d823c0263.png b/train/0092e70e-e5d0-416f-a08d-738d823c0263.png new file mode 100644 index 0000000000000000000000000000000000000000..3632ce840fd593af9993e2c9364bce5559c6b533 --- /dev/null +++ b/train/0092e70e-e5d0-416f-a08d-738d823c0263.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9a6af7be83db9b913a39895cc997c1aa77308772467f22b68efc81c3b879c6a +size 2113670 diff --git a/train/00b6572d-cddd-401d-971a-6115b71bc71c.png b/train/00b6572d-cddd-401d-971a-6115b71bc71c.png new file mode 100644 index 0000000000000000000000000000000000000000..ffb5426087ba6cf8ed53edd13d6a319f6870b9ad --- /dev/null +++ b/train/00b6572d-cddd-401d-971a-6115b71bc71c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e8d3761855af02849d6b1a0c8eedf64a48f507d5671897c34e93ba9a4ae14c +size 2134698 diff --git a/train/00eafd43-d28d-4c33-b28a-899bd47da74a.png b/train/00eafd43-d28d-4c33-b28a-899bd47da74a.png new file mode 100644 index 0000000000000000000000000000000000000000..e1f93e9d51a545fbecef6960c9df21b4e4ec53f7 --- /dev/null +++ b/train/00eafd43-d28d-4c33-b28a-899bd47da74a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a25bba16fec0e71c095f7ed9605f4c5f964cf6fd3ec65d61435af9f6ab67195 +size 2114301 diff --git a/train/0154dcbe-9039-412b-af6c-53e25da0a86d.png b/train/0154dcbe-9039-412b-af6c-53e25da0a86d.png new file mode 100644 index 0000000000000000000000000000000000000000..1fc6ee36768ba66f54f8530bd60a519b0565d8bb --- /dev/null +++ b/train/0154dcbe-9039-412b-af6c-53e25da0a86d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e94aa9fbf2ac0ed4844e35ce2ef31c719b8583657150bf6350940343f7a2137e +size 2127437 diff --git a/train/015dd218-e636-44d9-8664-26932c9999b0.png b/train/015dd218-e636-44d9-8664-26932c9999b0.png new file mode 100644 index 0000000000000000000000000000000000000000..b18ca86296f2dacd0a85bc204550f4146d7b910b --- /dev/null +++ b/train/015dd218-e636-44d9-8664-26932c9999b0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96571497f1d35b75ffe7a8909839fe06ff8488a990551d2a1f6d6a5717650410 +size 2124570 diff --git a/train/015f9c37-62da-4756-b6f5-4e1c9d48f21a.png b/train/015f9c37-62da-4756-b6f5-4e1c9d48f21a.png new file mode 100644 index 0000000000000000000000000000000000000000..7f2c83aa9b70b7e065e6f61903ed10b2e324ddf2 --- /dev/null +++ b/train/015f9c37-62da-4756-b6f5-4e1c9d48f21a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff84c87425b2be8fc6f622b4324d3ed2e10b6b2f8fbe0129c8273e5fecb110b +size 2221160 diff --git a/train/0178de63-7d50-4f3e-9a99-f14a71e07586.png b/train/0178de63-7d50-4f3e-9a99-f14a71e07586.png new file mode 100644 index 0000000000000000000000000000000000000000..d9d172eb0129c41c4c7978994c481950511eb2af --- /dev/null +++ b/train/0178de63-7d50-4f3e-9a99-f14a71e07586.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6767263b73ceb440963698e012c00c9d84a565e56f1ec8803d675abac371bf +size 2227689 diff --git a/train/01d76e8e-10e6-4926-8c9b-2c23d7a84c5c.png b/train/01d76e8e-10e6-4926-8c9b-2c23d7a84c5c.png new file mode 100644 index 0000000000000000000000000000000000000000..692b94e17515c90b536e4a0fed0ece76b3a36ed0 --- /dev/null +++ b/train/01d76e8e-10e6-4926-8c9b-2c23d7a84c5c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fc09dac8600db65946920101717d5f4fce6d8abb17966a94f0efcb0d345f24 +size 2100856 diff --git a/train/02073830-7134-407a-8b6f-c734930164ea.png b/train/02073830-7134-407a-8b6f-c734930164ea.png new file mode 100644 index 0000000000000000000000000000000000000000..934f540615e3d8af385f215d7215d844958fc2ea --- /dev/null +++ b/train/02073830-7134-407a-8b6f-c734930164ea.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6225a70b9654a69ea931c748d712442e9df4cf90586a2cb338f2b6e58ae75953 +size 2208691 diff --git a/train/02167913-42d2-4f78-9451-26e118d5270f.png b/train/02167913-42d2-4f78-9451-26e118d5270f.png new file mode 100644 index 0000000000000000000000000000000000000000..6ad609cbaafb6c00450935ee7c48099b37c9bfd3 --- /dev/null +++ b/train/02167913-42d2-4f78-9451-26e118d5270f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b844705269c74ffbcef4ee8c02884801f4eec1cfbe82c32d27844ccde8bb00 +size 1989383 diff --git a/train/025e6153-83c1-4f6c-84eb-3cf176674699.png b/train/025e6153-83c1-4f6c-84eb-3cf176674699.png new file mode 100644 index 0000000000000000000000000000000000000000..b4f1a9fe9a0ee397ac3a020cce0fc0b38fc0fa07 --- /dev/null +++ b/train/025e6153-83c1-4f6c-84eb-3cf176674699.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f50b486b3e9b2a36713392430b6ce3f2f56c49d0c0361327ed81e352815b573 +size 2123422 diff --git a/train/02609d0c-651c-4c18-b027-67a18efcb0e5.png b/train/02609d0c-651c-4c18-b027-67a18efcb0e5.png new file mode 100644 index 0000000000000000000000000000000000000000..1e1790260af901dc956a965104fbd01121c0b684 --- /dev/null +++ b/train/02609d0c-651c-4c18-b027-67a18efcb0e5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d81be039b6c4212fff5a978c9ff8f8c8c9469b80f4f8f637008f8c5639799d7 +size 2258141 diff --git a/train/02773e2a-3abf-4669-abba-4102b3d9d149.png b/train/02773e2a-3abf-4669-abba-4102b3d9d149.png new file mode 100644 index 0000000000000000000000000000000000000000..35b40e99702816082d67ee5fd5f2d378b688d51a --- /dev/null +++ b/train/02773e2a-3abf-4669-abba-4102b3d9d149.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8932ea1283bbd32f395f2036cc776b4307418f7246a14b523815617a76249cbf +size 2185419 diff --git a/train/02b3ff90-1780-4ae1-81f9-64723d74a738.png b/train/02b3ff90-1780-4ae1-81f9-64723d74a738.png new file mode 100644 index 0000000000000000000000000000000000000000..324f50f3db8d4c811f41c57eb301733554613ef1 --- /dev/null +++ b/train/02b3ff90-1780-4ae1-81f9-64723d74a738.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7082bcd10caddd45d7015d50752bcc438d1c59a374d1b290756ca904a948da6 +size 2185904 diff --git a/train/02b71c19-e6a8-46e0-975c-66089fdea26d.png b/train/02b71c19-e6a8-46e0-975c-66089fdea26d.png new file mode 100644 index 0000000000000000000000000000000000000000..e55ec406360086106ee5abc12a2b96bab1c0ae40 --- /dev/null +++ b/train/02b71c19-e6a8-46e0-975c-66089fdea26d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb035e0f7c6f3019b137badcca7212a6fd924f1fc56b8c53e957df219b5c070 +size 2132793 diff --git a/train/02c500de-33df-41fb-a39f-c16bfba4a015.png b/train/02c500de-33df-41fb-a39f-c16bfba4a015.png new file mode 100644 index 0000000000000000000000000000000000000000..88c49b16fdc11c88daa7a9a44cc4634d59114b35 --- /dev/null +++ b/train/02c500de-33df-41fb-a39f-c16bfba4a015.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f18042be4c1e87da4e75bc1eb7d6a1648f444fb54076aa29a458334dd920c00 +size 2080377 diff --git a/train/02d28798-45ea-4890-9cf6-ecc3077ef93d.png b/train/02d28798-45ea-4890-9cf6-ecc3077ef93d.png new file mode 100644 index 0000000000000000000000000000000000000000..d50f6a66bb8ac798727c4fefdaf3ec4a983fcbc8 --- /dev/null +++ b/train/02d28798-45ea-4890-9cf6-ecc3077ef93d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97aee99940d8520fcc8bf1773f9dfb37ab4f96777264f4947707bed3f1fe9b7b +size 2201920 diff --git a/train/03485da8-fb49-4dc9-bbef-e4a2232c0181.png b/train/03485da8-fb49-4dc9-bbef-e4a2232c0181.png new file mode 100644 index 0000000000000000000000000000000000000000..f2c3d05ddb9468d610d5f4110a8a9e7358ff2b46 --- /dev/null +++ b/train/03485da8-fb49-4dc9-bbef-e4a2232c0181.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be9d7c2f4d4c965d19ae55fd6ab6d8b2ece039bddf07bbf9f79c58895abcf447 +size 2044181 diff --git a/train/034e5c87-f053-4cda-9d46-57652b174de7.png b/train/034e5c87-f053-4cda-9d46-57652b174de7.png new file mode 100644 index 0000000000000000000000000000000000000000..4d7ec960206775f605cbd7ee8a54aa00f09440fa --- /dev/null +++ b/train/034e5c87-f053-4cda-9d46-57652b174de7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ca978530440c7004c7ce18e02c91bf7a9ecaad512769c82e49ae9e67c17c62a +size 2086134 diff --git a/train/042d818e-065e-4e01-86cc-d91c49d7077c.png b/train/042d818e-065e-4e01-86cc-d91c49d7077c.png new file mode 100644 index 0000000000000000000000000000000000000000..5878bc09d12e98642694599f134eab6e113a0475 --- /dev/null +++ b/train/042d818e-065e-4e01-86cc-d91c49d7077c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6309461490ab58e564623e9006ed87c5d7c2a74f9ffeafc31ff13a382e41f731 +size 2082056 diff --git a/train/0441a292-e8b8-45ae-9817-efee1e5147e6.png b/train/0441a292-e8b8-45ae-9817-efee1e5147e6.png new file mode 100644 index 0000000000000000000000000000000000000000..15804e63c7571c53fb6db2d62fa215b0c066ce2a --- /dev/null +++ b/train/0441a292-e8b8-45ae-9817-efee1e5147e6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c401aa6bf3c2af779bf599ccec6773f8c28b533c36335fc2c1ac0def14dbf87 +size 2245922 diff --git a/train/04695513-6b7f-41a7-a961-27db5ab03592.png b/train/04695513-6b7f-41a7-a961-27db5ab03592.png new file mode 100644 index 0000000000000000000000000000000000000000..d1ca659aa6384306b6cf74588450054b9c347853 --- /dev/null +++ b/train/04695513-6b7f-41a7-a961-27db5ab03592.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93995ad57b4517f4036a81f01192bdddc787fd352b6aacaa85b86eb00fa47fc5 +size 2248827 diff --git a/train/04d2ae96-443b-4cbd-873f-e60a769e29a5.png b/train/04d2ae96-443b-4cbd-873f-e60a769e29a5.png new file mode 100644 index 0000000000000000000000000000000000000000..4e51b21f8e1f8081502b394fb2c4cc4da3768ade --- /dev/null +++ b/train/04d2ae96-443b-4cbd-873f-e60a769e29a5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:229ae3906249e644c9645011252c6583b73d4681474f754b5cc60f7f799dccd1 +size 2118299 diff --git a/train/04d69896-054c-4762-b8e7-327cdb31503d.png b/train/04d69896-054c-4762-b8e7-327cdb31503d.png new file mode 100644 index 0000000000000000000000000000000000000000..9243badb421dd66f4471b0be46829a7e5e524d6a --- /dev/null +++ b/train/04d69896-054c-4762-b8e7-327cdb31503d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:248a87509ea34e327d82665796e23a28d58260505bf28fd44d4007a9679ebb5e +size 1880737 diff --git a/train/04d9fd59-4440-4777-b944-f065d56677cb.png b/train/04d9fd59-4440-4777-b944-f065d56677cb.png new file mode 100644 index 0000000000000000000000000000000000000000..72a2dc88137b8baa821544a5a329df3bc3315af9 --- /dev/null +++ b/train/04d9fd59-4440-4777-b944-f065d56677cb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7dcafb258b92857453cbbf486b0b3064fbe28408ed0205ed55f93331fde7f9c +size 2164555 diff --git a/train/04e08d0a-f33a-4355-b45b-d456e1bb555d.png b/train/04e08d0a-f33a-4355-b45b-d456e1bb555d.png new file mode 100644 index 0000000000000000000000000000000000000000..3a9468a0b23525d582eaa9609c7df4f782bd6e55 --- /dev/null +++ b/train/04e08d0a-f33a-4355-b45b-d456e1bb555d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bab8953a03dc46234adc81329fc3d2e2276db9895423ae6841602de916825ee +size 2094024 diff --git a/train/0504a319-4408-4d31-b842-5760fec46e7e.png b/train/0504a319-4408-4d31-b842-5760fec46e7e.png new file mode 100644 index 0000000000000000000000000000000000000000..4bdcbaf5fdb8ca9ea172ae6416389f0bf778bc53 --- /dev/null +++ b/train/0504a319-4408-4d31-b842-5760fec46e7e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f7ef182999cb4b46dab06e3df8c9b08844ad9e38e5bda1f718ab1689a3047a +size 2135346 diff --git a/train/0528732a-2f4a-403d-90d1-e7e46d927bb6.png b/train/0528732a-2f4a-403d-90d1-e7e46d927bb6.png new file mode 100644 index 0000000000000000000000000000000000000000..523c82055d3ba7715592d5b087069f3cbaa5873a --- /dev/null +++ b/train/0528732a-2f4a-403d-90d1-e7e46d927bb6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7a8040deb96a6d42e3a7a00dcf6b4defd873db00d56540599e2fe02b3b0ad9e +size 2221956 diff --git a/train/05d01729-6ced-4b22-a492-352443dcc74c.png b/train/05d01729-6ced-4b22-a492-352443dcc74c.png new file mode 100644 index 0000000000000000000000000000000000000000..2c4e72307dff41e1a82aceb983d2933d61c18f3c --- /dev/null +++ b/train/05d01729-6ced-4b22-a492-352443dcc74c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf4a9af46ae61a8040c2c681cc61b95040928852cb66a9d1d7e2b5c114268ba7 +size 2051194 diff --git a/train/0604dbd4-890d-4d99-b3fb-ee5ad4efd3b4.png b/train/0604dbd4-890d-4d99-b3fb-ee5ad4efd3b4.png new file mode 100644 index 0000000000000000000000000000000000000000..86a333423c63009a34fd1d87e8f6c4f6b3970090 --- /dev/null +++ b/train/0604dbd4-890d-4d99-b3fb-ee5ad4efd3b4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f720a9288ee7f22236bfe348bbbf53a337d05d9073f79f0db854d69ca9497838 +size 2072705 diff --git a/train/06067581-a0aa-4525-8d36-3c4b329ac151.png b/train/06067581-a0aa-4525-8d36-3c4b329ac151.png new file mode 100644 index 0000000000000000000000000000000000000000..d904eb8aea2e3c903d540b5333e6ed7ed262bc56 --- /dev/null +++ b/train/06067581-a0aa-4525-8d36-3c4b329ac151.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a10f3521581c357d0e1c79f9952e25cc4d0b2ddc9452c1c5fe0772f09749b75 +size 2057766 diff --git a/train/06625d12-86ba-4028-9a71-097186bbb754.png b/train/06625d12-86ba-4028-9a71-097186bbb754.png new file mode 100644 index 0000000000000000000000000000000000000000..568c5684f0e6f5961de6e4f77e74501db0af8ddc --- /dev/null +++ b/train/06625d12-86ba-4028-9a71-097186bbb754.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43e1325b595cc255eb6c58c9bba65490854c09094a981a89b9725637994373c +size 2099800 diff --git a/train/06813f46-dd8f-4421-87c8-322399ac69f5.png b/train/06813f46-dd8f-4421-87c8-322399ac69f5.png new file mode 100644 index 0000000000000000000000000000000000000000..3fa262c004efcf3d5f874ffc8e827e97a9d77dd3 --- /dev/null +++ b/train/06813f46-dd8f-4421-87c8-322399ac69f5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a1b6725074c63f9e9af6be1811109b608d931755900f716533ed7dbdee7bb4 +size 2236242 diff --git a/train/06ae6eb9-0fda-4964-bc06-43853616a584.png b/train/06ae6eb9-0fda-4964-bc06-43853616a584.png new file mode 100644 index 0000000000000000000000000000000000000000..9e07a469f306930994357e49ad575c5762b6ed87 --- /dev/null +++ b/train/06ae6eb9-0fda-4964-bc06-43853616a584.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99c7195e251caf7cb5be9fcb7cc0d8ab1a9c4a35b2535eea36b36277e974d662 +size 2050593 diff --git a/train/07970142-cc85-4a30-9fa6-3bf45f43f32d.png b/train/07970142-cc85-4a30-9fa6-3bf45f43f32d.png new file mode 100644 index 0000000000000000000000000000000000000000..08772997c9d74ba392821dede697a4257ab6089b --- /dev/null +++ b/train/07970142-cc85-4a30-9fa6-3bf45f43f32d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba761381a98c1ce1662bea92735368bdcaf6e4be870ba6ff45bca87658de2d55 +size 2105794 diff --git a/train/0798fb4c-927a-4a11-beb8-538e8c854cd5.png b/train/0798fb4c-927a-4a11-beb8-538e8c854cd5.png new file mode 100644 index 0000000000000000000000000000000000000000..ccc924dde312df72e0ea966abac1cc71f79f6542 --- /dev/null +++ b/train/0798fb4c-927a-4a11-beb8-538e8c854cd5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df523fa0116267f5103f4e84e36bf9947b8607f682533c67ec21930592a91b7b +size 2132042 diff --git a/train/07a05d0f-55a9-4728-ab2e-ed069e96fe88.png b/train/07a05d0f-55a9-4728-ab2e-ed069e96fe88.png new file mode 100644 index 0000000000000000000000000000000000000000..5695d521695a032c28406f31e6aab112e01d579b --- /dev/null +++ b/train/07a05d0f-55a9-4728-ab2e-ed069e96fe88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a325225732c1aca8e2c123699409e6d6a6afc170a3d5ec0c44f131f0b7353aa5 +size 2154468 diff --git a/train/0846f615-28ff-448a-9ad6-2a43ffc6d823.png b/train/0846f615-28ff-448a-9ad6-2a43ffc6d823.png new file mode 100644 index 0000000000000000000000000000000000000000..1a51db8007d8ab2f430a298ac63f638de512b977 --- /dev/null +++ b/train/0846f615-28ff-448a-9ad6-2a43ffc6d823.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc36d8382c6b72e277acc4d0d5699771c9d99baaf34d8f643a43bf92fdcd7ec0 +size 2158517 diff --git a/train/086b80d5-0621-4bb6-b7b6-a3767b2fbc5b.png b/train/086b80d5-0621-4bb6-b7b6-a3767b2fbc5b.png new file mode 100644 index 0000000000000000000000000000000000000000..b52040db5ed86d299263bf77aedf617694fc686a --- /dev/null +++ b/train/086b80d5-0621-4bb6-b7b6-a3767b2fbc5b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:949a05e71c4eed7d9146c1aa9868b85954ce72b5390051a99de2fa6f1c2c0f63 +size 2045183 diff --git a/train/087d553d-bf95-4150-b481-542b473cb223.png b/train/087d553d-bf95-4150-b481-542b473cb223.png new file mode 100644 index 0000000000000000000000000000000000000000..7abc11af2451a2d030177db72cdfa6eaf22fbd88 --- /dev/null +++ b/train/087d553d-bf95-4150-b481-542b473cb223.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6230667c08d00ded2b602a903872766de9d3d8ec7b59f4d176236778f5e82eea +size 2170237 diff --git a/train/08eb296e-f91f-4da4-abfb-0015d4340167.png b/train/08eb296e-f91f-4da4-abfb-0015d4340167.png new file mode 100644 index 0000000000000000000000000000000000000000..4e4c35241f83295517a0e2ac0a40bf0d5c18205d --- /dev/null +++ b/train/08eb296e-f91f-4da4-abfb-0015d4340167.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ad0cb272b7e44796a3eb4b4f0cae3aa9b4c79c4fdaa6737ec8878366516174f +size 2035222 diff --git a/train/092558b5-f573-4882-9184-6a64168878a9.png b/train/092558b5-f573-4882-9184-6a64168878a9.png new file mode 100644 index 0000000000000000000000000000000000000000..346c2c517f6d3d9732151214a8dd8cab738c31c1 --- /dev/null +++ b/train/092558b5-f573-4882-9184-6a64168878a9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bab2034b01dc7a97c8672ca679da59ff445106b9d8810ba1e5face8a5355334 +size 2150239 diff --git a/train/095baeaf-8285-44a4-a573-3283259b8d0c.png b/train/095baeaf-8285-44a4-a573-3283259b8d0c.png new file mode 100644 index 0000000000000000000000000000000000000000..28268636bdd364254df32e92d8b50f1392a0462f --- /dev/null +++ b/train/095baeaf-8285-44a4-a573-3283259b8d0c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77802a8b5366a8f67a84294f68d3bcc341adf655f388d5ee391795d18d1282bb +size 2167666 diff --git a/train/09706049-653a-42f7-9345-ee20996c1957.png b/train/09706049-653a-42f7-9345-ee20996c1957.png new file mode 100644 index 0000000000000000000000000000000000000000..703e8ba59949bd7242acae4401ead2376c5cf215 --- /dev/null +++ b/train/09706049-653a-42f7-9345-ee20996c1957.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e39383596a99a019fb5713e8d6f8c6d9106c28a4ac462f4b4c7b2aa3b0b812a +size 2263712 diff --git a/train/09c0a834-97b3-4254-8e3b-21dc40e6b1dc.png b/train/09c0a834-97b3-4254-8e3b-21dc40e6b1dc.png new file mode 100644 index 0000000000000000000000000000000000000000..b40264061deaf26f33154f25ad17bbb093ae6043 --- /dev/null +++ b/train/09c0a834-97b3-4254-8e3b-21dc40e6b1dc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e1325038faa11d66aef388ff390ad15341647b73cc22b12af7766d271c7d4c0 +size 2217097 diff --git a/train/0a16e2d9-cd1d-4058-9c5b-af1316818da9.png b/train/0a16e2d9-cd1d-4058-9c5b-af1316818da9.png new file mode 100644 index 0000000000000000000000000000000000000000..c25a9633ce99440b8e1110b89f23b08ee1727ed2 --- /dev/null +++ b/train/0a16e2d9-cd1d-4058-9c5b-af1316818da9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d6010873772b6ffc59d73d12f7f2fde56c00d72eb68073323a9c5b467eb0545 +size 2048844 diff --git a/train/0a564b4a-9f9f-4c24-bf5e-81bd9b7f19c3.png b/train/0a564b4a-9f9f-4c24-bf5e-81bd9b7f19c3.png new file mode 100644 index 0000000000000000000000000000000000000000..cccc346a0ebae01e212d52f51af5f3f6f3606acf --- /dev/null +++ b/train/0a564b4a-9f9f-4c24-bf5e-81bd9b7f19c3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f101d7a7de5e9f0b8d6b336f36f0c47b8ebade7c229c2e6bd77f99eb6ef51a7 +size 2207337 diff --git a/train/0a7d9d9e-faa7-4334-a726-d85a484dccfd.png b/train/0a7d9d9e-faa7-4334-a726-d85a484dccfd.png new file mode 100644 index 0000000000000000000000000000000000000000..88369314c279d596745554efd37954d33ebbfb7b --- /dev/null +++ b/train/0a7d9d9e-faa7-4334-a726-d85a484dccfd.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2fdd2cf581a81c17a6b5244aaefc1c83f1ea1200fe184f250184e7afa475e3 +size 2169017 diff --git a/train/0a90a58f-3341-4b89-8661-f35e78c01a0e.png b/train/0a90a58f-3341-4b89-8661-f35e78c01a0e.png new file mode 100644 index 0000000000000000000000000000000000000000..c38ed6b4929bd18b57d0c1f596c6d419f66d0208 --- /dev/null +++ b/train/0a90a58f-3341-4b89-8661-f35e78c01a0e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ac1a9c16567c11146e7b782e68e7c314afd116b4592ad779dcd44a4c552b3f2 +size 2157580 diff --git a/train/0aa2ca92-b532-4fab-aa13-463d55576073.png b/train/0aa2ca92-b532-4fab-aa13-463d55576073.png new file mode 100644 index 0000000000000000000000000000000000000000..eef35cdf08a2e8519ef99ad77341ec245d7418ed --- /dev/null +++ b/train/0aa2ca92-b532-4fab-aa13-463d55576073.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06bea248512d4e59a60810d3a75c17590b22760842eb6697f875e242e58a6373 +size 2222584 diff --git a/train/0b62386f-dc23-41cb-b8cf-0bcf703f5278.png b/train/0b62386f-dc23-41cb-b8cf-0bcf703f5278.png new file mode 100644 index 0000000000000000000000000000000000000000..f6abe78719cdd6c240246488e62475ef147c80b5 --- /dev/null +++ b/train/0b62386f-dc23-41cb-b8cf-0bcf703f5278.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:282f12d15f700926c37cb8d27d39e9101e74c974ee847b0fe0194f5a42b0a208 +size 2087619 diff --git a/train/0ba9a6c8-4e09-4803-82ed-5ef8f5a37481.png b/train/0ba9a6c8-4e09-4803-82ed-5ef8f5a37481.png new file mode 100644 index 0000000000000000000000000000000000000000..23e056104453390450cb7d7f8ad40bfeceb1ef56 --- /dev/null +++ b/train/0ba9a6c8-4e09-4803-82ed-5ef8f5a37481.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80f374db470363cc836bb199ee08bfed47b7239a23e37c35a88d20262e489e4e +size 2090328 diff --git a/train/0bc0a57b-39aa-4f5b-ba69-f36e14267f02.png b/train/0bc0a57b-39aa-4f5b-ba69-f36e14267f02.png new file mode 100644 index 0000000000000000000000000000000000000000..a6ad256d54d7c507d9f986dcb06a23630d1b3065 --- /dev/null +++ b/train/0bc0a57b-39aa-4f5b-ba69-f36e14267f02.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d24ee7796599b367c97c56725c3961196dbb5a9f4643548ffde0c604b3021469 +size 2108992 diff --git a/train/0c6c12b2-c43c-41bd-93fc-8b9b64668fb4.png b/train/0c6c12b2-c43c-41bd-93fc-8b9b64668fb4.png new file mode 100644 index 0000000000000000000000000000000000000000..64e674ddea97e02029dbb4c773cf03fa430c4026 --- /dev/null +++ b/train/0c6c12b2-c43c-41bd-93fc-8b9b64668fb4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7fec84d268bbe0eaa049ca0687c728752e21776a6da0490424ff44223cba16 +size 2024608 diff --git a/train/0c8137dd-954e-43d8-a610-fc2cb97db07f.png b/train/0c8137dd-954e-43d8-a610-fc2cb97db07f.png new file mode 100644 index 0000000000000000000000000000000000000000..b929724d2819a230e6c68d9716ff36f5260efef4 --- /dev/null +++ b/train/0c8137dd-954e-43d8-a610-fc2cb97db07f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:733b44c2295103455616cc0e614b719db8ff4d9aa71dd1ab6eb143078d4837b3 +size 2006984 diff --git a/train/0d145dca-ab42-4c8f-bbb4-323a49df8d26.png b/train/0d145dca-ab42-4c8f-bbb4-323a49df8d26.png new file mode 100644 index 0000000000000000000000000000000000000000..af5e41b98dfcc42f15c4dfb6339a6ca322afc7d7 --- /dev/null +++ b/train/0d145dca-ab42-4c8f-bbb4-323a49df8d26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:535cd3987623bb3a8ae16aa84c3edf7bd6c19a5018bab960bd91d2445bb5c38e +size 2053674 diff --git a/train/0d21753b-86a7-4490-9581-366b12c45ee0.png b/train/0d21753b-86a7-4490-9581-366b12c45ee0.png new file mode 100644 index 0000000000000000000000000000000000000000..ad6532c9b68ae036c168fb252fa3a9e1ba28b2db --- /dev/null +++ b/train/0d21753b-86a7-4490-9581-366b12c45ee0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:317a9acfb99188681c4b63bd210b5edc86d611765031b694b70f6a90de59c6f8 +size 2030724 diff --git a/train/0d489516-5893-48e9-8eff-68b1f7e3d24c.png b/train/0d489516-5893-48e9-8eff-68b1f7e3d24c.png new file mode 100644 index 0000000000000000000000000000000000000000..d65f654786c63f69bdb2d05d8b39e518481f12ac --- /dev/null +++ b/train/0d489516-5893-48e9-8eff-68b1f7e3d24c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fcc1e135fa53c7cddf973459b32b9dfcf88012bf21c953ce38b1d3ed9373c64 +size 2130715 diff --git a/train/0d908735-cf9d-4509-be37-fae1e1555aae.png b/train/0d908735-cf9d-4509-be37-fae1e1555aae.png new file mode 100644 index 0000000000000000000000000000000000000000..5b993902cefe8787b1d28649258ae0f08fab04aa --- /dev/null +++ b/train/0d908735-cf9d-4509-be37-fae1e1555aae.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f92be4dbfaa51a77d335ff77e409e834d12668499c3e3b5d6fbec4081acfc48e +size 2074027 diff --git a/train/0dd3306f-935a-41bc-898b-e6f2468e1f2a.png b/train/0dd3306f-935a-41bc-898b-e6f2468e1f2a.png new file mode 100644 index 0000000000000000000000000000000000000000..461efb75a91a425fbed36a7d78ffc00523aa6a01 --- /dev/null +++ b/train/0dd3306f-935a-41bc-898b-e6f2468e1f2a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb94549254f2030d66b2866c86b4048ac4b4cade5f01c9bfcbed177847e57b7 +size 2235810 diff --git a/train/0dd627fe-bef4-49bc-b48f-749e0d95ed45.png b/train/0dd627fe-bef4-49bc-b48f-749e0d95ed45.png new file mode 100644 index 0000000000000000000000000000000000000000..db42b220a252f2de46fa9c0ce0a89a2c7fd08cca --- /dev/null +++ b/train/0dd627fe-bef4-49bc-b48f-749e0d95ed45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c37b1bcdde1c6a06652faa82b6c71c519b3fdfa1c6c1b04c27569efd2d0021cb +size 2144019 diff --git a/train/0e0a074a-c257-4ce2-9ce8-894d54ee7275.png b/train/0e0a074a-c257-4ce2-9ce8-894d54ee7275.png new file mode 100644 index 0000000000000000000000000000000000000000..332cd244629a362af8d3be6f22ce72c36c108c0a --- /dev/null +++ b/train/0e0a074a-c257-4ce2-9ce8-894d54ee7275.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af4e1314f6cb2360b4317a37fd36a02a79621d272d323eacf7298ab400979212 +size 2068443 diff --git a/train/0f43e5ea-e797-4225-9c91-9535d018d678.png b/train/0f43e5ea-e797-4225-9c91-9535d018d678.png new file mode 100644 index 0000000000000000000000000000000000000000..b56a02cbfb09fda382bf0a52a5cb1e8c708ab727 --- /dev/null +++ b/train/0f43e5ea-e797-4225-9c91-9535d018d678.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b3feff273ecfe42394f40149635f73a79efa9a3f84e31500b7f851b56fb3743 +size 2192460 diff --git a/train/0f5aa902-5ed0-48e5-ba40-62fc64202063.png b/train/0f5aa902-5ed0-48e5-ba40-62fc64202063.png new file mode 100644 index 0000000000000000000000000000000000000000..f85302b132d2c453b504b120345de14712eeb384 --- /dev/null +++ b/train/0f5aa902-5ed0-48e5-ba40-62fc64202063.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f80e81ebc22608a095ad586f5b1e354242f059989b4589df64f0e8d0f2de3b2 +size 2129723 diff --git a/train/0f85e464-574f-4b72-915a-8857d116c1cc.png b/train/0f85e464-574f-4b72-915a-8857d116c1cc.png new file mode 100644 index 0000000000000000000000000000000000000000..03f73c8bd861102bc352816eee2b617a67d854e4 --- /dev/null +++ b/train/0f85e464-574f-4b72-915a-8857d116c1cc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:959ddfecddc29ac2a88dc63a577498f7e89bac4186d706268a177be1772ae2a9 +size 2195513 diff --git a/train/104e9189-ad76-4c3e-9410-db5932e794b5.png b/train/104e9189-ad76-4c3e-9410-db5932e794b5.png new file mode 100644 index 0000000000000000000000000000000000000000..4353184bec540c6329627ca9de4da94875ba38eb --- /dev/null +++ b/train/104e9189-ad76-4c3e-9410-db5932e794b5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8afa390f039a1f0fda29d1d38321a492e12dadb3783626d9f5b354f15e3a88f +size 2092930 diff --git a/train/1097cc56-5bf8-4678-9d30-be799d908a3d.png b/train/1097cc56-5bf8-4678-9d30-be799d908a3d.png new file mode 100644 index 0000000000000000000000000000000000000000..a14fbc115b68925cc13c8c50ccbb8af17e998d4f --- /dev/null +++ b/train/1097cc56-5bf8-4678-9d30-be799d908a3d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d97ecdfbfe3fd87c434110fa3320308acdf65dfde2f8ba3b6d72e517ba8df8 +size 2099311 diff --git a/train/10c209be-809b-4e21-ac40-cc03bc75d035.png b/train/10c209be-809b-4e21-ac40-cc03bc75d035.png new file mode 100644 index 0000000000000000000000000000000000000000..59ebc8765eb06d54406d3c14c8394ca125d53b7d --- /dev/null +++ b/train/10c209be-809b-4e21-ac40-cc03bc75d035.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c2e674092e57c0fb5892843b36b9a35159e30f46bf911ba6cf1fbe10a58458a +size 1999130 diff --git a/train/10c362e4-e22f-4d81-bc32-84f616148794.png b/train/10c362e4-e22f-4d81-bc32-84f616148794.png new file mode 100644 index 0000000000000000000000000000000000000000..ea362ae62263878f96b615d9e7aaf422ade3d2c4 --- /dev/null +++ b/train/10c362e4-e22f-4d81-bc32-84f616148794.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04f52cafb9cd8d3ae443ab7ca0bf5ddffc3086aa5b0d4ebb0454640609202bba +size 2090776 diff --git a/train/114b5c25-68a0-481b-aa55-709385b200f8.png b/train/114b5c25-68a0-481b-aa55-709385b200f8.png new file mode 100644 index 0000000000000000000000000000000000000000..22a1285fc481afd9a771e1b3be5cc358c40ad437 --- /dev/null +++ b/train/114b5c25-68a0-481b-aa55-709385b200f8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa404201bdd658849c529b5fd23f14dd6e554dcb437bc80a6a8f06643c63b1cc +size 2208756 diff --git a/train/1174dda0-2b61-45d9-8e21-fe9d45da9639.png b/train/1174dda0-2b61-45d9-8e21-fe9d45da9639.png new file mode 100644 index 0000000000000000000000000000000000000000..fd6aeab256e00a60aef41caf36f8c7a759768e55 --- /dev/null +++ b/train/1174dda0-2b61-45d9-8e21-fe9d45da9639.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b60a7e56759e1c4082cf29a401a7725b07fa4f67a578e0e1c0f898da6a784f53 +size 2215443 diff --git a/train/123085ec-454d-4514-940b-3cfae26607ca.png b/train/123085ec-454d-4514-940b-3cfae26607ca.png new file mode 100644 index 0000000000000000000000000000000000000000..38fe1f6e0954979fd248b480330a95c5b0fef661 --- /dev/null +++ b/train/123085ec-454d-4514-940b-3cfae26607ca.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764cc2666cc1800e45cd60e21ac9581bdd3c24320989ae16dca23a713cc89b26 +size 2062906 diff --git a/train/125802de-9b2d-4636-8911-21781e47a6b3.png b/train/125802de-9b2d-4636-8911-21781e47a6b3.png new file mode 100644 index 0000000000000000000000000000000000000000..2481356f270c68da38934027c48cc91378a28c66 --- /dev/null +++ b/train/125802de-9b2d-4636-8911-21781e47a6b3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e75b1da313410479fdfb437013ccad7abe51495ee4aa3e83adbd0f4719a53cf +size 2220442 diff --git a/train/1283f5fb-1d42-40ed-b3dc-f3731fa67a87.png b/train/1283f5fb-1d42-40ed-b3dc-f3731fa67a87.png new file mode 100644 index 0000000000000000000000000000000000000000..947d1364dcb59c9a507aaf45b93fc05839943153 --- /dev/null +++ b/train/1283f5fb-1d42-40ed-b3dc-f3731fa67a87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b361616cfdb113f7c47a1cf6843c71fc8dc44a27eff109ee3ad33bbf201d2b3f +size 2131268 diff --git a/train/128dd44e-cf10-430d-88bd-e991ddd32445.png b/train/128dd44e-cf10-430d-88bd-e991ddd32445.png new file mode 100644 index 0000000000000000000000000000000000000000..9215b75149416cbfaa6418d8c3877f6102f8a54d --- /dev/null +++ b/train/128dd44e-cf10-430d-88bd-e991ddd32445.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27d34049a9edc9414403d1cb83a894f40894bd364e155bef95072cdd62a6a59d +size 2102562 diff --git a/train/130fb014-f5cd-4317-abce-f4e60e434351.png b/train/130fb014-f5cd-4317-abce-f4e60e434351.png new file mode 100644 index 0000000000000000000000000000000000000000..c1eb259a52a8951030e1a573336df499054ad26b --- /dev/null +++ b/train/130fb014-f5cd-4317-abce-f4e60e434351.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76f6fa8d7e2558f849f073a2adefe586402520f1e6777789be1c7cb02012e919 +size 2067480 diff --git a/train/13225402-737c-4382-95f6-855053973835.png b/train/13225402-737c-4382-95f6-855053973835.png new file mode 100644 index 0000000000000000000000000000000000000000..54ed69cb108c26b5269bb7ef54adcd5bb034d6bd --- /dev/null +++ b/train/13225402-737c-4382-95f6-855053973835.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ef35452fc20c4035719e96ab0195cd96adb43ce20dbe279f79dd586c39086f +size 2066959 diff --git a/train/13504758-b369-469b-bd79-a0df902e6cf3.png b/train/13504758-b369-469b-bd79-a0df902e6cf3.png new file mode 100644 index 0000000000000000000000000000000000000000..d2157cf4b693de211eaa6dfe466636e75e49c913 --- /dev/null +++ b/train/13504758-b369-469b-bd79-a0df902e6cf3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d4cfa1f15cf24bcb2c2478c2987be3c6609fb0a33f0bcc2009f381077929767 +size 2106483 diff --git a/train/1365d48a-1ab9-4ea7-aa95-8f97a8c2405a.png b/train/1365d48a-1ab9-4ea7-aa95-8f97a8c2405a.png new file mode 100644 index 0000000000000000000000000000000000000000..9bfe7fc1f1f095e09ca8d99849c8c0582fd9724c --- /dev/null +++ b/train/1365d48a-1ab9-4ea7-aa95-8f97a8c2405a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:839c241c491366a97b689ecee44cc18a66769545896c52ffa83f69fb76efe264 +size 2041523 diff --git a/train/13686927-8450-40e2-b67a-68db85738b0f.png b/train/13686927-8450-40e2-b67a-68db85738b0f.png new file mode 100644 index 0000000000000000000000000000000000000000..a30795c878ce45d936dbd9fd5a9f4f193b5a34cf --- /dev/null +++ b/train/13686927-8450-40e2-b67a-68db85738b0f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6421e418bac88570dffa1c0bd2d5b12a72033bacd79bf5c63b3af74f9017fca +size 2076144 diff --git a/train/13c82f0d-f633-4e3c-afa2-568e1a1e424b.png b/train/13c82f0d-f633-4e3c-afa2-568e1a1e424b.png new file mode 100644 index 0000000000000000000000000000000000000000..3017d22fdb74895edddcf2b507600610061ca4a2 --- /dev/null +++ b/train/13c82f0d-f633-4e3c-afa2-568e1a1e424b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9a798e569ff65272b1a350982bb7bcfe3c7b1d27f8e782236800c832e2e636d +size 2208253 diff --git a/train/13fcafda-f72a-4925-a8ec-d13937e4333c.png b/train/13fcafda-f72a-4925-a8ec-d13937e4333c.png new file mode 100644 index 0000000000000000000000000000000000000000..099d89492a23b365929897d0efc5645df7d9cc99 --- /dev/null +++ b/train/13fcafda-f72a-4925-a8ec-d13937e4333c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be39b80d39a500ca4699234d222942018d4e1e866d088576e19fa06900b5be5f +size 2128426 diff --git a/train/1410a114-715f-48c2-8b9c-56b09ed7940d.png b/train/1410a114-715f-48c2-8b9c-56b09ed7940d.png new file mode 100644 index 0000000000000000000000000000000000000000..38c6ab04b1a06ec4fa25cecdf253fb38d7ef7228 --- /dev/null +++ b/train/1410a114-715f-48c2-8b9c-56b09ed7940d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2633fb4635a6eda98aeae4081c008ca1304e4587fa6ab36a507d7b803b59425 +size 2111978 diff --git a/train/145f835f-431f-4daf-8fa1-0ce729c3c307.png b/train/145f835f-431f-4daf-8fa1-0ce729c3c307.png new file mode 100644 index 0000000000000000000000000000000000000000..f1a852c37cb06239878b5ed702c2b30dfb9d0a68 --- /dev/null +++ b/train/145f835f-431f-4daf-8fa1-0ce729c3c307.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb5e5993993008929549ad5ae6009b53ec8ced617b9257b41b338a8a952ea1b +size 2143528 diff --git a/train/14647e11-2d32-4134-ad81-6b4c418b5de8.png b/train/14647e11-2d32-4134-ad81-6b4c418b5de8.png new file mode 100644 index 0000000000000000000000000000000000000000..4a612ef66a53b9a7a135aa84662a51aeb4bf1295 --- /dev/null +++ b/train/14647e11-2d32-4134-ad81-6b4c418b5de8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8578e13323333c6e8e18764017212743ee2a916368056f0f6094e8c9530e7865 +size 2174292 diff --git a/train/1466b5e3-26c5-40c7-a8dc-62bf0fe91696.png b/train/1466b5e3-26c5-40c7-a8dc-62bf0fe91696.png new file mode 100644 index 0000000000000000000000000000000000000000..7ac7285a8989b745fe6c2e5c522c9fbd5249f771 --- /dev/null +++ b/train/1466b5e3-26c5-40c7-a8dc-62bf0fe91696.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd9ff5360445862d3bfd89b0856bc1d466c6e36888d03ba1623053b5c77b32eb +size 2053466 diff --git a/train/1471a831-a7fc-40fc-b1cc-2d4b3275d8da.png b/train/1471a831-a7fc-40fc-b1cc-2d4b3275d8da.png new file mode 100644 index 0000000000000000000000000000000000000000..0628777c22634b190208e622204a1401f542a27c --- /dev/null +++ b/train/1471a831-a7fc-40fc-b1cc-2d4b3275d8da.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c916fbf9c712e0c7fb29bf0762698f27ccc002580135411fa6813f64069de060 +size 2101499 diff --git a/train/147cb3e7-e218-4232-888d-e8ad8c14f3fe.png b/train/147cb3e7-e218-4232-888d-e8ad8c14f3fe.png new file mode 100644 index 0000000000000000000000000000000000000000..8dd420a46cfd12a1b7b2f727160eb8e49acf57d5 --- /dev/null +++ b/train/147cb3e7-e218-4232-888d-e8ad8c14f3fe.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a920b05fc5d7a31d1fbb84f47eeaeed0c246cb605b92d1e44812ece43fec7f +size 2278332 diff --git a/train/147f5026-0f59-48d3-a14c-96ed98badeb0.png b/train/147f5026-0f59-48d3-a14c-96ed98badeb0.png new file mode 100644 index 0000000000000000000000000000000000000000..41f7dba29d32b449a9d401117f16b6eb833f1701 --- /dev/null +++ b/train/147f5026-0f59-48d3-a14c-96ed98badeb0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e6b524d5ebf72ff41be2edd312d7b16760d8b3b41907041726539a54160a67 +size 2057553 diff --git a/train/14b86ca4-a888-4996-80b5-941cd84ed030.png b/train/14b86ca4-a888-4996-80b5-941cd84ed030.png new file mode 100644 index 0000000000000000000000000000000000000000..dd88f4ec85c480a31a863aac89e70be20cbef872 --- /dev/null +++ b/train/14b86ca4-a888-4996-80b5-941cd84ed030.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deed70dfacdc558a96db23daa620414296b172e3d92c4cf41176df354ada2e68 +size 2112080 diff --git a/train/1552a169-e3e0-4b24-a728-e11b9f2cdac3.png b/train/1552a169-e3e0-4b24-a728-e11b9f2cdac3.png new file mode 100644 index 0000000000000000000000000000000000000000..b95bda3eaba91922632a60bc9d0a318fd60e1d5b --- /dev/null +++ b/train/1552a169-e3e0-4b24-a728-e11b9f2cdac3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c06b9911601ae742c8aafd85c2b6f05a7ec986b56f4ac207ac23ae7f77c25cca +size 2102729 diff --git a/train/15628330-5fc8-46e1-82ce-18ec52a28d8c.png b/train/15628330-5fc8-46e1-82ce-18ec52a28d8c.png new file mode 100644 index 0000000000000000000000000000000000000000..0da15957a6504548d2d9e51aa4a7aa4808258977 --- /dev/null +++ b/train/15628330-5fc8-46e1-82ce-18ec52a28d8c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4d329564850ae385e51584b0283a235d28d4a32bd6006c062ab8888f22e727b +size 2098948 diff --git a/train/15a02825-afcc-43ab-82a5-fb7b7534bf72.png b/train/15a02825-afcc-43ab-82a5-fb7b7534bf72.png new file mode 100644 index 0000000000000000000000000000000000000000..be85d8061e7e1a9838801203722550c7909867bb --- /dev/null +++ b/train/15a02825-afcc-43ab-82a5-fb7b7534bf72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c706616e95dd24229951d0cd0e92bf1c07a0f5ea25b6a80008c54bcb87476ba +size 2206615 diff --git a/train/15e5b918-8f59-460d-8af5-c5bd479bd372.png b/train/15e5b918-8f59-460d-8af5-c5bd479bd372.png new file mode 100644 index 0000000000000000000000000000000000000000..a887781921e5f15f2ac0cb528a3d9a1ef877a25c --- /dev/null +++ b/train/15e5b918-8f59-460d-8af5-c5bd479bd372.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9abbf055b4cbb5a7013be29a09dba18c81dde23b4f9f91f6c8332fbe58379c1c +size 2221565 diff --git a/train/160e6319-f499-4744-85f7-04dd477785a2.png b/train/160e6319-f499-4744-85f7-04dd477785a2.png new file mode 100644 index 0000000000000000000000000000000000000000..68f6b2744ecfe7a3f29895e495c24da054919e31 --- /dev/null +++ b/train/160e6319-f499-4744-85f7-04dd477785a2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dc03e7c899176d667e3df01b69afed91491a863c08997a5d95059c7bf456836 +size 2135283 diff --git a/train/16112580-8d20-4612-a11e-f02b96de99d7.png b/train/16112580-8d20-4612-a11e-f02b96de99d7.png new file mode 100644 index 0000000000000000000000000000000000000000..d8251f2ff47fb2e1f02ead0de611f9352163ab8d --- /dev/null +++ b/train/16112580-8d20-4612-a11e-f02b96de99d7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fbe4df486fb85e815853bca4428c04f84d978757f5c25de18f29f1ecf326f1d +size 2186738 diff --git a/train/165b46f3-3c6c-42ce-93e4-20669d23254c.png b/train/165b46f3-3c6c-42ce-93e4-20669d23254c.png new file mode 100644 index 0000000000000000000000000000000000000000..5fcdc0252332d7bb747ea9897c955d259641cf69 --- /dev/null +++ b/train/165b46f3-3c6c-42ce-93e4-20669d23254c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c4972d308a5a0d1ead74d0488bbfeadcdc3b174db99447a8148edc42c50d572 +size 2199098 diff --git a/train/1689102a-0862-4158-9fe9-573998d73f58.png b/train/1689102a-0862-4158-9fe9-573998d73f58.png new file mode 100644 index 0000000000000000000000000000000000000000..3deae9c28f9068179d5aba3ea978e1da889baa2e --- /dev/null +++ b/train/1689102a-0862-4158-9fe9-573998d73f58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c632d3ee9906c1699583e81ae679d15272361a1f1d50e5933b7d9efba43bb032 +size 2226410 diff --git a/train/1691bd06-23e3-48e6-84a6-182a85755fae.png b/train/1691bd06-23e3-48e6-84a6-182a85755fae.png new file mode 100644 index 0000000000000000000000000000000000000000..7d0ec2e5c7d0dad4faaf553b345c5ad3ce9e4aae --- /dev/null +++ b/train/1691bd06-23e3-48e6-84a6-182a85755fae.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:486fef128a6a1cc8478f9d107019aa1f9fbce89fed8137e8487a89dcc763f3d2 +size 2152747 diff --git a/train/16a2fb27-ce85-4b08-94c1-9ace16d67835.png b/train/16a2fb27-ce85-4b08-94c1-9ace16d67835.png new file mode 100644 index 0000000000000000000000000000000000000000..cdc24db6a4cd328e2f580af15a0d830ccdf60050 --- /dev/null +++ b/train/16a2fb27-ce85-4b08-94c1-9ace16d67835.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5d9062d3a417e15c3fe0e098bd57699dd15f0ca80e93cb8751b116725a8cd74 +size 2068166 diff --git a/train/16f27639-706e-4aef-bf0d-616cbae36054.png b/train/16f27639-706e-4aef-bf0d-616cbae36054.png new file mode 100644 index 0000000000000000000000000000000000000000..7313f9dd97d46a7e0d767fa4ae1b6645bae2e8f0 --- /dev/null +++ b/train/16f27639-706e-4aef-bf0d-616cbae36054.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:437ac5b5de63df830f7147b6a2a71bbe8f1fd10c4e28c393df432233618c73b3 +size 2103878 diff --git a/train/171d8cd5-012f-440a-bc4f-18baf629755c.png b/train/171d8cd5-012f-440a-bc4f-18baf629755c.png new file mode 100644 index 0000000000000000000000000000000000000000..8a6abd5973d43fe639d16346a2758a490e6cd02a --- /dev/null +++ b/train/171d8cd5-012f-440a-bc4f-18baf629755c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ee366f5c5f9f11f3bb777a5baca783b807f3d478d57b60a0a067af86770b57 +size 2262695 diff --git a/train/176363cf-66e4-43af-9d26-831e63130b29.png b/train/176363cf-66e4-43af-9d26-831e63130b29.png new file mode 100644 index 0000000000000000000000000000000000000000..bb6e73c592f031dba739e9f1f705305704c189a8 --- /dev/null +++ b/train/176363cf-66e4-43af-9d26-831e63130b29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de804d43e938ae0f2a8c30a09cfb5e14dcb25f01dbbc9e20c10af8d0623f1168 +size 2139072 diff --git a/train/176c0ada-5447-4bfb-95e3-4d0c7918dc57.png b/train/176c0ada-5447-4bfb-95e3-4d0c7918dc57.png new file mode 100644 index 0000000000000000000000000000000000000000..23db2a37298831134cf61471cbd6118c277d35ce --- /dev/null +++ b/train/176c0ada-5447-4bfb-95e3-4d0c7918dc57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a26c9b2f36d7850dabbe77c1021be69556213a783beed1780cefc2c6199743 +size 2138622 diff --git a/train/1796749e-a934-4346-b8cb-fc2b50b204dc.png b/train/1796749e-a934-4346-b8cb-fc2b50b204dc.png new file mode 100644 index 0000000000000000000000000000000000000000..7d353ffdb22e781bed1947cba476828481ea73c8 --- /dev/null +++ b/train/1796749e-a934-4346-b8cb-fc2b50b204dc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0f43cdfedaf2d45a8a15b5918abf70cb8c61860f13b9cd5f0ce0d482e75b5cf +size 2253859 diff --git a/train/184bc346-8a2f-47a8-86c9-187a7d2b96f8.png b/train/184bc346-8a2f-47a8-86c9-187a7d2b96f8.png new file mode 100644 index 0000000000000000000000000000000000000000..38da955148fed66645839da589913c5dd814f13f --- /dev/null +++ b/train/184bc346-8a2f-47a8-86c9-187a7d2b96f8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d50b3b1c3525a71d169b36cfb5f438389ab546320671159b5ec2bd46c51378b2 +size 2016701 diff --git a/train/1858988d-7a15-4988-8c32-2f222db1ee51.png b/train/1858988d-7a15-4988-8c32-2f222db1ee51.png new file mode 100644 index 0000000000000000000000000000000000000000..5db7106d16470d9b4f0ba4bc520c849b3d3ee03c --- /dev/null +++ b/train/1858988d-7a15-4988-8c32-2f222db1ee51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0176eac352bcb15c67faa46a95509a72591be3f7bf2528bf8a081f1951e21aa +size 2155696 diff --git a/train/18a9ee59-658a-4953-9503-de43bc0a9572.png b/train/18a9ee59-658a-4953-9503-de43bc0a9572.png new file mode 100644 index 0000000000000000000000000000000000000000..937348d52250d0e2f8ae7e32b62d47891ecee13c --- /dev/null +++ b/train/18a9ee59-658a-4953-9503-de43bc0a9572.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:304914500bb7774329f2b2dd70f5a4e0a596cb951886a412b3f25d276d20e69e +size 2038935 diff --git a/train/18bc3749-f443-4006-8bdf-e57e34429ddf.png b/train/18bc3749-f443-4006-8bdf-e57e34429ddf.png new file mode 100644 index 0000000000000000000000000000000000000000..cfce12d44e19e4540def03cc5770663d5f335239 --- /dev/null +++ b/train/18bc3749-f443-4006-8bdf-e57e34429ddf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb70af2aedfbcb7a353f9a47697a3409fdb3b12f72b0c3d4c6904200d3fa443 +size 2120800 diff --git a/train/18d2af2f-25ae-4ab2-ad7f-2e34069d10c2.png b/train/18d2af2f-25ae-4ab2-ad7f-2e34069d10c2.png new file mode 100644 index 0000000000000000000000000000000000000000..81420272a4cc50dc82bc53eebc9eaa3f20d0519d --- /dev/null +++ b/train/18d2af2f-25ae-4ab2-ad7f-2e34069d10c2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb5bd1792cbc078970babf7c1f738f6b892c628733d0ea34d435fa826ad19b1a +size 2047832 diff --git a/train/1941738b-7606-42a6-b1d5-1cdb9b6274d2.png b/train/1941738b-7606-42a6-b1d5-1cdb9b6274d2.png new file mode 100644 index 0000000000000000000000000000000000000000..92588454afc758653d11e3fb5fb72e6a5975b4fb --- /dev/null +++ b/train/1941738b-7606-42a6-b1d5-1cdb9b6274d2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:490eb922cdff02cb30f2fd8a708b36a4902e6be13a66056f4cffd0b15b9dd3a8 +size 2115937 diff --git a/train/19529e18-487a-4280-a959-70174f9044ba.png b/train/19529e18-487a-4280-a959-70174f9044ba.png new file mode 100644 index 0000000000000000000000000000000000000000..4b6f3f2d3a8fd1e4f44da7deb39a7f7f20c6aea4 --- /dev/null +++ b/train/19529e18-487a-4280-a959-70174f9044ba.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47ef83dc21f2577efa820668d1115161b0db0dcde13983d69980de536c6767d8 +size 2206487 diff --git a/train/1961fa3f-8bb6-4b42-a661-51d37ec12209.png b/train/1961fa3f-8bb6-4b42-a661-51d37ec12209.png new file mode 100644 index 0000000000000000000000000000000000000000..31084ee3fee546fdb7be75ce44568c7140d2311a --- /dev/null +++ b/train/1961fa3f-8bb6-4b42-a661-51d37ec12209.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14cf999fb63294b79057e6bca19cae794bb4a05f0c54338863391bb529ff0a99 +size 2172197 diff --git a/train/196eb0b7-882c-4b73-945b-cddefbd7e684.png b/train/196eb0b7-882c-4b73-945b-cddefbd7e684.png new file mode 100644 index 0000000000000000000000000000000000000000..8794653392adf33ff6519060e0ff39ff851ff871 --- /dev/null +++ b/train/196eb0b7-882c-4b73-945b-cddefbd7e684.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a811a6cd47d32271c9912cb88dfdea60df024a553252324c91bc1294a7b4355c +size 1983422 diff --git a/train/19f2fd3f-1300-4dd9-b168-04cb60188a60.png b/train/19f2fd3f-1300-4dd9-b168-04cb60188a60.png new file mode 100644 index 0000000000000000000000000000000000000000..a0c6a43b18dd8b6084a7f205f6d13cb6e96ea51c --- /dev/null +++ b/train/19f2fd3f-1300-4dd9-b168-04cb60188a60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e894c80638f5e07faa461816f78d04664d158d08881f16525b8f11e5c9ee1cab +size 2167812 diff --git a/train/1a1513b4-41ae-4f44-9b8b-b0b04a70a0de.png b/train/1a1513b4-41ae-4f44-9b8b-b0b04a70a0de.png new file mode 100644 index 0000000000000000000000000000000000000000..a2cbb651c6146388af7f65540a93b4d58ec729ad --- /dev/null +++ b/train/1a1513b4-41ae-4f44-9b8b-b0b04a70a0de.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db00edf4704b6439be698da32dcca3da9f507a5da393dc1e44de9345fc5ae61b +size 2174639 diff --git a/train/1acfe134-ae7a-415e-b4a7-8b1af2f330ab.png b/train/1acfe134-ae7a-415e-b4a7-8b1af2f330ab.png new file mode 100644 index 0000000000000000000000000000000000000000..3f87a37085fcc9b6c2752113ed1ed870e9239c01 --- /dev/null +++ b/train/1acfe134-ae7a-415e-b4a7-8b1af2f330ab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c76f575c50e11cd0b77ff90f4bf92cfe1969aaf565afbdb82abc3e56c584ce13 +size 2148237 diff --git a/train/1b44ff3e-0907-43ca-9c9d-5273df2f372c.png b/train/1b44ff3e-0907-43ca-9c9d-5273df2f372c.png new file mode 100644 index 0000000000000000000000000000000000000000..322eaf39610032e6021f11d20fb10e6194ff9beb --- /dev/null +++ b/train/1b44ff3e-0907-43ca-9c9d-5273df2f372c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80a5a9257a05c20d45da28fc9e3e15777688e60d7191764a6f0f4461ca6ac50a +size 2090440 diff --git a/train/1bc1be21-6f56-468b-87d8-588a4576fd87.png b/train/1bc1be21-6f56-468b-87d8-588a4576fd87.png new file mode 100644 index 0000000000000000000000000000000000000000..b993f3e638c6c093c36cdbe79c0744d2c3be4154 --- /dev/null +++ b/train/1bc1be21-6f56-468b-87d8-588a4576fd87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d9e425626e7f51fdf7826d92e23d3c9d222652ff31633489c87de4b8282797e +size 2172242 diff --git a/train/1bf8d81a-6b10-4fbc-96c9-f129e39e9078.png b/train/1bf8d81a-6b10-4fbc-96c9-f129e39e9078.png new file mode 100644 index 0000000000000000000000000000000000000000..be87025a0bc54d1ca3c3a43b883f2f9efbe9b9c0 --- /dev/null +++ b/train/1bf8d81a-6b10-4fbc-96c9-f129e39e9078.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cba77005e10e1fcb74d60d3aa2bcd1f05800bf848e3e02aac0e1a8f18892b7db +size 2259827 diff --git a/train/1c87b0c3-a4b4-41e3-8bba-e4e214299724.png b/train/1c87b0c3-a4b4-41e3-8bba-e4e214299724.png new file mode 100644 index 0000000000000000000000000000000000000000..6a503b085546d956d4ed9b8636d11a2c30f3ac60 --- /dev/null +++ b/train/1c87b0c3-a4b4-41e3-8bba-e4e214299724.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cbcfc8b202195097e17d76b786534073d336dbc3fdd9394833a7c953f4d695 +size 2124777 diff --git a/train/1cbf98cc-464b-427c-9c6b-17c3c9211d91.png b/train/1cbf98cc-464b-427c-9c6b-17c3c9211d91.png new file mode 100644 index 0000000000000000000000000000000000000000..f5c306fa90bbeb794a3b063f1e2d2841d92241ce --- /dev/null +++ b/train/1cbf98cc-464b-427c-9c6b-17c3c9211d91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5937c104a4b98c63914d29c8b7540c4749fc59f2bcb894f27a9497e3701d235b +size 2161622 diff --git a/train/1d05616f-6d5a-4a2a-b79b-c12a24e1c09d.png b/train/1d05616f-6d5a-4a2a-b79b-c12a24e1c09d.png new file mode 100644 index 0000000000000000000000000000000000000000..cb623820a57d935e451e869d1b85650f61abe3d5 --- /dev/null +++ b/train/1d05616f-6d5a-4a2a-b79b-c12a24e1c09d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f11ca2131b47821a04d07f0cb624dcb2257ba6885531b33d34eb0d8f19172e9c +size 2163675 diff --git a/train/1d1dd54a-1fa7-46c5-ae4d-e237e82e09a0.png b/train/1d1dd54a-1fa7-46c5-ae4d-e237e82e09a0.png new file mode 100644 index 0000000000000000000000000000000000000000..d5929251fe6ae11fa873bdc1fe57a58966e36f1e --- /dev/null +++ b/train/1d1dd54a-1fa7-46c5-ae4d-e237e82e09a0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1182be2d031f8f1e81937fe3a976345bd2fc27e9d49bbe86c2486f01a97991ea +size 2123537 diff --git a/train/1d9c9715-6371-4d64-a52f-a83e10a55b52.png b/train/1d9c9715-6371-4d64-a52f-a83e10a55b52.png new file mode 100644 index 0000000000000000000000000000000000000000..8404aa1b08b0ff1fbf43f20801ee0179aae880d8 --- /dev/null +++ b/train/1d9c9715-6371-4d64-a52f-a83e10a55b52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:109cf00c8d5e4220c8b61594c05e6c912bfccd9535cb208019525fe3ab3f5761 +size 2114856 diff --git a/train/1dcbc12e-dc5d-4f86-ad0d-16db02e55829.png b/train/1dcbc12e-dc5d-4f86-ad0d-16db02e55829.png new file mode 100644 index 0000000000000000000000000000000000000000..a817fed1e71ac9a9500f705660c9ca93cbb89913 --- /dev/null +++ b/train/1dcbc12e-dc5d-4f86-ad0d-16db02e55829.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf198abcbee10699a7aa87a71262d60e61161407c8b21dc999ec1522fcf0cd5 +size 2030803 diff --git a/train/1e39731a-b34a-44ee-b8b7-f2a013cb5e3a.png b/train/1e39731a-b34a-44ee-b8b7-f2a013cb5e3a.png new file mode 100644 index 0000000000000000000000000000000000000000..55798eff1a4381dc92342c5382d054eb79e67ed3 --- /dev/null +++ b/train/1e39731a-b34a-44ee-b8b7-f2a013cb5e3a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82db6b8780f9f3d8323c67c9ecb4d3014447fdd0c084757a7a7238bb22a35baf +size 2179536 diff --git a/train/1e437c0a-f8d9-4bcc-9036-2b891bb993ac.png b/train/1e437c0a-f8d9-4bcc-9036-2b891bb993ac.png new file mode 100644 index 0000000000000000000000000000000000000000..75b16051b8e8364c4b08e8f8256250a1d0e680ad --- /dev/null +++ b/train/1e437c0a-f8d9-4bcc-9036-2b891bb993ac.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d57b47402af4132d840a823e737ea958e472b814c2f7faeae0576ae31c337e +size 2136858 diff --git a/train/1ec09ed0-fa28-43b0-b1b8-78516d524876.png b/train/1ec09ed0-fa28-43b0-b1b8-78516d524876.png new file mode 100644 index 0000000000000000000000000000000000000000..e8f5d1359ffe9136c3f47e3bfa3c54b3dafbee23 --- /dev/null +++ b/train/1ec09ed0-fa28-43b0-b1b8-78516d524876.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c14f6f22b3a0dd4b210de2930bf2f6e80133e0209b5198fd219005835a5d528 +size 2017615 diff --git a/train/1ec15cea-c176-4e74-b980-75aef89683cf.png b/train/1ec15cea-c176-4e74-b980-75aef89683cf.png new file mode 100644 index 0000000000000000000000000000000000000000..768100dfeca9e9e73feb156b257de354ae9a4a21 --- /dev/null +++ b/train/1ec15cea-c176-4e74-b980-75aef89683cf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4fd3ba43f29e5a0438bbe99f13f535350a1383e3f1770d46df305c39a3e759e +size 2186455 diff --git a/train/1ee3d625-aa62-406a-a009-ae92a3a33dfa.png b/train/1ee3d625-aa62-406a-a009-ae92a3a33dfa.png new file mode 100644 index 0000000000000000000000000000000000000000..7525646a8bd3b5759140611344e8a7f4eb523699 --- /dev/null +++ b/train/1ee3d625-aa62-406a-a009-ae92a3a33dfa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4969287f7beec011170546fb641d9a4223a5a82772b036a041058240da94d8f +size 2238183 diff --git a/train/1ee5566d-e117-488b-a4bc-ea2007c64c30.png b/train/1ee5566d-e117-488b-a4bc-ea2007c64c30.png new file mode 100644 index 0000000000000000000000000000000000000000..670bd13c58e7a8d4aa299fe52b8e966827d70802 --- /dev/null +++ b/train/1ee5566d-e117-488b-a4bc-ea2007c64c30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec46fa08911d648c829d475e29faed32f1fd7cc14223a34f30d02ce349b80a2 +size 2045910 diff --git a/train/1f007183-15cc-468a-921a-3cbfe529887e.png b/train/1f007183-15cc-468a-921a-3cbfe529887e.png new file mode 100644 index 0000000000000000000000000000000000000000..ed5c59a0d16824aca9c7da0a6895b8d6d5b2d3f0 --- /dev/null +++ b/train/1f007183-15cc-468a-921a-3cbfe529887e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b4182b3b79f8cacbd3f221e43b573a9f05685fc0d90007d7b12dd1d33eb58ba +size 2142894 diff --git a/train/1f178836-9f1d-4ee9-beef-8de229aeda86.png b/train/1f178836-9f1d-4ee9-beef-8de229aeda86.png new file mode 100644 index 0000000000000000000000000000000000000000..ed1ee184b56aeadea49986e5663f9d11405f81a4 --- /dev/null +++ b/train/1f178836-9f1d-4ee9-beef-8de229aeda86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37317db40f7c1baa191a75efeb4da6d149b3b0a0a69e1f424c133d2787ec3870 +size 2139704 diff --git a/train/1f2e0cc9-1cf7-4799-901b-e1996b2e48a8.png b/train/1f2e0cc9-1cf7-4799-901b-e1996b2e48a8.png new file mode 100644 index 0000000000000000000000000000000000000000..8ad552bccb121e058b58624896324e014cd79ecf --- /dev/null +++ b/train/1f2e0cc9-1cf7-4799-901b-e1996b2e48a8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91e48167b1c7416450849a48fb105c1a7418955b2ad397d7584f4dacbab7e620 +size 2234981 diff --git a/train/1f30e798-76b9-4d10-aa70-22c3229710a5.png b/train/1f30e798-76b9-4d10-aa70-22c3229710a5.png new file mode 100644 index 0000000000000000000000000000000000000000..850a4feee508d83e2bb9f3efb16cdd1ce4e89e0b --- /dev/null +++ b/train/1f30e798-76b9-4d10-aa70-22c3229710a5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0795d34767fe45489a445a8024d684b8f62e8a7f9a918cf843171b373c73f07 +size 2139731 diff --git a/train/1f33c7d2-16a1-4d68-ab17-28d79d38a988.png b/train/1f33c7d2-16a1-4d68-ab17-28d79d38a988.png new file mode 100644 index 0000000000000000000000000000000000000000..0f469d596481d5a278e268a0cc1f3b9fdbe3b254 --- /dev/null +++ b/train/1f33c7d2-16a1-4d68-ab17-28d79d38a988.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef37d5867215dc917b15335f49795766fd1015ab78824c076cc6bf538df3d596 +size 2214227 diff --git a/train/1f3be357-d121-4bea-93c5-dc992eaf479d.png b/train/1f3be357-d121-4bea-93c5-dc992eaf479d.png new file mode 100644 index 0000000000000000000000000000000000000000..3c840f672969c75f42c6487e40f339a603f1ae66 --- /dev/null +++ b/train/1f3be357-d121-4bea-93c5-dc992eaf479d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fda4bbe28bbc4a06b893098db5bb1477b331adee253653c7b6e6340c31ab899 +size 2263096 diff --git a/train/20651fac-0e0c-4583-8325-aa368cc75f01.png b/train/20651fac-0e0c-4583-8325-aa368cc75f01.png new file mode 100644 index 0000000000000000000000000000000000000000..063c065187ad8425e77feb31c8b7beca2abfc838 --- /dev/null +++ b/train/20651fac-0e0c-4583-8325-aa368cc75f01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:499894cdb2f0b860cb1111de7ab759f77bdde633422668f1cc097e410dbbba7b +size 2063269 diff --git a/train/209302f7-26d0-4f15-8110-ba15bd1255d0.png b/train/209302f7-26d0-4f15-8110-ba15bd1255d0.png new file mode 100644 index 0000000000000000000000000000000000000000..34abb3c5212eb7510578f10cac87b1deb776d6ba --- /dev/null +++ b/train/209302f7-26d0-4f15-8110-ba15bd1255d0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11d7411a10b7b7e077b5406704973ab9b3e26b430c9dffb1b8433d7d2903247f +size 2157551 diff --git a/train/21252684-8162-4a78-99fc-c4dfb75fdc92.png b/train/21252684-8162-4a78-99fc-c4dfb75fdc92.png new file mode 100644 index 0000000000000000000000000000000000000000..c247cd5229835417af45793789bfca1eb4169b83 --- /dev/null +++ b/train/21252684-8162-4a78-99fc-c4dfb75fdc92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54dfa2543fb724633b2028f7f66a2d9a077db3b67535d2021062882bdbdbf08a +size 1991027 diff --git a/train/213b02c4-0c07-49f7-8fcb-1bfa20b00a69.png b/train/213b02c4-0c07-49f7-8fcb-1bfa20b00a69.png new file mode 100644 index 0000000000000000000000000000000000000000..5fd24032f3c04b1370bca053bd578c2249d3c17e --- /dev/null +++ b/train/213b02c4-0c07-49f7-8fcb-1bfa20b00a69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f0ac8dd6f3d99cfb14f33ce019cb76ceac92ea01c07754ea5b37fd46ed193cd +size 2182319 diff --git a/train/2158a18d-e4d3-4d1a-bc3e-7fa644431074.png b/train/2158a18d-e4d3-4d1a-bc3e-7fa644431074.png new file mode 100644 index 0000000000000000000000000000000000000000..4d4374e8bc21779adc2c76ab0416c62112d21037 --- /dev/null +++ b/train/2158a18d-e4d3-4d1a-bc3e-7fa644431074.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e18fc8d7c1696f7973fff6e46577018018eb47c78b860a5e3d4433a84479445 +size 2135993 diff --git a/train/22271a7a-6f91-4c0a-81da-1726a703d5c5.png b/train/22271a7a-6f91-4c0a-81da-1726a703d5c5.png new file mode 100644 index 0000000000000000000000000000000000000000..be0132ea2f9657b56e32095a2421d44baab6ef63 --- /dev/null +++ b/train/22271a7a-6f91-4c0a-81da-1726a703d5c5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3b9fa95904d89944460f7417f4f859f648e2cf35dda1984e15a1e552adf6e8 +size 2205400 diff --git a/train/2239f0c6-7f82-4a8f-92f5-e5b532ccc856.png b/train/2239f0c6-7f82-4a8f-92f5-e5b532ccc856.png new file mode 100644 index 0000000000000000000000000000000000000000..541f7e472b040c3cab06e5f08afc0605aad699c0 --- /dev/null +++ b/train/2239f0c6-7f82-4a8f-92f5-e5b532ccc856.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066be204c95db90c03c4cb48a2c462bd5dd5a19873398464ef63ed5018271f24 +size 2229128 diff --git a/train/227ab017-4ad5-4f8d-be5e-2b5f310d41c4.png b/train/227ab017-4ad5-4f8d-be5e-2b5f310d41c4.png new file mode 100644 index 0000000000000000000000000000000000000000..6f8ea82528276d3c4eb47cd2e2ce995175f4036e --- /dev/null +++ b/train/227ab017-4ad5-4f8d-be5e-2b5f310d41c4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:359c4be511ce64bab6b98f3aa9e014bb9bb4fb47d3cc333ab2d31abee6723a3e +size 2125225 diff --git a/train/22e647d2-bfb2-412f-9dc4-4f2ec10f6ad5.png b/train/22e647d2-bfb2-412f-9dc4-4f2ec10f6ad5.png new file mode 100644 index 0000000000000000000000000000000000000000..b9e35e8a69f901820bc5c57e97c8868668b1bec3 --- /dev/null +++ b/train/22e647d2-bfb2-412f-9dc4-4f2ec10f6ad5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94f9ef7973f2d3f0b705fc48d8af1f8abe147fbe5bd8678a45872da902d7454c +size 2232705 diff --git a/train/2331094e-4263-4a2a-8477-106cc488931a.png b/train/2331094e-4263-4a2a-8477-106cc488931a.png new file mode 100644 index 0000000000000000000000000000000000000000..8210c9addd102804c4bb28b237cec99058f7f9de --- /dev/null +++ b/train/2331094e-4263-4a2a-8477-106cc488931a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e21926dcd348b3426d9803460c2ad313b19366de8af93617c745ccdd61c14cee +size 2005038 diff --git a/train/2337b73c-c372-4e03-973d-ffbec0f5319b.png b/train/2337b73c-c372-4e03-973d-ffbec0f5319b.png new file mode 100644 index 0000000000000000000000000000000000000000..ef87e69ad8b7b79000e96c9d781573e816c2ee00 --- /dev/null +++ b/train/2337b73c-c372-4e03-973d-ffbec0f5319b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7007c9008636ced237e18bead44ea47558b4c1572dcad272b53051236d4247d9 +size 2135300 diff --git a/train/233f967b-3899-4a8b-bbf5-a10f10d72378.png b/train/233f967b-3899-4a8b-bbf5-a10f10d72378.png new file mode 100644 index 0000000000000000000000000000000000000000..7cfcc8350f60fdc325748f365cdc2c937fd7a75a --- /dev/null +++ b/train/233f967b-3899-4a8b-bbf5-a10f10d72378.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f2509feedb5534f021e585361f46f9ec7ad93c668431b0962d4a5eed38b51d0 +size 1997494 diff --git a/train/237f9334-7379-4320-a155-5a35d32caf4e.png b/train/237f9334-7379-4320-a155-5a35d32caf4e.png new file mode 100644 index 0000000000000000000000000000000000000000..4bf7c2f432fe611d962665bbb375b5b336595064 --- /dev/null +++ b/train/237f9334-7379-4320-a155-5a35d32caf4e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:467170325245223ca84bbe83ebc88ff8fcde4e7a3b9a2398b0ae983964862769 +size 2006548 diff --git a/train/23cf1c88-a521-4902-b46d-c88dfdd57f6e.png b/train/23cf1c88-a521-4902-b46d-c88dfdd57f6e.png new file mode 100644 index 0000000000000000000000000000000000000000..b91bdc1a3e6b0a8c603d7d67bf5bcc0fe54a594f --- /dev/null +++ b/train/23cf1c88-a521-4902-b46d-c88dfdd57f6e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9db3e3f77153c47064d4ca5591ceb4a71bc159402f0183969714ef1da113aa83 +size 2227482 diff --git a/train/23eea520-7f8e-4203-8269-77ebc5b0d4a1.png b/train/23eea520-7f8e-4203-8269-77ebc5b0d4a1.png new file mode 100644 index 0000000000000000000000000000000000000000..417d69a19fc4515b930e764940f06d33780b9bc6 --- /dev/null +++ b/train/23eea520-7f8e-4203-8269-77ebc5b0d4a1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bc7b652ff2282fa12b85683975c0810ffe07be37e284757c4ca59902db56d8c +size 2296008 diff --git a/train/241e7253-3dfe-48be-a105-15830f09ba17.png b/train/241e7253-3dfe-48be-a105-15830f09ba17.png new file mode 100644 index 0000000000000000000000000000000000000000..517a70774259be4691080548e74a3874ec92965f --- /dev/null +++ b/train/241e7253-3dfe-48be-a105-15830f09ba17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92f9a07d2b9faa2b14bda4a01fe947755809da1f1efd487a756efaac55af3a99 +size 2069455 diff --git a/train/243aa388-82f2-4335-bf9a-c9904636f451.png b/train/243aa388-82f2-4335-bf9a-c9904636f451.png new file mode 100644 index 0000000000000000000000000000000000000000..34a3f7d40e2598985a35fb852d54d1f14549a3c9 --- /dev/null +++ b/train/243aa388-82f2-4335-bf9a-c9904636f451.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:856b8155a78fea0957b84d6ec0362af35b20fe73cdde1384642a3dfccfe64bd3 +size 2211244 diff --git a/train/24add177-4451-43d4-844e-4421f4f3e9ef.png b/train/24add177-4451-43d4-844e-4421f4f3e9ef.png new file mode 100644 index 0000000000000000000000000000000000000000..e4e8c05a12ffa4dddb62064d7423233799ee0d52 --- /dev/null +++ b/train/24add177-4451-43d4-844e-4421f4f3e9ef.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4f102119ecd93d50bdbd5532062acc0d2dbc5fe60f81b565d10e2551b1b130 +size 2092041 diff --git a/train/25057b00-fe3c-49bd-9fe9-08fb69ab5dd0.png b/train/25057b00-fe3c-49bd-9fe9-08fb69ab5dd0.png new file mode 100644 index 0000000000000000000000000000000000000000..6458f228ffc243f783a3c8e97d5bfd3054fc80c0 --- /dev/null +++ b/train/25057b00-fe3c-49bd-9fe9-08fb69ab5dd0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad0ea7f744f9793360a1866547e596f56b94f83a7daebfad8abbb5983050e64 +size 2163769 diff --git a/train/2514340f-8cce-4ef8-9ff2-84a78c419ead.png b/train/2514340f-8cce-4ef8-9ff2-84a78c419ead.png new file mode 100644 index 0000000000000000000000000000000000000000..7e5241c035d89c3e9e23e7af0161508d08525e79 --- /dev/null +++ b/train/2514340f-8cce-4ef8-9ff2-84a78c419ead.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd0a5850589bbd59ae1d09d7efd241b49601f70b81c94627c6c8de97905c7ef +size 2142991 diff --git a/train/251df509-26ed-4b77-9e89-89ec4e24619a.png b/train/251df509-26ed-4b77-9e89-89ec4e24619a.png new file mode 100644 index 0000000000000000000000000000000000000000..b36d4d0c1449fca4323d0e9d23fd10e9ae911e02 --- /dev/null +++ b/train/251df509-26ed-4b77-9e89-89ec4e24619a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a84eb5e3a10f24bcea8a78e4dc4dda1b087830ba5bc8f9c204b07b176d7ecad6 +size 2067327 diff --git a/train/25288ef9-369a-4fdd-a16c-6f8ec4f8309d.png b/train/25288ef9-369a-4fdd-a16c-6f8ec4f8309d.png new file mode 100644 index 0000000000000000000000000000000000000000..f5077c88b25c8cb4e3031ad038e3a9a7845308ff --- /dev/null +++ b/train/25288ef9-369a-4fdd-a16c-6f8ec4f8309d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5584994b7fe8e450bb5c21d3f6d93bda444d4074027364da21e703993366f94c +size 2147095 diff --git a/train/2583b5fa-8b63-46e9-842c-6b30c2705c66.png b/train/2583b5fa-8b63-46e9-842c-6b30c2705c66.png new file mode 100644 index 0000000000000000000000000000000000000000..195283717d1dfe3352da10b44b02d38398df7732 --- /dev/null +++ b/train/2583b5fa-8b63-46e9-842c-6b30c2705c66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afffab480073c875651475e984b7e0d334ea3aaeeda01bf4be77d9ba9707c722 +size 2080369 diff --git a/train/25c84815-c31a-4282-a10e-f988afdde0c0.png b/train/25c84815-c31a-4282-a10e-f988afdde0c0.png new file mode 100644 index 0000000000000000000000000000000000000000..8e5f22d64070f8da1619c861309989aaca849589 --- /dev/null +++ b/train/25c84815-c31a-4282-a10e-f988afdde0c0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066d98b6b80baa33d8eb2ab3af24d49e120b66ea7ec42a90df3adbf3f4ebfa41 +size 2214697 diff --git a/train/2623c452-7497-43eb-9006-eee9cc13449e.png b/train/2623c452-7497-43eb-9006-eee9cc13449e.png new file mode 100644 index 0000000000000000000000000000000000000000..5eedef78c97a4e3002397e8987f232ef2067d548 --- /dev/null +++ b/train/2623c452-7497-43eb-9006-eee9cc13449e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fadbe7360e4d14198615cc2cdef73a7dc093b250438f0844195a6135eb5d44b9 +size 2173010 diff --git a/train/267006c2-0baf-415e-81a8-b66b36f8df52.png b/train/267006c2-0baf-415e-81a8-b66b36f8df52.png new file mode 100644 index 0000000000000000000000000000000000000000..890649c7c97415e52859d4491531274eee709b9b --- /dev/null +++ b/train/267006c2-0baf-415e-81a8-b66b36f8df52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce9e5e28da4f3dd4c573da31701425571c179cf5c8315680c21ccca8bb059c3 +size 2064592 diff --git a/train/2675e431-0e69-4d53-935c-db4a90db8184.png b/train/2675e431-0e69-4d53-935c-db4a90db8184.png new file mode 100644 index 0000000000000000000000000000000000000000..5305fa5f2855947135fde6916c418ec67bbefa59 --- /dev/null +++ b/train/2675e431-0e69-4d53-935c-db4a90db8184.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38d290ada2e79a99ae6029c66a7bbda60a9ab2e1178f417999d2e7427f00695f +size 2173739 diff --git a/train/269ecc63-2799-4f44-a720-79cfc3045363.png b/train/269ecc63-2799-4f44-a720-79cfc3045363.png new file mode 100644 index 0000000000000000000000000000000000000000..46acab17e55615e855efc5ad5485bc56dc0c7183 --- /dev/null +++ b/train/269ecc63-2799-4f44-a720-79cfc3045363.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:748b6694b984603fe013c7f1e63ff62ee35ced094cfdc0ea981c27066e32d4a2 +size 2009740 diff --git a/train/26ad9c67-4702-420f-ab1c-f2df484d8c65.png b/train/26ad9c67-4702-420f-ab1c-f2df484d8c65.png new file mode 100644 index 0000000000000000000000000000000000000000..c209deba6cd2e04e9b73ceeca73c1b99cd5ba282 --- /dev/null +++ b/train/26ad9c67-4702-420f-ab1c-f2df484d8c65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb6f48be0da6a368590c6cc02fe96be37853ea5914ea3d5c7b1a737de16f860f +size 2111370 diff --git a/train/26d846b0-d519-4375-9077-979e9e430651.png b/train/26d846b0-d519-4375-9077-979e9e430651.png new file mode 100644 index 0000000000000000000000000000000000000000..f78fbe842e1f039d349751bd6b6358704b472c1f --- /dev/null +++ b/train/26d846b0-d519-4375-9077-979e9e430651.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f7d517e35e44a5dd1f13392c029dc7c3b493a8a6dbcd9b695fcc3d9120df08 +size 2089178 diff --git a/train/26ebedba-2812-441d-a068-e37845c4f154.png b/train/26ebedba-2812-441d-a068-e37845c4f154.png new file mode 100644 index 0000000000000000000000000000000000000000..b4936a03c5933113e2ae5f7c89e9dbd92e80b9b5 --- /dev/null +++ b/train/26ebedba-2812-441d-a068-e37845c4f154.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:511fca5dc40cf05839006858a5a3775d8601fd9cc3db6b87f1d388d1afd111c3 +size 2235777 diff --git a/train/2700ed9a-79e9-4014-b4ae-d2154c6066ef.png b/train/2700ed9a-79e9-4014-b4ae-d2154c6066ef.png new file mode 100644 index 0000000000000000000000000000000000000000..548a8252329330f7c30d1634b8539ecc32651c38 --- /dev/null +++ b/train/2700ed9a-79e9-4014-b4ae-d2154c6066ef.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de04253c4f451d3fbf3c4c92d576dbf51a6f82120c696545a5a864a91b33d0c9 +size 2100574 diff --git a/train/27222465-0152-43bd-aa97-7a496d64b7ad.png b/train/27222465-0152-43bd-aa97-7a496d64b7ad.png new file mode 100644 index 0000000000000000000000000000000000000000..3b6af9b2b0466cc1242d8d80809decc8c95e727d --- /dev/null +++ b/train/27222465-0152-43bd-aa97-7a496d64b7ad.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efc6f136f06f19bf10b4da800c21a26c371b68cf8499eb3acadb8f5319f77217 +size 1892839 diff --git a/train/27242ff9-1120-49b2-8f37-9a5e56a9f4a7.png b/train/27242ff9-1120-49b2-8f37-9a5e56a9f4a7.png new file mode 100644 index 0000000000000000000000000000000000000000..d9d73ac7b05a8291ddd582e0ecb0bf00bed9f56f --- /dev/null +++ b/train/27242ff9-1120-49b2-8f37-9a5e56a9f4a7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622f8cd3ea88905ec09531db403fe1be89d92f9fe61c2a3c470acb8f744d7777 +size 2111444 diff --git a/train/27bbaf7e-5c8f-4c76-ac99-a499b81347e9.png b/train/27bbaf7e-5c8f-4c76-ac99-a499b81347e9.png new file mode 100644 index 0000000000000000000000000000000000000000..48a234d4cf7c4513388d5a39ba818e41e9626c99 --- /dev/null +++ b/train/27bbaf7e-5c8f-4c76-ac99-a499b81347e9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:064d31a085ed43a63b60c7b5f16f897fcdd9ed916504ed4022a83ec77106233c +size 1995963 diff --git a/train/27ee5a9e-c5e9-44a7-93b9-a223aa00a3cc.png b/train/27ee5a9e-c5e9-44a7-93b9-a223aa00a3cc.png new file mode 100644 index 0000000000000000000000000000000000000000..fabd425e6f1912ad1925875e15d27fdaef943558 --- /dev/null +++ b/train/27ee5a9e-c5e9-44a7-93b9-a223aa00a3cc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8761636a342d81d3ba169241e665f3c650d3c3042c428c27e25925f2c38dbc8b +size 2092586 diff --git a/train/2925cff6-8faa-43ee-abd3-e8c0c48d00cf.png b/train/2925cff6-8faa-43ee-abd3-e8c0c48d00cf.png new file mode 100644 index 0000000000000000000000000000000000000000..84ab0eb94e8db28de3ff04009c5819631304408d --- /dev/null +++ b/train/2925cff6-8faa-43ee-abd3-e8c0c48d00cf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2470bcdc134a33282079b884339b4f2eddcbdcb80fe8e29ffbe97693c403343 +size 2202716 diff --git a/train/293a68d0-dc08-43af-b371-9ac4a54e7246.png b/train/293a68d0-dc08-43af-b371-9ac4a54e7246.png new file mode 100644 index 0000000000000000000000000000000000000000..70559a1ac60c81c5bf77cd7d5130e0391e13ff66 --- /dev/null +++ b/train/293a68d0-dc08-43af-b371-9ac4a54e7246.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4ea5999072cf152dec17ef5430bbd84032c641e1e087b6d980a95be3952d696 +size 2146179 diff --git a/train/29720c85-9102-41e9-b135-676993b6cb28.png b/train/29720c85-9102-41e9-b135-676993b6cb28.png new file mode 100644 index 0000000000000000000000000000000000000000..6534b463b53ce8bdc4ff4db84be90edc981abd0a --- /dev/null +++ b/train/29720c85-9102-41e9-b135-676993b6cb28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab23c22a38079cb47acea685ce4d14a6975592179ab9709290481712869c46ac +size 2234222 diff --git a/train/298b636c-50aa-424a-9226-11d586e8c273.png b/train/298b636c-50aa-424a-9226-11d586e8c273.png new file mode 100644 index 0000000000000000000000000000000000000000..91253adaab7ea6e2b1c474e92731579fcb2808a5 --- /dev/null +++ b/train/298b636c-50aa-424a-9226-11d586e8c273.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42930c76672623b2db8188213ce4451f9a926d32813032d19bea3319a7bc0166 +size 2124061 diff --git a/train/29c9258f-bf83-4e77-ada1-009adf06c5cb.png b/train/29c9258f-bf83-4e77-ada1-009adf06c5cb.png new file mode 100644 index 0000000000000000000000000000000000000000..026ac6864a21c9d6b3ac65ee086921acdbf61090 --- /dev/null +++ b/train/29c9258f-bf83-4e77-ada1-009adf06c5cb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9edf67d74b4e511c90450d38c64633f7ca55dfe4af93338bc3462d9241db8d8 +size 2138266 diff --git a/train/2a44913a-aa7b-43c4-b78a-9595fcc62691.png b/train/2a44913a-aa7b-43c4-b78a-9595fcc62691.png new file mode 100644 index 0000000000000000000000000000000000000000..5040742d5852a3a2f9b32dce701e1fc720b27ca4 --- /dev/null +++ b/train/2a44913a-aa7b-43c4-b78a-9595fcc62691.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:685d0087f061f3b33a796110c0bb1ddb749596ae509585b92bcf88f2e5f792bf +size 2095314 diff --git a/train/2a5ee122-3023-41fe-babd-e63e6dc18b33.png b/train/2a5ee122-3023-41fe-babd-e63e6dc18b33.png new file mode 100644 index 0000000000000000000000000000000000000000..131ef35300eff20fdc5da99e9d2be97720d3fc2c --- /dev/null +++ b/train/2a5ee122-3023-41fe-babd-e63e6dc18b33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ba2d286dde676e563b095022f8527274924d0e7649ac698bd73028e2c8402c +size 2164249 diff --git a/train/2a791880-dec7-485b-885c-8db989de7049.png b/train/2a791880-dec7-485b-885c-8db989de7049.png new file mode 100644 index 0000000000000000000000000000000000000000..838f21df766bfb339fd000a611a95442cafa7856 --- /dev/null +++ b/train/2a791880-dec7-485b-885c-8db989de7049.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f557f7c05beb574c2ce940795a83626f3ce260c5413386bc27c75071cd6d6c61 +size 2066280 diff --git a/train/2b262d5e-d763-4ebc-823d-2f3f6350294e.png b/train/2b262d5e-d763-4ebc-823d-2f3f6350294e.png new file mode 100644 index 0000000000000000000000000000000000000000..20e796425a9f1eaa25ed0cbb105b2ac8c4920e08 --- /dev/null +++ b/train/2b262d5e-d763-4ebc-823d-2f3f6350294e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:155772064598af374a03a69fb014b5d2bbb1a12a1baf07315b67d08ade7b698d +size 2164408 diff --git a/train/2b74088e-ab06-42fa-a5dd-fa8849ae3f9c.png b/train/2b74088e-ab06-42fa-a5dd-fa8849ae3f9c.png new file mode 100644 index 0000000000000000000000000000000000000000..ec3ad3bd2c77f7109e3123821f5c3b5d99d126e3 --- /dev/null +++ b/train/2b74088e-ab06-42fa-a5dd-fa8849ae3f9c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9159c6e3cad1ad7bd6e70718f59ba3d2b0bc46512d46033750fc6c30cd0144 +size 2122201 diff --git a/train/2bebfe39-1fa1-4d9d-b640-132a2c4468cf.png b/train/2bebfe39-1fa1-4d9d-b640-132a2c4468cf.png new file mode 100644 index 0000000000000000000000000000000000000000..533b43581811394bd5d2b63c2b85f92e542e5bac --- /dev/null +++ b/train/2bebfe39-1fa1-4d9d-b640-132a2c4468cf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f9f764925f26fffe27a1284ae6af6dcbca7dedf1bbe8e442954b6602b2de27 +size 2124695 diff --git a/train/2bf05cad-e4c9-4609-a533-6b914cfec6c2.png b/train/2bf05cad-e4c9-4609-a533-6b914cfec6c2.png new file mode 100644 index 0000000000000000000000000000000000000000..789fd8eb4ae67c61c218e51408e77c97da9eb12f --- /dev/null +++ b/train/2bf05cad-e4c9-4609-a533-6b914cfec6c2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce37ee6ff4f32c25ea3ce1e283bbaec7c229aa7f2a7f41c43819dabd7902e204 +size 2096003 diff --git a/train/2c00dcb9-ea30-41cc-95da-067c3f67b810.png b/train/2c00dcb9-ea30-41cc-95da-067c3f67b810.png new file mode 100644 index 0000000000000000000000000000000000000000..08f48f43a5f03cc3f0cee21b4ed97727c0079b8b --- /dev/null +++ b/train/2c00dcb9-ea30-41cc-95da-067c3f67b810.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ea9bda5f4e383bfe035634267f3858adfc807343d4539db095263625c44331f +size 2142888 diff --git a/train/2c527947-6359-4a59-8421-a4bc308172a5.png b/train/2c527947-6359-4a59-8421-a4bc308172a5.png new file mode 100644 index 0000000000000000000000000000000000000000..19eebaee2f536de20c2d0d3053c450b1e97663db --- /dev/null +++ b/train/2c527947-6359-4a59-8421-a4bc308172a5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de2b236cec7c966e8988ede8628d43712ee94f1a9c0cb6485b7795d11ab27ce1 +size 2202299 diff --git a/train/2c5bb11d-27b9-469d-958d-e309aaa92cfa.png b/train/2c5bb11d-27b9-469d-958d-e309aaa92cfa.png new file mode 100644 index 0000000000000000000000000000000000000000..1c2a4674f11763914fdfcd1776843770a4f69a28 --- /dev/null +++ b/train/2c5bb11d-27b9-469d-958d-e309aaa92cfa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f99db8aee6d1d435f0b58840db63c8504d90c93f613a10d015db6e2ba79294 +size 2258151 diff --git a/train/2c767f90-107f-4f20-94ab-82855221e026.png b/train/2c767f90-107f-4f20-94ab-82855221e026.png new file mode 100644 index 0000000000000000000000000000000000000000..95f0bc6da3f16e74596e9de255a3ed3643359172 --- /dev/null +++ b/train/2c767f90-107f-4f20-94ab-82855221e026.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbfea63ebb8afe6f31c9581720391052589084b3b5c849df4b9b6c8016eb9e3c +size 2184123 diff --git a/train/2ca53f93-032a-4a68-a6bb-df2d2c97eea5.png b/train/2ca53f93-032a-4a68-a6bb-df2d2c97eea5.png new file mode 100644 index 0000000000000000000000000000000000000000..66e0845e4a26e633bb09bcf1577ef55a0137b108 --- /dev/null +++ b/train/2ca53f93-032a-4a68-a6bb-df2d2c97eea5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6a94f74abcd0ae5cd59f8d40ec85eb91386b45e150bb12f6c53655d604e4598 +size 2067924 diff --git a/train/2cdb9218-79a3-4091-aecc-b0457ae4f653.png b/train/2cdb9218-79a3-4091-aecc-b0457ae4f653.png new file mode 100644 index 0000000000000000000000000000000000000000..c67a58085003beacb3fc28664e8acf573d82bb6d --- /dev/null +++ b/train/2cdb9218-79a3-4091-aecc-b0457ae4f653.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:068ab3530beeb97413284922504301a79846b85bdfc67a9be9a7637b75c9a7ac +size 2284288 diff --git a/train/2ce7183e-21d8-4dec-8b35-18188482d939.png b/train/2ce7183e-21d8-4dec-8b35-18188482d939.png new file mode 100644 index 0000000000000000000000000000000000000000..bacffa367c6f397e18cb83f14471a1173e57504f --- /dev/null +++ b/train/2ce7183e-21d8-4dec-8b35-18188482d939.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a80e74a5d9accb577863ad1ce0d9b5e99a2cc861bd888482622e6ca841c3a0a +size 2233999 diff --git a/train/2dfb8d69-951d-4f64-8c64-17e798db9a44.png b/train/2dfb8d69-951d-4f64-8c64-17e798db9a44.png new file mode 100644 index 0000000000000000000000000000000000000000..f14905dac919d31afe404e17338dfd6f403ccc05 --- /dev/null +++ b/train/2dfb8d69-951d-4f64-8c64-17e798db9a44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6670cd12f6dd6e8e16d67e6a7fbdea4c331c85a7c538d180530e4c7bb66ff34 +size 2169346 diff --git a/train/2ee85921-537c-4bba-8c08-15e9eac4aedf.png b/train/2ee85921-537c-4bba-8c08-15e9eac4aedf.png new file mode 100644 index 0000000000000000000000000000000000000000..81021b17ddc59e9495760dbd372a1d4a58e45230 --- /dev/null +++ b/train/2ee85921-537c-4bba-8c08-15e9eac4aedf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b5bbf2ca7990927dff4a1fedbe5565f55786774fb36ad3350a8ceb55222b4e4 +size 2177181 diff --git a/train/2f65c73b-2d3e-4670-ae0d-aa08bfa6a9ce.png b/train/2f65c73b-2d3e-4670-ae0d-aa08bfa6a9ce.png new file mode 100644 index 0000000000000000000000000000000000000000..35dfc2918b44e52dff9e37fd1eca133ce5396eda --- /dev/null +++ b/train/2f65c73b-2d3e-4670-ae0d-aa08bfa6a9ce.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d8c5fa1814d991b0e57c4038ea237ee17a9ed544bbe2ef99970bb4c5a345268 +size 2208063 diff --git a/train/2f721dc3-bd62-4bc8-8d3f-395749ee7841.png b/train/2f721dc3-bd62-4bc8-8d3f-395749ee7841.png new file mode 100644 index 0000000000000000000000000000000000000000..62f2802005d5fe4edb459e2f3e5e35a5de7364d5 --- /dev/null +++ b/train/2f721dc3-bd62-4bc8-8d3f-395749ee7841.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:288b362398c4d13d1b7544a9002f59eb0f8109096a953d0d49d1078ccba40268 +size 2082895 diff --git a/train/2f8f32ad-824a-4b50-8c3f-638764ed1ed3.png b/train/2f8f32ad-824a-4b50-8c3f-638764ed1ed3.png new file mode 100644 index 0000000000000000000000000000000000000000..6162cbd0828bd888c9b49aff8f9a3efbc4c28170 --- /dev/null +++ b/train/2f8f32ad-824a-4b50-8c3f-638764ed1ed3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a57b37c56dd36b5c5c02fb13ff66f53ac682bad58aa313a4a1dc38c3ed74bf4 +size 2213461 diff --git a/train/2f95b323-35d6-4dfb-8d55-99eb192cfa0e.png b/train/2f95b323-35d6-4dfb-8d55-99eb192cfa0e.png new file mode 100644 index 0000000000000000000000000000000000000000..908ed508cf9ef8ef1effae23def4900e5309cc28 --- /dev/null +++ b/train/2f95b323-35d6-4dfb-8d55-99eb192cfa0e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cf11636eac01277617e3f0b8b771227bc0b006718cec0c2f596c52d8d8c2208 +size 2149420 diff --git a/train/2f9d1f30-f9ee-4171-a491-061fd6caea2c.png b/train/2f9d1f30-f9ee-4171-a491-061fd6caea2c.png new file mode 100644 index 0000000000000000000000000000000000000000..6e68109cac1461b32e984e4897ad6b16831e4848 --- /dev/null +++ b/train/2f9d1f30-f9ee-4171-a491-061fd6caea2c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:221a547507b3d12f2c838bdb18a2239859012ff2024a6637ed465efb98197cf6 +size 2152259 diff --git a/train/2fd8673e-a07c-4d6e-b88d-06ab18c323ca.png b/train/2fd8673e-a07c-4d6e-b88d-06ab18c323ca.png new file mode 100644 index 0000000000000000000000000000000000000000..cf9699638d34d9357aa1bb146fe2915b39a32120 --- /dev/null +++ b/train/2fd8673e-a07c-4d6e-b88d-06ab18c323ca.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca03f09d0d14f40884636ffb9ec14110e038ba05b58a189f690bc01d6d52e160 +size 2107594 diff --git a/train/2ffb37c5-41db-4ae0-8cc3-6bb164b1d896.png b/train/2ffb37c5-41db-4ae0-8cc3-6bb164b1d896.png new file mode 100644 index 0000000000000000000000000000000000000000..024926f9904c310f00fe21281606114ffe81fc79 --- /dev/null +++ b/train/2ffb37c5-41db-4ae0-8cc3-6bb164b1d896.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:751716ae7b4e156d7d98709105d8a5df9a0d99c1a271986f20f600a988cb03d9 +size 2111377 diff --git a/train/3027164a-d5d1-49fe-8abc-277395a85c48.png b/train/3027164a-d5d1-49fe-8abc-277395a85c48.png new file mode 100644 index 0000000000000000000000000000000000000000..7c8b25fed958128deef59f7a3b802953418b9fee --- /dev/null +++ b/train/3027164a-d5d1-49fe-8abc-277395a85c48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb30d8f9fd1654bb1597b00fceb1a9854ff10aa5e59b3c88d924bcd0f2bc49d2 +size 2123169 diff --git a/train/3081735f-62bf-4194-a812-92c9bd81ed85.png b/train/3081735f-62bf-4194-a812-92c9bd81ed85.png new file mode 100644 index 0000000000000000000000000000000000000000..8341a448e29b3fdd96405bbd2dd78ca458fd9dd3 --- /dev/null +++ b/train/3081735f-62bf-4194-a812-92c9bd81ed85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d32da2a80fb65e4a564a5a6fc132db93e93baed21cc08d33189d275eb6fc5e1b +size 2172973 diff --git a/train/30bbacfe-1844-4602-b925-468e02f66f17.png b/train/30bbacfe-1844-4602-b925-468e02f66f17.png new file mode 100644 index 0000000000000000000000000000000000000000..dcbff261f86853691c1de80caef687b9f2aebf52 --- /dev/null +++ b/train/30bbacfe-1844-4602-b925-468e02f66f17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f95113a3bb13655f5455f3d9567e45e3428fde55de9da458d9a6e43352c33d8 +size 2268718 diff --git a/train/30cd7452-b467-4030-8fb9-c3e50e1a8d98.png b/train/30cd7452-b467-4030-8fb9-c3e50e1a8d98.png new file mode 100644 index 0000000000000000000000000000000000000000..5b3144d14ff51df00aacb987cf7c6aa413a5919e --- /dev/null +++ b/train/30cd7452-b467-4030-8fb9-c3e50e1a8d98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9e46ecf1d8425bc72807735956f750a26625ba6fb4acfe18ccc921c8c7585a +size 2132574 diff --git a/train/317d2d19-efbc-4183-8da4-11c3c6fe65f8.png b/train/317d2d19-efbc-4183-8da4-11c3c6fe65f8.png new file mode 100644 index 0000000000000000000000000000000000000000..76265a3bbbc72fc21fa8684221439948e742c8e8 --- /dev/null +++ b/train/317d2d19-efbc-4183-8da4-11c3c6fe65f8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57e4fc93980c98157b6af578af5156739ebaf98629dd6b6ea925c665d21c3b26 +size 2135153 diff --git a/train/31a61f4b-5eec-4a6b-be39-210b9866aa20.png b/train/31a61f4b-5eec-4a6b-be39-210b9866aa20.png new file mode 100644 index 0000000000000000000000000000000000000000..4de49716de7d1828cab76dcf0e1d32bacd65fe66 --- /dev/null +++ b/train/31a61f4b-5eec-4a6b-be39-210b9866aa20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e8faf73d9e38f84dd611555fc995b6c2ca39f53d8ad3e5484f2897700fc93b8 +size 2127002 diff --git a/train/31ed2022-f46e-4554-9d54-8f66de76dc3c.png b/train/31ed2022-f46e-4554-9d54-8f66de76dc3c.png new file mode 100644 index 0000000000000000000000000000000000000000..1c7ab5b25aede4233271e08e4a8540c87ef85853 --- /dev/null +++ b/train/31ed2022-f46e-4554-9d54-8f66de76dc3c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44e06e0188d1734d3a2e3f885fa184fe41e6fa002baef61f80f14f659e7e587d +size 2080398 diff --git a/train/31ffa7ef-30b2-4949-b53c-d48546edca33.png b/train/31ffa7ef-30b2-4949-b53c-d48546edca33.png new file mode 100644 index 0000000000000000000000000000000000000000..3139b0f569e80a2d8e076d231b38c537ba457cbe --- /dev/null +++ b/train/31ffa7ef-30b2-4949-b53c-d48546edca33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbf53a5ba0fe05d86a9a5d6dcc1b3bfce1594b1c58d76c2a31d75e15ef28bb8e +size 2218822 diff --git a/train/3212455a-353e-4c4b-9b01-b10573a32295.png b/train/3212455a-353e-4c4b-9b01-b10573a32295.png new file mode 100644 index 0000000000000000000000000000000000000000..b1b61bc23be59d28ea23d51718bebc86082e2122 --- /dev/null +++ b/train/3212455a-353e-4c4b-9b01-b10573a32295.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:071fe930cefd4ccedb8a2d42a0baa8c746a80e48cde48b2a53c717087752f25b +size 2091069 diff --git a/train/327a2a51-0428-47e8-bacc-4fe894a73dc4.png b/train/327a2a51-0428-47e8-bacc-4fe894a73dc4.png new file mode 100644 index 0000000000000000000000000000000000000000..95ced84729a81895cd8bdbac4f6b293ed5e0427a --- /dev/null +++ b/train/327a2a51-0428-47e8-bacc-4fe894a73dc4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f149b9857085b4ba67980b2ec71459a0bab7d26fb0a2eaefa24685bf7b4075e3 +size 2121897 diff --git a/train/32a921b6-a769-421f-a81f-d869f83e72e7.png b/train/32a921b6-a769-421f-a81f-d869f83e72e7.png new file mode 100644 index 0000000000000000000000000000000000000000..32309e8285aadd5955db16ec5d578e1c140b11d2 --- /dev/null +++ b/train/32a921b6-a769-421f-a81f-d869f83e72e7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d77a947811968d90708d98f5cee180a13fe4793fc6a12769698fcbf9e3df2f24 +size 2134712 diff --git a/train/32cd9a6c-3614-418c-b94c-383e56a576e2.png b/train/32cd9a6c-3614-418c-b94c-383e56a576e2.png new file mode 100644 index 0000000000000000000000000000000000000000..4a95d71037086d27367d8158279d9b7cbd8ee7d0 --- /dev/null +++ b/train/32cd9a6c-3614-418c-b94c-383e56a576e2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ef124bab2f995db05feccafb2f7fab100f51f951b7343942548006cefe381f6 +size 2222731 diff --git a/train/32d5142e-6357-4fad-969f-2a9f86799ad2.png b/train/32d5142e-6357-4fad-969f-2a9f86799ad2.png new file mode 100644 index 0000000000000000000000000000000000000000..40471735e8514dadb6a265faa6a0336076ac46d2 --- /dev/null +++ b/train/32d5142e-6357-4fad-969f-2a9f86799ad2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7212cb768d5950575306b275693711a0db01a861da4598b045c768157fc28ac3 +size 2134741 diff --git a/train/32eb67f8-66ca-40ed-85bb-1d2154cfba45.png b/train/32eb67f8-66ca-40ed-85bb-1d2154cfba45.png new file mode 100644 index 0000000000000000000000000000000000000000..5a0d36e6a6bc68e7d8a36aed6393ac706e61c0b6 --- /dev/null +++ b/train/32eb67f8-66ca-40ed-85bb-1d2154cfba45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eac642803151386083c5c4ad33d16b5052f6f17c4278a4197a08307f038e21d +size 2143458 diff --git a/train/32f71c8a-5c7c-473e-af10-9160c6f3acf9.png b/train/32f71c8a-5c7c-473e-af10-9160c6f3acf9.png new file mode 100644 index 0000000000000000000000000000000000000000..c47f4412de1035a09f6d29ce3313ca7942db7f11 --- /dev/null +++ b/train/32f71c8a-5c7c-473e-af10-9160c6f3acf9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a6af9c30193f1ad00af3e5a78cec056a30a9b06384bb602a9de44e83ce5d96f +size 2191549 diff --git a/train/335bdada-984d-48f2-b814-7bc95e79ba9f.png b/train/335bdada-984d-48f2-b814-7bc95e79ba9f.png new file mode 100644 index 0000000000000000000000000000000000000000..dc6cb36ef699933145405977bd34a5d9048ceae3 --- /dev/null +++ b/train/335bdada-984d-48f2-b814-7bc95e79ba9f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:336a9cb124b924732fd6789e4cde29dfed9c5fdbeef39348d2cba479859bf661 +size 2097309 diff --git a/train/33da1a93-8d02-415b-b4eb-6b3c78e961eb.png b/train/33da1a93-8d02-415b-b4eb-6b3c78e961eb.png new file mode 100644 index 0000000000000000000000000000000000000000..f54b3a4a78a83cd8580185858a23c375cfa20228 --- /dev/null +++ b/train/33da1a93-8d02-415b-b4eb-6b3c78e961eb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4a6e67b66242732a233f81ce7c4286acb48b72c7def892ffdaaedefa270ed4 +size 2043193 diff --git a/train/34391d66-d56d-4b51-9829-acc724826982.png b/train/34391d66-d56d-4b51-9829-acc724826982.png new file mode 100644 index 0000000000000000000000000000000000000000..3cf46e312e8ccdcb7de7eb9eff8ee53a8dfac60c --- /dev/null +++ b/train/34391d66-d56d-4b51-9829-acc724826982.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c646d6d3dbffe70d4f6999c8f78bbbbdc35f1bec9318c45924f488e8e28b58c +size 2087469 diff --git a/train/343cd286-76eb-4753-ba0f-b8f77a54ab6a.png b/train/343cd286-76eb-4753-ba0f-b8f77a54ab6a.png new file mode 100644 index 0000000000000000000000000000000000000000..2dcf07aa0c89e41719be45e0348071b21a1a6b67 --- /dev/null +++ b/train/343cd286-76eb-4753-ba0f-b8f77a54ab6a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ebebee1e8c33b5530d5dacdd955b4c1da26a08692bd3be8a698f4b5a565a57f +size 2117156 diff --git a/train/3469ed6b-3c7b-4d9c-ba95-c01a2d929d51.png b/train/3469ed6b-3c7b-4d9c-ba95-c01a2d929d51.png new file mode 100644 index 0000000000000000000000000000000000000000..8fd9e8c408506d4d1f6558ca8dd36cdaeae35ccd --- /dev/null +++ b/train/3469ed6b-3c7b-4d9c-ba95-c01a2d929d51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abfc99209c40677703c7d4d3ba31d5c162e03fb8e16d254a3eb210babf49a890 +size 2147724 diff --git a/train/34818723-0e91-4e0b-806a-f3527d59cb4b.png b/train/34818723-0e91-4e0b-806a-f3527d59cb4b.png new file mode 100644 index 0000000000000000000000000000000000000000..f0450f201ad060f394cf1e8e204da519e47e54ed --- /dev/null +++ b/train/34818723-0e91-4e0b-806a-f3527d59cb4b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea3c7cf79d64cb7686ba9b1725d5b73316957d80128e6b3f8b13f22252f624c +size 1984836 diff --git a/train/348dc6b3-6a72-485d-81fe-28ff55ac3fc2.png b/train/348dc6b3-6a72-485d-81fe-28ff55ac3fc2.png new file mode 100644 index 0000000000000000000000000000000000000000..6c238aa72f42b0b051c9cec62c5bc5539c2c34a3 --- /dev/null +++ b/train/348dc6b3-6a72-485d-81fe-28ff55ac3fc2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd833831a084cb3913d5af38f6fc94d47c9574907c417410ba3a4051d6f99420 +size 2131883 diff --git a/train/3492b35c-3cc6-4283-97a7-d23c0c58bf66.png b/train/3492b35c-3cc6-4283-97a7-d23c0c58bf66.png new file mode 100644 index 0000000000000000000000000000000000000000..f52323d5c120a7462b45977c847f717c5ee12eba --- /dev/null +++ b/train/3492b35c-3cc6-4283-97a7-d23c0c58bf66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:962b21ba2a9e081dc8ca7e02089b33e038c03734771e94355f5688f53f110088 +size 2196168 diff --git a/train/34e57d82-5dd9-4610-aa3d-43dc37b095d8.png b/train/34e57d82-5dd9-4610-aa3d-43dc37b095d8.png new file mode 100644 index 0000000000000000000000000000000000000000..3efec7d93915eaa2ebb330a6ad9a1ee6b43419e6 --- /dev/null +++ b/train/34e57d82-5dd9-4610-aa3d-43dc37b095d8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c32c64d06cf882e7417edabf1b3780ebaeed778663731e3cab10f5d77a6d1ee +size 2072905 diff --git a/train/34ec0e2e-18c9-43b1-9a35-05bae203c3bc.png b/train/34ec0e2e-18c9-43b1-9a35-05bae203c3bc.png new file mode 100644 index 0000000000000000000000000000000000000000..44414a0c2d40c1126cbd0fd2ac65743f0dfe7c45 --- /dev/null +++ b/train/34ec0e2e-18c9-43b1-9a35-05bae203c3bc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:338d1a30d1aa892122455e32d00e85e2b5add1d347890b81ea9aca591b078430 +size 2161093 diff --git a/train/352d5a9d-adaf-4f53-abfd-36600ae5a268.png b/train/352d5a9d-adaf-4f53-abfd-36600ae5a268.png new file mode 100644 index 0000000000000000000000000000000000000000..eced165e9796b7bfa7d3f69f3d1577e4d26e92fe --- /dev/null +++ b/train/352d5a9d-adaf-4f53-abfd-36600ae5a268.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c94a549997fca5280b20c900ca13ed83b941521f5514750e3d89e61c01ee2da9 +size 2066639 diff --git a/train/35381560-4e68-47a9-a91f-b12512f733cc.png b/train/35381560-4e68-47a9-a91f-b12512f733cc.png new file mode 100644 index 0000000000000000000000000000000000000000..94a5e6ab3900cb75b8079bb5566a89bb7882ec95 --- /dev/null +++ b/train/35381560-4e68-47a9-a91f-b12512f733cc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5a993904b6f35320e0cd19c0f01db9e6746d393eaa14efac58879a7886bee09 +size 2159703 diff --git a/train/3564e900-c97e-4c1f-92cb-734c2a557685.png b/train/3564e900-c97e-4c1f-92cb-734c2a557685.png new file mode 100644 index 0000000000000000000000000000000000000000..2c0ba1d2f9bd11d1b48f3389763cbae289b3faad --- /dev/null +++ b/train/3564e900-c97e-4c1f-92cb-734c2a557685.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecd994410addd33a9f52a8953633145dbf25906c6a7dd1aeb62c6ccad750c8bf +size 2065361 diff --git a/train/360d5253-860e-4343-af8a-4754baa553df.png b/train/360d5253-860e-4343-af8a-4754baa553df.png new file mode 100644 index 0000000000000000000000000000000000000000..fa9861ec5846e55af13d582dda48160959a49177 --- /dev/null +++ b/train/360d5253-860e-4343-af8a-4754baa553df.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67475ccf7ac0a9ae157fa75e3db96f1b48bf3676c87e5532e5a4d750d74b0959 +size 2123906 diff --git a/train/366cb531-60bd-4879-9fa2-2f6da16dd352.png b/train/366cb531-60bd-4879-9fa2-2f6da16dd352.png new file mode 100644 index 0000000000000000000000000000000000000000..af103b29e642ce121bb41420da6d3e316cf676c9 --- /dev/null +++ b/train/366cb531-60bd-4879-9fa2-2f6da16dd352.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10c8a8ae9e5dc0105efc3372d2912003f0761d082847d391a4722250df031ff1 +size 1957457 diff --git a/train/36f3ded4-11ba-4455-b7b8-8fc8d1f89765.png b/train/36f3ded4-11ba-4455-b7b8-8fc8d1f89765.png new file mode 100644 index 0000000000000000000000000000000000000000..4c0462dcf6a3929a1b3fb3b9d5ce8ba0b0b8ddb1 --- /dev/null +++ b/train/36f3ded4-11ba-4455-b7b8-8fc8d1f89765.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74199d694d99bbc7c8454afb0a3293206547aef50b3a0919f66806b6d5df94db +size 2175200 diff --git a/train/37c095b1-4072-410a-8c70-519b85213528.png b/train/37c095b1-4072-410a-8c70-519b85213528.png new file mode 100644 index 0000000000000000000000000000000000000000..c47a5ffca3c50d6cb405114c2c2f20027b36bd44 --- /dev/null +++ b/train/37c095b1-4072-410a-8c70-519b85213528.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d205b82dcf7ebfc13a5c83610dad519fdcbb6ec91f5ad0c3a2a6d075958a41 +size 2060172 diff --git a/train/37fe1f13-2faf-43b7-b7a4-619ccd3506e0.png b/train/37fe1f13-2faf-43b7-b7a4-619ccd3506e0.png new file mode 100644 index 0000000000000000000000000000000000000000..e68829d36af944cae7620828fec7dc3655c2f485 --- /dev/null +++ b/train/37fe1f13-2faf-43b7-b7a4-619ccd3506e0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aae086e8ec8865d45ecc14b3373c8f1d9c2e609a1e7d8e959e706fc7c432817a +size 2175497 diff --git a/train/3831a9b0-a69d-438c-932f-73340d239853.png b/train/3831a9b0-a69d-438c-932f-73340d239853.png new file mode 100644 index 0000000000000000000000000000000000000000..71b1c9e2a53fd36b5fe7ffec6f67fcdfa96659dc --- /dev/null +++ b/train/3831a9b0-a69d-438c-932f-73340d239853.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99e0b534a1d10f1d1b21693598e255bd32fa84e31229a005c82fcdffe29789c9 +size 2170174 diff --git a/train/3857832d-0212-476a-ab8a-f9c4d4c15547.png b/train/3857832d-0212-476a-ab8a-f9c4d4c15547.png new file mode 100644 index 0000000000000000000000000000000000000000..d947bd45b98ae9f596349c759f67fb07932dfe82 --- /dev/null +++ b/train/3857832d-0212-476a-ab8a-f9c4d4c15547.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a7f5ec1184356fe96bcace4797d2b911984eab8bd3a9e585d5d48ef5a84f53a +size 2122631 diff --git a/train/394a520c-a517-430c-9297-e8a2488ebb9a.png b/train/394a520c-a517-430c-9297-e8a2488ebb9a.png new file mode 100644 index 0000000000000000000000000000000000000000..6efbe1676e1aa4c0c0bebc2e6ee24630b14e7c35 --- /dev/null +++ b/train/394a520c-a517-430c-9297-e8a2488ebb9a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec6a5ba9d5aa60fd9ea04e802e7c10638a282bdc0635f3520c09734e4e7c910 +size 2248970 diff --git a/train/39744b0a-0bcd-438e-925c-abf45c80feca.png b/train/39744b0a-0bcd-438e-925c-abf45c80feca.png new file mode 100644 index 0000000000000000000000000000000000000000..6981f5eab1d3b668d59867e52bdbc39d2942072c --- /dev/null +++ b/train/39744b0a-0bcd-438e-925c-abf45c80feca.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a816c6e955c2bb28250f4fa847a540e2d9110aefd1986ce7769e91be5f8b4de1 +size 2111298 diff --git a/train/3993a286-7367-42b4-abb0-497da6259582.png b/train/3993a286-7367-42b4-abb0-497da6259582.png new file mode 100644 index 0000000000000000000000000000000000000000..ef351693bc851c21371132478d8e9226255bd3ac --- /dev/null +++ b/train/3993a286-7367-42b4-abb0-497da6259582.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9de2b80ebb740f34a8b8ca6b2b818b6e05618e058a834a7a35e69c4cf0ab3dc +size 2078746 diff --git a/train/39b8ce67-248f-4dac-b474-d535e87153d4.png b/train/39b8ce67-248f-4dac-b474-d535e87153d4.png new file mode 100644 index 0000000000000000000000000000000000000000..fe7f99adefb6912e5f799039f2e92653c2de3823 --- /dev/null +++ b/train/39b8ce67-248f-4dac-b474-d535e87153d4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68ac83ea1f1580a8eb35e3855ff8b31b32504f32a5fcf50d2078907070d97433 +size 2174136 diff --git a/train/39bcc8f4-1bdd-485b-9ff2-09b697f6adf2.png b/train/39bcc8f4-1bdd-485b-9ff2-09b697f6adf2.png new file mode 100644 index 0000000000000000000000000000000000000000..d9f56c4aca549d68573712a56a87076ce0d60e0b --- /dev/null +++ b/train/39bcc8f4-1bdd-485b-9ff2-09b697f6adf2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:852a3b8a2afb76d9c335fea4101ae13d05a11fc88f30de24e79d196cb711ae70 +size 2135151 diff --git a/train/39bd1ba9-5dfa-49d1-9fa2-27624a15fe6a.png b/train/39bd1ba9-5dfa-49d1-9fa2-27624a15fe6a.png new file mode 100644 index 0000000000000000000000000000000000000000..495abbe696f5404e0c04b58e6b1086860cd40884 --- /dev/null +++ b/train/39bd1ba9-5dfa-49d1-9fa2-27624a15fe6a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5755f454446cab2d82a0029f189f0add12fef1e2fc3b0349d4d744094569f6f3 +size 2124128 diff --git a/train/3a002399-c03e-478b-99da-9399fcdbf9d5.png b/train/3a002399-c03e-478b-99da-9399fcdbf9d5.png new file mode 100644 index 0000000000000000000000000000000000000000..a601192056714cb8c5ec730bed656eac2185d276 --- /dev/null +++ b/train/3a002399-c03e-478b-99da-9399fcdbf9d5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93b686f6163a3396635911192b88727d6e1785ac483cd559e75b79252beb7e1d +size 2083223 diff --git a/train/3a0bee3a-ceb2-49cb-8363-5b7545ddeadf.png b/train/3a0bee3a-ceb2-49cb-8363-5b7545ddeadf.png new file mode 100644 index 0000000000000000000000000000000000000000..a8d358282bf235cc7a4b57edbddf50759a08eea7 --- /dev/null +++ b/train/3a0bee3a-ceb2-49cb-8363-5b7545ddeadf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3fb5edb0379356dd5dbd265a3a5099e741bbfb16d6100ea3d88d6c8eab9f494 +size 2049372 diff --git a/train/3b5383a6-3aaa-4c39-8808-4930efc1bcd3.png b/train/3b5383a6-3aaa-4c39-8808-4930efc1bcd3.png new file mode 100644 index 0000000000000000000000000000000000000000..4a949bca073927c404f558713917242ed508a703 --- /dev/null +++ b/train/3b5383a6-3aaa-4c39-8808-4930efc1bcd3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66cc907a766c3aa46d12a65f71a15ee201bcdff603a98c19f32b5828cfdf1cb2 +size 2166130 diff --git a/train/3b7fd777-732b-4518-8691-1a3c2e282122.png b/train/3b7fd777-732b-4518-8691-1a3c2e282122.png new file mode 100644 index 0000000000000000000000000000000000000000..d64474572cfca433655ad3a57d5c95b146d53f98 --- /dev/null +++ b/train/3b7fd777-732b-4518-8691-1a3c2e282122.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb2ebe4afa5dd17590a351c058c5f373aa24aed19a013300ab4b705760b786f1 +size 2216123 diff --git a/train/3bb3d9bb-31a1-4ab4-8f42-d5ec0839c51c.png b/train/3bb3d9bb-31a1-4ab4-8f42-d5ec0839c51c.png new file mode 100644 index 0000000000000000000000000000000000000000..0ba852eadeb75b050d5944f951e07382d7f36c95 --- /dev/null +++ b/train/3bb3d9bb-31a1-4ab4-8f42-d5ec0839c51c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1245a64a289a6ec355582521f60687aeffbc6dad36047c01e9339f6dc440e345 +size 2013870 diff --git a/train/3bea7867-e50b-452a-a404-92aea5ba2079.png b/train/3bea7867-e50b-452a-a404-92aea5ba2079.png new file mode 100644 index 0000000000000000000000000000000000000000..31fd5abb36c1bab96b896e594c77141efc628913 --- /dev/null +++ b/train/3bea7867-e50b-452a-a404-92aea5ba2079.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7f9385029fc99a03d1597d71b0c36c19736d21ba0ddaa3e54e7089449ea689e +size 2171925 diff --git a/train/3bedb5b8-2393-4cc3-aa49-03bbaacd5470.png b/train/3bedb5b8-2393-4cc3-aa49-03bbaacd5470.png new file mode 100644 index 0000000000000000000000000000000000000000..859343945fb89e21f451b0e942f4b9af75daa793 --- /dev/null +++ b/train/3bedb5b8-2393-4cc3-aa49-03bbaacd5470.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50b50930d121f62aad80fb405d039bb42da30cd1535ea0f5182ccd1f7e0592f +size 2171045 diff --git a/train/3d05f17a-f7fb-416d-929c-a6c383769cb4.png b/train/3d05f17a-f7fb-416d-929c-a6c383769cb4.png new file mode 100644 index 0000000000000000000000000000000000000000..dbd25a139ac14268b5ec31605f4080b3c6cb3f73 --- /dev/null +++ b/train/3d05f17a-f7fb-416d-929c-a6c383769cb4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23e6f7c9bc1310345979c730c910f29edc124bebe9bf3b4b8c8c9fe50f89a63f +size 2209340 diff --git a/train/3d2e65cc-c286-47b3-a687-16b3f93f1059.png b/train/3d2e65cc-c286-47b3-a687-16b3f93f1059.png new file mode 100644 index 0000000000000000000000000000000000000000..02eca47cc7b412f460bab7a0e1e4c8593da29c7e --- /dev/null +++ b/train/3d2e65cc-c286-47b3-a687-16b3f93f1059.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec012add2c10b4f62400654c54f2396004102d8157e3311f753ebfbd62c91cc +size 2115751 diff --git a/train/3d48595b-0143-4db3-95ec-a11bd7732a94.png b/train/3d48595b-0143-4db3-95ec-a11bd7732a94.png new file mode 100644 index 0000000000000000000000000000000000000000..458fb571945b5a41b05015bd61c04ff2390c5efe --- /dev/null +++ b/train/3d48595b-0143-4db3-95ec-a11bd7732a94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9212ad228c43a9dc86a0788bec95ff7aacfd73f458860c8c1e37111d5ed97ca +size 2120610 diff --git a/train/3d495542-7d5c-47fb-ab5b-c0e38948e2e6.png b/train/3d495542-7d5c-47fb-ab5b-c0e38948e2e6.png new file mode 100644 index 0000000000000000000000000000000000000000..486e6ce03f0b6baa3099da33c04767386c9d4c71 --- /dev/null +++ b/train/3d495542-7d5c-47fb-ab5b-c0e38948e2e6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d512d7063bb03d526b59bfce3fb775c2edbb1890bca58c3e97777b873aba5aa +size 2200293 diff --git a/train/3d7285de-c625-419f-a32c-6310e7b4f68e.png b/train/3d7285de-c625-419f-a32c-6310e7b4f68e.png new file mode 100644 index 0000000000000000000000000000000000000000..c23c6ac4c5718a2e8856b6b5b65db51521c9a3eb --- /dev/null +++ b/train/3d7285de-c625-419f-a32c-6310e7b4f68e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ed3b903ee4524aa78acadd986ea27f17bff4058aa1b0052d312d4a66189e20d +size 2209964 diff --git a/train/3e6b4e21-3989-432c-b574-1dd050bce0f8.png b/train/3e6b4e21-3989-432c-b574-1dd050bce0f8.png new file mode 100644 index 0000000000000000000000000000000000000000..12e2cd09df1cac0ef08a42afc1a8d8469ff88f67 --- /dev/null +++ b/train/3e6b4e21-3989-432c-b574-1dd050bce0f8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910fc9c2ad355c630dcaaa02d04ea326ff4c29faeaee8f2e8af5741ed99a57fd +size 2146056 diff --git a/train/3ecf0b59-2da7-4f97-a57f-9b37d08cb8da.png b/train/3ecf0b59-2da7-4f97-a57f-9b37d08cb8da.png new file mode 100644 index 0000000000000000000000000000000000000000..1c9902e7440f59cee21f3a7ee4905a0587b2c6ed --- /dev/null +++ b/train/3ecf0b59-2da7-4f97-a57f-9b37d08cb8da.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f392cf902320777de5dd424ac91c6df40ef9bc9b6f1a968514221b84d53558 +size 2126534 diff --git a/train/3f08b477-feb2-40ad-b41e-6b4a41b11268.png b/train/3f08b477-feb2-40ad-b41e-6b4a41b11268.png new file mode 100644 index 0000000000000000000000000000000000000000..9fcdc16638e94a2cf54840133ee5510f85f95025 --- /dev/null +++ b/train/3f08b477-feb2-40ad-b41e-6b4a41b11268.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a2132baef28de0ee1fde8ae2967af9df154f2152549e14f5c06b5a66dac8c5 +size 2153012 diff --git a/train/3f152217-23f0-4db6-bfe3-5fe99ff89160.png b/train/3f152217-23f0-4db6-bfe3-5fe99ff89160.png new file mode 100644 index 0000000000000000000000000000000000000000..d8f18c9e048de0800216324974a20f6697915d94 --- /dev/null +++ b/train/3f152217-23f0-4db6-bfe3-5fe99ff89160.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2574499f009a626b49723447451ce150c1ed7d862a0b2df30c0f1b6f174ee43d +size 2038999 diff --git a/train/3f4a8946-2607-4579-bf8f-45821a0f681a.png b/train/3f4a8946-2607-4579-bf8f-45821a0f681a.png new file mode 100644 index 0000000000000000000000000000000000000000..7451f59ced78171ac3c90f6c8e5d4f028d97686c --- /dev/null +++ b/train/3f4a8946-2607-4579-bf8f-45821a0f681a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:580763303c4d924e343a8af8012da85221332a13cecb82813400b69ba39e22cc +size 2064045 diff --git a/train/3f51e00b-f571-41ec-b690-49bfa918821d.png b/train/3f51e00b-f571-41ec-b690-49bfa918821d.png new file mode 100644 index 0000000000000000000000000000000000000000..965c7d86f72fff3d0ccc58a52bee0d8a040cc1da --- /dev/null +++ b/train/3f51e00b-f571-41ec-b690-49bfa918821d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8325df574dc8ac66d71094673aab29d12d7d189df6a83d02843e8b5ad1340b2 +size 2077522 diff --git a/train/3f9ffb81-988b-46a8-9ada-c96d7ffd280f.png b/train/3f9ffb81-988b-46a8-9ada-c96d7ffd280f.png new file mode 100644 index 0000000000000000000000000000000000000000..89d3f61cc7aac919009251ba5e58598de5e60b64 --- /dev/null +++ b/train/3f9ffb81-988b-46a8-9ada-c96d7ffd280f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1a6a8e339113845bf25dbb3550b67f5adeb2337e60bf22e15e82a801f749e90 +size 2232532 diff --git a/train/3fa2bc95-b362-4f65-8793-ba89ddeb17e0.png b/train/3fa2bc95-b362-4f65-8793-ba89ddeb17e0.png new file mode 100644 index 0000000000000000000000000000000000000000..67cbcc12b491a0e68c6976d721d334f48c1fc4c9 --- /dev/null +++ b/train/3fa2bc95-b362-4f65-8793-ba89ddeb17e0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:959c1f1c209cd38db068fad4a7c66922b4c3cc840526e07fe860cb850f2228a9 +size 2104876 diff --git a/train/3fb7415b-ccfd-4151-a080-8f3223ecce6d.png b/train/3fb7415b-ccfd-4151-a080-8f3223ecce6d.png new file mode 100644 index 0000000000000000000000000000000000000000..88308da861953c420fc52c254e5917d70ea66e89 --- /dev/null +++ b/train/3fb7415b-ccfd-4151-a080-8f3223ecce6d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a50102a3d7d3132a8c1458fdc02e35c74721b2511910d4df290e34e72a6849d2 +size 2154522 diff --git a/train/40065fe2-13dc-4c07-bc11-cf14f8f637aa.png b/train/40065fe2-13dc-4c07-bc11-cf14f8f637aa.png new file mode 100644 index 0000000000000000000000000000000000000000..9204e1a97c8dfae5a7d708fff896c880b92f3af6 --- /dev/null +++ b/train/40065fe2-13dc-4c07-bc11-cf14f8f637aa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a29a92807ac30fea18de127ac97bb08a924d13b1a81882270fd0f72c435be0 +size 2086646 diff --git a/train/4028b92b-a984-40d8-9505-a3ea040048b6.png b/train/4028b92b-a984-40d8-9505-a3ea040048b6.png new file mode 100644 index 0000000000000000000000000000000000000000..c85665707b05bb4bc797c8e2fc45f8e9ce2c3058 --- /dev/null +++ b/train/4028b92b-a984-40d8-9505-a3ea040048b6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd70984ff30bcc638881d808366e0bdfe7873e28080fa7ba398d44fe8eab883 +size 2190878 diff --git a/train/4047a304-7e58-4cd5-9c44-2b4574255f6e.png b/train/4047a304-7e58-4cd5-9c44-2b4574255f6e.png new file mode 100644 index 0000000000000000000000000000000000000000..caec0be2639b1cb39c5419f7d2d84bbec4e731c9 --- /dev/null +++ b/train/4047a304-7e58-4cd5-9c44-2b4574255f6e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d49809b82bed5d2a9fe36920b5f0391317e9d6951303ceda74f805c36a7380b +size 2201569 diff --git a/train/42ec65a2-776e-401b-8965-74ecaa04a426.png b/train/42ec65a2-776e-401b-8965-74ecaa04a426.png new file mode 100644 index 0000000000000000000000000000000000000000..98833881ea31b78b75ca536fc4f9264d417a11b8 --- /dev/null +++ b/train/42ec65a2-776e-401b-8965-74ecaa04a426.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbde75d3253e287afdb4c6d25e676700b252f1bdadcba38f59666523db1fbe28 +size 2146455 diff --git a/train/42f1590d-e7a0-4d85-843a-7b9f7939f21d.png b/train/42f1590d-e7a0-4d85-843a-7b9f7939f21d.png new file mode 100644 index 0000000000000000000000000000000000000000..0077de88b5be142394a44bae69400547177ec40d --- /dev/null +++ b/train/42f1590d-e7a0-4d85-843a-7b9f7939f21d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f0d3fffae56f9bd1c96d1a88d3723ae36e52c545ac412b121b16d4e94707457 +size 2106637 diff --git a/train/43281979-c820-49c2-a9be-085681cd9302.png b/train/43281979-c820-49c2-a9be-085681cd9302.png new file mode 100644 index 0000000000000000000000000000000000000000..87645a595e44089697026645d085dabace528cbd --- /dev/null +++ b/train/43281979-c820-49c2-a9be-085681cd9302.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18ba12020da02486c5d01ae58d13edb87410c9f000fa7d8381055916053b3c69 +size 2135703 diff --git a/train/43408cb4-c299-4e4c-866d-bbdab4b122b7.png b/train/43408cb4-c299-4e4c-866d-bbdab4b122b7.png new file mode 100644 index 0000000000000000000000000000000000000000..c9f39c361870da02021d99e03593e24825a206c8 --- /dev/null +++ b/train/43408cb4-c299-4e4c-866d-bbdab4b122b7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a5985a08843b383f4cb618124827ce3420481ad077bba754afbe6441707fb3a +size 2179499 diff --git a/train/438243c1-e0da-495b-b657-1153392e796a.png b/train/438243c1-e0da-495b-b657-1153392e796a.png new file mode 100644 index 0000000000000000000000000000000000000000..3dc2fa6a7dd1201f22afd6369d00fe01237f9bd1 --- /dev/null +++ b/train/438243c1-e0da-495b-b657-1153392e796a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1031c81b24a65a0639bd5bce958cc442e68bcd3f27ef553fae0ff9540c9e012e +size 2215382 diff --git a/train/43870038-1d4c-4304-a1c3-a5e7fcb2e1ed.png b/train/43870038-1d4c-4304-a1c3-a5e7fcb2e1ed.png new file mode 100644 index 0000000000000000000000000000000000000000..5fe75e21a6a33f17bdb3125f39cc4dae8f84db03 --- /dev/null +++ b/train/43870038-1d4c-4304-a1c3-a5e7fcb2e1ed.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d66d5e53f91fdf7840b864f97edbdd91143fe665288b4dbd42afdf2805a7d79 +size 1998957 diff --git a/train/443404b4-9b6a-4ac9-ac7a-0fbcfa083c50.png b/train/443404b4-9b6a-4ac9-ac7a-0fbcfa083c50.png new file mode 100644 index 0000000000000000000000000000000000000000..e33fb5722f3d3e0667298a6d7ba747a82d81ad1f --- /dev/null +++ b/train/443404b4-9b6a-4ac9-ac7a-0fbcfa083c50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cec6a0c2de6e116e70d71ba066ba304d11ae519af2765ae6085e7cfaf8b8d92 +size 2128123 diff --git a/train/44e86c66-1537-4aed-9e72-935b60056744.png b/train/44e86c66-1537-4aed-9e72-935b60056744.png new file mode 100644 index 0000000000000000000000000000000000000000..25824bb1afdfa528cc213608eea1cdba72e22e96 --- /dev/null +++ b/train/44e86c66-1537-4aed-9e72-935b60056744.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8895707a988927cbe126ad28aec5a3432ac048b2ef8ec2df9ee0bbeb76100dbc +size 2174110 diff --git a/train/453abd64-8629-4ae5-84ca-2d7a30c6725d.png b/train/453abd64-8629-4ae5-84ca-2d7a30c6725d.png new file mode 100644 index 0000000000000000000000000000000000000000..a12e36d1bd5bcdefa2914300df688217122beeb2 --- /dev/null +++ b/train/453abd64-8629-4ae5-84ca-2d7a30c6725d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:604b7f57c3e76d25ba8d4c777ccb4d55d7acc1453e2a4bdb14f8b6cabf3c427a +size 2180521 diff --git a/train/45b46743-57ad-4122-b053-50c73d35fcc9.png b/train/45b46743-57ad-4122-b053-50c73d35fcc9.png new file mode 100644 index 0000000000000000000000000000000000000000..c218abaf62258a99dcf05a7455076426252ee5ed --- /dev/null +++ b/train/45b46743-57ad-4122-b053-50c73d35fcc9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b28cacaae361d02f4b860a451a17c3660d7f67d5146b75d6f76e2ce03db0fec +size 2069221 diff --git a/train/46611fde-786b-4ae2-902e-0ba08eaab9de.png b/train/46611fde-786b-4ae2-902e-0ba08eaab9de.png new file mode 100644 index 0000000000000000000000000000000000000000..bc6910d931377fbd52696f5c3686a63f002865ef --- /dev/null +++ b/train/46611fde-786b-4ae2-902e-0ba08eaab9de.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f053febffa2b0c869c76f18d3485fb0499df114a2301742a5ba05007e8a0f8f6 +size 2190183 diff --git a/train/46639df4-a4bf-4592-8d58-a24faa922d40.png b/train/46639df4-a4bf-4592-8d58-a24faa922d40.png new file mode 100644 index 0000000000000000000000000000000000000000..ecb41ac0e3004ab3b29e1ddd1c466119ca5e2f61 --- /dev/null +++ b/train/46639df4-a4bf-4592-8d58-a24faa922d40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df42715faa1428b9312364e77ffc38b2c3dc643e8380c1980d4c50784716d0d +size 2013044 diff --git a/train/4666025f-4ac3-4360-a809-51ab1b82c8d0.png b/train/4666025f-4ac3-4360-a809-51ab1b82c8d0.png new file mode 100644 index 0000000000000000000000000000000000000000..a8a3c0ad18073c504e01663d49471d8603d755f6 --- /dev/null +++ b/train/4666025f-4ac3-4360-a809-51ab1b82c8d0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1c8f592c98d99cdf5ef4fbadcd97ff46f4495751902606616adbc3e7634a323 +size 2253381 diff --git a/train/466e9bc6-8586-464e-8a34-b0b00f7fcfbb.png b/train/466e9bc6-8586-464e-8a34-b0b00f7fcfbb.png new file mode 100644 index 0000000000000000000000000000000000000000..4b1d7a22bf739feae6c6acc140a6b19331fa605a --- /dev/null +++ b/train/466e9bc6-8586-464e-8a34-b0b00f7fcfbb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc8893b9d52dee0a04bd1cf795959d018ef048fe984c382df741aa4853ae0abd +size 2166632 diff --git a/train/46cd7076-12f0-431e-9614-b2ba69a83431.png b/train/46cd7076-12f0-431e-9614-b2ba69a83431.png new file mode 100644 index 0000000000000000000000000000000000000000..af3051de3ad0477095f0c1617940f7284e6b4a89 --- /dev/null +++ b/train/46cd7076-12f0-431e-9614-b2ba69a83431.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10556c10542543034e1b58ff8e632b56f1fab0ba5ea2520bd40f1061fd867988 +size 2042724 diff --git a/train/46e3a0e0-0bb9-4043-b666-b36ec04ed138.png b/train/46e3a0e0-0bb9-4043-b666-b36ec04ed138.png new file mode 100644 index 0000000000000000000000000000000000000000..aae53cfc2b9c4dc090201bc41be44b7a514d9a2a --- /dev/null +++ b/train/46e3a0e0-0bb9-4043-b666-b36ec04ed138.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3c53277399663ae9c2cb6c6b86815e54e123fcbf00e29b05755b6a1cac078e4 +size 2040598 diff --git a/train/46eb6001-2c8a-4600-9356-d22235405577.png b/train/46eb6001-2c8a-4600-9356-d22235405577.png new file mode 100644 index 0000000000000000000000000000000000000000..367ab1d8af59eb6452a273331f8bd1b4daebf02b --- /dev/null +++ b/train/46eb6001-2c8a-4600-9356-d22235405577.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c08107a7565f860b3124d52b134f967e54f52cbf9df374e91404b846f743ff4e +size 2179098 diff --git a/train/47a9b7e0-95b1-4522-9a11-174214af91f1.png b/train/47a9b7e0-95b1-4522-9a11-174214af91f1.png new file mode 100644 index 0000000000000000000000000000000000000000..a12771871f28a0cf0d8522d771f0028f8233fbbe --- /dev/null +++ b/train/47a9b7e0-95b1-4522-9a11-174214af91f1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415a445fdd17e5803e441c06c9c4a1a26d58faf87177e688073725c5ebcc1aab +size 2178373 diff --git a/train/47c936e2-0bb7-4196-9f50-0129caaf49d5.png b/train/47c936e2-0bb7-4196-9f50-0129caaf49d5.png new file mode 100644 index 0000000000000000000000000000000000000000..eb2eebd905477c9bd49c5cc478498f651da95c52 --- /dev/null +++ b/train/47c936e2-0bb7-4196-9f50-0129caaf49d5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:539d4a7216ccd280bb75658459e220518c51155ba81b4d73ca3aabb38c7bec04 +size 2064984 diff --git a/train/4803030f-570f-48db-b9d8-f6cdfb511d39.png b/train/4803030f-570f-48db-b9d8-f6cdfb511d39.png new file mode 100644 index 0000000000000000000000000000000000000000..67fee92a34987a0177b081bd6c0c77e07c2ef619 --- /dev/null +++ b/train/4803030f-570f-48db-b9d8-f6cdfb511d39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd7f506d6315da2c614d13e1d900b5597ca2d57138e3cfaf4b01a0908357036e +size 1940288 diff --git a/train/4889fe4a-1537-4398-95b3-7ce2f1aed4e1.png b/train/4889fe4a-1537-4398-95b3-7ce2f1aed4e1.png new file mode 100644 index 0000000000000000000000000000000000000000..8ca43b49433ad2c6ca73b4a77d89b48ecd9553bb --- /dev/null +++ b/train/4889fe4a-1537-4398-95b3-7ce2f1aed4e1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af81934b67260f37b8e40a91be0f93baf5bcf691a01fcc7d0de10b9cdfdf374a +size 2226632 diff --git a/train/48a09e7d-39c9-432f-8f8e-e55bb017e021.png b/train/48a09e7d-39c9-432f-8f8e-e55bb017e021.png new file mode 100644 index 0000000000000000000000000000000000000000..e92825ed474ec00cb04680d5d5c8c51c7278567b --- /dev/null +++ b/train/48a09e7d-39c9-432f-8f8e-e55bb017e021.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c590ef5a4f2ca8296e78e82337544e27aeddada9a916b5495d60a45f074260e1 +size 2066460 diff --git a/train/48d7705a-9503-4154-bf51-378fc814d6ff.png b/train/48d7705a-9503-4154-bf51-378fc814d6ff.png new file mode 100644 index 0000000000000000000000000000000000000000..869f1e67be46ae3437a2f65239fe58e26662aead --- /dev/null +++ b/train/48d7705a-9503-4154-bf51-378fc814d6ff.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5e181900ab91b7d40b92260ea20229ec0f9abbe1eb52b9c7c7312d73823c697 +size 2164991 diff --git a/train/49472bbf-6396-42d0-a73d-3ad859c06560.png b/train/49472bbf-6396-42d0-a73d-3ad859c06560.png new file mode 100644 index 0000000000000000000000000000000000000000..d302fe36035d904bd8ae18ed1a3a4808d8248ddf --- /dev/null +++ b/train/49472bbf-6396-42d0-a73d-3ad859c06560.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89a493305909fd03e784a05345bdb4d4919706017c50ff1c47ee59b7369e8cd3 +size 2218640 diff --git a/train/4988b565-f4d0-43da-b955-dd221262910e.png b/train/4988b565-f4d0-43da-b955-dd221262910e.png new file mode 100644 index 0000000000000000000000000000000000000000..1650ebad24dd1e10d950646b4523c4e4824924ba --- /dev/null +++ b/train/4988b565-f4d0-43da-b955-dd221262910e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:911b723990a5f648c11f1a27c2f8631d9f68370e6bb4ca4a2999aefe630c0a9a +size 2292619 diff --git a/train/4a022fa7-1738-4849-bbc7-0b53ac4294cb.png b/train/4a022fa7-1738-4849-bbc7-0b53ac4294cb.png new file mode 100644 index 0000000000000000000000000000000000000000..dfddda51a1ac67f798075879396e1acc680bcda6 --- /dev/null +++ b/train/4a022fa7-1738-4849-bbc7-0b53ac4294cb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:874fbc42f486de4a61f58d4d30a1e4a311ec38e48b753a7db6f3bc69d228b5c1 +size 2211882 diff --git a/train/4a830759-8e5f-4a99-9195-a9aa18f7eda2.png b/train/4a830759-8e5f-4a99-9195-a9aa18f7eda2.png new file mode 100644 index 0000000000000000000000000000000000000000..7d09c31fed0e5699ee5ddced9da84d4cb57911f3 --- /dev/null +++ b/train/4a830759-8e5f-4a99-9195-a9aa18f7eda2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63184379206a1410fa466db416c0dbf43ca3c9e14c441cd67fce84151c75f9c9 +size 2165399 diff --git a/train/4ab51f86-d96f-4619-a1d9-2fb6e62e8d5a.png b/train/4ab51f86-d96f-4619-a1d9-2fb6e62e8d5a.png new file mode 100644 index 0000000000000000000000000000000000000000..f95a90557dba9f6c69854961a4b2c3f61d24bc10 --- /dev/null +++ b/train/4ab51f86-d96f-4619-a1d9-2fb6e62e8d5a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941f3ad01b9f5d72a2fa265046af79349e0c44a936c3b063ef7be4c15303b641 +size 2028947 diff --git a/train/4ae455b2-e80a-4b50-8996-dc1a22de4f6b.png b/train/4ae455b2-e80a-4b50-8996-dc1a22de4f6b.png new file mode 100644 index 0000000000000000000000000000000000000000..2ca93265420a17bb63f017ff0d8e10cc01c10916 --- /dev/null +++ b/train/4ae455b2-e80a-4b50-8996-dc1a22de4f6b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c16ea263e7f47f234b29d77a6c078d4d86940da575b21a0b0c8430b0fe2ce7e +size 2135767 diff --git a/train/4aecf763-12fd-456d-9037-6382fe1bb590.png b/train/4aecf763-12fd-456d-9037-6382fe1bb590.png new file mode 100644 index 0000000000000000000000000000000000000000..f0c90a155dcbb624e57e5e03a7338a8fd1364e30 --- /dev/null +++ b/train/4aecf763-12fd-456d-9037-6382fe1bb590.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c8dafd6fffee044c83ca6440aa34d2b96c6945748afefd6ffc66f49b11409ff +size 2109805 diff --git a/train/4aefea5b-4ff9-439f-8574-4e96b8e656fe.png b/train/4aefea5b-4ff9-439f-8574-4e96b8e656fe.png new file mode 100644 index 0000000000000000000000000000000000000000..e57ac5499d01d66fe2a9aa66bc9ed82b1d9fa990 --- /dev/null +++ b/train/4aefea5b-4ff9-439f-8574-4e96b8e656fe.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7369b429850a70801771f8b252c354ec5bfdf5b601b71ce53bfea0f02e5a3c47 +size 2116574 diff --git a/train/4b3677af-e668-4fab-b5bb-73a8473433c8.png b/train/4b3677af-e668-4fab-b5bb-73a8473433c8.png new file mode 100644 index 0000000000000000000000000000000000000000..fa59403d039ad1d8415aa77d9d0ad30e97b88064 --- /dev/null +++ b/train/4b3677af-e668-4fab-b5bb-73a8473433c8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b5c7661ff1fc3d9c079706ff2a7243c6176b1f0134523a099f7e47a2a333bd +size 2203480 diff --git a/train/4b52fc97-ee2c-4785-b26f-ec2b83e287d6.png b/train/4b52fc97-ee2c-4785-b26f-ec2b83e287d6.png new file mode 100644 index 0000000000000000000000000000000000000000..5d4ef8b46a947485c313e02ee7bbe56e3d0d6958 --- /dev/null +++ b/train/4b52fc97-ee2c-4785-b26f-ec2b83e287d6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a764d3cf9841fdca56930aa4b2de24ed28ba39cc2befda9d4ff7089ce6c8a445 +size 2081810 diff --git a/train/4bcd02e3-792e-4801-b3f2-897f2f9f4f22.png b/train/4bcd02e3-792e-4801-b3f2-897f2f9f4f22.png new file mode 100644 index 0000000000000000000000000000000000000000..12563e7522b385d4d6b876a087fefd021b2c186d --- /dev/null +++ b/train/4bcd02e3-792e-4801-b3f2-897f2f9f4f22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acb01225b75a40d35cc39f30c26fb7ff1a189429c8ce00301e494f6a5f645ce7 +size 2232741 diff --git a/train/4bd85564-21cd-40e4-a169-9e476f5b2a88.png b/train/4bd85564-21cd-40e4-a169-9e476f5b2a88.png new file mode 100644 index 0000000000000000000000000000000000000000..a80f0cd1ed67bc7b0b0d25e3fd03cb56cc446238 --- /dev/null +++ b/train/4bd85564-21cd-40e4-a169-9e476f5b2a88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e140485f398305ee3016393ea1f4f92b4362cec8d0d60ee8c6a1c8742f79c797 +size 2120470 diff --git a/train/4c2f6a00-fa05-4479-a74c-e9e5a277cb5b.png b/train/4c2f6a00-fa05-4479-a74c-e9e5a277cb5b.png new file mode 100644 index 0000000000000000000000000000000000000000..7ecf2d35e0ddae7f865b6c64a99cab5793d084fb --- /dev/null +++ b/train/4c2f6a00-fa05-4479-a74c-e9e5a277cb5b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c0caa65f03e07cf98244ba5fe2565a04f51cbd23713e6e2e51e3fb12e49061 +size 2126061 diff --git a/train/4c65b4e4-c916-4969-b5cd-712830cdcccc.png b/train/4c65b4e4-c916-4969-b5cd-712830cdcccc.png new file mode 100644 index 0000000000000000000000000000000000000000..bfd3bd54142a3b6c66a632ce1f8d3c4942622c65 --- /dev/null +++ b/train/4c65b4e4-c916-4969-b5cd-712830cdcccc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8629f4fd4e971ef8e64fb206690a3709a27cac58e88898fd5abfaaf7f3968ae5 +size 2132515 diff --git a/train/4c929e4b-58e4-4745-b67e-dfec8d1f225d.png b/train/4c929e4b-58e4-4745-b67e-dfec8d1f225d.png new file mode 100644 index 0000000000000000000000000000000000000000..4ae7a9d54aeb0bb1cab10ee5f318071e4d198dee --- /dev/null +++ b/train/4c929e4b-58e4-4745-b67e-dfec8d1f225d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:958f23dae4e802338d92fc238d6abcf94fb171bcf3b78b090bb3befe8d926644 +size 2184753 diff --git a/train/4c984ae6-8f6a-4639-a4a0-e1a7d69c3370.png b/train/4c984ae6-8f6a-4639-a4a0-e1a7d69c3370.png new file mode 100644 index 0000000000000000000000000000000000000000..cbed1f4d436b594d7a1150535fb08c7321a35f19 --- /dev/null +++ b/train/4c984ae6-8f6a-4639-a4a0-e1a7d69c3370.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0486fd59ac7255d3dbf22960600bbc5734d4bcc05a48745230f8b648509c164 +size 2116691 diff --git a/train/4d07ac0a-4f6e-417e-96f7-09879ffb1c7b.png b/train/4d07ac0a-4f6e-417e-96f7-09879ffb1c7b.png new file mode 100644 index 0000000000000000000000000000000000000000..01029f42fd18723e6247129fe85c9e5017a90e18 --- /dev/null +++ b/train/4d07ac0a-4f6e-417e-96f7-09879ffb1c7b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efc1897d91578d8c7ebddea106dd676d2f83f7644226154bcd071aee050c2e2a +size 2207267 diff --git a/train/4dc86a21-259a-4fb1-b835-cb22d8f4474c.png b/train/4dc86a21-259a-4fb1-b835-cb22d8f4474c.png new file mode 100644 index 0000000000000000000000000000000000000000..81ecd0eddf23254c8c284685821beeff0f3cc8e1 --- /dev/null +++ b/train/4dc86a21-259a-4fb1-b835-cb22d8f4474c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66021429f070644331b66a6bd5788d31c9527025ab105cf0386f2fc2f15c16ca +size 2071114 diff --git a/train/4dee6747-b1e2-4e99-86d4-372ddbe4c6c4.png b/train/4dee6747-b1e2-4e99-86d4-372ddbe4c6c4.png new file mode 100644 index 0000000000000000000000000000000000000000..086f8965b545d275758cb3452bbf9a460d76c6d4 --- /dev/null +++ b/train/4dee6747-b1e2-4e99-86d4-372ddbe4c6c4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd4c912affea91e27500c2163ca734030a41a255d25368e0c0c8d15fd92f4d65 +size 2086057 diff --git a/train/4dfbfada-9cf3-42e0-bd39-58f940615e15.png b/train/4dfbfada-9cf3-42e0-bd39-58f940615e15.png new file mode 100644 index 0000000000000000000000000000000000000000..6b204d80b17009dd8f0007a8bceb10353f08a83c --- /dev/null +++ b/train/4dfbfada-9cf3-42e0-bd39-58f940615e15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:174b17a453f4db69d06b523472fa013e47964b469b6898f06546e7d016334443 +size 2005203 diff --git a/train/4e203a19-7600-41e6-990c-51d75f6aec3d.png b/train/4e203a19-7600-41e6-990c-51d75f6aec3d.png new file mode 100644 index 0000000000000000000000000000000000000000..5cabc57159acf7f8a702ac1250530b8046d3f64c --- /dev/null +++ b/train/4e203a19-7600-41e6-990c-51d75f6aec3d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bf2a1042ee9a57d43227decd345d713f3d735ee491c5b9cac7527f8ee7afd28 +size 2080024 diff --git a/train/4f0782c8-4728-47bd-8765-fe5568b6cf5a.png b/train/4f0782c8-4728-47bd-8765-fe5568b6cf5a.png new file mode 100644 index 0000000000000000000000000000000000000000..a9e1859a76fa732c3efda9064944cebf02edf324 --- /dev/null +++ b/train/4f0782c8-4728-47bd-8765-fe5568b6cf5a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:825c00a974df703aab4959f95c3b744592072740a37e7c90fd26799ad20f3117 +size 2251645 diff --git a/train/4f321d5d-201a-40b7-8f2e-70868803cf14.png b/train/4f321d5d-201a-40b7-8f2e-70868803cf14.png new file mode 100644 index 0000000000000000000000000000000000000000..32ca8a0f85076a591272e023c4620242d85d4550 --- /dev/null +++ b/train/4f321d5d-201a-40b7-8f2e-70868803cf14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33ef0d3f6c3dd3249b753e027eab10ef43e2a73c6ff1a5a4e8193354a8547c32 +size 2109847 diff --git a/train/4f5be013-5358-44e0-8dcc-c9f6363d047c.png b/train/4f5be013-5358-44e0-8dcc-c9f6363d047c.png new file mode 100644 index 0000000000000000000000000000000000000000..22cd5fe95abeb2211e6051c514f5d459f601b858 --- /dev/null +++ b/train/4f5be013-5358-44e0-8dcc-c9f6363d047c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b464e634f3031507b04f4bdeb50905c822f11e6b091a98b6de44bc8f01f01983 +size 2036937 diff --git a/train/4f78a429-b49c-4717-8484-354b45ae73ae.png b/train/4f78a429-b49c-4717-8484-354b45ae73ae.png new file mode 100644 index 0000000000000000000000000000000000000000..a3bde3540f6f8261d5b9fd0484dc8b7241f598dc --- /dev/null +++ b/train/4f78a429-b49c-4717-8484-354b45ae73ae.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dae1925c4ca12d6a6ea37afddc9b10b23b953caef2da5b0f244809db35cf68f8 +size 2013034 diff --git a/train/4fdf8bda-3c7d-457b-8409-fbe45939a74b.png b/train/4fdf8bda-3c7d-457b-8409-fbe45939a74b.png new file mode 100644 index 0000000000000000000000000000000000000000..22f684454c9355771e90cb63e08c685e54ec3185 --- /dev/null +++ b/train/4fdf8bda-3c7d-457b-8409-fbe45939a74b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c0ea047fac5d11be496c39b1976b9bd14aa95d3d92add16624e3cc6d3c0faf +size 2173151 diff --git a/train/4ff7e7eb-f1a4-4692-9282-f91edeb2b529.png b/train/4ff7e7eb-f1a4-4692-9282-f91edeb2b529.png new file mode 100644 index 0000000000000000000000000000000000000000..56d3f0b3455461c9b58de0cf28fa955efcb1772e --- /dev/null +++ b/train/4ff7e7eb-f1a4-4692-9282-f91edeb2b529.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb082c3ce6b41e22cf6ed50c94ef9988f8ab96d9ec165a8f0f9631ca12b16eb3 +size 2018923 diff --git a/train/50438bf6-a2f4-4876-bbc3-9fc57cf36a58.png b/train/50438bf6-a2f4-4876-bbc3-9fc57cf36a58.png new file mode 100644 index 0000000000000000000000000000000000000000..00e41a9d8f8df29b57a9c2aa38d09d13c7539361 --- /dev/null +++ b/train/50438bf6-a2f4-4876-bbc3-9fc57cf36a58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3df9822c9dcc00d6133ae8c7eeb34456bed8681b9c153fd0f6ca1be9c2ecd7ab +size 2053907 diff --git a/train/5119450e-28fd-45af-be65-f920b708522e.png b/train/5119450e-28fd-45af-be65-f920b708522e.png new file mode 100644 index 0000000000000000000000000000000000000000..1cc5b6469241e87e4e465bbd181f4f93d73954b9 --- /dev/null +++ b/train/5119450e-28fd-45af-be65-f920b708522e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f7480f1166643c309d11658c02e81b6df463135c9fd8589080e0f852fb8e4cc +size 2077359 diff --git a/train/512de57d-e9c2-40b2-88d3-7a2ea5191556.png b/train/512de57d-e9c2-40b2-88d3-7a2ea5191556.png new file mode 100644 index 0000000000000000000000000000000000000000..471ce6895ab5ac7363a92c613678492ba08d31ee --- /dev/null +++ b/train/512de57d-e9c2-40b2-88d3-7a2ea5191556.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5028c6c93c87ceb89c363e3059cc8f3268511a9ccf2374a87b39bcd2c97bdcd +size 2132331 diff --git a/train/513dd09a-e1c8-4f52-87f2-be25beda9734.png b/train/513dd09a-e1c8-4f52-87f2-be25beda9734.png new file mode 100644 index 0000000000000000000000000000000000000000..c390e855e103356bb3233789c62829bbb42acb91 --- /dev/null +++ b/train/513dd09a-e1c8-4f52-87f2-be25beda9734.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4400e2d3237bdddeb402fe8dc08da3f585891db95d9a64f62301f6d487b2808 +size 2166453 diff --git a/train/51605565-e25c-4f9a-a726-d76e4d3c547c.png b/train/51605565-e25c-4f9a-a726-d76e4d3c547c.png new file mode 100644 index 0000000000000000000000000000000000000000..7a1360035b8efb361b403e1937a699cbec92b9d8 --- /dev/null +++ b/train/51605565-e25c-4f9a-a726-d76e4d3c547c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f20981c446569d6c002b06bb90ab1fd02883e768e34cf00a96166862bb5eb57 +size 2108467 diff --git a/train/516ffc6e-ea04-4d7d-8f76-9accf505baf7.png b/train/516ffc6e-ea04-4d7d-8f76-9accf505baf7.png new file mode 100644 index 0000000000000000000000000000000000000000..79f41efcb46e3598123c889ef7891a28c7d83acf --- /dev/null +++ b/train/516ffc6e-ea04-4d7d-8f76-9accf505baf7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cba1e79d1e5a919a1751673f37a77e0cca467df397a5942911a9ae39a98a860e +size 2154577 diff --git a/train/5171a9af-8a78-4aab-afd7-846c6c6a81ce.png b/train/5171a9af-8a78-4aab-afd7-846c6c6a81ce.png new file mode 100644 index 0000000000000000000000000000000000000000..b28e9cc5b23295eb48885124a0e12baee5cd3030 --- /dev/null +++ b/train/5171a9af-8a78-4aab-afd7-846c6c6a81ce.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f6cf9dcddb6ee16366fe1aefd3776df3e7cce7f112350a6633c12c4c894de20 +size 2085250 diff --git a/train/52394ee6-d346-4ac6-a663-6a958f5a90e3.png b/train/52394ee6-d346-4ac6-a663-6a958f5a90e3.png new file mode 100644 index 0000000000000000000000000000000000000000..78da3427c18298faece44a754b322777c76be40d --- /dev/null +++ b/train/52394ee6-d346-4ac6-a663-6a958f5a90e3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4bc51a2b8fdbdcbc34504a5feebdb7b9ee724fb1ea87f0ce53438b0b2ba966e +size 2080156 diff --git a/train/52bc1154-3b19-4f2a-a3bc-b01d55ac1ce0.png b/train/52bc1154-3b19-4f2a-a3bc-b01d55ac1ce0.png new file mode 100644 index 0000000000000000000000000000000000000000..6013d5a3ae2597dc4c255c75684943d8e70b1f47 --- /dev/null +++ b/train/52bc1154-3b19-4f2a-a3bc-b01d55ac1ce0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d62664a5fabdcda1424f3e5e2b7b8644fca577dc3309e84c2d04803aae19974 +size 2109987 diff --git a/train/52c13b67-41ac-4a4f-9e14-7924c2ed7585.png b/train/52c13b67-41ac-4a4f-9e14-7924c2ed7585.png new file mode 100644 index 0000000000000000000000000000000000000000..22a4179040ece55e722fde41680ab6c192a971f0 --- /dev/null +++ b/train/52c13b67-41ac-4a4f-9e14-7924c2ed7585.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd078c2998d8c13dfe9f43578d6950da10f2a9c261964a051987924e8eb21297 +size 2248795 diff --git a/train/5303e5f8-7bce-4ad2-8df1-e317ffeabdc4.png b/train/5303e5f8-7bce-4ad2-8df1-e317ffeabdc4.png new file mode 100644 index 0000000000000000000000000000000000000000..8e656a1d731df88e13d3001fd79c73b87a54149c --- /dev/null +++ b/train/5303e5f8-7bce-4ad2-8df1-e317ffeabdc4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3abb5844499ab337604e555b1fac9790d4a99828ceb9e18de0a59eedef8142c9 +size 2140954 diff --git a/train/540b84dc-0a13-41c6-9864-a5059b98224a.png b/train/540b84dc-0a13-41c6-9864-a5059b98224a.png new file mode 100644 index 0000000000000000000000000000000000000000..0a8d15160ee42669c80f61838a93af0a9d21ba1d --- /dev/null +++ b/train/540b84dc-0a13-41c6-9864-a5059b98224a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc4a2e756d794374a5285e47e004990a34de8e8d526ca9b7f338ba71a7795f6f +size 2139255 diff --git a/train/5426816e-db1e-48ae-acb9-0d6fe32615aa.png b/train/5426816e-db1e-48ae-acb9-0d6fe32615aa.png new file mode 100644 index 0000000000000000000000000000000000000000..7d251231a510b128922ff538f87dedda41860770 --- /dev/null +++ b/train/5426816e-db1e-48ae-acb9-0d6fe32615aa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57245eea96271cb5d82db27443f5634e7db53bc0e34e3e4d68265cb6f6c8cd4 +size 2176546 diff --git a/train/546ef2f9-95fe-4e2a-aacb-89cefff8d395.png b/train/546ef2f9-95fe-4e2a-aacb-89cefff8d395.png new file mode 100644 index 0000000000000000000000000000000000000000..2acfd2d69a0920211519d2bfe93d1934fcb1211c --- /dev/null +++ b/train/546ef2f9-95fe-4e2a-aacb-89cefff8d395.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6afcfd5053f387e4f6d63b8d95151e7f52794745ca979e1cded6cd4f975ccd1e +size 2097071 diff --git a/train/54878c89-cfa8-4fe9-830c-84208c71f381.png b/train/54878c89-cfa8-4fe9-830c-84208c71f381.png new file mode 100644 index 0000000000000000000000000000000000000000..54d3ab15d612173eff2dbd85b9e459332b9d60e4 --- /dev/null +++ b/train/54878c89-cfa8-4fe9-830c-84208c71f381.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a88ad131cd869813896c4d21ba94924b67fbdb8409426acce87e13f57a5a7413 +size 2110742 diff --git a/train/54b5ddc4-2aeb-4501-b393-b41aa8a7f946.png b/train/54b5ddc4-2aeb-4501-b393-b41aa8a7f946.png new file mode 100644 index 0000000000000000000000000000000000000000..bc5c59ea55c09a3fe1e42741f7a793498cc0a716 --- /dev/null +++ b/train/54b5ddc4-2aeb-4501-b393-b41aa8a7f946.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5951eb20cec51f366619dbda0b42393fec82fd7197223f3c66e6b4e71f16f9 +size 2126634 diff --git a/train/54f1b78c-9afa-416c-be82-8e7cbe6e2548.png b/train/54f1b78c-9afa-416c-be82-8e7cbe6e2548.png new file mode 100644 index 0000000000000000000000000000000000000000..fc1037b30155aab704b5ffd2556f0b93bc9bf536 --- /dev/null +++ b/train/54f1b78c-9afa-416c-be82-8e7cbe6e2548.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ced798a77b3b9729338a26c0761cd68147eddf27b006885e00662d197ddcf58 +size 2146542 diff --git a/train/55057e97-94ab-4d7d-99bb-9a7c07db2a87.png b/train/55057e97-94ab-4d7d-99bb-9a7c07db2a87.png new file mode 100644 index 0000000000000000000000000000000000000000..a92490ef7d8d4ac02975b7f9e86fcc52c324fc31 --- /dev/null +++ b/train/55057e97-94ab-4d7d-99bb-9a7c07db2a87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d50292d3e59d50d153f4be888cf1708c528d3a13e2c7bbb4100ae68766a17c1 +size 2183874 diff --git a/train/550b1c4e-16dc-4b94-b025-20f8906559f5.png b/train/550b1c4e-16dc-4b94-b025-20f8906559f5.png new file mode 100644 index 0000000000000000000000000000000000000000..0042e5bd77d2303ca0433eb5deb0d705b1622951 --- /dev/null +++ b/train/550b1c4e-16dc-4b94-b025-20f8906559f5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f355961718912f3b283aafab3f6871ae9a1ab2bdf48df673a2414c72c1b48a8 +size 2072174 diff --git a/train/5537b24b-f9eb-4cbc-9755-e3e9cef066d2.png b/train/5537b24b-f9eb-4cbc-9755-e3e9cef066d2.png new file mode 100644 index 0000000000000000000000000000000000000000..0c4c255540e152f16bdccbe5b69ec59b855e0975 --- /dev/null +++ b/train/5537b24b-f9eb-4cbc-9755-e3e9cef066d2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a950142f792ac81f597c65ef6ab28bea9fa9904f50ff61474bc4fee47363eea4 +size 2085526 diff --git a/train/55944441-4acf-4f7f-b069-30c95780c5be.png b/train/55944441-4acf-4f7f-b069-30c95780c5be.png new file mode 100644 index 0000000000000000000000000000000000000000..20b71aace2b8026abaf8f0b3e43a5a83beaafee4 --- /dev/null +++ b/train/55944441-4acf-4f7f-b069-30c95780c5be.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c752a380926d0a1af67bca88e58a5d43d6c3b014ff97d7252864d4feba382e5 +size 2045290 diff --git a/train/55da0887-bc61-4111-9f99-7da8d44150c8.png b/train/55da0887-bc61-4111-9f99-7da8d44150c8.png new file mode 100644 index 0000000000000000000000000000000000000000..b40f1763ff96a14e94c15ca222cda886a1b502fd --- /dev/null +++ b/train/55da0887-bc61-4111-9f99-7da8d44150c8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4699230e86684bc5fbd90ce782461032c9067d1d1e3cb042c8c38b393705335 +size 2193349 diff --git a/train/562bc1b9-4212-44e2-acef-85737644fae2.png b/train/562bc1b9-4212-44e2-acef-85737644fae2.png new file mode 100644 index 0000000000000000000000000000000000000000..a4e46869fb73bafc0d9d5b1afec3bfc8bed5c9c4 --- /dev/null +++ b/train/562bc1b9-4212-44e2-acef-85737644fae2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89b0eb4abba56287febdb3899583c224321ef5501bb4e61b5ae44320bcca5a7b +size 2166364 diff --git a/train/5643406b-ee02-4de1-96c3-2a736cff9a63.png b/train/5643406b-ee02-4de1-96c3-2a736cff9a63.png new file mode 100644 index 0000000000000000000000000000000000000000..33e7decca3e1ae422b92dfaa18e509e4d34fe231 --- /dev/null +++ b/train/5643406b-ee02-4de1-96c3-2a736cff9a63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bca789e1e85bbc293a734f662354992bff595463a9bed17a6f3461fcadd8dc2 +size 2175902 diff --git a/train/56a4cdbe-59ef-43fd-943e-c0ba7fd1fb8e.png b/train/56a4cdbe-59ef-43fd-943e-c0ba7fd1fb8e.png new file mode 100644 index 0000000000000000000000000000000000000000..87f5ffbd18a0c5b4beb57eb0a343682e2fe4c37a --- /dev/null +++ b/train/56a4cdbe-59ef-43fd-943e-c0ba7fd1fb8e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecbc5fa2526105fa427558627a203d11c3ea32bc9cec4c00442df83190776a2f +size 2166261 diff --git a/train/56b2e2c6-46a9-44dd-8a24-9779842b8a2f.png b/train/56b2e2c6-46a9-44dd-8a24-9779842b8a2f.png new file mode 100644 index 0000000000000000000000000000000000000000..678539cc4b26bd5b4a972c88ab075782f3a86310 --- /dev/null +++ b/train/56b2e2c6-46a9-44dd-8a24-9779842b8a2f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:666289c499008378f0d20c553fa4dbe75fab34552cf0c118ee72ceffb2a6ddc5 +size 2212882 diff --git a/train/578c44ec-37b4-4068-aa94-786f564cf05d.png b/train/578c44ec-37b4-4068-aa94-786f564cf05d.png new file mode 100644 index 0000000000000000000000000000000000000000..a079a957309fb434a54f2f79dfc3f503dbfd84fc --- /dev/null +++ b/train/578c44ec-37b4-4068-aa94-786f564cf05d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69d10ff2104abeef644830050e5a7df0af719e4d5cfecbe72ef8a24e3cc26414 +size 2087867 diff --git a/train/57d67064-1c45-48e9-aadf-8bf1cc789875.png b/train/57d67064-1c45-48e9-aadf-8bf1cc789875.png new file mode 100644 index 0000000000000000000000000000000000000000..c37e1d6f78b06c6ab604c6d56af682514dcc3f25 --- /dev/null +++ b/train/57d67064-1c45-48e9-aadf-8bf1cc789875.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e59eedf7c639f3a72f43a77fd1815c88d8a1833222fa6241e9cd346fbc439b1 +size 2254573 diff --git a/train/57d9d649-3e99-48fb-9e90-83bce07cef4f.png b/train/57d9d649-3e99-48fb-9e90-83bce07cef4f.png new file mode 100644 index 0000000000000000000000000000000000000000..c8a0f4c4ecb779177352654422b41a42188a0ed1 --- /dev/null +++ b/train/57d9d649-3e99-48fb-9e90-83bce07cef4f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ad0adf0352a6d705926c6c3311c5557d9fa68bd74054f216be8e3fc3fcbc60c +size 2127360 diff --git a/train/582f517f-1d61-49c3-9850-b6e748058245.png b/train/582f517f-1d61-49c3-9850-b6e748058245.png new file mode 100644 index 0000000000000000000000000000000000000000..f1634ea1b979c2cbf393825ef0670f4e1493afca --- /dev/null +++ b/train/582f517f-1d61-49c3-9850-b6e748058245.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b8cbf82f98718b735d65b331f59669ee5988e3886eb916ae715714ceb37fd0 +size 2126310 diff --git a/train/58334b67-8e8d-4dcc-8a0f-523d24f07ade.png b/train/58334b67-8e8d-4dcc-8a0f-523d24f07ade.png new file mode 100644 index 0000000000000000000000000000000000000000..dc63274ea4df6e16bbaced0aad984f8cf21a872e --- /dev/null +++ b/train/58334b67-8e8d-4dcc-8a0f-523d24f07ade.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4467f7c629767087fc4ac0c10a60e98fbe631eaf82f2a77caf038eefc374c1d +size 2109554 diff --git a/train/583b45d1-16e2-4944-9a0e-85601f985918.png b/train/583b45d1-16e2-4944-9a0e-85601f985918.png new file mode 100644 index 0000000000000000000000000000000000000000..d8b9f1cd6162a7e33db9fcc1528ef5ea7daa29ff --- /dev/null +++ b/train/583b45d1-16e2-4944-9a0e-85601f985918.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c504509802c63c2ed1792c2bd17bcafb88b198312e80e2ac6487a79a44388568 +size 2141379 diff --git a/train/586dc789-d988-48f9-86ba-bec63e0830f6.png b/train/586dc789-d988-48f9-86ba-bec63e0830f6.png new file mode 100644 index 0000000000000000000000000000000000000000..f0b7bcb008466faf6825753c32653faeb64bf299 --- /dev/null +++ b/train/586dc789-d988-48f9-86ba-bec63e0830f6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c65d3b0db31d79c2c4c6acdba0f65c723724da61634e9324beb39352b697e77 +size 2161909 diff --git a/train/589e006a-b7a9-4f88-83fa-777a1c8db83b.png b/train/589e006a-b7a9-4f88-83fa-777a1c8db83b.png new file mode 100644 index 0000000000000000000000000000000000000000..8a1dee633e3c47721f2223839c2b421ed45d7e8e --- /dev/null +++ b/train/589e006a-b7a9-4f88-83fa-777a1c8db83b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4158dac39beaf7843db19a4eb8822878010fd419a7f0ce288e47d036fe7e5a8 +size 2243043 diff --git a/train/58e29a08-0af9-42a4-a90b-67f6c748d2e6.png b/train/58e29a08-0af9-42a4-a90b-67f6c748d2e6.png new file mode 100644 index 0000000000000000000000000000000000000000..d62b02c8ec4ecdd97b62e1372713e471c0225f7b --- /dev/null +++ b/train/58e29a08-0af9-42a4-a90b-67f6c748d2e6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5cf43f6602b7e092a86bec0b37c3d472b0eeb5b4e7ba862153072a91f7c9060 +size 2138737 diff --git a/train/58fd66a8-5719-4d6e-a27a-a1e52e8336c4.png b/train/58fd66a8-5719-4d6e-a27a-a1e52e8336c4.png new file mode 100644 index 0000000000000000000000000000000000000000..dbcd3a44365c611b82b5226837c2e8f627001a74 --- /dev/null +++ b/train/58fd66a8-5719-4d6e-a27a-a1e52e8336c4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc4f1421e1d67c996a43fd6f2f0035b2ca378e96331aae29392a7758e1c7820 +size 2085750 diff --git a/train/59379ec8-ab5d-47fc-8f47-2bb1d17b7188.png b/train/59379ec8-ab5d-47fc-8f47-2bb1d17b7188.png new file mode 100644 index 0000000000000000000000000000000000000000..84a4ef53e3038d5f3569de8d47a4b7789a5a031a --- /dev/null +++ b/train/59379ec8-ab5d-47fc-8f47-2bb1d17b7188.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceb560b9c4f0f95c6954c70ec64efd71b555b9826f5c6520d1c1d7e12f12bb0e +size 2122486 diff --git a/train/593a45f5-d830-40e8-b13d-207e916d3811.png b/train/593a45f5-d830-40e8-b13d-207e916d3811.png new file mode 100644 index 0000000000000000000000000000000000000000..78087d6b34d9ffac9fbe35191f55dbf8447e6e9e --- /dev/null +++ b/train/593a45f5-d830-40e8-b13d-207e916d3811.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97478feaf3d4937bfd5f78d1d454e90e218691f1cd875453c8e7ffa791aed3c5 +size 2261838 diff --git a/train/593bc85f-5c9c-46bc-8e98-7ce1a131fdff.png b/train/593bc85f-5c9c-46bc-8e98-7ce1a131fdff.png new file mode 100644 index 0000000000000000000000000000000000000000..81ddf1bce1ea78bcc0036ed34c230399ccc679eb --- /dev/null +++ b/train/593bc85f-5c9c-46bc-8e98-7ce1a131fdff.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6971a8e7babb8f387a16569f2581011d1444254fe03a77498b1c051754660a92 +size 2167729 diff --git a/train/59648583-ac52-44c5-8b3e-f9a863562a27.png b/train/59648583-ac52-44c5-8b3e-f9a863562a27.png new file mode 100644 index 0000000000000000000000000000000000000000..e1c60490208a1c7a40b892862e1ca74f56540862 --- /dev/null +++ b/train/59648583-ac52-44c5-8b3e-f9a863562a27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d67f1bca51f122774ebff53e125906c8298375cee374a1851fdc964083ace44 +size 2099981 diff --git a/train/59912a95-4ec9-4661-ab0e-9c1211669c59.png b/train/59912a95-4ec9-4661-ab0e-9c1211669c59.png new file mode 100644 index 0000000000000000000000000000000000000000..c113d3e8c9a5d179a46361ce907af50be5fb4b8f --- /dev/null +++ b/train/59912a95-4ec9-4661-ab0e-9c1211669c59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ed38dad282207a4c3592315e219263414b5cb4d432a01d3c794fe6cd3a9d2ec +size 2141792 diff --git a/train/59ce2d62-3f22-47ef-bb41-48a61de75db7.png b/train/59ce2d62-3f22-47ef-bb41-48a61de75db7.png new file mode 100644 index 0000000000000000000000000000000000000000..43ce7685f16c75a542e6aa0fde0e8f28b33a42e8 --- /dev/null +++ b/train/59ce2d62-3f22-47ef-bb41-48a61de75db7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cba0fe3a3562d420872edc27b75a9435936b2c6211e1a682eb22dc1f93aa5025 +size 2237583 diff --git a/train/59d4e474-3073-4b11-80fb-0d3a4e91fe2d.png b/train/59d4e474-3073-4b11-80fb-0d3a4e91fe2d.png new file mode 100644 index 0000000000000000000000000000000000000000..ebdb5d3c79dbd1415c214b79108be9c5e80f5b2b --- /dev/null +++ b/train/59d4e474-3073-4b11-80fb-0d3a4e91fe2d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d936ddf99231408e2d854125a0f4c02485e5ae2bb035e0f37b4b6c8eabd5e31f +size 2039194 diff --git a/train/5a875461-a5a8-4574-bb96-86fd9132b8f0.png b/train/5a875461-a5a8-4574-bb96-86fd9132b8f0.png new file mode 100644 index 0000000000000000000000000000000000000000..9ed7eb98417eb91a889e230ba719e093c83977f4 --- /dev/null +++ b/train/5a875461-a5a8-4574-bb96-86fd9132b8f0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41282f8a85b587ee4cbccd4e76959e08bdec72e6479883594a3bd754a7e1cc4c +size 2049177 diff --git a/train/5ad3b3b0-1a76-4d5e-98cd-765a12fbe7a6.png b/train/5ad3b3b0-1a76-4d5e-98cd-765a12fbe7a6.png new file mode 100644 index 0000000000000000000000000000000000000000..2084887e225ce7df7d71bfe9ca590f7147df6973 --- /dev/null +++ b/train/5ad3b3b0-1a76-4d5e-98cd-765a12fbe7a6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78b424d757322dbdd54baae46b262bd3073231f572c2f51a451ff478a17d20dc +size 2106506 diff --git a/train/5aef91cb-776c-4977-aed3-8f031f158c87.png b/train/5aef91cb-776c-4977-aed3-8f031f158c87.png new file mode 100644 index 0000000000000000000000000000000000000000..68c2af6dd0b2204b4379f4bbb92857a2626c4d70 --- /dev/null +++ b/train/5aef91cb-776c-4977-aed3-8f031f158c87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d428814b5689d48015ed4fe8059437f74a9532449f6694a994d741383346f95 +size 2124054 diff --git a/train/5af12b6a-da5b-4e92-8077-93b07288016f.png b/train/5af12b6a-da5b-4e92-8077-93b07288016f.png new file mode 100644 index 0000000000000000000000000000000000000000..7a54086fd0a3425570afe72673da9f7757a3b479 --- /dev/null +++ b/train/5af12b6a-da5b-4e92-8077-93b07288016f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67810350edbf1c96ff022637738ebee0b036e1583f782a04b363980c8a8ccbe +size 1988686 diff --git a/train/5af71714-3f03-43ee-bd08-0e2325c13937.png b/train/5af71714-3f03-43ee-bd08-0e2325c13937.png new file mode 100644 index 0000000000000000000000000000000000000000..bd367ba3499d9654af09bef4e8410e0d9f2e75ef --- /dev/null +++ b/train/5af71714-3f03-43ee-bd08-0e2325c13937.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:907a86ab611b8d0c1f3623c6d410f639e42fb3a6cf4a4b3235bca2f02d7284d9 +size 1968905 diff --git a/train/5afe8181-4edb-4b4a-9338-e69cad7046fb.png b/train/5afe8181-4edb-4b4a-9338-e69cad7046fb.png new file mode 100644 index 0000000000000000000000000000000000000000..0dd24237ec7769d5d3169611c0282c1525c7d1e4 --- /dev/null +++ b/train/5afe8181-4edb-4b4a-9338-e69cad7046fb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:479453beae4ce0b9ce0555d7605d9e2ef0247605476b935e851261acb554bb68 +size 2156426 diff --git a/train/5b28a624-9aca-4755-bed0-1b0df4bee074.png b/train/5b28a624-9aca-4755-bed0-1b0df4bee074.png new file mode 100644 index 0000000000000000000000000000000000000000..f3ece00f58d1caffdf33c8a0abd777ac24f7b9ba --- /dev/null +++ b/train/5b28a624-9aca-4755-bed0-1b0df4bee074.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf1ac006336d2951ae241a4d45001b58d9187d805518ae0fb51962fc2011c393 +size 2062543 diff --git a/train/5be0e86b-8367-4b67-9567-e7ce4b5dbbce.png b/train/5be0e86b-8367-4b67-9567-e7ce4b5dbbce.png new file mode 100644 index 0000000000000000000000000000000000000000..692b23a710602c77d68f2f1f0bb0024d30b510ea --- /dev/null +++ b/train/5be0e86b-8367-4b67-9567-e7ce4b5dbbce.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9319e45ec45135ee965fc49314b604b37ff8ff55b24d71acb3a70d2194e29909 +size 2165013 diff --git a/train/5bf376c7-517d-4566-96d3-3e4be779c9df.png b/train/5bf376c7-517d-4566-96d3-3e4be779c9df.png new file mode 100644 index 0000000000000000000000000000000000000000..3532de455e3e25153ad649c39dc5f78973ef5c21 --- /dev/null +++ b/train/5bf376c7-517d-4566-96d3-3e4be779c9df.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e6b2f519a16b8990d45b6f6bc44aa4e7b8f01f0eb46e6e705698e5997fdbe20 +size 2229086 diff --git a/train/5bf9eb82-902c-4c8c-b5d2-197a79ea8776.png b/train/5bf9eb82-902c-4c8c-b5d2-197a79ea8776.png new file mode 100644 index 0000000000000000000000000000000000000000..b41e5b72e63c5518af4c4cfc97b761c30fb30544 --- /dev/null +++ b/train/5bf9eb82-902c-4c8c-b5d2-197a79ea8776.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38c799075b4fdf47f1c23fbb14397b27691017c8be4c7eccdccba736217b774a +size 2098939 diff --git a/train/5cbf092e-bf9b-4c89-9c48-01db4fbe8c70.png b/train/5cbf092e-bf9b-4c89-9c48-01db4fbe8c70.png new file mode 100644 index 0000000000000000000000000000000000000000..b036f94534a82d2b19c5d763a7f2fb57d52e1431 --- /dev/null +++ b/train/5cbf092e-bf9b-4c89-9c48-01db4fbe8c70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30d32afde3cecb5a9675fba562bb1bb81e4a666801b51811ae449444a20ea2d4 +size 2292021 diff --git a/train/5cfe65ab-b67b-492d-bf38-3b3d9c9eab09.png b/train/5cfe65ab-b67b-492d-bf38-3b3d9c9eab09.png new file mode 100644 index 0000000000000000000000000000000000000000..ccbb9c8b289fec6602e38ee7fcacade357b3b8a0 --- /dev/null +++ b/train/5cfe65ab-b67b-492d-bf38-3b3d9c9eab09.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5556e8a129713a4d31fd7e54e8cee3080f6462b49f34e15c463432c08596d51a +size 2056045 diff --git a/train/5d10bf8a-f824-41ac-8b78-b6c239de1e56.png b/train/5d10bf8a-f824-41ac-8b78-b6c239de1e56.png new file mode 100644 index 0000000000000000000000000000000000000000..f6f30c5065297e0128763c6e3d7481d761b82187 --- /dev/null +++ b/train/5d10bf8a-f824-41ac-8b78-b6c239de1e56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ad28f92289c8dbf9bcec875aac5653da5fbce940a59dd6b06ce55dedcb803d9 +size 2205358 diff --git a/train/5d641ff1-4929-41db-b80a-7612dc80652f.png b/train/5d641ff1-4929-41db-b80a-7612dc80652f.png new file mode 100644 index 0000000000000000000000000000000000000000..c6831e2cdcce90e9f2a572c254fa8e55cdad72ba --- /dev/null +++ b/train/5d641ff1-4929-41db-b80a-7612dc80652f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dded6928ff60d9142e53c30f47fcd09859c72c4d4f73f27fb2ee16dda87758eb +size 2115461 diff --git a/train/5d78b6ed-496a-4e6c-8c73-c1584f5665e1.png b/train/5d78b6ed-496a-4e6c-8c73-c1584f5665e1.png new file mode 100644 index 0000000000000000000000000000000000000000..aa3670157332babada3401ea2a3f27db95f66945 --- /dev/null +++ b/train/5d78b6ed-496a-4e6c-8c73-c1584f5665e1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b382f31aa17383ced789c57cd672b18f63204a5056d1b82c9013785c6bea7c2d +size 2115918 diff --git a/train/5d89f0a6-a589-46af-8eb5-5387b75b3555.png b/train/5d89f0a6-a589-46af-8eb5-5387b75b3555.png new file mode 100644 index 0000000000000000000000000000000000000000..b68af97f4bc694bb742f9746f6a7ec05bb176e40 --- /dev/null +++ b/train/5d89f0a6-a589-46af-8eb5-5387b75b3555.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3259304978b5f97430f942ecf87bf3ba8130ea8cb1fe25a309d3d78d944f4a9 +size 1964563 diff --git a/train/5e37cd64-fc91-4f35-918c-913b559f1ffc.png b/train/5e37cd64-fc91-4f35-918c-913b559f1ffc.png new file mode 100644 index 0000000000000000000000000000000000000000..2bb66a6cd074810cba059452164f05aeb2e15e60 --- /dev/null +++ b/train/5e37cd64-fc91-4f35-918c-913b559f1ffc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375ec6eb48a6688796caf675dc9a9395334bd5c3f5fd2d0f083fa8651d84d110 +size 2160085 diff --git a/train/5e9ede86-bab9-4c39-90d9-4e6720776fe8.png b/train/5e9ede86-bab9-4c39-90d9-4e6720776fe8.png new file mode 100644 index 0000000000000000000000000000000000000000..0f2475efc7acd9a797b5b2b338c7822f6cf0adfb --- /dev/null +++ b/train/5e9ede86-bab9-4c39-90d9-4e6720776fe8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce4ed74101cc508fd2a9106f9d42666ca005708e6bf611f2a3595f610a66781 +size 2058476 diff --git a/train/5ea330f7-3443-4cd5-bec9-22b3bdbc82b2.png b/train/5ea330f7-3443-4cd5-bec9-22b3bdbc82b2.png new file mode 100644 index 0000000000000000000000000000000000000000..4513f97bc6b9db4ce75b94f963f3aef1850b53e8 --- /dev/null +++ b/train/5ea330f7-3443-4cd5-bec9-22b3bdbc82b2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f7abb48554a65d457369c4744c84ffc1a3a0d22c9bcec3ab2c3ffaa6b9b582b +size 2135958 diff --git a/train/5efc3292-085b-4865-b0f1-dd6d3903c5b1.png b/train/5efc3292-085b-4865-b0f1-dd6d3903c5b1.png new file mode 100644 index 0000000000000000000000000000000000000000..a8055490fe1d9b978b14b74cfd2755ceee6905bd --- /dev/null +++ b/train/5efc3292-085b-4865-b0f1-dd6d3903c5b1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9ec49750ddc886673771355e96772e25bff3e5352e841b51761f7c6abe4634 +size 2160713 diff --git a/train/5f19d0cf-1886-4073-8688-36d5e01ed3f1.png b/train/5f19d0cf-1886-4073-8688-36d5e01ed3f1.png new file mode 100644 index 0000000000000000000000000000000000000000..1279ec5df81c443b43056994df22910c5411a7af --- /dev/null +++ b/train/5f19d0cf-1886-4073-8688-36d5e01ed3f1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71cf95c83a522cfb2e9d12839fa77dc9d55a589e8c179a1583bb85ebc68e66d0 +size 2196713 diff --git a/train/5f79d877-b71d-48aa-a19f-deef7d4a8471.png b/train/5f79d877-b71d-48aa-a19f-deef7d4a8471.png new file mode 100644 index 0000000000000000000000000000000000000000..cf64723044c5c3d4c10c5d6ec55ddbf087ef31f1 --- /dev/null +++ b/train/5f79d877-b71d-48aa-a19f-deef7d4a8471.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a24772a3f724badb0313d6df636d61da67c48bf17c48f61fecd950c39188bb5 +size 1945311 diff --git a/train/5f99a317-aabc-44a6-8dcc-caf6a11a96b7.png b/train/5f99a317-aabc-44a6-8dcc-caf6a11a96b7.png new file mode 100644 index 0000000000000000000000000000000000000000..5e8bb168a3b2bc3a866def0b6053f0fa1ebbaec9 --- /dev/null +++ b/train/5f99a317-aabc-44a6-8dcc-caf6a11a96b7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db024fec963cee21b38f6453ed0fb589dfd8940e4f3b374f0eca532b73bff4b7 +size 2163714 diff --git a/train/601e2191-6282-4072-b1f3-f1d8d92644ca.png b/train/601e2191-6282-4072-b1f3-f1d8d92644ca.png new file mode 100644 index 0000000000000000000000000000000000000000..23922bbc730d3af5d4a98d8d0e75464b1c0263e3 --- /dev/null +++ b/train/601e2191-6282-4072-b1f3-f1d8d92644ca.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e5a51734fe4380cd5017305680d45b025e65da36779a04c5b2f784b6d5d06c +size 2079737 diff --git a/train/606e4ade-a289-4ecd-b2f7-35b57ff7c4e5.png b/train/606e4ade-a289-4ecd-b2f7-35b57ff7c4e5.png new file mode 100644 index 0000000000000000000000000000000000000000..8f7dba4eb50c793563d2f0fec139a4d2a808ee9f --- /dev/null +++ b/train/606e4ade-a289-4ecd-b2f7-35b57ff7c4e5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc791a2028c5643b63d3591dee16886104bba9ae86a01ca4036647e29d09bc4a +size 2236968 diff --git a/train/60aedf4e-7bca-4f17-9be4-25d108118b36.png b/train/60aedf4e-7bca-4f17-9be4-25d108118b36.png new file mode 100644 index 0000000000000000000000000000000000000000..ff6ddefc5951f88c3464aca30d6405a4ed50051b --- /dev/null +++ b/train/60aedf4e-7bca-4f17-9be4-25d108118b36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0950816cdfd4718ec3f6d129258d3af1f4718a3e44ec74de09c8b7014383d32b +size 2207539 diff --git a/train/60bc0e2f-1d49-4596-ae01-f2a5c820b755.png b/train/60bc0e2f-1d49-4596-ae01-f2a5c820b755.png new file mode 100644 index 0000000000000000000000000000000000000000..c4e80cbee89ce18326932d52418f37ef12148858 --- /dev/null +++ b/train/60bc0e2f-1d49-4596-ae01-f2a5c820b755.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a0492c480d3839cb9bc7210e7431ea1078e637412d0217b9b2b06b72f5a6c91 +size 2108591 diff --git a/train/60bc3166-f224-4683-8285-13e633c050f4.png b/train/60bc3166-f224-4683-8285-13e633c050f4.png new file mode 100644 index 0000000000000000000000000000000000000000..3e2857eec9a3bb8ab4a7866dc3be219d364971ee --- /dev/null +++ b/train/60bc3166-f224-4683-8285-13e633c050f4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc1f002121599becfeb697ccd46278883096e346e54400106320a858d630847e +size 2286815 diff --git a/train/618cd6e4-f3ca-46ca-96e6-b4815fcf48c1.png b/train/618cd6e4-f3ca-46ca-96e6-b4815fcf48c1.png new file mode 100644 index 0000000000000000000000000000000000000000..80e40e7e2d73bed1cae11576f2a27c1840e14df1 --- /dev/null +++ b/train/618cd6e4-f3ca-46ca-96e6-b4815fcf48c1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f7951deb845206e3cf20117e082cbb2bcbafd96e7487278d6845b87f54bd9c +size 2228218 diff --git a/train/61d4ce02-32ae-431b-a70d-68d1d450251d.png b/train/61d4ce02-32ae-431b-a70d-68d1d450251d.png new file mode 100644 index 0000000000000000000000000000000000000000..3e71791a7275decf9c574817724e57515976de50 --- /dev/null +++ b/train/61d4ce02-32ae-431b-a70d-68d1d450251d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aab990cf472796b257a4c95096e26d25e4c6920378af4f622f3dd9047e69927 +size 2150329 diff --git a/train/61e8ab06-bc8b-4ad0-ba92-2ddffdd16f65.png b/train/61e8ab06-bc8b-4ad0-ba92-2ddffdd16f65.png new file mode 100644 index 0000000000000000000000000000000000000000..53d519bfea88895c21cceca34d00a6dd41011cd6 --- /dev/null +++ b/train/61e8ab06-bc8b-4ad0-ba92-2ddffdd16f65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80234a78c6849a2a412a0a2c68a478dddaf47a8c17a6fd1cc703b1f8f04b8902 +size 2219250 diff --git a/train/6223125a-c0ef-4154-bb62-8d120cc46c5a.png b/train/6223125a-c0ef-4154-bb62-8d120cc46c5a.png new file mode 100644 index 0000000000000000000000000000000000000000..6d0bc771e2ca2091e1c126153a27f1026497d1c2 --- /dev/null +++ b/train/6223125a-c0ef-4154-bb62-8d120cc46c5a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db47bf04e1c39a1f6a13c26b1dc7d3e5daba2fd039864a579ed77dd2321235f5 +size 2132805 diff --git a/train/6234df4a-3a48-46b5-b9c0-1b0fd8769745.png b/train/6234df4a-3a48-46b5-b9c0-1b0fd8769745.png new file mode 100644 index 0000000000000000000000000000000000000000..60bf893614993781f88a189faf948445296669fa --- /dev/null +++ b/train/6234df4a-3a48-46b5-b9c0-1b0fd8769745.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f74f5ad255a097f107dabc37a02ec12821170ad61fabe5287b9b8edfccd9329c +size 2073940 diff --git a/train/62ee0179-6784-4ca9-8a88-e733eeb71873.png b/train/62ee0179-6784-4ca9-8a88-e733eeb71873.png new file mode 100644 index 0000000000000000000000000000000000000000..5a9721fccac75a4f867d55e25e52e3b220090ed1 --- /dev/null +++ b/train/62ee0179-6784-4ca9-8a88-e733eeb71873.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:520a4c4827b87f3596e26912c65b9ee381bb74dc8b9b1ab8c6d897cba70f6b2e +size 2026840 diff --git a/train/62eea76a-dbcb-4029-81d9-98751eaa6489.png b/train/62eea76a-dbcb-4029-81d9-98751eaa6489.png new file mode 100644 index 0000000000000000000000000000000000000000..5b6e3b8bcbc3f6f9dd72eee518f94e3ca041c5d8 --- /dev/null +++ b/train/62eea76a-dbcb-4029-81d9-98751eaa6489.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1f5602051080d6bd00c5e112d2f8190971ff95f28b31ea101f1f0280cfedfa7 +size 1913817 diff --git a/train/62ffe5f5-f655-4d8c-abe6-28eee8916cb8.png b/train/62ffe5f5-f655-4d8c-abe6-28eee8916cb8.png new file mode 100644 index 0000000000000000000000000000000000000000..b8f7cfbd181d616a957e84adf238f5eb9c8a19ad --- /dev/null +++ b/train/62ffe5f5-f655-4d8c-abe6-28eee8916cb8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12334d7d4c41d86c5bd4b2e9fd7ab43f491f80ee331044b20a3cc6db7310a329 +size 2186236 diff --git a/train/63077608-3d57-4bf5-ab12-09f12680601c.png b/train/63077608-3d57-4bf5-ab12-09f12680601c.png new file mode 100644 index 0000000000000000000000000000000000000000..e9f16a06c8aebf2fe35e3d295f867837c8f9751c --- /dev/null +++ b/train/63077608-3d57-4bf5-ab12-09f12680601c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8896f7aa0845c83f990e51b55830272329ca201096770b07da6240d2959e594c +size 2242399 diff --git a/train/635d6078-d274-45b0-b485-ca45a6c3421b.png b/train/635d6078-d274-45b0-b485-ca45a6c3421b.png new file mode 100644 index 0000000000000000000000000000000000000000..323657127c07d1ee6a1f7269f1a4fcad5d0a0f6a --- /dev/null +++ b/train/635d6078-d274-45b0-b485-ca45a6c3421b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d05e1ff9c2ab7bb45e9880c14d408a06af27da5b995df00cc8f00d42e095fda2 +size 2081471 diff --git a/train/63e78444-2e4f-4fb9-b702-e9d54eae2e7c.png b/train/63e78444-2e4f-4fb9-b702-e9d54eae2e7c.png new file mode 100644 index 0000000000000000000000000000000000000000..5c3568ec453b4c69584c9ce4a0379f9640a6f16e --- /dev/null +++ b/train/63e78444-2e4f-4fb9-b702-e9d54eae2e7c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb0f562e71250f5e3de02b2f37d1776738680d815334057bcbeac313317e3b4 +size 2200236 diff --git a/train/643da7a8-40c4-4a45-8673-37d786bc9f3e.png b/train/643da7a8-40c4-4a45-8673-37d786bc9f3e.png new file mode 100644 index 0000000000000000000000000000000000000000..63e56e29162f58757c15a9010a1b7c202a824e73 --- /dev/null +++ b/train/643da7a8-40c4-4a45-8673-37d786bc9f3e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0cb727c5af937f3a8ad527b0cdb760e2de26de8e21598058f1321396c4a63a +size 2008041 diff --git a/train/6475a329-23fc-44b2-805a-a8217b865ede.png b/train/6475a329-23fc-44b2-805a-a8217b865ede.png new file mode 100644 index 0000000000000000000000000000000000000000..b1b562e33b5cc95dfd92e4fafc83ccc6b7720a7e --- /dev/null +++ b/train/6475a329-23fc-44b2-805a-a8217b865ede.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78a8ee25b761ee0d2aca8caa3f2c9f1265bd47a146db6d8b2d46eadeab0912cb +size 2166361 diff --git a/train/6508238c-2492-4d24-8501-ea27bea90966.png b/train/6508238c-2492-4d24-8501-ea27bea90966.png new file mode 100644 index 0000000000000000000000000000000000000000..21879b65d553661772f9e2c802b6abddd51aed5f --- /dev/null +++ b/train/6508238c-2492-4d24-8501-ea27bea90966.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2093e5e9801206968c2fbbfcf31ace45945e6e5f71c22dbc372776185d166f7 +size 2061632 diff --git a/train/6509692b-9fd1-4861-a51a-c399d53f45c2.png b/train/6509692b-9fd1-4861-a51a-c399d53f45c2.png new file mode 100644 index 0000000000000000000000000000000000000000..c43aace3ba3aaa6ff08c5f082b3d9e1bb1993cba --- /dev/null +++ b/train/6509692b-9fd1-4861-a51a-c399d53f45c2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb67dbc6079824e2962fd82fc4defb536bd7d68f5c6b95366b29fb4f44852a55 +size 2153697 diff --git a/train/6516ec8f-bd60-4669-97c0-7305d41766bf.png b/train/6516ec8f-bd60-4669-97c0-7305d41766bf.png new file mode 100644 index 0000000000000000000000000000000000000000..d9feb83850426936542d184369d26c49a50c5061 --- /dev/null +++ b/train/6516ec8f-bd60-4669-97c0-7305d41766bf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d1656db5962b0cd17023a06fb03343b446fcdf3ac067c8d7735b606b48894ef +size 2186851 diff --git a/train/652557a3-38e7-4961-bdb8-a95f59f4e298.png b/train/652557a3-38e7-4961-bdb8-a95f59f4e298.png new file mode 100644 index 0000000000000000000000000000000000000000..bf1e2a012258dd27cd32d8a0c87a2c6f7cc42f51 --- /dev/null +++ b/train/652557a3-38e7-4961-bdb8-a95f59f4e298.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:723c05a30b9b769de337e6f5c852eaf41257d9b09318ea220adf6ad0dbf43939 +size 2123899 diff --git a/train/6552e07b-e40b-4f1c-9cd4-b4d5fd50be48.png b/train/6552e07b-e40b-4f1c-9cd4-b4d5fd50be48.png new file mode 100644 index 0000000000000000000000000000000000000000..900dd578a272c2207467360228e8bc821646c0c1 --- /dev/null +++ b/train/6552e07b-e40b-4f1c-9cd4-b4d5fd50be48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6574391edeef6cf5052025c3236d944e7c4fd7b0ff2c224e884c0ee186dda8 +size 2147580 diff --git a/train/65719eaa-a42b-472c-9ef0-271907af9f5e.png b/train/65719eaa-a42b-472c-9ef0-271907af9f5e.png new file mode 100644 index 0000000000000000000000000000000000000000..bc0ea927139c7516dd547dfe062d22b30f00a35f --- /dev/null +++ b/train/65719eaa-a42b-472c-9ef0-271907af9f5e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aabca634c066a1347f9ba5ba732f3e7a6f674ff251d94345e6ac37b89853f9cf +size 2142129 diff --git a/train/65a70913-d00e-49ed-a350-bcd95b1f8238.png b/train/65a70913-d00e-49ed-a350-bcd95b1f8238.png new file mode 100644 index 0000000000000000000000000000000000000000..aa4a6f5c391fb516348370ca7fba62a5ebe3f40b --- /dev/null +++ b/train/65a70913-d00e-49ed-a350-bcd95b1f8238.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277bdef3f835a07b97564b038bf488ba4d01d83fa53161226811bef4cd97265e +size 2032277 diff --git a/train/66e2f9f6-3824-4404-ba31-ee7d5650b16a.png b/train/66e2f9f6-3824-4404-ba31-ee7d5650b16a.png new file mode 100644 index 0000000000000000000000000000000000000000..222a57d2611bd9abdace15ed25572fc3c60c60f1 --- /dev/null +++ b/train/66e2f9f6-3824-4404-ba31-ee7d5650b16a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4966521098c93c2b0beea5487f3358e11335008ae1fc1ca4c76e133be65eb92 +size 2077887 diff --git a/train/67cb2a8c-f7b4-4887-8966-aa89821b7395.png b/train/67cb2a8c-f7b4-4887-8966-aa89821b7395.png new file mode 100644 index 0000000000000000000000000000000000000000..12b24e24e881ba1382e6989fc590d78390ca8bee --- /dev/null +++ b/train/67cb2a8c-f7b4-4887-8966-aa89821b7395.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fd4c690778000706d082878bdd4e02cc7bbc6454f34efe84d884e1a297ea2de +size 2117407 diff --git a/train/67f94cf9-bbb7-42a5-aca2-5a90fa9f6b63.png b/train/67f94cf9-bbb7-42a5-aca2-5a90fa9f6b63.png new file mode 100644 index 0000000000000000000000000000000000000000..08c5a84f70d099c6f39dd713eaab0f8915d66b93 --- /dev/null +++ b/train/67f94cf9-bbb7-42a5-aca2-5a90fa9f6b63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98eb4a29c108020d337e2f4d1917aaa52071819f1a3c81856c44a3a5459f0f60 +size 2002287 diff --git a/train/681ac9d0-6502-415a-84bd-aa2b8c4fccc4.png b/train/681ac9d0-6502-415a-84bd-aa2b8c4fccc4.png new file mode 100644 index 0000000000000000000000000000000000000000..03542511ff043ab4224788669209554a332d4a79 --- /dev/null +++ b/train/681ac9d0-6502-415a-84bd-aa2b8c4fccc4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0db13938e19a875b500bb02606923f5feaa3eeb3a33631bb562e4e5f0d46e2 +size 2072215 diff --git a/train/6849739f-eb2b-4362-ae59-9e8baca9be07.png b/train/6849739f-eb2b-4362-ae59-9e8baca9be07.png new file mode 100644 index 0000000000000000000000000000000000000000..a8807c71b4cc52d4ac5f3a85d76886c7630f58db --- /dev/null +++ b/train/6849739f-eb2b-4362-ae59-9e8baca9be07.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:220921f5597d26ff0852504eac95a69040dba04daf0c15add315e23a336ff01f +size 2141745 diff --git a/train/686e51ec-bc5e-44af-8dae-75ebf8dcde75.png b/train/686e51ec-bc5e-44af-8dae-75ebf8dcde75.png new file mode 100644 index 0000000000000000000000000000000000000000..1885c3304ff9826a7c6f947ff695adab88173459 --- /dev/null +++ b/train/686e51ec-bc5e-44af-8dae-75ebf8dcde75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9f1a3793e645cd5a2974fea47d7733892eaa77596bebbdd654a32202f33226a +size 2204924 diff --git a/train/689a9363-c36d-44c2-abb8-4ed84ede1ed6.png b/train/689a9363-c36d-44c2-abb8-4ed84ede1ed6.png new file mode 100644 index 0000000000000000000000000000000000000000..d58a6b73c511af4dcb43dec4c5a23d807aba3efb --- /dev/null +++ b/train/689a9363-c36d-44c2-abb8-4ed84ede1ed6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bf34ec21a2c8ab2b6c6a065bdbbf055a1912567e9eb8604fd7eed2cd036aedf +size 2116107 diff --git a/train/68aef1f3-2917-43aa-ad75-b4ccfac72268.png b/train/68aef1f3-2917-43aa-ad75-b4ccfac72268.png new file mode 100644 index 0000000000000000000000000000000000000000..83a9c6d6d408a18b80169933b89ce20456e041f0 --- /dev/null +++ b/train/68aef1f3-2917-43aa-ad75-b4ccfac72268.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ef54a99c4f9a885a4ed5857075f1d2b7d0678348ee1cff905ca8dbd57df35c1 +size 2138439 diff --git a/train/68b83a2e-2094-4f73-8348-46e5c5f4e91c.png b/train/68b83a2e-2094-4f73-8348-46e5c5f4e91c.png new file mode 100644 index 0000000000000000000000000000000000000000..1aea0ea0dad3980f80b484287ca7afb25ae72d96 --- /dev/null +++ b/train/68b83a2e-2094-4f73-8348-46e5c5f4e91c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84caf134663b5422d7133ffcafb05798f5c0579d277f9213071c328b8e46fe86 +size 2077483 diff --git a/train/68cb0f5f-9e41-4aa3-b391-90749116ea98.png b/train/68cb0f5f-9e41-4aa3-b391-90749116ea98.png new file mode 100644 index 0000000000000000000000000000000000000000..6a61e5624c12d1994bddfba7ebc058dd3639245c --- /dev/null +++ b/train/68cb0f5f-9e41-4aa3-b391-90749116ea98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c562a2f6b78eca66c561993007651a3f73ae3b2ffd4d9c40982c9df598a0f780 +size 1939247 diff --git a/train/68f10e71-5e9f-48bc-be5e-08a817085274.png b/train/68f10e71-5e9f-48bc-be5e-08a817085274.png new file mode 100644 index 0000000000000000000000000000000000000000..38f259d3ccbf05a92841c263af208b48578a269c --- /dev/null +++ b/train/68f10e71-5e9f-48bc-be5e-08a817085274.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f90434e362e2e7c65d1712dd591c5cf80497e2205abebd97fa6e3f56c40128 +size 2158344 diff --git a/train/69101655-0151-46f1-967c-076c75f59e7c.png b/train/69101655-0151-46f1-967c-076c75f59e7c.png new file mode 100644 index 0000000000000000000000000000000000000000..8d99b59a6a7b695f2381b25f9f7a8194f66f0e38 --- /dev/null +++ b/train/69101655-0151-46f1-967c-076c75f59e7c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e0012e7d6ab10ed3d6b3c895970fef724c5a2daa083d8c224216b60eb70a62d +size 2160845 diff --git a/train/6931bcff-88b4-48bb-b4a4-98f47c685b6d.png b/train/6931bcff-88b4-48bb-b4a4-98f47c685b6d.png new file mode 100644 index 0000000000000000000000000000000000000000..2a6055ba0633de587beff7d8c7f794e80ca77cf0 --- /dev/null +++ b/train/6931bcff-88b4-48bb-b4a4-98f47c685b6d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:591b34c95636437393cb7d41ea363e75547503160c4f0666174eecb8f7ab894a +size 2002422 diff --git a/train/695f3e45-daa0-4d62-ae28-303bcb804deb.png b/train/695f3e45-daa0-4d62-ae28-303bcb804deb.png new file mode 100644 index 0000000000000000000000000000000000000000..3f385e8bb78a6f3d63e39fbc59e041d9e24a0bd1 --- /dev/null +++ b/train/695f3e45-daa0-4d62-ae28-303bcb804deb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21af04ce15f14e7555e309ae93fe14f8833d86928a518d4da6bb4b4b9ea9c36d +size 1971429 diff --git a/train/696a0fbb-8450-44b7-97ce-df0d7cd60a15.png b/train/696a0fbb-8450-44b7-97ce-df0d7cd60a15.png new file mode 100644 index 0000000000000000000000000000000000000000..6c4f6edd8b56f2c1147de96053d397e61cd0b79e --- /dev/null +++ b/train/696a0fbb-8450-44b7-97ce-df0d7cd60a15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:018fcf6788eb6eb32cd3cb8c040ce4ab4de879f24fc59924d147f8b4d6c5f062 +size 2097169 diff --git a/train/69e31464-f3d9-4ec3-8201-804fbff8811a.png b/train/69e31464-f3d9-4ec3-8201-804fbff8811a.png new file mode 100644 index 0000000000000000000000000000000000000000..7353e8c699368939701e57956feead5fcdddabf0 --- /dev/null +++ b/train/69e31464-f3d9-4ec3-8201-804fbff8811a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3efaf28264a7ae1e444afb2073c67e40bba5f6b10e3de305c195709defc880c5 +size 2059242 diff --git a/train/6a36e724-688c-4ad7-bac1-aa7c6f97d104.png b/train/6a36e724-688c-4ad7-bac1-aa7c6f97d104.png new file mode 100644 index 0000000000000000000000000000000000000000..f5e8c2b22e97193bd2c5d114c373a3318a7fe5cd --- /dev/null +++ b/train/6a36e724-688c-4ad7-bac1-aa7c6f97d104.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45926b8155452fb1074070654d72f5c0ba205fa7daefcf41742f7f7cdd39744d +size 2089507 diff --git a/train/6a5789f7-a584-4657-a5a1-4538f0d5667e.png b/train/6a5789f7-a584-4657-a5a1-4538f0d5667e.png new file mode 100644 index 0000000000000000000000000000000000000000..736b1f8209bdaef5f08c262439da567b295a0b42 --- /dev/null +++ b/train/6a5789f7-a584-4657-a5a1-4538f0d5667e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f0a1003adc1f4737f332b31f5570093ba2f8823ea3be14a7efdc81c853fbb01 +size 2161949 diff --git a/train/6a801313-8ff0-47d8-8fb3-daa8a51fdaab.png b/train/6a801313-8ff0-47d8-8fb3-daa8a51fdaab.png new file mode 100644 index 0000000000000000000000000000000000000000..cdd4fdae508da2fa64e7d9130ea782e3d5a09d4a --- /dev/null +++ b/train/6a801313-8ff0-47d8-8fb3-daa8a51fdaab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e2e7f6ba0a834885f433bf2508e4733f905cdf4c95fd6807c01289452d21bb +size 2160504 diff --git a/train/6aa82736-4bdf-474d-aa7e-e1462eae2f3b.png b/train/6aa82736-4bdf-474d-aa7e-e1462eae2f3b.png new file mode 100644 index 0000000000000000000000000000000000000000..878a3266bd256e9d5e8c9285845fa5865f574de9 --- /dev/null +++ b/train/6aa82736-4bdf-474d-aa7e-e1462eae2f3b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9f49d26d6a131e442b955f7d1c1862119f7233caaac42e17e98d02830e23489 +size 2080240 diff --git a/train/6af6b043-e54b-4bb4-8ddd-00b4642096a3.png b/train/6af6b043-e54b-4bb4-8ddd-00b4642096a3.png new file mode 100644 index 0000000000000000000000000000000000000000..e917522e153e666c47ba5a81a158881765cf91ec --- /dev/null +++ b/train/6af6b043-e54b-4bb4-8ddd-00b4642096a3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31079d25ba8e1676c9ccca936cdc548a3c9998c4ad72715c2fce53f11ae86aeb +size 2171973 diff --git a/train/6bddb3b7-32c4-4979-8693-918f121d11f0.png b/train/6bddb3b7-32c4-4979-8693-918f121d11f0.png new file mode 100644 index 0000000000000000000000000000000000000000..b0121b9005e6dd470d1464b909348c288cc75e9a --- /dev/null +++ b/train/6bddb3b7-32c4-4979-8693-918f121d11f0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9609d7df38ad72971f06ff4b1932d83297c3c1fe8dc0f36007c5b194295d4bef +size 2137615 diff --git a/train/6bfc1d56-a9ad-4c6d-bba2-1105d0bc20dc.png b/train/6bfc1d56-a9ad-4c6d-bba2-1105d0bc20dc.png new file mode 100644 index 0000000000000000000000000000000000000000..d07758d7c43e1a320b76ecaa9cc73c1b0a850135 --- /dev/null +++ b/train/6bfc1d56-a9ad-4c6d-bba2-1105d0bc20dc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78735de68a0e45fb9cecea00fc1b33414a1fc37743201ab931d94e4700272585 +size 2182153 diff --git a/train/6c60b773-fcfb-464b-af0c-31115a5aa96b.png b/train/6c60b773-fcfb-464b-af0c-31115a5aa96b.png new file mode 100644 index 0000000000000000000000000000000000000000..b7be212a7d1830806cd782fb8d1b41f04e44e523 --- /dev/null +++ b/train/6c60b773-fcfb-464b-af0c-31115a5aa96b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf496b3a9ae5a7a3db43be56a7bb17827a170aff0069b47ff5dc59f0ebd8959 +size 2143939 diff --git a/train/6c7c0b2c-1161-43ad-8a02-6afcf9f0bf9c.png b/train/6c7c0b2c-1161-43ad-8a02-6afcf9f0bf9c.png new file mode 100644 index 0000000000000000000000000000000000000000..fd81a4ac5046f41b47588c917e5a2ed028b7b3b1 --- /dev/null +++ b/train/6c7c0b2c-1161-43ad-8a02-6afcf9f0bf9c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6416c91683e91e27405fed2d6c8c3e0ee39a15531c83a9af9026b85aa6f081a1 +size 2098478 diff --git a/train/6c8294ab-bc1c-43a1-91c7-4887671d4dd7.png b/train/6c8294ab-bc1c-43a1-91c7-4887671d4dd7.png new file mode 100644 index 0000000000000000000000000000000000000000..7ee025e4c449fd1b2d3725cb2305b064da3e9fc7 --- /dev/null +++ b/train/6c8294ab-bc1c-43a1-91c7-4887671d4dd7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c20a4eeafeaa6b3ff72cebe2745d723418a926647af9a3e0067ed2c7e747604 +size 1990761 diff --git a/train/6ca09523-802f-4ffa-a58b-7536e6c4fd1a.png b/train/6ca09523-802f-4ffa-a58b-7536e6c4fd1a.png new file mode 100644 index 0000000000000000000000000000000000000000..e95df9a2b3c5d0f4ca9f2cf57b260029ea96997f --- /dev/null +++ b/train/6ca09523-802f-4ffa-a58b-7536e6c4fd1a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ffbf6fe758b2c1a9f165496a7afbc55ee29a0dc530271a1424b5525ff87c3f1 +size 2212287 diff --git a/train/6cb32c23-7e09-48f6-8433-a14288e6b3cf.png b/train/6cb32c23-7e09-48f6-8433-a14288e6b3cf.png new file mode 100644 index 0000000000000000000000000000000000000000..55e8dbadf5d6fee23736903794a95a46c8cd5660 --- /dev/null +++ b/train/6cb32c23-7e09-48f6-8433-a14288e6b3cf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85e0f9578d37c9554219ad1031573585da5279f87cd7add50ffd33123c5adaea +size 2127893 diff --git a/train/6cc306f6-ed7f-4033-93ef-4088e0b15895.png b/train/6cc306f6-ed7f-4033-93ef-4088e0b15895.png new file mode 100644 index 0000000000000000000000000000000000000000..eb6574e9f9f21b816a2149b0b3f332b3fd4f0881 --- /dev/null +++ b/train/6cc306f6-ed7f-4033-93ef-4088e0b15895.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974561f34a7f42355e7558fb941ae6d88d4db7946e0a3859f59946688deffb3d +size 2117477 diff --git a/train/6cfbdda4-7fcb-489e-8c50-4526ba0308ce.png b/train/6cfbdda4-7fcb-489e-8c50-4526ba0308ce.png new file mode 100644 index 0000000000000000000000000000000000000000..35a21ed1a9cbe22dd5b0330e48a146759d287473 --- /dev/null +++ b/train/6cfbdda4-7fcb-489e-8c50-4526ba0308ce.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b259c49f2f6249eb30c9eea2f8fb1ad345f50088bcb8c0f34ee9b695122bfa2a +size 2147651 diff --git a/train/6d29158e-dc09-41bf-8265-b4dd1e82795d.png b/train/6d29158e-dc09-41bf-8265-b4dd1e82795d.png new file mode 100644 index 0000000000000000000000000000000000000000..964a407d8122cd4be88e2b92c65b0e0970b440d9 --- /dev/null +++ b/train/6d29158e-dc09-41bf-8265-b4dd1e82795d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a91c005250e18e74cd7145a148a0813899e4f4e98dc9802d9298e23d0b1d6a +size 2157053 diff --git a/train/6db20c68-0891-4d08-8299-690fadc4e69f.png b/train/6db20c68-0891-4d08-8299-690fadc4e69f.png new file mode 100644 index 0000000000000000000000000000000000000000..f3a613018c448efade2683e6709a5daf7fa1ecdc --- /dev/null +++ b/train/6db20c68-0891-4d08-8299-690fadc4e69f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79d0a30f72284a561bc100e87d22695e4dedc147b46867386e532c39cbfc0ea2 +size 2099590 diff --git a/train/6dc7a527-c89b-48d3-8655-aa0553974897.png b/train/6dc7a527-c89b-48d3-8655-aa0553974897.png new file mode 100644 index 0000000000000000000000000000000000000000..c98b5ea7bb7bc6631faebf8c5665a402872fc97b --- /dev/null +++ b/train/6dc7a527-c89b-48d3-8655-aa0553974897.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22e29b12b5a3c7af6706d027abc9b62476b4597e0dba71c61883c8db5c4b7de9 +size 2166691 diff --git a/train/6de1620c-ffbf-4b60-a287-66554a87e0ab.png b/train/6de1620c-ffbf-4b60-a287-66554a87e0ab.png new file mode 100644 index 0000000000000000000000000000000000000000..3a1ec463568902667506acc2dd44463ef5e72d23 --- /dev/null +++ b/train/6de1620c-ffbf-4b60-a287-66554a87e0ab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90248111ec803accb4411be1a63384394cf099350fbe59d2629ed33cd1721d83 +size 2226620 diff --git a/train/6e33f8ee-acd4-40ec-9b2c-0dd911f99278.png b/train/6e33f8ee-acd4-40ec-9b2c-0dd911f99278.png new file mode 100644 index 0000000000000000000000000000000000000000..0765c83c7b66f02deb4e787b55e7575604d22385 --- /dev/null +++ b/train/6e33f8ee-acd4-40ec-9b2c-0dd911f99278.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:725781e17c1aaf55e20acd8579a7989da8e733f0370e435eeb5005076cbf3380 +size 2044664 diff --git a/train/6e53ba30-27bb-4589-b7c6-15e7cc11af01.png b/train/6e53ba30-27bb-4589-b7c6-15e7cc11af01.png new file mode 100644 index 0000000000000000000000000000000000000000..b5f6701afaa13c84698c02300d3207a5c0310ace --- /dev/null +++ b/train/6e53ba30-27bb-4589-b7c6-15e7cc11af01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:084736d53d8cdae63a4826109ef28fa44e62600cf856868190eab725616f0584 +size 2151567 diff --git a/train/6ea7f6ff-91d9-4076-9154-3fd7551fd128.png b/train/6ea7f6ff-91d9-4076-9154-3fd7551fd128.png new file mode 100644 index 0000000000000000000000000000000000000000..db8ae2d0d439813bae3ac5c41efd89008795ebbf --- /dev/null +++ b/train/6ea7f6ff-91d9-4076-9154-3fd7551fd128.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c133f9e27f7f660f111c760cd43b37d8c0c890cf56cdbfd5cce482288f9fe41a +size 2095322 diff --git a/train/6f8989bb-0d9c-40fc-9a21-7a8973d388ae.png b/train/6f8989bb-0d9c-40fc-9a21-7a8973d388ae.png new file mode 100644 index 0000000000000000000000000000000000000000..c0f232e9615789908bb77f2be317aa5794f00897 --- /dev/null +++ b/train/6f8989bb-0d9c-40fc-9a21-7a8973d388ae.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acb534b5508038d826bf3cfe83d379316dcfff9c790d6a649a5cd3728351d848 +size 2100426 diff --git a/train/70843108-97a7-4b0e-894c-a29a940eb52d.png b/train/70843108-97a7-4b0e-894c-a29a940eb52d.png new file mode 100644 index 0000000000000000000000000000000000000000..ead08e8aec8eb421e7486c912718b1de1b86eae9 --- /dev/null +++ b/train/70843108-97a7-4b0e-894c-a29a940eb52d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e4d48d802e1c9c0207edcedb6fb59022d4700ebd42905c68bb98bf31cb3e65d +size 2139968 diff --git a/train/709f8f01-0f78-4ee8-b42e-9bb8feb52905.png b/train/709f8f01-0f78-4ee8-b42e-9bb8feb52905.png new file mode 100644 index 0000000000000000000000000000000000000000..aeb64ca6fceb5146c28d162de60be58521acf397 --- /dev/null +++ b/train/709f8f01-0f78-4ee8-b42e-9bb8feb52905.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d988347923fc30f23d62e3d757f483df7573fce500bfdc535689dc67a08f0b92 +size 2208899 diff --git a/train/70b97802-c1f5-4333-a2b0-cf2ab30c6ba2.png b/train/70b97802-c1f5-4333-a2b0-cf2ab30c6ba2.png new file mode 100644 index 0000000000000000000000000000000000000000..0330aa4d649745f2af60026a14815d0f6ddeff02 --- /dev/null +++ b/train/70b97802-c1f5-4333-a2b0-cf2ab30c6ba2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8902d1135f25260d4690c6d4a400514d24cf36be1356583ba79043947e617627 +size 2156223 diff --git a/train/70bff15b-58bd-4632-a937-19a03111bd0d.png b/train/70bff15b-58bd-4632-a937-19a03111bd0d.png new file mode 100644 index 0000000000000000000000000000000000000000..646a7b20c263d031094d722fd77ef3b0dfa1559b --- /dev/null +++ b/train/70bff15b-58bd-4632-a937-19a03111bd0d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c0bbb76502623b33da6efd89ec94b8733a32388fb2ca1335bf806a72db7b7df +size 2111163 diff --git a/train/7131eb8a-b602-4a7b-a448-cf93779afd69.png b/train/7131eb8a-b602-4a7b-a448-cf93779afd69.png new file mode 100644 index 0000000000000000000000000000000000000000..4a1fbddd55c6220a6b1b62378ab817cb3c3d2d11 --- /dev/null +++ b/train/7131eb8a-b602-4a7b-a448-cf93779afd69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e36b999c8f404abe08a860c133057028c4d26c693dd2cf9f525958451402ce3f +size 2164311 diff --git a/train/714b4fab-891e-418b-8941-784cb8df7e65.png b/train/714b4fab-891e-418b-8941-784cb8df7e65.png new file mode 100644 index 0000000000000000000000000000000000000000..3fe14e2a972af89c4194d671b4057d513436e2de --- /dev/null +++ b/train/714b4fab-891e-418b-8941-784cb8df7e65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c04df6eddd09bae68b66020862105c8abfaeb9c4afa963ba5b75df7e3f7f6d +size 2140876 diff --git a/train/7175c8af-07da-46f7-bdb9-896d2a772f5d.png b/train/7175c8af-07da-46f7-bdb9-896d2a772f5d.png new file mode 100644 index 0000000000000000000000000000000000000000..88fe8245e40413eba27ce583690b4882b531c107 --- /dev/null +++ b/train/7175c8af-07da-46f7-bdb9-896d2a772f5d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cae941dd69b329dc8ba701cf2ee555df7fac4a1cd02b75a92d0e9e43b86eaa7 +size 2074965 diff --git a/train/717684a2-9c6c-407d-b115-930d744c137f.png b/train/717684a2-9c6c-407d-b115-930d744c137f.png new file mode 100644 index 0000000000000000000000000000000000000000..5ac9b0e7717dbd84ca59ee7f7ad083e4632e9c29 --- /dev/null +++ b/train/717684a2-9c6c-407d-b115-930d744c137f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce7fb0c510f04ded830e38c5362063d6a4b4662e63defd15284c4a49559cc33 +size 2272853 diff --git a/train/71a81f23-db0e-48ae-b522-09f01ba4a6df.png b/train/71a81f23-db0e-48ae-b522-09f01ba4a6df.png new file mode 100644 index 0000000000000000000000000000000000000000..330e8e984db62ef2d526fd72220c98d28fcc24b5 --- /dev/null +++ b/train/71a81f23-db0e-48ae-b522-09f01ba4a6df.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:586d3f4c83914a80a471ffcb00e2ba9a8dbab846e82e13a7f837c36960b86fee +size 2121080 diff --git a/train/71cce3d0-5ff5-42fe-a272-3ba952972815.png b/train/71cce3d0-5ff5-42fe-a272-3ba952972815.png new file mode 100644 index 0000000000000000000000000000000000000000..6809e2335815e84e317a637970f01c68666f7fe9 --- /dev/null +++ b/train/71cce3d0-5ff5-42fe-a272-3ba952972815.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:765f2956597f26a38794c968db28700e3107fc75355ecfce12c08d032a9c5558 +size 2187730 diff --git a/train/71e4a6ba-5b82-4cae-91ca-53afb03fee90.png b/train/71e4a6ba-5b82-4cae-91ca-53afb03fee90.png new file mode 100644 index 0000000000000000000000000000000000000000..2af898797d2debcf399441e38625fc9296e134e7 --- /dev/null +++ b/train/71e4a6ba-5b82-4cae-91ca-53afb03fee90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e5470c13cb96396b951f36ee272733d63c9aacfef3a4568bb6a024d969e7d92 +size 2180211 diff --git a/train/72188415-847d-4a87-b67a-b1de3786f5c2.png b/train/72188415-847d-4a87-b67a-b1de3786f5c2.png new file mode 100644 index 0000000000000000000000000000000000000000..c8f7ecc53a610ae995ebf0b11339943b025ccb1b --- /dev/null +++ b/train/72188415-847d-4a87-b67a-b1de3786f5c2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb660b565e74e205e68d708016600c02eea23ee9d62a6cfd478e8e356fb23449 +size 2087788 diff --git a/train/72416c05-41db-4e2d-a308-6c59cf49ffa6.png b/train/72416c05-41db-4e2d-a308-6c59cf49ffa6.png new file mode 100644 index 0000000000000000000000000000000000000000..d9f595774e2674c77243b9bc21ebd4fee6f712ef --- /dev/null +++ b/train/72416c05-41db-4e2d-a308-6c59cf49ffa6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f27f71f74226c88e9092c626314402ab0daad13e316b50a97a34f658ccbb03 +size 2142127 diff --git a/train/72756e84-227e-48ac-a898-e083575504a5.png b/train/72756e84-227e-48ac-a898-e083575504a5.png new file mode 100644 index 0000000000000000000000000000000000000000..4299939476fdd937a81d1f1d0dabece076f3dbe6 --- /dev/null +++ b/train/72756e84-227e-48ac-a898-e083575504a5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34e025cb06763c943a4f37a8733b06419faf04a380a57d15bf463744e261ed8f +size 2155952 diff --git a/train/7323f579-b14c-4559-bfeb-0d379c53b2a1.png b/train/7323f579-b14c-4559-bfeb-0d379c53b2a1.png new file mode 100644 index 0000000000000000000000000000000000000000..ffc6d368b8535c0bb2f1288cc115be4e5f54afb0 --- /dev/null +++ b/train/7323f579-b14c-4559-bfeb-0d379c53b2a1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ba0ab1ee707f803044e79abaffbadcdb5b3d7ae2ba666e652d00ff53a1d7d8a +size 2255570 diff --git a/train/73565f1c-f779-419e-8c71-bec8af65bf45.png b/train/73565f1c-f779-419e-8c71-bec8af65bf45.png new file mode 100644 index 0000000000000000000000000000000000000000..63a660fe7440a320fd7121e27c412da73bbf29f7 --- /dev/null +++ b/train/73565f1c-f779-419e-8c71-bec8af65bf45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b4eda0290a2c59500e4ef57355024478f448f6188656048aba24c3ac0501585 +size 2153434 diff --git a/train/73ad58ae-dcdb-412b-b5aa-fd7b33f5ac79.png b/train/73ad58ae-dcdb-412b-b5aa-fd7b33f5ac79.png new file mode 100644 index 0000000000000000000000000000000000000000..154e159ee776f5612d6f972db1a64a0bfd9891ab --- /dev/null +++ b/train/73ad58ae-dcdb-412b-b5aa-fd7b33f5ac79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0320afe713c10e7cff4fd9a1f2fa11b462d3a414b15e3868d89e5290578d46bc +size 2123661 diff --git a/train/741e81fa-86d0-438e-8a15-5a484a96dc4c.png b/train/741e81fa-86d0-438e-8a15-5a484a96dc4c.png new file mode 100644 index 0000000000000000000000000000000000000000..6eafa6f2c5aeb78d4269dcacd113860e8a5fa61f --- /dev/null +++ b/train/741e81fa-86d0-438e-8a15-5a484a96dc4c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8433a1ce79e77ca475b80bf2779179658542fe92f69ec82eb65cba823a0c2f7f +size 1971088 diff --git a/train/743309a0-50e0-4698-bccf-dd7654133fc4.png b/train/743309a0-50e0-4698-bccf-dd7654133fc4.png new file mode 100644 index 0000000000000000000000000000000000000000..078de10e295f3458b5e44145a1cfed7243fe246c --- /dev/null +++ b/train/743309a0-50e0-4698-bccf-dd7654133fc4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddb88d748ff7ff97a2f6911e53950c762e5a2a9a35676ee6240b8ebbb7bc4117 +size 2107179 diff --git a/train/746ab561-d38a-4bd0-9cfb-092f35ac45f0.png b/train/746ab561-d38a-4bd0-9cfb-092f35ac45f0.png new file mode 100644 index 0000000000000000000000000000000000000000..8d611dae9fb52bed9519c503bdffe3ddbdc2c229 --- /dev/null +++ b/train/746ab561-d38a-4bd0-9cfb-092f35ac45f0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a20b8f912588c8399ce48c5e8dfba8cac8e19040d774e22c3e24bbb45ea8ceb6 +size 2192100 diff --git a/train/747ee80f-e566-476d-b83c-5558dea8c98a.png b/train/747ee80f-e566-476d-b83c-5558dea8c98a.png new file mode 100644 index 0000000000000000000000000000000000000000..2fcbfa52ed9e68ad65345ad113d918dbfdeb01de --- /dev/null +++ b/train/747ee80f-e566-476d-b83c-5558dea8c98a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f991fc04c5853840d38f52025e01dc34d0cc53b8fdcd25ea2d70d51cb7481f +size 2149454 diff --git a/train/7512fc5f-e5bd-41db-9272-bb541448eaa8.png b/train/7512fc5f-e5bd-41db-9272-bb541448eaa8.png new file mode 100644 index 0000000000000000000000000000000000000000..fa9938c446e43793998978ab8fc82d3d7a3af0d7 --- /dev/null +++ b/train/7512fc5f-e5bd-41db-9272-bb541448eaa8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:475165247d106e090856cd18f15c6d6f6789f784879df5f619b1263148e31554 +size 2057654 diff --git a/train/75990661-041a-41c9-8732-dcd94a3232ef.png b/train/75990661-041a-41c9-8732-dcd94a3232ef.png new file mode 100644 index 0000000000000000000000000000000000000000..be93b3221b36d6d65c487ebb938620c0101f066e --- /dev/null +++ b/train/75990661-041a-41c9-8732-dcd94a3232ef.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ace456f6ca35b3445506efb2f725be5461fb294bf0f2aefe82783d05e95306e4 +size 2144083 diff --git a/train/75e8e13e-750b-4f04-8b7d-fef2401012e7.png b/train/75e8e13e-750b-4f04-8b7d-fef2401012e7.png new file mode 100644 index 0000000000000000000000000000000000000000..2b4ca2cd0e92642582c5b853a0a7a88bc2896add --- /dev/null +++ b/train/75e8e13e-750b-4f04-8b7d-fef2401012e7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b501690276a60193b88330bfa210b3aaccc15563f8c63d63f20bcdb222840a88 +size 2167348 diff --git a/train/763c655b-fee4-4cbc-91ca-6f916e414fda.png b/train/763c655b-fee4-4cbc-91ca-6f916e414fda.png new file mode 100644 index 0000000000000000000000000000000000000000..08a99235bb3bd868b49e4917da147ea0f2ece94d --- /dev/null +++ b/train/763c655b-fee4-4cbc-91ca-6f916e414fda.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c92f157d1e4dc8a8f07ad2dfad69dff8f85e84067173739a0c98b8ccf500e7 +size 2154302 diff --git a/train/764e8558-9974-4a93-9ac2-bf6ab8ea689f.png b/train/764e8558-9974-4a93-9ac2-bf6ab8ea689f.png new file mode 100644 index 0000000000000000000000000000000000000000..91fd7e83fa72b72297dcfe693bc27f1af4d7e486 --- /dev/null +++ b/train/764e8558-9974-4a93-9ac2-bf6ab8ea689f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:108bf883f4084659a1869619b25faea35b588ceae4c4219f0aa79e8c21d390fb +size 2167611 diff --git a/train/7661288e-4e91-44ce-af7f-6350ba876d93.png b/train/7661288e-4e91-44ce-af7f-6350ba876d93.png new file mode 100644 index 0000000000000000000000000000000000000000..fb467d267366395938f3d21874f07880f23630fd --- /dev/null +++ b/train/7661288e-4e91-44ce-af7f-6350ba876d93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:077ebafb9ae1eb524a4e3cb8e2d7a51564eb26b3a06eeb9030981774f9e1aee6 +size 2237786 diff --git a/train/76cc4752-e5e6-41ef-93c1-780df0064059.png b/train/76cc4752-e5e6-41ef-93c1-780df0064059.png new file mode 100644 index 0000000000000000000000000000000000000000..f665b732eff6af3c74d3adbae6d0f49734ef1620 --- /dev/null +++ b/train/76cc4752-e5e6-41ef-93c1-780df0064059.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc49aa39e5c21a04386a1cd3134d85277f79ca5e93d6a0abc37048c48fd25a78 +size 2172585 diff --git a/train/76ece72d-509d-49cf-b0c3-f1e99076c0e5.png b/train/76ece72d-509d-49cf-b0c3-f1e99076c0e5.png new file mode 100644 index 0000000000000000000000000000000000000000..e7820f0a6a587d5c4301216138677f652826cccd --- /dev/null +++ b/train/76ece72d-509d-49cf-b0c3-f1e99076c0e5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a56f84bab41738c1760d540d8609a23582a7b2f3699febb74d3b2c2e8d5df0c +size 2134054 diff --git a/train/77574f02-b8bc-4a82-99f3-43eaedcb5389.png b/train/77574f02-b8bc-4a82-99f3-43eaedcb5389.png new file mode 100644 index 0000000000000000000000000000000000000000..8dcdf23a8194382b050eb187af6a2d9fc520c3ea --- /dev/null +++ b/train/77574f02-b8bc-4a82-99f3-43eaedcb5389.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:408cf9ac91a4959a7edbee4d5731fc6786bc8324a493a74067a2e21e48b6c889 +size 2133899 diff --git a/train/7763d453-4719-4312-aed5-2bd960982b1e.png b/train/7763d453-4719-4312-aed5-2bd960982b1e.png new file mode 100644 index 0000000000000000000000000000000000000000..2f6acb865ec9571fa5c653d4b158860a4be46d60 --- /dev/null +++ b/train/7763d453-4719-4312-aed5-2bd960982b1e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5838e2ad564996f2b4037a883e2f8cc8bb215cfb57749be703c60f529698184e +size 2135300 diff --git a/train/776c5a9e-a618-4843-add3-8b6e0ce316c9.png b/train/776c5a9e-a618-4843-add3-8b6e0ce316c9.png new file mode 100644 index 0000000000000000000000000000000000000000..03f09f30bc3d62e50848bde73d2157ed1be57f0f --- /dev/null +++ b/train/776c5a9e-a618-4843-add3-8b6e0ce316c9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8d51a8a58ee290cef7a6e68a859b7ca2502af93987bcf288d13cf950cb24941 +size 2106882 diff --git a/train/77c6a176-c5c8-438e-8bc3-8de28487d790.png b/train/77c6a176-c5c8-438e-8bc3-8de28487d790.png new file mode 100644 index 0000000000000000000000000000000000000000..417c21f12a0657df0ef260359596138ab02563fa --- /dev/null +++ b/train/77c6a176-c5c8-438e-8bc3-8de28487d790.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be58eedc10fe914c38e79df8da5bf0725e267cf7adf8795f3ff7f5834f0a2f48 +size 2181280 diff --git a/train/78506f26-f811-4ac4-a7df-0103cb704397.png b/train/78506f26-f811-4ac4-a7df-0103cb704397.png new file mode 100644 index 0000000000000000000000000000000000000000..004a8914e6ba114ecb2ef7658d5b43f6161544f8 --- /dev/null +++ b/train/78506f26-f811-4ac4-a7df-0103cb704397.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7fb0c625b5ae345ae570333b4817ca9a434ffc0fc083ba0a71dc81143a6ce45 +size 2149872 diff --git a/train/7888bd81-3d48-4326-ae7e-b9f0bd828936.png b/train/7888bd81-3d48-4326-ae7e-b9f0bd828936.png new file mode 100644 index 0000000000000000000000000000000000000000..4f777132d7a5f46a68fa22516a3665f01f835eda --- /dev/null +++ b/train/7888bd81-3d48-4326-ae7e-b9f0bd828936.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1378d7693acc2e40c550245d4ba880afd1fd1fc8585634bf6680b1e0aaa0e0b +size 2096897 diff --git a/train/78a531d0-0972-429d-8707-94f76fc420b1.png b/train/78a531d0-0972-429d-8707-94f76fc420b1.png new file mode 100644 index 0000000000000000000000000000000000000000..95e75e6e2ed05229d6880dec10825ea4c80a4eb5 --- /dev/null +++ b/train/78a531d0-0972-429d-8707-94f76fc420b1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008202fc4b4f0c3a077a4aec45c4f9e26caba3734dd5d74df4d9ae1b53b44c62 +size 2073795 diff --git a/train/78d7edce-a5e1-4316-b330-c96ee783f99d.png b/train/78d7edce-a5e1-4316-b330-c96ee783f99d.png new file mode 100644 index 0000000000000000000000000000000000000000..b1ca5f362fe86d99b3564f4ae6a7c0e4cafedf3d --- /dev/null +++ b/train/78d7edce-a5e1-4316-b330-c96ee783f99d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ba1ffc5437058ea52ff16db8a2eebe798b4b513a75e5f231b9c0479ae5415ca +size 2209286 diff --git a/train/78eb12c9-4390-462f-9ba9-123d9393a7db.png b/train/78eb12c9-4390-462f-9ba9-123d9393a7db.png new file mode 100644 index 0000000000000000000000000000000000000000..8ac4a04fff4d5b017e927f3480a251b24b30ee49 --- /dev/null +++ b/train/78eb12c9-4390-462f-9ba9-123d9393a7db.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bb8c81eb28b35c9f19d1a232a89c7446778eea916bec9195348a0016fd89072 +size 2063194 diff --git a/train/78f0cf88-5a13-49db-b235-2812872469e4.png b/train/78f0cf88-5a13-49db-b235-2812872469e4.png new file mode 100644 index 0000000000000000000000000000000000000000..1567edbfe0c7c4db777e6b0b986eea4e1a7818fe --- /dev/null +++ b/train/78f0cf88-5a13-49db-b235-2812872469e4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2c038d600f0bfb28c12ab1c1fb7cc36e459f0cee93810cda95d3da17b4ddb51 +size 2062916 diff --git a/train/7953a16d-45be-4a3c-b37f-213d9d489068.png b/train/7953a16d-45be-4a3c-b37f-213d9d489068.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed3229ba9a3acc76e2bead014a82ea3fd71f44c --- /dev/null +++ b/train/7953a16d-45be-4a3c-b37f-213d9d489068.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7f8f4c281d5c7d286d60783ce2892e3fa7592d6bea8c05f291069beebd86593 +size 2170469 diff --git a/train/7985edc1-68d6-4cfc-b217-4b37be7804df.png b/train/7985edc1-68d6-4cfc-b217-4b37be7804df.png new file mode 100644 index 0000000000000000000000000000000000000000..e7932131f29fbcc75a12bfcbbffc40e0d182191a --- /dev/null +++ b/train/7985edc1-68d6-4cfc-b217-4b37be7804df.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8aa894ab3456d406a3734c280d387b07c8b1f485637546203da79fed2127251 +size 2012909 diff --git a/train/79c1ef65-29a6-47c3-80d1-465dfe1baa0b.png b/train/79c1ef65-29a6-47c3-80d1-465dfe1baa0b.png new file mode 100644 index 0000000000000000000000000000000000000000..e13301eaafe6e9ceebe8f989970b2ccbe8ad57be --- /dev/null +++ b/train/79c1ef65-29a6-47c3-80d1-465dfe1baa0b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad425220babf0d54f89e946039ed5a900205fd77d7c3328eabc6697b90339d55 +size 2096400 diff --git a/train/79cee1a1-2e11-438e-8944-655d16501178.png b/train/79cee1a1-2e11-438e-8944-655d16501178.png new file mode 100644 index 0000000000000000000000000000000000000000..3b12250f6c8b7e0a3d715d09d2e623a25242bbe2 --- /dev/null +++ b/train/79cee1a1-2e11-438e-8944-655d16501178.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed50f88133500fa8e24d2c11b9c5716f0be685538454b9c726f6b4fee9607b59 +size 2146963 diff --git a/train/7a0ff7d3-3c9d-4e8d-be20-95700d04b554.png b/train/7a0ff7d3-3c9d-4e8d-be20-95700d04b554.png new file mode 100644 index 0000000000000000000000000000000000000000..7d2eca43e184e78913856c577db9fb624ee624e3 --- /dev/null +++ b/train/7a0ff7d3-3c9d-4e8d-be20-95700d04b554.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa597869bcfffe060d2dddfdd6fc628a8fb4010aa8c2b40ed8280677401d2422 +size 2198318 diff --git a/train/7a6bc1da-79cd-48a1-9214-6110225286ff.png b/train/7a6bc1da-79cd-48a1-9214-6110225286ff.png new file mode 100644 index 0000000000000000000000000000000000000000..4b9e129840f9abfb510067ff630406c152022277 --- /dev/null +++ b/train/7a6bc1da-79cd-48a1-9214-6110225286ff.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d7b3ff7eed19f1d81d9bfce268451d6de54405a098a3356031faaae733f9999 +size 2185640 diff --git a/train/7a71281b-207a-4a1a-bdb0-e8c72eea23ca.png b/train/7a71281b-207a-4a1a-bdb0-e8c72eea23ca.png new file mode 100644 index 0000000000000000000000000000000000000000..dbe37e325b778a123393b76e49e001f974c6d502 --- /dev/null +++ b/train/7a71281b-207a-4a1a-bdb0-e8c72eea23ca.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfed1e1d3f6adc05589847c27496b9d58743f9738eadd837132391cae370a070 +size 2148433 diff --git a/train/7ad74a9a-4380-4bf7-af03-4f8c3f1d0fd8.png b/train/7ad74a9a-4380-4bf7-af03-4f8c3f1d0fd8.png new file mode 100644 index 0000000000000000000000000000000000000000..5c0a407ca60c3d261c24f2c9483deaeec77b720f --- /dev/null +++ b/train/7ad74a9a-4380-4bf7-af03-4f8c3f1d0fd8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f52d494ed684c7bd811e4bf1a8642efae15a67c98672713acc6a9ecf26a7e430 +size 2152129 diff --git a/train/7ae4017a-5220-418e-9bb1-01d2294da85c.png b/train/7ae4017a-5220-418e-9bb1-01d2294da85c.png new file mode 100644 index 0000000000000000000000000000000000000000..bdb0d65a9b5f8dfcc50d297ad99fa95318638322 --- /dev/null +++ b/train/7ae4017a-5220-418e-9bb1-01d2294da85c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04ff9f64c4ba706e29b7f2fd8fa095325d59ab19e1d00d097531fa361c230d66 +size 2040230 diff --git a/train/7b57a8e8-c3fc-44ee-b65d-7479f5ec2d34.png b/train/7b57a8e8-c3fc-44ee-b65d-7479f5ec2d34.png new file mode 100644 index 0000000000000000000000000000000000000000..d9ad845f6b925c8f0d45d7ee36883dc142b5dde9 --- /dev/null +++ b/train/7b57a8e8-c3fc-44ee-b65d-7479f5ec2d34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c1780cc43edfaaa2481a9f9807a4fb6e61de5fafe2b563ca4c85c09bc362ee +size 2112642 diff --git a/train/7ba79b68-8ba9-4969-be33-87bf312bb66b.png b/train/7ba79b68-8ba9-4969-be33-87bf312bb66b.png new file mode 100644 index 0000000000000000000000000000000000000000..9708080270f9e8325ffde4d93509b8ec97705143 --- /dev/null +++ b/train/7ba79b68-8ba9-4969-be33-87bf312bb66b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51585ecaecc775e4a82ca77fbf0d59e8f840e65da8550bb7cab72dd933eb5dbd +size 2205969 diff --git a/train/7bdb1c7b-ea3b-440e-ade2-0008a30c9657.png b/train/7bdb1c7b-ea3b-440e-ade2-0008a30c9657.png new file mode 100644 index 0000000000000000000000000000000000000000..0581f34eecc788eb8f851951b678aaf24d59c3e0 --- /dev/null +++ b/train/7bdb1c7b-ea3b-440e-ade2-0008a30c9657.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c055abd014f15b426cd921ec968de880764851963fd963d62858be467ef77791 +size 2176503 diff --git a/train/7ca1fdb2-b21d-4fa6-9d1f-ca09d9600b20.png b/train/7ca1fdb2-b21d-4fa6-9d1f-ca09d9600b20.png new file mode 100644 index 0000000000000000000000000000000000000000..ee16aec5b0678b7b2264918537e3a3456b0d5f4a --- /dev/null +++ b/train/7ca1fdb2-b21d-4fa6-9d1f-ca09d9600b20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:353d006e27637bec1cb6d802ef51561c84e5f0e4d8287273ac0be781cc2d6e9b +size 2123114 diff --git a/train/7d0ced8b-e6eb-4420-a295-9ba409dadf9f.png b/train/7d0ced8b-e6eb-4420-a295-9ba409dadf9f.png new file mode 100644 index 0000000000000000000000000000000000000000..b5d2ae837e9ffb80fa36e244d882a24e2c04e8ff --- /dev/null +++ b/train/7d0ced8b-e6eb-4420-a295-9ba409dadf9f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c3af41d8d4d51c2bbab5aa9d9245b8609ecb1d38a435cf1e7179f53f5df4e4 +size 2262592 diff --git a/train/7d0d056a-6025-47df-aa3e-246cad9fe609.png b/train/7d0d056a-6025-47df-aa3e-246cad9fe609.png new file mode 100644 index 0000000000000000000000000000000000000000..45e4a484a6b95f0bf1ba347153f94d1ed24669e7 --- /dev/null +++ b/train/7d0d056a-6025-47df-aa3e-246cad9fe609.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4bfcb4227cdbe5f27a82bb2c08c0e357d5be3c5b32f6d832babd1722a14cafe +size 2097837 diff --git a/train/7dce9451-7deb-418a-a8ae-b01403eef57b.png b/train/7dce9451-7deb-418a-a8ae-b01403eef57b.png new file mode 100644 index 0000000000000000000000000000000000000000..217d2a0826b7c761aaa3659fd66a1975a6b181c1 --- /dev/null +++ b/train/7dce9451-7deb-418a-a8ae-b01403eef57b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf1f39871e2a702340d82c3e1564bd4aac0431ab1f2faaf87d50d63b7e7630eb +size 2189780 diff --git a/train/7e14d13b-676f-4fc9-9992-6fed41af59cf.png b/train/7e14d13b-676f-4fc9-9992-6fed41af59cf.png new file mode 100644 index 0000000000000000000000000000000000000000..3e7f140a8d0b568cc74ddebd7cf52828627c07fc --- /dev/null +++ b/train/7e14d13b-676f-4fc9-9992-6fed41af59cf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd2950b9af2af34442e33c5ae09aa0ca2e7912743caee6875a8d625d6c0e902 +size 2014391 diff --git a/train/7e16564f-6a0b-4841-904a-b9369719fc23.png b/train/7e16564f-6a0b-4841-904a-b9369719fc23.png new file mode 100644 index 0000000000000000000000000000000000000000..d07a069514caadc74afb021f7e7616da8d953573 --- /dev/null +++ b/train/7e16564f-6a0b-4841-904a-b9369719fc23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:834eb7d44875da7edd021e87b95daf47637614c6dbedfff1c75f7ac8d32f468f +size 2025373 diff --git a/train/7e7d2169-2a40-492e-aa22-8a700998bd2f.png b/train/7e7d2169-2a40-492e-aa22-8a700998bd2f.png new file mode 100644 index 0000000000000000000000000000000000000000..8efc3f2a4c06aea48e8b54161469ae7220dd11dd --- /dev/null +++ b/train/7e7d2169-2a40-492e-aa22-8a700998bd2f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49440f838b7bd279b3a06127754a50e06d1a450043a28806bdd684e65d904b40 +size 2178596 diff --git a/train/7ef3c680-5fef-4be7-9f34-45f5309aa549.png b/train/7ef3c680-5fef-4be7-9f34-45f5309aa549.png new file mode 100644 index 0000000000000000000000000000000000000000..f8d770fb61ebd7e21e14bd24879c12479472edd4 --- /dev/null +++ b/train/7ef3c680-5fef-4be7-9f34-45f5309aa549.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a72a5597086b61066138afdbf25b6923cce471b2f15c98c3574b161a198cdfb +size 2161231 diff --git a/train/7f00d94a-12be-4d5b-b763-fb26fcf8d911.png b/train/7f00d94a-12be-4d5b-b763-fb26fcf8d911.png new file mode 100644 index 0000000000000000000000000000000000000000..b01d068182f1fed2d5b0fe4cdab26b35f2d5bb6b --- /dev/null +++ b/train/7f00d94a-12be-4d5b-b763-fb26fcf8d911.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b86b9386ef8968cea100098c5e78450c477aa33e636108f59e6cf0db930eac4 +size 2167584 diff --git a/train/7f8002cf-b76a-4a7c-ad98-419c79280870.png b/train/7f8002cf-b76a-4a7c-ad98-419c79280870.png new file mode 100644 index 0000000000000000000000000000000000000000..519306d05d3bac69565cdc7e236fab72123b74c0 --- /dev/null +++ b/train/7f8002cf-b76a-4a7c-ad98-419c79280870.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fdbde1808aeecb80a982146c6c11276fb90e592915701d61196a24816d80bc9 +size 2159062 diff --git a/train/80b2a9d0-0527-46d3-a4a4-9acb0f07a042.png b/train/80b2a9d0-0527-46d3-a4a4-9acb0f07a042.png new file mode 100644 index 0000000000000000000000000000000000000000..2acf5bf379580543cca75a34fe0a29435485004c --- /dev/null +++ b/train/80b2a9d0-0527-46d3-a4a4-9acb0f07a042.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e626fa56d4ad956718ad894e0dfb0678e970474f3753a57f2246ae35b08e0093 +size 2082768 diff --git a/train/80cbdda1-e91b-4bb0-b666-900b4b8e4c99.png b/train/80cbdda1-e91b-4bb0-b666-900b4b8e4c99.png new file mode 100644 index 0000000000000000000000000000000000000000..ee7b64a01a71e7091bd91b718e0e16c0b4ee2772 --- /dev/null +++ b/train/80cbdda1-e91b-4bb0-b666-900b4b8e4c99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e3dbdef9330cd58d3fdb4383e21073194be63c03c19addd9347ca60d8c0f3b +size 2178500 diff --git a/train/81352517-9932-4382-b549-9b45374418a1.png b/train/81352517-9932-4382-b549-9b45374418a1.png new file mode 100644 index 0000000000000000000000000000000000000000..42d630271088fdd74f8a0e204ae2962122453de7 --- /dev/null +++ b/train/81352517-9932-4382-b549-9b45374418a1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be0585482e8e33c3229acb5a09d90c9f4f8b47010fc8b78fcdd35d29a3ff1eb4 +size 2205450 diff --git a/train/814feb22-9a0d-4fca-866c-853bfd0aa345.png b/train/814feb22-9a0d-4fca-866c-853bfd0aa345.png new file mode 100644 index 0000000000000000000000000000000000000000..39c721b0345ec3764f44aa439b4badd9206bbb97 --- /dev/null +++ b/train/814feb22-9a0d-4fca-866c-853bfd0aa345.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8049c59ca8c22c7e1dad14727f431a0f48bc873131b8f440b69cf484883b716e +size 2206775 diff --git a/train/8168fe0d-f00c-4f19-aa31-721171fa7b4d.png b/train/8168fe0d-f00c-4f19-aa31-721171fa7b4d.png new file mode 100644 index 0000000000000000000000000000000000000000..ce8f96ef4c0b3bdc3549f7c41a23be6816dcf9d7 --- /dev/null +++ b/train/8168fe0d-f00c-4f19-aa31-721171fa7b4d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a235ab2820d93b48bff894b6c8c5004d078f06ebc47dd2e0059aa4d36d16111 +size 2268980 diff --git a/train/81a5f8ce-302f-45e0-8cf0-e9af6da36f57.png b/train/81a5f8ce-302f-45e0-8cf0-e9af6da36f57.png new file mode 100644 index 0000000000000000000000000000000000000000..25f4da6eb3c898678d96743fe1638aeac4187c9f --- /dev/null +++ b/train/81a5f8ce-302f-45e0-8cf0-e9af6da36f57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e45b38e2f7e6bfcf0584c62371c754c27b4a1f475bbd2206b167bf9d54d2be +size 2039277 diff --git a/train/81f408b3-d61a-449d-b4cf-c796b05a4c97.png b/train/81f408b3-d61a-449d-b4cf-c796b05a4c97.png new file mode 100644 index 0000000000000000000000000000000000000000..1211266e8d5e69f23a7df860c055349c3d9c42b7 --- /dev/null +++ b/train/81f408b3-d61a-449d-b4cf-c796b05a4c97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad56873c0b6701f78e94eb01656045eec150ce85fb8af8a7e1d6aa1d5038a5c9 +size 2072603 diff --git a/train/82242655-20d9-4588-98e4-c42b10ed78bc.png b/train/82242655-20d9-4588-98e4-c42b10ed78bc.png new file mode 100644 index 0000000000000000000000000000000000000000..c3f863e43267d02daeceed9f6c16d269408e820b --- /dev/null +++ b/train/82242655-20d9-4588-98e4-c42b10ed78bc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2289737a4d008937cc1fea243fa95cd3b8cb83306039d04e25bc4d88ceb3da6a +size 2162122 diff --git a/train/824f5e1f-2f31-493d-b0f6-8096202af8ce.png b/train/824f5e1f-2f31-493d-b0f6-8096202af8ce.png new file mode 100644 index 0000000000000000000000000000000000000000..78acc62ad32bce654b1f794ed6bd75dd7e447edc --- /dev/null +++ b/train/824f5e1f-2f31-493d-b0f6-8096202af8ce.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d26a808c5c99ab54c23f1cda057781401be7807e1e5cdf2f948a484845637f +size 2173172 diff --git a/train/82a36d21-e1eb-40b8-882d-2ba1fff20a0c.png b/train/82a36d21-e1eb-40b8-882d-2ba1fff20a0c.png new file mode 100644 index 0000000000000000000000000000000000000000..8dc86dd239c1ecc0f236794438d740c1a02ab53e --- /dev/null +++ b/train/82a36d21-e1eb-40b8-882d-2ba1fff20a0c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bfd11fe572c6819ea2e783f1948f5b09c8f01942b3fba353a9c509dd694f081 +size 2159429 diff --git a/train/82a9b0da-0d90-41dd-aeee-f5283e235ca2.png b/train/82a9b0da-0d90-41dd-aeee-f5283e235ca2.png new file mode 100644 index 0000000000000000000000000000000000000000..d27a96a00497d0a57d4306772e18ba8cfae7a1b0 --- /dev/null +++ b/train/82a9b0da-0d90-41dd-aeee-f5283e235ca2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e82cc2cead02bb56f9b15fbebd94130083ab509d4bd1b9dea890495365c1ef5 +size 2096976 diff --git a/train/82cb4eaa-494c-41b3-8aba-89b109e8f0fe.png b/train/82cb4eaa-494c-41b3-8aba-89b109e8f0fe.png new file mode 100644 index 0000000000000000000000000000000000000000..e26320cb0eb7f6e383baec9d4f0cd4b601c6884a --- /dev/null +++ b/train/82cb4eaa-494c-41b3-8aba-89b109e8f0fe.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aa388a6cff378cf5b93eae9c1606ecf2990ffafc757b36b846a30d6caea9757 +size 2169805 diff --git a/train/83115e8b-8274-46c6-8171-5fac5cb1913d.png b/train/83115e8b-8274-46c6-8171-5fac5cb1913d.png new file mode 100644 index 0000000000000000000000000000000000000000..30ac6fb025c807fd79d5f2d6ca45f1895cccd2dd --- /dev/null +++ b/train/83115e8b-8274-46c6-8171-5fac5cb1913d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5632c5a326a0b7179d02bb426e06276be213af45f4a2fc5f33d3261b0a05e24 +size 2020211 diff --git a/train/833e813d-0818-49c8-9948-53c63f7096f9.png b/train/833e813d-0818-49c8-9948-53c63f7096f9.png new file mode 100644 index 0000000000000000000000000000000000000000..fd2571eff58d41e4546b97f05d8fe1a623d7105f --- /dev/null +++ b/train/833e813d-0818-49c8-9948-53c63f7096f9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6871b2562ecf82dc776ac81924f7f4cd129c0caad2d952f88a39a176b900b45 +size 2148812 diff --git a/train/83b265e4-194a-45a3-bd2d-6134c530981a.png b/train/83b265e4-194a-45a3-bd2d-6134c530981a.png new file mode 100644 index 0000000000000000000000000000000000000000..974c37c603ef805d5d0485c3c3afe1f0fcfd9ffa --- /dev/null +++ b/train/83b265e4-194a-45a3-bd2d-6134c530981a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec28e7185bae5a37da9a0a417dbc847dd5fa6319e1fac7cf509d8567a6f4ce83 +size 2281372 diff --git a/train/83be6a72-0116-439c-83f1-a93ace149dba.png b/train/83be6a72-0116-439c-83f1-a93ace149dba.png new file mode 100644 index 0000000000000000000000000000000000000000..438103bae01206361f7f578e27a1ff9931b1cbf3 --- /dev/null +++ b/train/83be6a72-0116-439c-83f1-a93ace149dba.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0341b42f00a0cc73a84de72d01798d09937ae7950abb4520428ed878224ed2e8 +size 2223215 diff --git a/train/84031709-d432-4d38-bddb-3406960c769a.png b/train/84031709-d432-4d38-bddb-3406960c769a.png new file mode 100644 index 0000000000000000000000000000000000000000..22c793cd45c3f0e02cacb39d785004ede17ef6cb --- /dev/null +++ b/train/84031709-d432-4d38-bddb-3406960c769a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:425b74319fd181e8be469733d2b879e67c270a7c93e1443ed26da24d41ec9df7 +size 2195612 diff --git a/train/844816f4-2d00-4fff-99c4-81c8994e960d.png b/train/844816f4-2d00-4fff-99c4-81c8994e960d.png new file mode 100644 index 0000000000000000000000000000000000000000..dd963e7467b9aa2f46bf26561a5b70be4f4dcccf --- /dev/null +++ b/train/844816f4-2d00-4fff-99c4-81c8994e960d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d73f5c3419f63be970af5ff60ca58b63c8540540738f3d924bd1274640fd9814 +size 2071364 diff --git a/train/8475aa1d-730a-4c6c-add1-001c5ca01aea.png b/train/8475aa1d-730a-4c6c-add1-001c5ca01aea.png new file mode 100644 index 0000000000000000000000000000000000000000..1f75835b12decb31a02010b10e06279c0e89652e --- /dev/null +++ b/train/8475aa1d-730a-4c6c-add1-001c5ca01aea.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9b8b8dea6ccd7c84dd539e5e04e40fc994296997dbe9a6d19540f0470b1487 +size 2117111 diff --git a/train/84c852d1-6f98-4050-ae6a-0407f1dfe1f5.png b/train/84c852d1-6f98-4050-ae6a-0407f1dfe1f5.png new file mode 100644 index 0000000000000000000000000000000000000000..e7e6c965a73f01de0f8dcd6d61b70b731c56839f --- /dev/null +++ b/train/84c852d1-6f98-4050-ae6a-0407f1dfe1f5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8ec0275e17f9c229e76cf986650fb761163f01839cc2853d449939d89fc01bc +size 2263070 diff --git a/train/84d1a618-a4da-4674-8904-2b659c03d227.png b/train/84d1a618-a4da-4674-8904-2b659c03d227.png new file mode 100644 index 0000000000000000000000000000000000000000..9bc41368b15e496a04bf711f35716a5e3e1ee884 --- /dev/null +++ b/train/84d1a618-a4da-4674-8904-2b659c03d227.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0eacc83aef8ab995e045858f35a34699b8fc83d88877c25b13202a1414b22ce +size 2166862 diff --git a/train/85e6ccd2-a1fc-4968-aef0-12a5fc58e95c.png b/train/85e6ccd2-a1fc-4968-aef0-12a5fc58e95c.png new file mode 100644 index 0000000000000000000000000000000000000000..2f294e8eb7d247ed8a78aacca3ff30066bed81d9 --- /dev/null +++ b/train/85e6ccd2-a1fc-4968-aef0-12a5fc58e95c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a70791c0fa0bdc0b1243220d0a31090e9d26a20627ec38bfd85422891c35822 +size 2045715 diff --git a/train/85f1e7f1-1a7d-43f1-b453-47b52b1004a9.png b/train/85f1e7f1-1a7d-43f1-b453-47b52b1004a9.png new file mode 100644 index 0000000000000000000000000000000000000000..8ab09d8d15a18c0cdbe8f9697b52ef4b3dff1374 --- /dev/null +++ b/train/85f1e7f1-1a7d-43f1-b453-47b52b1004a9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec84814055b7968f4301a08640016c2088d4216f352abef53b3c2871d82e4a73 +size 2158881 diff --git a/train/86081d13-f753-4a95-8421-bbcc9220eb58.png b/train/86081d13-f753-4a95-8421-bbcc9220eb58.png new file mode 100644 index 0000000000000000000000000000000000000000..f707c0d465b67191c70df6f27485ce5dbb4c40b8 --- /dev/null +++ b/train/86081d13-f753-4a95-8421-bbcc9220eb58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7aa3dd96b386eb4ca92e453a11d972de9dabf32daf1466d361c67ceead434b1 +size 2219934 diff --git a/train/866e4e4b-e5a7-4ce6-aa37-42512b8e13d6.png b/train/866e4e4b-e5a7-4ce6-aa37-42512b8e13d6.png new file mode 100644 index 0000000000000000000000000000000000000000..18a14543aedc5de7a68effd0e5184d4fd3dc4090 --- /dev/null +++ b/train/866e4e4b-e5a7-4ce6-aa37-42512b8e13d6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb1ad93c1b759cf5d46f2376fbdeb9794805ff02658e488fca48187ab59588cb +size 2169561 diff --git a/train/8686d0d5-0a01-4bec-9472-3b22db21b035.png b/train/8686d0d5-0a01-4bec-9472-3b22db21b035.png new file mode 100644 index 0000000000000000000000000000000000000000..e457885445aaf7c8c64596c3a10d57a81f4fc7e9 --- /dev/null +++ b/train/8686d0d5-0a01-4bec-9472-3b22db21b035.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8fcba9b2e27e5174fd45f0247c5f5157b07e2864070dea1892d94bdd692a98 +size 2190948 diff --git a/train/86ba17bf-b257-4ad6-97b4-bc282351ae16.png b/train/86ba17bf-b257-4ad6-97b4-bc282351ae16.png new file mode 100644 index 0000000000000000000000000000000000000000..3a6928535871b94433e74d2cd975be9bc6939289 --- /dev/null +++ b/train/86ba17bf-b257-4ad6-97b4-bc282351ae16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55a518a48de913e9fda84e0e72b11779001b4a6dcf6917515331267161d3d971 +size 2096877 diff --git a/train/86cab72e-89cf-4360-9805-bf2a0d65162a.png b/train/86cab72e-89cf-4360-9805-bf2a0d65162a.png new file mode 100644 index 0000000000000000000000000000000000000000..10ab9d7087382b631acc85e6f61e0bfe681cf6dc --- /dev/null +++ b/train/86cab72e-89cf-4360-9805-bf2a0d65162a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54044b4eb8e013cc26c1fe9b11e27f733d20439d2fefca32c75b0fc2ac88393c +size 2166620 diff --git a/train/86e4da2c-0a9f-49f1-849e-815b9dfd1784.png b/train/86e4da2c-0a9f-49f1-849e-815b9dfd1784.png new file mode 100644 index 0000000000000000000000000000000000000000..6606bc866c56d7cfa221b6f5f08ba312d7c908eb --- /dev/null +++ b/train/86e4da2c-0a9f-49f1-849e-815b9dfd1784.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e0074098c464a4a3c875aff121f7e845cf1ab5e54c463653a466681d2b9242c +size 2165028 diff --git a/train/86e5cac5-6f5e-4e55-be99-2219e6230ffe.png b/train/86e5cac5-6f5e-4e55-be99-2219e6230ffe.png new file mode 100644 index 0000000000000000000000000000000000000000..6613f9ae07845fe5baa8412541d6edda8ff0e174 --- /dev/null +++ b/train/86e5cac5-6f5e-4e55-be99-2219e6230ffe.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb860c0d6d9b0740e7e524891c75dceb063310c3e27c68c34e50382c35aa00d0 +size 2034576 diff --git a/train/86f90c89-5fbd-441f-a918-e7ab5c403c2b.png b/train/86f90c89-5fbd-441f-a918-e7ab5c403c2b.png new file mode 100644 index 0000000000000000000000000000000000000000..0d683a311e2d7471e3ac09bf7031f362004ef585 --- /dev/null +++ b/train/86f90c89-5fbd-441f-a918-e7ab5c403c2b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95182f75b0c26a637541e520fb5fe505278f5539fd8cc859ba547e465b35a1c6 +size 2280108 diff --git a/train/873918d9-7ac9-4beb-8ea3-958dc409dcc8.png b/train/873918d9-7ac9-4beb-8ea3-958dc409dcc8.png new file mode 100644 index 0000000000000000000000000000000000000000..5f624dffc3430d54664c99d93ea4726551987dba --- /dev/null +++ b/train/873918d9-7ac9-4beb-8ea3-958dc409dcc8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bf9d07b2f8246899b05dca1449c4f9a1a9f1f1d5fbee608e3fa46d70ae43b3d +size 2186106 diff --git a/train/87829f98-b4df-4732-9adb-e35e37d2ce4f.png b/train/87829f98-b4df-4732-9adb-e35e37d2ce4f.png new file mode 100644 index 0000000000000000000000000000000000000000..713a1fe0ae0d3a19121052f9378f6a1531ce8533 --- /dev/null +++ b/train/87829f98-b4df-4732-9adb-e35e37d2ce4f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:654324bf22a79782f6ac08046e1ec3538fa3177badc68991e0cc3e88e7eecd90 +size 2011900 diff --git a/train/87b60bd0-1e80-4d4c-92e9-b8802971875e.png b/train/87b60bd0-1e80-4d4c-92e9-b8802971875e.png new file mode 100644 index 0000000000000000000000000000000000000000..568ab75742159c85189689ecc42e070d180f7525 --- /dev/null +++ b/train/87b60bd0-1e80-4d4c-92e9-b8802971875e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b422e23571846e0c778daa68f5a25082ea169a00fa00e9b33ea12f408beb1608 +size 2183426 diff --git a/train/87d2d6a8-aa4f-4b1b-bb7c-8bd08f532e27.png b/train/87d2d6a8-aa4f-4b1b-bb7c-8bd08f532e27.png new file mode 100644 index 0000000000000000000000000000000000000000..8c691d0ed83286b1c4e72e1bad83b683f01889cc --- /dev/null +++ b/train/87d2d6a8-aa4f-4b1b-bb7c-8bd08f532e27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e730dabca4f19d884e5b8a56717305675d0ed1b67e39d56c9f827d66719922db +size 2113684 diff --git a/train/882313e3-2db9-4cf2-8520-8f6a3ae4374f.png b/train/882313e3-2db9-4cf2-8520-8f6a3ae4374f.png new file mode 100644 index 0000000000000000000000000000000000000000..52cdc8e7da8cb85219d376c31aab91eed02c697d --- /dev/null +++ b/train/882313e3-2db9-4cf2-8520-8f6a3ae4374f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b8f2a3e5ccae59dda05ee4ed8161180d5740a625719482dcae6c441b2f072b0 +size 2095863 diff --git a/train/883289b6-8d88-4045-8d59-d3238164761a.png b/train/883289b6-8d88-4045-8d59-d3238164761a.png new file mode 100644 index 0000000000000000000000000000000000000000..14fbadd37320de736f2c44f3b969cc3ee9c313da --- /dev/null +++ b/train/883289b6-8d88-4045-8d59-d3238164761a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672f03c7c4e628af69705ac40477e70a6d6a4b05a11d2ee6595b008beec1cc01 +size 2186318 diff --git a/train/88656be2-98b1-4b91-bf6b-daf44b058c65.png b/train/88656be2-98b1-4b91-bf6b-daf44b058c65.png new file mode 100644 index 0000000000000000000000000000000000000000..66a4a17fb344b5c9c341267c2ffc263655108e78 --- /dev/null +++ b/train/88656be2-98b1-4b91-bf6b-daf44b058c65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bc25774edd5f3ee8dc48adf34c781e78dd5a8b1f454b81204c3824eb7944c6e +size 2156911 diff --git a/train/895261c5-ee78-4041-864c-71863aef85cd.png b/train/895261c5-ee78-4041-864c-71863aef85cd.png new file mode 100644 index 0000000000000000000000000000000000000000..3dc88a22f2350e8bed5d1139281b82cdcc3fffdd --- /dev/null +++ b/train/895261c5-ee78-4041-864c-71863aef85cd.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8305b59adf410bf034f2d2ec92b884e8aab3c2d2818144f476cc7e0278e413fb +size 2053624 diff --git a/train/89bb67b1-9733-48b0-9cae-230aa3bde7f7.png b/train/89bb67b1-9733-48b0-9cae-230aa3bde7f7.png new file mode 100644 index 0000000000000000000000000000000000000000..b34388b16c92237c7e1d3bf9caa6ce693957d25f --- /dev/null +++ b/train/89bb67b1-9733-48b0-9cae-230aa3bde7f7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5598f90f7ed8e6a130919bed9b1c4d27fce1ccbfa5cffa0025a4f2d767ba9f7 +size 2111801 diff --git a/train/89f08182-630d-4707-8d93-9c99360864be.png b/train/89f08182-630d-4707-8d93-9c99360864be.png new file mode 100644 index 0000000000000000000000000000000000000000..dd087e6bedc225882eeb4304eec63ea5c3b501b5 --- /dev/null +++ b/train/89f08182-630d-4707-8d93-9c99360864be.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1c0bc7977c90c3df8fbcf420e6f25febbd622086183c59d84ff46783b4bca79 +size 2199935 diff --git a/train/8a163e2f-f6f8-46ed-8028-758104fa0984.png b/train/8a163e2f-f6f8-46ed-8028-758104fa0984.png new file mode 100644 index 0000000000000000000000000000000000000000..568902435a1c2d5e199d0132755f2e24cbc2affd --- /dev/null +++ b/train/8a163e2f-f6f8-46ed-8028-758104fa0984.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7754d59fa61fc17452e296f74d2c47e0dd6f11210c7013e960c9d26a7fb1aa16 +size 2134089 diff --git a/train/8a347165-9260-4020-b647-0afacd1ceb6a.png b/train/8a347165-9260-4020-b647-0afacd1ceb6a.png new file mode 100644 index 0000000000000000000000000000000000000000..0ba242fd0460972e1c79a51763edd9e25a7e6dfe --- /dev/null +++ b/train/8a347165-9260-4020-b647-0afacd1ceb6a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:599669d23a99f95a4be03de6fb2bdd77ad31080cf5e0bfabf3cb9ff9cada007b +size 1985677 diff --git a/train/8a476020-e6ed-4848-bbf5-a829e1f00126.png b/train/8a476020-e6ed-4848-bbf5-a829e1f00126.png new file mode 100644 index 0000000000000000000000000000000000000000..650011b04c64fb4594c103f3f6c4e89aa455acc7 --- /dev/null +++ b/train/8a476020-e6ed-4848-bbf5-a829e1f00126.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9692693ba56fdf62cc73561607a12abd0603dcbc6427d6ed3c7bce450909d19b +size 2031905 diff --git a/train/8a7a7025-64ef-4e11-a8c7-61211c85b453.png b/train/8a7a7025-64ef-4e11-a8c7-61211c85b453.png new file mode 100644 index 0000000000000000000000000000000000000000..57f0add094bde9338378f15aa5333d1369c18a3b --- /dev/null +++ b/train/8a7a7025-64ef-4e11-a8c7-61211c85b453.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbfdb802a4ef9e4ec9c2d177e2b16d5694eb6e926ae7533f7e1ab91cfcb2e0e5 +size 2214605 diff --git a/train/8b13cbce-f21f-4484-9f6e-7e5472398475.png b/train/8b13cbce-f21f-4484-9f6e-7e5472398475.png new file mode 100644 index 0000000000000000000000000000000000000000..f18b78d8c8f4baaf4b83d38e352d88fb4128cc61 --- /dev/null +++ b/train/8b13cbce-f21f-4484-9f6e-7e5472398475.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79b8ea917e1dcc6f097bc21cd257b197e1e35a8d07a3a85ea48df9d073d13f8b +size 2086777 diff --git a/train/8b20be5f-f79e-44bb-ae17-3950104c9f02.png b/train/8b20be5f-f79e-44bb-ae17-3950104c9f02.png new file mode 100644 index 0000000000000000000000000000000000000000..d6abe293689b8ac5f3ad13542c4e5bb40e86e19c --- /dev/null +++ b/train/8b20be5f-f79e-44bb-ae17-3950104c9f02.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e63a01d60f576a7751538071a3fd77491274cc1628a8d25866caac1e58a2cf6 +size 2062221 diff --git a/train/8bbfaf5d-1897-469b-85ed-05e120ee96fd.png b/train/8bbfaf5d-1897-469b-85ed-05e120ee96fd.png new file mode 100644 index 0000000000000000000000000000000000000000..7a42ee5a76367050b9ac62ed1b351ca51de0a256 --- /dev/null +++ b/train/8bbfaf5d-1897-469b-85ed-05e120ee96fd.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6501c05d7049ee1de644ca06472852c256261d7a6c3642480dd17014ffc70907 +size 2021921 diff --git a/train/8bf8f934-4368-407f-a425-95d15d108110.png b/train/8bf8f934-4368-407f-a425-95d15d108110.png new file mode 100644 index 0000000000000000000000000000000000000000..c29e426c181e0ece0393d538259b6631caa90471 --- /dev/null +++ b/train/8bf8f934-4368-407f-a425-95d15d108110.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83b784e8ccd7c4e213d39808f814ca3e42d3d754ce7171fc01b107eb75d74e57 +size 1994368 diff --git a/train/8c08079e-31f2-4262-aaf8-4482f691abd1.png b/train/8c08079e-31f2-4262-aaf8-4482f691abd1.png new file mode 100644 index 0000000000000000000000000000000000000000..79e068f6cc10d9dc49d94a21d8e1d747968ea6e3 --- /dev/null +++ b/train/8c08079e-31f2-4262-aaf8-4482f691abd1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c41a9ee68fecac385940e0fc59c6c50885375b460be103350e89da57fa0ca32 +size 2115366 diff --git a/train/8c0f6100-5f5e-4d5a-9bb5-6167e0bf5245.png b/train/8c0f6100-5f5e-4d5a-9bb5-6167e0bf5245.png new file mode 100644 index 0000000000000000000000000000000000000000..a5c57f1925b1469393046575d31659858a5aad8c --- /dev/null +++ b/train/8c0f6100-5f5e-4d5a-9bb5-6167e0bf5245.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a5a4d3ee5852d6953c79707bc0f4842743f29b17d2c976d05accc799ff68981 +size 2231764 diff --git a/train/8c0f8b06-798a-4a7c-b6a3-9f6018320fe9.png b/train/8c0f8b06-798a-4a7c-b6a3-9f6018320fe9.png new file mode 100644 index 0000000000000000000000000000000000000000..5a45e9af8811789728ba3dd3afb9e827c03f3ba3 --- /dev/null +++ b/train/8c0f8b06-798a-4a7c-b6a3-9f6018320fe9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85b1f038eb80c0ffffd359bdfbd2d18d066741808318f01dc3ff13d5e69b639 +size 2089048 diff --git a/train/8c246d73-653b-4fe8-b0aa-c8b2654c9830.png b/train/8c246d73-653b-4fe8-b0aa-c8b2654c9830.png new file mode 100644 index 0000000000000000000000000000000000000000..e4bb7ec77e56a10e50338e86875026110f7ccf4a --- /dev/null +++ b/train/8c246d73-653b-4fe8-b0aa-c8b2654c9830.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1dc7d2bf772a80dd320a16bd975e7e84ad0213dbace72f71ff80f3a990d4dc7 +size 2212795 diff --git a/train/8c605543-8349-4068-88da-28309a539eeb.png b/train/8c605543-8349-4068-88da-28309a539eeb.png new file mode 100644 index 0000000000000000000000000000000000000000..6511fc19cc4f2f658cc90a96b630b02a540c8e19 --- /dev/null +++ b/train/8c605543-8349-4068-88da-28309a539eeb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d154529f09f5b361127ba5490398d76e34be20183a6d8c3dff82b66c032b6da8 +size 2077089 diff --git a/train/8cc3a893-24a4-4244-b2b0-f0f9799f3848.png b/train/8cc3a893-24a4-4244-b2b0-f0f9799f3848.png new file mode 100644 index 0000000000000000000000000000000000000000..165a698c75d2e48077995bd5a8ac0fbe2ed4db83 --- /dev/null +++ b/train/8cc3a893-24a4-4244-b2b0-f0f9799f3848.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4ee7c8ff2fe702a9e6fcff6ad2017878c67274aa1143d1928910ed64273bd54 +size 2154962 diff --git a/train/8d006102-0087-4dba-b0fd-4690e6c62d68.png b/train/8d006102-0087-4dba-b0fd-4690e6c62d68.png new file mode 100644 index 0000000000000000000000000000000000000000..ef0c6ce2335f9087f1a3f849497badd910ef4790 --- /dev/null +++ b/train/8d006102-0087-4dba-b0fd-4690e6c62d68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a37a99bf81a626d1cdb2d357acabf57787d7d0a3d7a378cb7e0e296a021d73d +size 2111963 diff --git a/train/8d399ebe-34e5-4eea-b960-87b00c4c87bc.png b/train/8d399ebe-34e5-4eea-b960-87b00c4c87bc.png new file mode 100644 index 0000000000000000000000000000000000000000..2edbcef5ac8a6d2250628b7bb535d458903f2c14 --- /dev/null +++ b/train/8d399ebe-34e5-4eea-b960-87b00c4c87bc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:605fb3a4c33162036c6f3cba97941cafb6e1cb1c462f1794a13a540befcd81a7 +size 2093812 diff --git a/train/8d778b73-ac74-42f6-a8c1-99b924b29d00.png b/train/8d778b73-ac74-42f6-a8c1-99b924b29d00.png new file mode 100644 index 0000000000000000000000000000000000000000..f6c551d9f774eb02504872095431dfdcd916e030 --- /dev/null +++ b/train/8d778b73-ac74-42f6-a8c1-99b924b29d00.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01948f5bb251583c7624f12d02bdf813f45f74227193d05adafda4ee0047d674 +size 2126690 diff --git a/train/8d78dbff-9684-4aac-bada-12bfbee98f5c.png b/train/8d78dbff-9684-4aac-bada-12bfbee98f5c.png new file mode 100644 index 0000000000000000000000000000000000000000..40d43cb5672919b04e34d31e6deb1e503180a4ca --- /dev/null +++ b/train/8d78dbff-9684-4aac-bada-12bfbee98f5c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89fe1cffaed50398fccb0fc72bf7f4220d4b6411dd11da21b406a15602be902b +size 2145936 diff --git a/train/8da62d14-9d50-4437-865b-9ff448c25b2f.png b/train/8da62d14-9d50-4437-865b-9ff448c25b2f.png new file mode 100644 index 0000000000000000000000000000000000000000..14ec0d6dd26ed228d1738b8c16dba387db84abe3 --- /dev/null +++ b/train/8da62d14-9d50-4437-865b-9ff448c25b2f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a5dade10a5999f31ac7c4b0ec18923e2797cf7e3fb7df7e290c8b0c047140e +size 2056867 diff --git a/train/8db77fbb-9394-4098-a9d4-4e61b7a3181d.png b/train/8db77fbb-9394-4098-a9d4-4e61b7a3181d.png new file mode 100644 index 0000000000000000000000000000000000000000..93333ce79eda347b0bc229fb166952985ca6587c --- /dev/null +++ b/train/8db77fbb-9394-4098-a9d4-4e61b7a3181d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf707ed9ae9c0b5199fcfd84de51311f309ba12ec65dd6d70924d59477cd5a5 +size 2135771 diff --git a/train/8eae5d1b-5a76-48ff-9b4c-2217c09aba4e.png b/train/8eae5d1b-5a76-48ff-9b4c-2217c09aba4e.png new file mode 100644 index 0000000000000000000000000000000000000000..76ff24a96bad64f11388b0a94083b8ad4c7e1086 --- /dev/null +++ b/train/8eae5d1b-5a76-48ff-9b4c-2217c09aba4e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:784374b57dda527079be3abe25185c9ef0a2cb2c6c7829444d7fcbd2454af6d4 +size 2065978 diff --git a/train/8edaaffc-c1e7-4d2e-a71f-55498e52edd6.png b/train/8edaaffc-c1e7-4d2e-a71f-55498e52edd6.png new file mode 100644 index 0000000000000000000000000000000000000000..e0d96f1e7b81a6df65993ac328d3c21d6f1a5ea3 --- /dev/null +++ b/train/8edaaffc-c1e7-4d2e-a71f-55498e52edd6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d8fa63c42c2b217bf02965c132af04eac5851e09bf8d5465ee9d844061aeaf +size 2084572 diff --git a/train/8f199f8d-b0e8-4d1f-a298-7aa9da3698be.png b/train/8f199f8d-b0e8-4d1f-a298-7aa9da3698be.png new file mode 100644 index 0000000000000000000000000000000000000000..3b7283adef2f4470746bab671b16f9015aea561a --- /dev/null +++ b/train/8f199f8d-b0e8-4d1f-a298-7aa9da3698be.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78a21a867c18aa6598d2488e1e37a4d014ab4f411bfb25ec84280433f18d61b2 +size 2140865 diff --git a/train/8f2fb6e2-1c1b-415c-a2c5-8a57e873e7a5.png b/train/8f2fb6e2-1c1b-415c-a2c5-8a57e873e7a5.png new file mode 100644 index 0000000000000000000000000000000000000000..106b74e222e4c3b276be8e41d86d4ab624943170 --- /dev/null +++ b/train/8f2fb6e2-1c1b-415c-a2c5-8a57e873e7a5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:526c6001b7b31261cabda16c5898383a7e7a819486e47a32650a0ef469b386ba +size 2014260 diff --git a/train/8f30a943-1080-4d6c-91b4-df22e2d4b51c.png b/train/8f30a943-1080-4d6c-91b4-df22e2d4b51c.png new file mode 100644 index 0000000000000000000000000000000000000000..fac1214b420863321fd9a3b5a5da8f8e0173b7f8 --- /dev/null +++ b/train/8f30a943-1080-4d6c-91b4-df22e2d4b51c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5da2c45401b4efdf844f30a3c32f19bda69f975d7bd5afa0a5581b29fb9bbc0b +size 2133362 diff --git a/train/8f3d73b9-8150-4774-bbcf-c4428748d30a.png b/train/8f3d73b9-8150-4774-bbcf-c4428748d30a.png new file mode 100644 index 0000000000000000000000000000000000000000..f54da1585524041950f8c20981bd0fa4ff7a52ee --- /dev/null +++ b/train/8f3d73b9-8150-4774-bbcf-c4428748d30a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25233460a082f2e4a35d01d90e313e59f9cd2838eb494c48c356a2c34de572b8 +size 1922011 diff --git a/train/90800149-f5bb-4b95-8a6a-4fd0f27504c4.png b/train/90800149-f5bb-4b95-8a6a-4fd0f27504c4.png new file mode 100644 index 0000000000000000000000000000000000000000..5a9c922013c20de0f87c9f3330955727916006b6 --- /dev/null +++ b/train/90800149-f5bb-4b95-8a6a-4fd0f27504c4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc2f034d877c352136e141ad8b0b316480bffe0dcaff246fee75391c10c0ecd8 +size 2192647 diff --git a/train/90b10c09-229b-4842-82af-3235828a24dc.png b/train/90b10c09-229b-4842-82af-3235828a24dc.png new file mode 100644 index 0000000000000000000000000000000000000000..b5da9b870cbb9bc04ba28593a6b5c97fadfc3860 --- /dev/null +++ b/train/90b10c09-229b-4842-82af-3235828a24dc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d60aac82f502bec7710dbfb16d75ac90eb800bb0dc16372550c56d66f7fb2769 +size 2228363 diff --git a/train/90b68fd4-aedb-4327-b762-2b4653ed9f87.png b/train/90b68fd4-aedb-4327-b762-2b4653ed9f87.png new file mode 100644 index 0000000000000000000000000000000000000000..7cc43288da45f5a7c35bb10eb00a8afd22c15d64 --- /dev/null +++ b/train/90b68fd4-aedb-4327-b762-2b4653ed9f87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3207beb0abd63d0a98b6f7350adb373b024ada49d009cb96d752ada7f1c12f2d +size 2091509 diff --git a/train/90c82d43-ae67-42d0-9bd0-e6e842f47ba9.png b/train/90c82d43-ae67-42d0-9bd0-e6e842f47ba9.png new file mode 100644 index 0000000000000000000000000000000000000000..6b89119e83bb48a5b21b1efc69624bd534aa1051 --- /dev/null +++ b/train/90c82d43-ae67-42d0-9bd0-e6e842f47ba9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a372797eba07f72fd96697b70884a0c68864bf23ea3c1d08a9a04980ab936e2 +size 2023875 diff --git a/train/90df7d25-f9b1-4515-aa41-fba841bec808.png b/train/90df7d25-f9b1-4515-aa41-fba841bec808.png new file mode 100644 index 0000000000000000000000000000000000000000..79cda2ed0831fea6ac7bb69b0e20931943820fca --- /dev/null +++ b/train/90df7d25-f9b1-4515-aa41-fba841bec808.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a68b2085b4a3d2f0ef99d90940d10238c4e73bfc9764dcc39037dbde084e33a0 +size 2129698 diff --git a/train/911baadd-7b56-48d8-9eeb-433b66fd6043.png b/train/911baadd-7b56-48d8-9eeb-433b66fd6043.png new file mode 100644 index 0000000000000000000000000000000000000000..9cbb6aa3ec4700a775cb36e00616a066eb5de702 --- /dev/null +++ b/train/911baadd-7b56-48d8-9eeb-433b66fd6043.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e65f4c34356c84a92c8bf183bd2ec5c5d0c2cbab1ffaa50bbb1a51974fd42118 +size 2058486 diff --git a/train/911bab72-10d1-43a4-9b2f-3b2523735381.png b/train/911bab72-10d1-43a4-9b2f-3b2523735381.png new file mode 100644 index 0000000000000000000000000000000000000000..ba6439f75430f61a98ec45fec2b1a71dc53a3328 --- /dev/null +++ b/train/911bab72-10d1-43a4-9b2f-3b2523735381.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a76db38b0781e02e4af4afdb32efc6706e7ef508af3cd53dc0559bb35d8e7ab7 +size 2092463 diff --git a/train/91610863-8400-45bb-a71a-ee8af08dbf5d.png b/train/91610863-8400-45bb-a71a-ee8af08dbf5d.png new file mode 100644 index 0000000000000000000000000000000000000000..9fed40cf989c60d6f52ba484089afb8835ed226e --- /dev/null +++ b/train/91610863-8400-45bb-a71a-ee8af08dbf5d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f059c68d6ba2818db7656f275bf2ef2bca0117bdacc3097df44cf968b3c87fcc +size 2114066 diff --git a/train/921aefdf-d3e6-4ef2-a272-975109598689.png b/train/921aefdf-d3e6-4ef2-a272-975109598689.png new file mode 100644 index 0000000000000000000000000000000000000000..3755cf2c0705fbf00f07a69567fbd810d13bd0fb --- /dev/null +++ b/train/921aefdf-d3e6-4ef2-a272-975109598689.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2259fe6b7358066402e5fe3fc0d9d70182ac753c97918cbb992289e77b8f36f3 +size 2232326 diff --git a/train/92398d2b-0fe9-4c52-9fd6-aa87461c25d1.png b/train/92398d2b-0fe9-4c52-9fd6-aa87461c25d1.png new file mode 100644 index 0000000000000000000000000000000000000000..4e4a9df8cd260d123c0c11b2571692976e8631e6 --- /dev/null +++ b/train/92398d2b-0fe9-4c52-9fd6-aa87461c25d1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3131be55ad5ec91d9e79a68bb7e55913defe4232c6790f8c41f562b96e314a8 +size 2093285 diff --git a/train/938714a0-c8df-4557-be27-5794f42e874b.png b/train/938714a0-c8df-4557-be27-5794f42e874b.png new file mode 100644 index 0000000000000000000000000000000000000000..8154de1a5c1fbb7f735d0506fdef45c1316801ce --- /dev/null +++ b/train/938714a0-c8df-4557-be27-5794f42e874b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb1ac21e051711140b3ea90b32b975424f46b6c7aec944e6c04d6c2c6cf9d6b1 +size 2221075 diff --git a/train/939d1f9c-e061-490e-9b03-0e79be1fd2dd.png b/train/939d1f9c-e061-490e-9b03-0e79be1fd2dd.png new file mode 100644 index 0000000000000000000000000000000000000000..836507e038309852d6a0ccc93ba19483637abefa --- /dev/null +++ b/train/939d1f9c-e061-490e-9b03-0e79be1fd2dd.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:945d9e3ead7dbabd2d195b5179c6800ed0ddc21cbe857f7b5f97de6f98df7447 +size 2050705 diff --git a/train/93e98148-a9e7-466f-87e7-f773d249ae5a.png b/train/93e98148-a9e7-466f-87e7-f773d249ae5a.png new file mode 100644 index 0000000000000000000000000000000000000000..09dd1cf2dbfa6e9d172467e778caac1679970689 --- /dev/null +++ b/train/93e98148-a9e7-466f-87e7-f773d249ae5a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9102d7bbf867c782ecd76b2d89a3557c514fa2da28937f4ba5b6ba1d77a9cb7b +size 2127528 diff --git a/train/93ef0fcc-c090-47bd-9dd1-063ee7755fd6.png b/train/93ef0fcc-c090-47bd-9dd1-063ee7755fd6.png new file mode 100644 index 0000000000000000000000000000000000000000..a29ea7f9977d5d1f259b2c5da796657af2abf089 --- /dev/null +++ b/train/93ef0fcc-c090-47bd-9dd1-063ee7755fd6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb1c23e51a638ae1d1189f5d7d48e6727e63f53d9f842f098b7336f20df5a082 +size 2189537 diff --git a/train/93f238cd-20ce-4196-9554-089d7344682d.png b/train/93f238cd-20ce-4196-9554-089d7344682d.png new file mode 100644 index 0000000000000000000000000000000000000000..7714ad7990f6b03bd4d84edbd04dd0cda38112f7 --- /dev/null +++ b/train/93f238cd-20ce-4196-9554-089d7344682d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17bf14ed732d0d30b800865678ab31096dd0c1eca616c73f9523ad6ebf77e5bb +size 2068267 diff --git a/train/93f9a17e-7bf7-4b0e-8945-8de66ee296d5.png b/train/93f9a17e-7bf7-4b0e-8945-8de66ee296d5.png new file mode 100644 index 0000000000000000000000000000000000000000..51531bbf8038b8d86b96ed9a605f9be819df602d --- /dev/null +++ b/train/93f9a17e-7bf7-4b0e-8945-8de66ee296d5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55627c0a594c257a98f5f59097bfb51da634b054831279f5dd56b6cbd3ab1c93 +size 2131393 diff --git a/train/94433e31-d70b-4884-a4eb-ff99c1094fea.png b/train/94433e31-d70b-4884-a4eb-ff99c1094fea.png new file mode 100644 index 0000000000000000000000000000000000000000..30d9a97074a3c9c24220cceed9724c6835411659 --- /dev/null +++ b/train/94433e31-d70b-4884-a4eb-ff99c1094fea.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a20a6cf61360a1c5d234d1297b37b5cc69db27ff8b561d0d2d1a7aea9946df7 +size 2106893 diff --git a/train/94ab2321-c7cf-42bc-838e-a91b724cfa48.png b/train/94ab2321-c7cf-42bc-838e-a91b724cfa48.png new file mode 100644 index 0000000000000000000000000000000000000000..087f73f858f0cdfab1ff565096ee015fdc98f699 --- /dev/null +++ b/train/94ab2321-c7cf-42bc-838e-a91b724cfa48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5c29ccbdda40d9fb49c8b4c2e7f0233ca7317b61fa3aa8a27bb59f1bea7a00f +size 2179530 diff --git a/train/94fb2ebf-b416-4de4-85e0-e8786af8f255.png b/train/94fb2ebf-b416-4de4-85e0-e8786af8f255.png new file mode 100644 index 0000000000000000000000000000000000000000..59170a902af4abcac9dac581bd651096cf787c9f --- /dev/null +++ b/train/94fb2ebf-b416-4de4-85e0-e8786af8f255.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def8d2738ccfa5701b9c8a1ac86d369d6d7c73ec41c681ff8780acdfe9c2e449 +size 2257557 diff --git a/train/95020cb9-63d3-4f9e-8e2c-dba431a84a5a.png b/train/95020cb9-63d3-4f9e-8e2c-dba431a84a5a.png new file mode 100644 index 0000000000000000000000000000000000000000..54988b028315582c1705ed7b6da5eed28f10e8fd --- /dev/null +++ b/train/95020cb9-63d3-4f9e-8e2c-dba431a84a5a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f000ba480caf3f508e19980695610b6eee9de4fcffda45fcd9b3a19924658182 +size 2100063 diff --git a/train/9679c820-d544-4ed2-9ba7-a632c9db7d1a.png b/train/9679c820-d544-4ed2-9ba7-a632c9db7d1a.png new file mode 100644 index 0000000000000000000000000000000000000000..b96c26575c10c95e01aea494209a210668423bd2 --- /dev/null +++ b/train/9679c820-d544-4ed2-9ba7-a632c9db7d1a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d551977017cd0b50e80414168ef5eaafd5b2a0b981760fd5168fb0753229b90e +size 2167281 diff --git a/train/97431573-8ab0-445a-96ba-d020db5cd772.png b/train/97431573-8ab0-445a-96ba-d020db5cd772.png new file mode 100644 index 0000000000000000000000000000000000000000..07d45b0ee6b729aab405aa0fa856bd56e56df06f --- /dev/null +++ b/train/97431573-8ab0-445a-96ba-d020db5cd772.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51ad7b3a9304a8e7b88b323205dbd5b8e9a7bff1416a164446b2141918dabc20 +size 2023974 diff --git a/train/97f2594f-1252-4f95-b915-750e130f9046.png b/train/97f2594f-1252-4f95-b915-750e130f9046.png new file mode 100644 index 0000000000000000000000000000000000000000..4b9bcc3dbabce65827b2def9a63173b330c221ed --- /dev/null +++ b/train/97f2594f-1252-4f95-b915-750e130f9046.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766a5a7f31e9d842bb44e0b0d032d1c812f7f49573c9e626f04ed32ff2de5255 +size 2032813 diff --git a/train/982429d3-4519-44c8-af60-9a10b404f203.png b/train/982429d3-4519-44c8-af60-9a10b404f203.png new file mode 100644 index 0000000000000000000000000000000000000000..2bdb778429ca7cea87c6db49732363f1d1af62ca --- /dev/null +++ b/train/982429d3-4519-44c8-af60-9a10b404f203.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0faac2e500fe39ea66f055a71a33dc75b310b170003935b29bb2392790d9af23 +size 2153459 diff --git a/train/98291191-3e9b-484a-a613-2ea19c653081.png b/train/98291191-3e9b-484a-a613-2ea19c653081.png new file mode 100644 index 0000000000000000000000000000000000000000..d1a8826b33f97413411e3cf93a2563830a50ff80 --- /dev/null +++ b/train/98291191-3e9b-484a-a613-2ea19c653081.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a762b6aeecc75b70485d98b1b9dc444f00f84285989f19f931c5b8f9b255157 +size 2133056 diff --git a/train/98575751-e768-44b9-a6c2-c6112cbffd49.png b/train/98575751-e768-44b9-a6c2-c6112cbffd49.png new file mode 100644 index 0000000000000000000000000000000000000000..81e8b6c84a791b44437c5c36c46102c0c6521f06 --- /dev/null +++ b/train/98575751-e768-44b9-a6c2-c6112cbffd49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25d5e979823b18344c88782ff890137cf2a7c0731ffe6764ff56121652766333 +size 2057391 diff --git a/train/98e446bc-cd95-4ad5-bc00-b3ddf6e83308.png b/train/98e446bc-cd95-4ad5-bc00-b3ddf6e83308.png new file mode 100644 index 0000000000000000000000000000000000000000..df15f766f1bb085c36e38ab04f21ecc2438a9571 --- /dev/null +++ b/train/98e446bc-cd95-4ad5-bc00-b3ddf6e83308.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f57310a610687992054dc13c05474a073f6959e1af7ed9cb3628a5c18116d2 +size 2232539 diff --git a/train/994f09f8-f294-46c1-b7e7-106ceffc40e2.png b/train/994f09f8-f294-46c1-b7e7-106ceffc40e2.png new file mode 100644 index 0000000000000000000000000000000000000000..faf2bcf9ee13564cf9436968a21e1d74f55d8fee --- /dev/null +++ b/train/994f09f8-f294-46c1-b7e7-106ceffc40e2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:775bde5800e10bfce9947dc8a9e6052790de7a04d8a80953b7b18fc91f65de44 +size 2017777 diff --git a/train/9998c0de-293b-4083-afec-24586c4c00f0.png b/train/9998c0de-293b-4083-afec-24586c4c00f0.png new file mode 100644 index 0000000000000000000000000000000000000000..457d8a1bae42646cbb36e4b7875e7f5145bab010 --- /dev/null +++ b/train/9998c0de-293b-4083-afec-24586c4c00f0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c664de011464883c79aaebded959affc94cd7e6b53352d01383824e0b8afc3f +size 2139834 diff --git a/train/99b8b242-e13f-4d74-ade2-aaa0bbff2f63.png b/train/99b8b242-e13f-4d74-ade2-aaa0bbff2f63.png new file mode 100644 index 0000000000000000000000000000000000000000..db20850930dc39d6eac7d24fc66a92db0554fee6 --- /dev/null +++ b/train/99b8b242-e13f-4d74-ade2-aaa0bbff2f63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd657022bc41048ccddf86124b3e2ff7c5505ed3d961cb4ebb7420a95cc110f4 +size 2209223 diff --git a/train/9a21cc8a-e508-4a00-be24-3549821a086e.png b/train/9a21cc8a-e508-4a00-be24-3549821a086e.png new file mode 100644 index 0000000000000000000000000000000000000000..31c7d8e9345a82f7460fd824a23cd3316987eeaf --- /dev/null +++ b/train/9a21cc8a-e508-4a00-be24-3549821a086e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46c243f9ff0e3b69cfdafb3e7aad6f0ca965f2d4793e95e854070eac30023bcd +size 2160890 diff --git a/train/9ac93fca-fd43-4fa0-9fb8-ba7bde42960f.png b/train/9ac93fca-fd43-4fa0-9fb8-ba7bde42960f.png new file mode 100644 index 0000000000000000000000000000000000000000..ae12bd668c48b47396857ff8b073b30e10b8583f --- /dev/null +++ b/train/9ac93fca-fd43-4fa0-9fb8-ba7bde42960f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd155242469f82ef87230e984a17f8945f3835cdf250616d8039550d4b2ba7e +size 2147100 diff --git a/train/9b1a0150-5a0f-40de-8798-41e2d1bdf8cb.png b/train/9b1a0150-5a0f-40de-8798-41e2d1bdf8cb.png new file mode 100644 index 0000000000000000000000000000000000000000..cc61a3c490933ec12e3e2af76b9ca590005319fd --- /dev/null +++ b/train/9b1a0150-5a0f-40de-8798-41e2d1bdf8cb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ef63ea0aabc25dee05f00b579b5939d41d5dfaeb79f5a856eeb7dba8b0a085 +size 2065490 diff --git a/train/9b2aee96-0de7-482d-8af4-8e0b8d5021f8.png b/train/9b2aee96-0de7-482d-8af4-8e0b8d5021f8.png new file mode 100644 index 0000000000000000000000000000000000000000..bd1c564c1bce850e1d84b13a95fcd39c16d3096f --- /dev/null +++ b/train/9b2aee96-0de7-482d-8af4-8e0b8d5021f8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f100b61e6a82b3af3528fa58f6efda527064b11cab38ede191f920d691a242e +size 2123270 diff --git a/train/9b8ff681-6b20-4c02-a58e-8cba14b568a4.png b/train/9b8ff681-6b20-4c02-a58e-8cba14b568a4.png new file mode 100644 index 0000000000000000000000000000000000000000..118d7cf62ae23b5ea5c785c8a4684ac347f18a5f --- /dev/null +++ b/train/9b8ff681-6b20-4c02-a58e-8cba14b568a4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93d2e22559a3f4cda1ff5fc8433cab91666a4e0fe5df2bfc2f87af6c35474d41 +size 2101647 diff --git a/train/9c2863f0-e823-47e4-9325-c95a7f0e41d7.png b/train/9c2863f0-e823-47e4-9325-c95a7f0e41d7.png new file mode 100644 index 0000000000000000000000000000000000000000..6ae22a826eed67449efa72c4416493ba7defb64d --- /dev/null +++ b/train/9c2863f0-e823-47e4-9325-c95a7f0e41d7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:321df136db4acc968b9d0530fd303e641fd8f6e9133fc279a9dfccbea0e1fb5e +size 2091284 diff --git a/train/9c54a923-dd5d-4baf-9e5e-c462e241b6f9.png b/train/9c54a923-dd5d-4baf-9e5e-c462e241b6f9.png new file mode 100644 index 0000000000000000000000000000000000000000..576739f5750a08dd3ea8a4f930c71f29a987b3eb --- /dev/null +++ b/train/9c54a923-dd5d-4baf-9e5e-c462e241b6f9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1374f5ee8b5cd394ce37c673b4da826aebd04f1e11f76b1aed623a5fdb62f4f0 +size 2263006 diff --git a/train/9c7cd9da-1ae7-4f71-a995-9300d3f5d511.png b/train/9c7cd9da-1ae7-4f71-a995-9300d3f5d511.png new file mode 100644 index 0000000000000000000000000000000000000000..0b8f8c77c47074e83f425f7b358932079d261b74 --- /dev/null +++ b/train/9c7cd9da-1ae7-4f71-a995-9300d3f5d511.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac7657d139eae31383dabd658df171ce7a7b2fb7bc7efa1b760a79160ad931d9 +size 2156232 diff --git a/train/9cd577a9-5b2a-4764-97c6-88ce42974544.png b/train/9cd577a9-5b2a-4764-97c6-88ce42974544.png new file mode 100644 index 0000000000000000000000000000000000000000..6f0054b0ecdac46376f22a1d0414901357122cb9 --- /dev/null +++ b/train/9cd577a9-5b2a-4764-97c6-88ce42974544.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:046567599e5dc22e5cf4c2b5891750c988cca5fb0e467d430fa5d6ac0c7973d6 +size 2121441 diff --git a/train/9cd9d444-ded0-446b-a014-d555b18461ca.png b/train/9cd9d444-ded0-446b-a014-d555b18461ca.png new file mode 100644 index 0000000000000000000000000000000000000000..802dd286ccac53c18c2973fefe19bbf3e1b70b14 --- /dev/null +++ b/train/9cd9d444-ded0-446b-a014-d555b18461ca.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5a290ff00808b2573a32fb6eec00015598233b7dbd67d9221860129d8f0c509 +size 2121649 diff --git a/train/9cdfe30c-4217-4ce3-b791-de8fbce368fc.png b/train/9cdfe30c-4217-4ce3-b791-de8fbce368fc.png new file mode 100644 index 0000000000000000000000000000000000000000..f2f9f4280b30d65cebc083e14bb6aa0ad7d1977c --- /dev/null +++ b/train/9cdfe30c-4217-4ce3-b791-de8fbce368fc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c06bbe435b6b9425958cb1fee3c6cf85a5dda12aeae0d080098b53888cbf6d +size 2099438 diff --git a/train/9d0ae7f2-bab6-4d49-bc8c-ff02ad9bb484.png b/train/9d0ae7f2-bab6-4d49-bc8c-ff02ad9bb484.png new file mode 100644 index 0000000000000000000000000000000000000000..a9c96d17d5124037abb9f30eda83fff98f64f79b --- /dev/null +++ b/train/9d0ae7f2-bab6-4d49-bc8c-ff02ad9bb484.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a5d87afc621a24b490f2e65765d811b2db3ae9c583acbc6c81b59dbb36d39c +size 2179335 diff --git a/train/9d6ab902-76ef-4b0d-a105-0de3b532e437.png b/train/9d6ab902-76ef-4b0d-a105-0de3b532e437.png new file mode 100644 index 0000000000000000000000000000000000000000..ae6e6ab5703eba8819a5fb88d42f78d43da2c5b0 --- /dev/null +++ b/train/9d6ab902-76ef-4b0d-a105-0de3b532e437.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:140b9ba2bf7bdb00906f68912cac8c837e9327cb4d8cb1fda15ec63f78858d8f +size 1970979 diff --git a/train/9d905a25-75db-478c-940c-5328513e4184.png b/train/9d905a25-75db-478c-940c-5328513e4184.png new file mode 100644 index 0000000000000000000000000000000000000000..75668fcfffd0dadc4dd6a6f94d14c9f45756f999 --- /dev/null +++ b/train/9d905a25-75db-478c-940c-5328513e4184.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:872af02314d5a6056148d98d7e91cf4bc2078ab1aae8a15ce26c118db34fe47d +size 2090699 diff --git a/train/9dcd1ef5-74f0-4055-8360-ef6e04578c4c.png b/train/9dcd1ef5-74f0-4055-8360-ef6e04578c4c.png new file mode 100644 index 0000000000000000000000000000000000000000..f95bccafdcbefa8b5f9147c4d196155987301fbc --- /dev/null +++ b/train/9dcd1ef5-74f0-4055-8360-ef6e04578c4c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44b77b26c7c34dc90c048cdd9e46421affe4065238674a79d4f0b4aa797948b5 +size 2207423 diff --git a/train/9e1bb8ad-f72f-4596-9daa-6cd154efa72f.png b/train/9e1bb8ad-f72f-4596-9daa-6cd154efa72f.png new file mode 100644 index 0000000000000000000000000000000000000000..51be1a1e4c34facbb92bb3ad0ff2f1d21281bf99 --- /dev/null +++ b/train/9e1bb8ad-f72f-4596-9daa-6cd154efa72f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573f287ca9032bed3b8689226fcca40899df14abbf79062c1b09758d1c983a2c +size 2049844 diff --git a/train/9e4b4847-251f-470a-aa0f-a3338d079311.png b/train/9e4b4847-251f-470a-aa0f-a3338d079311.png new file mode 100644 index 0000000000000000000000000000000000000000..4082554ee8c191736397789d53aa1cdd6866075d --- /dev/null +++ b/train/9e4b4847-251f-470a-aa0f-a3338d079311.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7de6497bb7fa8d303bfdf534c2fe7ded5695b5c5be096673be4c0d9f89268107 +size 2143508 diff --git a/train/9e4d2d45-2a5c-44e1-8549-897f8093cb71.png b/train/9e4d2d45-2a5c-44e1-8549-897f8093cb71.png new file mode 100644 index 0000000000000000000000000000000000000000..f235ac57f8299ae7b1df07798dc7cfea03f2f65f --- /dev/null +++ b/train/9e4d2d45-2a5c-44e1-8549-897f8093cb71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e02b6640083d6e8ec86da4b6d5f33d25e98ca30af5e71d795cc39be2801cb48d +size 2029558 diff --git a/train/9e76abce-423c-485e-8a71-aa0dcc1217de.png b/train/9e76abce-423c-485e-8a71-aa0dcc1217de.png new file mode 100644 index 0000000000000000000000000000000000000000..a9893751caaf3beb81c05d6aeda3adffc29a1abc --- /dev/null +++ b/train/9e76abce-423c-485e-8a71-aa0dcc1217de.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be11347fa16d7517bc3aa185d2089d1e88639a65f51fa6b6cad0a9fb82ac0a97 +size 2174290 diff --git a/train/9f0253fe-7f96-46af-aad0-bf194abddb4f.png b/train/9f0253fe-7f96-46af-aad0-bf194abddb4f.png new file mode 100644 index 0000000000000000000000000000000000000000..f76d057bbb519f6574f6878ebdda184796ef56d6 --- /dev/null +++ b/train/9f0253fe-7f96-46af-aad0-bf194abddb4f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11272927a65cd1e16835f46cb382ac1e765eef75c04c5827eefe0dce04376d9f +size 2066212 diff --git a/train/9f37245a-d6db-419c-9e51-3b64b8567b07.png b/train/9f37245a-d6db-419c-9e51-3b64b8567b07.png new file mode 100644 index 0000000000000000000000000000000000000000..7755422f75fb9f6c33259b54550356e1a0a16763 --- /dev/null +++ b/train/9f37245a-d6db-419c-9e51-3b64b8567b07.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c7f984260fc6bc9488f18734a533ce61593c86053b993976ba3a47c0eabdee1 +size 2164694 diff --git a/train/9f50e84f-5c2a-4eeb-bbdc-14e02a1217bb.png b/train/9f50e84f-5c2a-4eeb-bbdc-14e02a1217bb.png new file mode 100644 index 0000000000000000000000000000000000000000..a7daaeb67dc9f44d2c4ed747177bf8c9786da108 --- /dev/null +++ b/train/9f50e84f-5c2a-4eeb-bbdc-14e02a1217bb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d01a6715ce8410897a252bdb42153ef53cc470f1ff918aa3604544b98bfaf482 +size 2179690 diff --git a/train/9f54de98-c87a-4a57-a236-edea68d5a351.png b/train/9f54de98-c87a-4a57-a236-edea68d5a351.png new file mode 100644 index 0000000000000000000000000000000000000000..66dff0ebb20b65bb461d0959d6b24b498ba28b4f --- /dev/null +++ b/train/9f54de98-c87a-4a57-a236-edea68d5a351.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:117c2487fd85c938180f3b84ae0e76be3039266b9893bd764d6ca5c15fc0ab4b +size 2146457 diff --git a/train/9f5a2a89-82f0-4d4a-b8dc-e067536ce404.png b/train/9f5a2a89-82f0-4d4a-b8dc-e067536ce404.png new file mode 100644 index 0000000000000000000000000000000000000000..c5fc811732e78642b888af09a79576607317c337 --- /dev/null +++ b/train/9f5a2a89-82f0-4d4a-b8dc-e067536ce404.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c75c98e841a5d4feb48c6d81283c638bbadd0ed052ba2f4f312b350126bac5b +size 2143523 diff --git a/train/9f5c4e45-212e-4b62-9850-0febada032c2.png b/train/9f5c4e45-212e-4b62-9850-0febada032c2.png new file mode 100644 index 0000000000000000000000000000000000000000..2ec281e1169477225e061403ff5d1cd49ef37ac5 --- /dev/null +++ b/train/9f5c4e45-212e-4b62-9850-0febada032c2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac4fc6850d916f875752700a4256f840de7a89becd93e4efa9dd7aeb617e66c +size 2124137 diff --git a/train/9f9a06ea-c967-4089-9aa0-82590d504f7e.png b/train/9f9a06ea-c967-4089-9aa0-82590d504f7e.png new file mode 100644 index 0000000000000000000000000000000000000000..e29185aecf52a109c105f4d4ed5550be2673af5f --- /dev/null +++ b/train/9f9a06ea-c967-4089-9aa0-82590d504f7e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3acae9d64c25b135b87e9cc469ab9b48feba392b9f1b9d1af7c4ddb4a957bc58 +size 2179445 diff --git a/train/9fa80ccb-69f4-4f54-85b1-f6a1486f8bfc.png b/train/9fa80ccb-69f4-4f54-85b1-f6a1486f8bfc.png new file mode 100644 index 0000000000000000000000000000000000000000..07d18e19d182824c2f29f6b192b75fb14ed42aaf --- /dev/null +++ b/train/9fa80ccb-69f4-4f54-85b1-f6a1486f8bfc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb2959cee6a69c2e5197b465b5082ceb2ded29387a3f4add446adde4169b8b87 +size 2143573 diff --git a/train/9fca78e1-4e5f-4a10-9bc9-7a82318aedcd.png b/train/9fca78e1-4e5f-4a10-9bc9-7a82318aedcd.png new file mode 100644 index 0000000000000000000000000000000000000000..962143cbde4547580f60128e75c14cd7da71858c --- /dev/null +++ b/train/9fca78e1-4e5f-4a10-9bc9-7a82318aedcd.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b7b9f8a09e82a2b83bffc84f5ce94f776670186a4ed7b4e527c8ea8212cca9 +size 2202159 diff --git a/train/9fe66dfe-0f13-4e17-89f5-b31ce800a346.png b/train/9fe66dfe-0f13-4e17-89f5-b31ce800a346.png new file mode 100644 index 0000000000000000000000000000000000000000..db9ccd98ed646cfa9634df07480c0b93112905f4 --- /dev/null +++ b/train/9fe66dfe-0f13-4e17-89f5-b31ce800a346.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc33c59596dcc0f9b4b0f917e03708a21d0d87966df390062cab8efc820b4ec +size 2239724 diff --git a/train/a10a3588-8993-426d-a844-4e3835481727.png b/train/a10a3588-8993-426d-a844-4e3835481727.png new file mode 100644 index 0000000000000000000000000000000000000000..4269f995d89a7c1af67dd16348a3e4883658706b --- /dev/null +++ b/train/a10a3588-8993-426d-a844-4e3835481727.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63287ffd296d1e7d29d48aa62354d4c49acb0989cbb9420fc96f7247a40ef06f +size 2265891 diff --git a/train/a15202b7-f818-4359-89fd-a2ad3228342b.png b/train/a15202b7-f818-4359-89fd-a2ad3228342b.png new file mode 100644 index 0000000000000000000000000000000000000000..e5e62c4e63862b44bbb4c1b2d877ef63bab2bada --- /dev/null +++ b/train/a15202b7-f818-4359-89fd-a2ad3228342b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42c4c83d7e172c72bf867c5c54f45ab96fb4fad21ae904d99cbccdc66e94c9a1 +size 2224711 diff --git a/train/a16f0320-6e23-484a-848e-f9208443fff6.png b/train/a16f0320-6e23-484a-848e-f9208443fff6.png new file mode 100644 index 0000000000000000000000000000000000000000..a679176397a2f885b5d75b37954d86af3054d4b1 --- /dev/null +++ b/train/a16f0320-6e23-484a-848e-f9208443fff6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21ef59adc2bdb21bdfdf4b8d95f9c31dd4bfda9beb78addeee01ab6dbf3ac9d6 +size 2081981 diff --git a/train/a1a518a4-a028-4d4e-bda3-e022a49a1b19.png b/train/a1a518a4-a028-4d4e-bda3-e022a49a1b19.png new file mode 100644 index 0000000000000000000000000000000000000000..81a385705b6e29047cc69cc62274a52549ad7b2b --- /dev/null +++ b/train/a1a518a4-a028-4d4e-bda3-e022a49a1b19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65d349fbca8eff95e7169d2df8d6b5ce49bf909eb1ae1265e0ff77383f86f80 +size 2074440 diff --git a/train/a1ba63f8-23fc-476d-86ac-c40a02e477c9.png b/train/a1ba63f8-23fc-476d-86ac-c40a02e477c9.png new file mode 100644 index 0000000000000000000000000000000000000000..97cb8321a83a2d8b47c1e04bd1ed5ef1b9e633c5 --- /dev/null +++ b/train/a1ba63f8-23fc-476d-86ac-c40a02e477c9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d2efe85a036ce0dc485982f93cf02f39944b7addd78cc9ce3218ab1c1610e0a +size 2093016 diff --git a/train/a1e83891-e67f-4e65-8b84-7f99fe890d30.png b/train/a1e83891-e67f-4e65-8b84-7f99fe890d30.png new file mode 100644 index 0000000000000000000000000000000000000000..06785425e8734cd1b5820e891eec52abb3998da6 --- /dev/null +++ b/train/a1e83891-e67f-4e65-8b84-7f99fe890d30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:596dbabd6092d3bfc109c6a941ed4dd457708bca36091c22deaf200cf3f0ed43 +size 2098226 diff --git a/train/a1ee2372-cd5f-4497-8535-eba0288961f5.png b/train/a1ee2372-cd5f-4497-8535-eba0288961f5.png new file mode 100644 index 0000000000000000000000000000000000000000..1582c3a2c8b26a1b602303f47f3bf5b4cf1a99e1 --- /dev/null +++ b/train/a1ee2372-cd5f-4497-8535-eba0288961f5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d27863e4a0ed3e3107e843becb2c90832b03c1fe9b5c119d494fac846b7882f +size 2266099 diff --git a/train/a1fb193f-b022-4335-9b7b-b2352e8b962d.png b/train/a1fb193f-b022-4335-9b7b-b2352e8b962d.png new file mode 100644 index 0000000000000000000000000000000000000000..8c8706218979ddb00f57ebb77ffb6b6f97c1518a --- /dev/null +++ b/train/a1fb193f-b022-4335-9b7b-b2352e8b962d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bebdfc5f6f89829bb4a189a7516ada4891d6e0a9ad386e5388c3f1159d979690 +size 2156082 diff --git a/train/a2499ef2-fcc5-4933-a35a-078eddeba84d.png b/train/a2499ef2-fcc5-4933-a35a-078eddeba84d.png new file mode 100644 index 0000000000000000000000000000000000000000..37e4f1ee3a7f09d9240e26a26627f51f15611b42 --- /dev/null +++ b/train/a2499ef2-fcc5-4933-a35a-078eddeba84d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:007ab513498f2ffc88772123ca52cb0f5c6a2a6e720155f430b229cf1cfad400 +size 2026943 diff --git a/train/a25de7b3-88df-4a67-a430-5a77cc30e4dd.png b/train/a25de7b3-88df-4a67-a430-5a77cc30e4dd.png new file mode 100644 index 0000000000000000000000000000000000000000..839ec55bc9f6a43170e0b04db7e455fbbf5161a6 --- /dev/null +++ b/train/a25de7b3-88df-4a67-a430-5a77cc30e4dd.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c90413d07d8a5528b68df4e9b95220ec51c9e8f7cbe3ebd2175a14d2ff11b6c +size 2029036 diff --git a/train/a29fa34e-c25a-467d-beca-e776d0250d0e.png b/train/a29fa34e-c25a-467d-beca-e776d0250d0e.png new file mode 100644 index 0000000000000000000000000000000000000000..5cd37e48c02635089c9101bae5225e5a7457670a --- /dev/null +++ b/train/a29fa34e-c25a-467d-beca-e776d0250d0e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ece92d25e8863b98fc082f3648b39cc5cd2ad240c3b4a11104773caa2f7bbb0 +size 2144772 diff --git a/train/a3919f98-54fb-49d3-b342-292dc8f7b3a1.png b/train/a3919f98-54fb-49d3-b342-292dc8f7b3a1.png new file mode 100644 index 0000000000000000000000000000000000000000..811d46be3ea915202a6a20f1605b162d04b0df4e --- /dev/null +++ b/train/a3919f98-54fb-49d3-b342-292dc8f7b3a1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc75165abc5435179610d9c981c09de74a874917350975948b3feb62bc1fb1a +size 1988702 diff --git a/train/a39ca4e1-eeb2-4dab-9308-acc7c2a07776.png b/train/a39ca4e1-eeb2-4dab-9308-acc7c2a07776.png new file mode 100644 index 0000000000000000000000000000000000000000..3729131e97ff7c8307940a664f79dd437a67eb9e --- /dev/null +++ b/train/a39ca4e1-eeb2-4dab-9308-acc7c2a07776.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c63d7d44fcad9728909e8ce3275a998d3d02517c4bfc95d1e31d1a9485154855 +size 2067575 diff --git a/train/a3b01464-b382-480e-837f-c3b275503a87.png b/train/a3b01464-b382-480e-837f-c3b275503a87.png new file mode 100644 index 0000000000000000000000000000000000000000..3d93d709a745ef81a3a964c00404568422a5b7a6 --- /dev/null +++ b/train/a3b01464-b382-480e-837f-c3b275503a87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d12a17a347fec34f793245153c9630a5deb710f0cbcc3440e8c6d6fa54feb79 +size 2154771 diff --git a/train/a3ceec89-b697-49f3-bc64-6db7bfde3296.png b/train/a3ceec89-b697-49f3-bc64-6db7bfde3296.png new file mode 100644 index 0000000000000000000000000000000000000000..5f973c5d090a30bae7fae3726bcdc33c295c58d0 --- /dev/null +++ b/train/a3ceec89-b697-49f3-bc64-6db7bfde3296.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d04014ab7f201bf3e8aff9fde9027d0e455e0377594080ed121a1db97bcc7000 +size 2127300 diff --git a/train/a40edfc1-7c48-49bc-a899-b6b6fecedd40.png b/train/a40edfc1-7c48-49bc-a899-b6b6fecedd40.png new file mode 100644 index 0000000000000000000000000000000000000000..9b819c37f0550d46e54053b18044823e28dfe5db --- /dev/null +++ b/train/a40edfc1-7c48-49bc-a899-b6b6fecedd40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:898602b2e83fceed2c032619d766e8b0ce9cba2661f66d000670d995fddffed4 +size 2063324 diff --git a/train/a59b1a87-93f8-4c08-9731-e4028982e43e.png b/train/a59b1a87-93f8-4c08-9731-e4028982e43e.png new file mode 100644 index 0000000000000000000000000000000000000000..c3c48328616fb318772b75b61808a64438cc8b44 --- /dev/null +++ b/train/a59b1a87-93f8-4c08-9731-e4028982e43e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9680b37e1a066333aa83c0decff039b3e4214bd68be98232e8a64bf114edcfb9 +size 2202892 diff --git a/train/a5b76c0b-0dfe-4604-9fa8-6850bc203240.png b/train/a5b76c0b-0dfe-4604-9fa8-6850bc203240.png new file mode 100644 index 0000000000000000000000000000000000000000..d54c03bd9779d27018d1cb6f58bf398bd80a9ae3 --- /dev/null +++ b/train/a5b76c0b-0dfe-4604-9fa8-6850bc203240.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99b9d60eb193a1a3c0625c31d6a2cbfaec6c6c4e31fd9d23fdc9e56fa66ac3a7 +size 2152651 diff --git a/train/a66622e5-53d2-46e3-ad54-c02b3efc931a.png b/train/a66622e5-53d2-46e3-ad54-c02b3efc931a.png new file mode 100644 index 0000000000000000000000000000000000000000..5db7259ff727ceed0a72c9be5eeab791c079e0c2 --- /dev/null +++ b/train/a66622e5-53d2-46e3-ad54-c02b3efc931a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d5695aca51c073bd976cdb8aebb905f857dd4939726d279a9e5b5268352bd4c +size 2136073 diff --git a/train/a673a596-066f-4ca4-9969-b379f168ec55.png b/train/a673a596-066f-4ca4-9969-b379f168ec55.png new file mode 100644 index 0000000000000000000000000000000000000000..4f356aeba9903065d5cd1d8b837a05370d2a0214 --- /dev/null +++ b/train/a673a596-066f-4ca4-9969-b379f168ec55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a33db975ead62f89664aff7bf5ea124a11fc584fc2139746cc5cf14fe138083 +size 2121178 diff --git a/train/a6828401-a9d1-4c01-9bcb-891eecc7bbc0.png b/train/a6828401-a9d1-4c01-9bcb-891eecc7bbc0.png new file mode 100644 index 0000000000000000000000000000000000000000..510550d0f60595f0105a190e9b8066b4ee142b8c --- /dev/null +++ b/train/a6828401-a9d1-4c01-9bcb-891eecc7bbc0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bbd2099b292d67fab355a75058d8769fdc6c2b7ae23bb7109f786d8a5d7557f +size 2127231 diff --git a/train/a6d28d88-d512-48f1-9900-190c98ed6073.png b/train/a6d28d88-d512-48f1-9900-190c98ed6073.png new file mode 100644 index 0000000000000000000000000000000000000000..0068c8007a72f74979ab2339f32544160497858a --- /dev/null +++ b/train/a6d28d88-d512-48f1-9900-190c98ed6073.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a20961e6a64000897782febcfa6475ee0d4f91c428928fd160866327db8e28c7 +size 2242609 diff --git a/train/a6df4193-9424-4200-8525-f3eb0d61faae.png b/train/a6df4193-9424-4200-8525-f3eb0d61faae.png new file mode 100644 index 0000000000000000000000000000000000000000..2b178c634f0efee270312c0ce5be605d3e4fc923 --- /dev/null +++ b/train/a6df4193-9424-4200-8525-f3eb0d61faae.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4808806a886db55adb30c1a1090c50d70c1e7e8210e9ab6b3d8cd94f86e39b +size 2195046 diff --git a/train/a6f5c9f9-a7c0-48eb-b367-041130fc3933.png b/train/a6f5c9f9-a7c0-48eb-b367-041130fc3933.png new file mode 100644 index 0000000000000000000000000000000000000000..07795f4344245ccfd1b8604752569dc0b5799a07 --- /dev/null +++ b/train/a6f5c9f9-a7c0-48eb-b367-041130fc3933.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e7529fcdfd84cb91c9b9449e7470a1b93637466309e7f8f9ff2b93ff199b1b +size 2012710 diff --git a/train/a709ea2e-b192-4481-9efb-fb6c8fba458b.png b/train/a709ea2e-b192-4481-9efb-fb6c8fba458b.png new file mode 100644 index 0000000000000000000000000000000000000000..59a633099c0636c5eeb1e94bbf17c81b9379a8af --- /dev/null +++ b/train/a709ea2e-b192-4481-9efb-fb6c8fba458b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c217782475907a64c76bb3f280920bfb9bfb07aa7f3d5471ff331036a8c71d +size 2169025 diff --git a/train/a76ca378-a893-406b-ab2b-b08ab6036dc6.png b/train/a76ca378-a893-406b-ab2b-b08ab6036dc6.png new file mode 100644 index 0000000000000000000000000000000000000000..91dc1270c8489b634b5b8ff09b277e451f401785 --- /dev/null +++ b/train/a76ca378-a893-406b-ab2b-b08ab6036dc6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4166f09ec68d5f572436396386d4c0550256529482de17f6630e95fbeb762ed6 +size 2095702 diff --git a/train/a78c8efb-a8c1-4372-b3e7-c20c93691953.png b/train/a78c8efb-a8c1-4372-b3e7-c20c93691953.png new file mode 100644 index 0000000000000000000000000000000000000000..5161bfaddf37b52de330bca192f2020e2169d872 --- /dev/null +++ b/train/a78c8efb-a8c1-4372-b3e7-c20c93691953.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7559f983d5922b962ed44f3639c8c99cbf94adfc96ff126719aa950a1ad52895 +size 2001568 diff --git a/train/a7961134-e838-4661-be8d-99bc63507b7a.png b/train/a7961134-e838-4661-be8d-99bc63507b7a.png new file mode 100644 index 0000000000000000000000000000000000000000..a17e52128a0513dd8406857935434a045df34412 --- /dev/null +++ b/train/a7961134-e838-4661-be8d-99bc63507b7a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e847174334c13d4198be6eea60f7edc3ad6d24ccd5ead8d8addee740b3a4decc +size 2117098 diff --git a/train/a7a32c53-8d31-4ec3-a79e-c917aa558d81.png b/train/a7a32c53-8d31-4ec3-a79e-c917aa558d81.png new file mode 100644 index 0000000000000000000000000000000000000000..1b55ba8fcf09116d572cdbce11cf0799bd4cabf9 --- /dev/null +++ b/train/a7a32c53-8d31-4ec3-a79e-c917aa558d81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3bc0941572dbfc5f5dcf193df73067a2f97e232cb80347faa34df0481ef4ca2 +size 2155353 diff --git a/train/a7ec9505-5b91-46cf-b75b-20ccb9f483d9.png b/train/a7ec9505-5b91-46cf-b75b-20ccb9f483d9.png new file mode 100644 index 0000000000000000000000000000000000000000..b9ff31244944b734930138e4ca456c5553d23a20 --- /dev/null +++ b/train/a7ec9505-5b91-46cf-b75b-20ccb9f483d9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:907a1193a24274a257fccef83b1decd02da0b6f23bf2cd10891a6d196c220663 +size 2084557 diff --git a/train/a814615b-8baa-4489-8335-1f5e097578d1.png b/train/a814615b-8baa-4489-8335-1f5e097578d1.png new file mode 100644 index 0000000000000000000000000000000000000000..68048bb7a70ef88bf0948e21211100dac9e73da7 --- /dev/null +++ b/train/a814615b-8baa-4489-8335-1f5e097578d1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54cb8c6a2ae55a4b61dd33a41d59fe16dc411b2ec5edb246d943c0d7f8bd0e3 +size 2055049 diff --git a/train/a86cfba4-c045-4aaf-9c0f-909e85fc4f11.png b/train/a86cfba4-c045-4aaf-9c0f-909e85fc4f11.png new file mode 100644 index 0000000000000000000000000000000000000000..cf04b37b652958b8e1fb5d24960fafa10fbb94da --- /dev/null +++ b/train/a86cfba4-c045-4aaf-9c0f-909e85fc4f11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:819ed9db092c3b86ff697d225f0c3565de81d29e9a032577f1a82383c9bcb824 +size 2190995 diff --git a/train/a8895ae4-348c-44ae-b782-1889a81c0713.png b/train/a8895ae4-348c-44ae-b782-1889a81c0713.png new file mode 100644 index 0000000000000000000000000000000000000000..ea947a9201a997defba348cc034630cb9c50894c --- /dev/null +++ b/train/a8895ae4-348c-44ae-b782-1889a81c0713.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c47f05783a8a5e2fb261f72499927449bdb5db80e2e54aaf89fde1da963aaf7 +size 2038017 diff --git a/train/a8a29545-dc9a-4ab7-861c-5e7e80e75cce.png b/train/a8a29545-dc9a-4ab7-861c-5e7e80e75cce.png new file mode 100644 index 0000000000000000000000000000000000000000..553e9726f6a4c9bcceada865b268a0f991f5c265 --- /dev/null +++ b/train/a8a29545-dc9a-4ab7-861c-5e7e80e75cce.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29cce678c4f3a44d913dc63580853b8a3de097b92cbe0ee189c7120a4d73b00f +size 2131904 diff --git a/train/a8aa685d-b6f5-4b84-a89a-70704d0f49ee.png b/train/a8aa685d-b6f5-4b84-a89a-70704d0f49ee.png new file mode 100644 index 0000000000000000000000000000000000000000..5191c8c4c68ee308b0993fb67997405e1d99b3ee --- /dev/null +++ b/train/a8aa685d-b6f5-4b84-a89a-70704d0f49ee.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8ae64b9838dda2d110dff0aa730efe4775f2f39fc9852d06aa6c8215358b6cf +size 2122158 diff --git a/train/a8ced64c-b4c9-43e7-b8ef-78b8c3b604c4.png b/train/a8ced64c-b4c9-43e7-b8ef-78b8c3b604c4.png new file mode 100644 index 0000000000000000000000000000000000000000..4efac34f7f5232e19bb77861ca55d8fd205e4918 --- /dev/null +++ b/train/a8ced64c-b4c9-43e7-b8ef-78b8c3b604c4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77df4d5bf7fcda105ec5445a9c9e9ab660d82957ecd4fb8a85002c940877a55e +size 2131430 diff --git a/train/a8f21a34-0e86-4036-a3be-9fe67037ce4a.png b/train/a8f21a34-0e86-4036-a3be-9fe67037ce4a.png new file mode 100644 index 0000000000000000000000000000000000000000..a70d1e7671ac459df451484c4ebfaef6cc054c9c --- /dev/null +++ b/train/a8f21a34-0e86-4036-a3be-9fe67037ce4a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:533fbfbe209556a7bfb04c0fc8681a86ce1cfe1cece4dca54b3d3d001eeea62f +size 2189094 diff --git a/train/a9163e27-eae1-4088-98a0-d4b0799d19b1.png b/train/a9163e27-eae1-4088-98a0-d4b0799d19b1.png new file mode 100644 index 0000000000000000000000000000000000000000..8045b8467d51fe1583483857fb1df7c3c8f4ad32 --- /dev/null +++ b/train/a9163e27-eae1-4088-98a0-d4b0799d19b1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab1a0fbd43157efae2d1d82b1b7c868a360343d308d742ccef0d62b189263cd5 +size 2039873 diff --git a/train/a92abe5d-b71b-465a-bc19-5f1d01ea749a.png b/train/a92abe5d-b71b-465a-bc19-5f1d01ea749a.png new file mode 100644 index 0000000000000000000000000000000000000000..40fb1b48c922a43795b2b135bcd4b5230a4cb258 --- /dev/null +++ b/train/a92abe5d-b71b-465a-bc19-5f1d01ea749a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52f5df9dc6783efdb476e39dce0bc634b784e67f743fe0de7455640ec5fedf1b +size 2171905 diff --git a/train/a97236f3-ea66-40d4-b08b-fe2c1186a711.png b/train/a97236f3-ea66-40d4-b08b-fe2c1186a711.png new file mode 100644 index 0000000000000000000000000000000000000000..7cbf03d0c09b97a449b60ff6e8bb5a23cea51f48 --- /dev/null +++ b/train/a97236f3-ea66-40d4-b08b-fe2c1186a711.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:508f2adff59caae2777d0359560df970dbbc13643804c462c3898eeea1859b74 +size 2061070 diff --git a/train/a97c5d83-15f4-4e1d-b019-fa49e169b614.png b/train/a97c5d83-15f4-4e1d-b019-fa49e169b614.png new file mode 100644 index 0000000000000000000000000000000000000000..ae93263c31b535a2a7723a8b7ccf6556ab8d466b --- /dev/null +++ b/train/a97c5d83-15f4-4e1d-b019-fa49e169b614.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eea84378add92cc6100326dc4442613627ca8f83c4022d94ebb5a964a0835ceb +size 2052668 diff --git a/train/aa0b6d37-d170-421b-a467-ce844c2ae8d7.png b/train/aa0b6d37-d170-421b-a467-ce844c2ae8d7.png new file mode 100644 index 0000000000000000000000000000000000000000..96f394b8c9dbc8cde8aa425e018e8ec2100eccd3 --- /dev/null +++ b/train/aa0b6d37-d170-421b-a467-ce844c2ae8d7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7d0ed55c76e9dc9a5aea025390bfccde76754ad8a1bfc110e7325699ece2754 +size 2112862 diff --git a/train/aa14daa8-98f0-4432-bd6b-04de11617fae.png b/train/aa14daa8-98f0-4432-bd6b-04de11617fae.png new file mode 100644 index 0000000000000000000000000000000000000000..4d54a1f03e4d0829a679de60c5b02946aa73c2db --- /dev/null +++ b/train/aa14daa8-98f0-4432-bd6b-04de11617fae.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7237a7bf6bdcba1a1d0ba2b81b4694486b865845f15b0279be1895c05b6bfec +size 2095470 diff --git a/train/aa6943dd-d376-4f62-95b1-4da41cbd7e7c.png b/train/aa6943dd-d376-4f62-95b1-4da41cbd7e7c.png new file mode 100644 index 0000000000000000000000000000000000000000..2b57fec008fdb537e2f8f95802e9813f1df5420f --- /dev/null +++ b/train/aa6943dd-d376-4f62-95b1-4da41cbd7e7c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a3d483b04032953660779c55c224c0d2bc490183efeb57ea80096b76998b56 +size 2104677 diff --git a/train/aa7ca95b-17e4-44b2-b209-d79535f9b534.png b/train/aa7ca95b-17e4-44b2-b209-d79535f9b534.png new file mode 100644 index 0000000000000000000000000000000000000000..342c3956885694a66ae90d8d8c39027ed7dcb725 --- /dev/null +++ b/train/aa7ca95b-17e4-44b2-b209-d79535f9b534.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f86b2c88aedf0a59c44f704f32e4457591a8ecd72615058b335ebf1dafb9dec7 +size 2095080 diff --git a/train/aad1ad38-e89c-4584-a0f4-f305bf0b696a.png b/train/aad1ad38-e89c-4584-a0f4-f305bf0b696a.png new file mode 100644 index 0000000000000000000000000000000000000000..4cf750567eb82ee54f3f2989090b52fe4eacfe22 --- /dev/null +++ b/train/aad1ad38-e89c-4584-a0f4-f305bf0b696a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5afeb9ffae9bdf4dd275104d3ea7ff87c6392bb09529f8873e9ca0b49327596f +size 2228624 diff --git a/train/abb4aaf4-bb42-4832-9e50-c5e006306082.png b/train/abb4aaf4-bb42-4832-9e50-c5e006306082.png new file mode 100644 index 0000000000000000000000000000000000000000..2e4224a0a82c59c258822e84043ec35430951e3a --- /dev/null +++ b/train/abb4aaf4-bb42-4832-9e50-c5e006306082.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33ac9bde09f2882a3b55a2774a9f13f6ef3f30ea46ed5b6be60e20463f4483b9 +size 2158339 diff --git a/train/abcefeac-21a2-4fe2-a958-f200b2e6b3f2.png b/train/abcefeac-21a2-4fe2-a958-f200b2e6b3f2.png new file mode 100644 index 0000000000000000000000000000000000000000..d0dd5645f880a930216e9e11c65c50d0542bd0c1 --- /dev/null +++ b/train/abcefeac-21a2-4fe2-a958-f200b2e6b3f2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7d286a312d6d56c859b525ef2f40a2414cd29bd1021de389e6142a9fc1de9f7 +size 1947063 diff --git a/train/abdc8b0f-e7ec-4b1d-ac96-c348d435b8b9.png b/train/abdc8b0f-e7ec-4b1d-ac96-c348d435b8b9.png new file mode 100644 index 0000000000000000000000000000000000000000..c1ef27dc24e450e1c9b42cd178802ba22c991734 --- /dev/null +++ b/train/abdc8b0f-e7ec-4b1d-ac96-c348d435b8b9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe816c25de1b69b588c6e0276b49b4a41d6ab5ab4b4050e928511a11f02301f +size 2076516 diff --git a/train/abf89c73-6b54-4050-a9fb-ea08fa1362c9.png b/train/abf89c73-6b54-4050-a9fb-ea08fa1362c9.png new file mode 100644 index 0000000000000000000000000000000000000000..3a1263cbea64f7c7ae0e4a84bcde43b4125e7bd9 --- /dev/null +++ b/train/abf89c73-6b54-4050-a9fb-ea08fa1362c9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f5c845ecba0034f4a3370857319cd32acbbfe5e02adca9b93c5fde85bedf0a4 +size 2177337 diff --git a/train/ac664a74-faa2-4329-afbf-799cbf901db1.png b/train/ac664a74-faa2-4329-afbf-799cbf901db1.png new file mode 100644 index 0000000000000000000000000000000000000000..da957eaa666008a911fdf036c4e1f78df4b15d44 --- /dev/null +++ b/train/ac664a74-faa2-4329-afbf-799cbf901db1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36bb4a40fbed5495335b29bbd9880c94a738fe5ae3b8f081c58457f2faa41c54 +size 2208896 diff --git a/train/ac7a7d2d-3998-4609-acf1-f867b679d756.png b/train/ac7a7d2d-3998-4609-acf1-f867b679d756.png new file mode 100644 index 0000000000000000000000000000000000000000..2ef540e3f444be4c60a3b14909ef5f99e7c4980d --- /dev/null +++ b/train/ac7a7d2d-3998-4609-acf1-f867b679d756.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83393942b0f6b321520b040fc014e2dfa99f760ed8b352530e2b0354531fbd71 +size 2092493 diff --git a/train/ac8c1a12-194a-45fc-b559-f8d23787a385.png b/train/ac8c1a12-194a-45fc-b559-f8d23787a385.png new file mode 100644 index 0000000000000000000000000000000000000000..5bb75256908c1bdbeded3a185237d1000a4393c7 --- /dev/null +++ b/train/ac8c1a12-194a-45fc-b559-f8d23787a385.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b9813f373c2b94b782ae484305551575c9b2d8bca056c9df7cdca8b8358c991 +size 2200913 diff --git a/train/acb52b23-07e0-4fc7-b6c4-340c84e525ed.png b/train/acb52b23-07e0-4fc7-b6c4-340c84e525ed.png new file mode 100644 index 0000000000000000000000000000000000000000..1b1ff60be23861cfc699fb003f12ec596260224c --- /dev/null +++ b/train/acb52b23-07e0-4fc7-b6c4-340c84e525ed.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2de0f5d1275efa19ec1fe9a0ee87bbb063e28d27aff6adaa3c6c64ea3902ccda +size 2002447 diff --git a/train/acf9f7f8-b75d-4957-9f12-8952344a3cda.png b/train/acf9f7f8-b75d-4957-9f12-8952344a3cda.png new file mode 100644 index 0000000000000000000000000000000000000000..a3ccd6eb3e297a057cd3f20d12b27dca83566d93 --- /dev/null +++ b/train/acf9f7f8-b75d-4957-9f12-8952344a3cda.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d59604d64ec39d87f158714e1a50dfd50214fa2c330180506383a00d37ca4bc1 +size 2108676 diff --git a/train/ad4b1cc6-447a-4389-b6f3-7cf371141edf.png b/train/ad4b1cc6-447a-4389-b6f3-7cf371141edf.png new file mode 100644 index 0000000000000000000000000000000000000000..94ea73181014712ec1071597d31b5cc70c78b9c2 --- /dev/null +++ b/train/ad4b1cc6-447a-4389-b6f3-7cf371141edf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314a23e2df28bb33cf7a24d3a5f042f65e694825e4d3ccb8e65ab1d140873dfe +size 2092433 diff --git a/train/ad938b70-3136-4f47-b12a-649966770f9e.png b/train/ad938b70-3136-4f47-b12a-649966770f9e.png new file mode 100644 index 0000000000000000000000000000000000000000..e2f59748cd3a4e6f77347f1530dde00d68c2c056 --- /dev/null +++ b/train/ad938b70-3136-4f47-b12a-649966770f9e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a158ccd39f56924d985954df7fb8d0339caf658af98c443a61ef4f2e063b48c9 +size 2187005 diff --git a/train/ae18c382-528f-4ce3-983c-82b1d9b68c9a.png b/train/ae18c382-528f-4ce3-983c-82b1d9b68c9a.png new file mode 100644 index 0000000000000000000000000000000000000000..ad280dc3cddaf7792b23df39d43b86aa3f4c6f3f --- /dev/null +++ b/train/ae18c382-528f-4ce3-983c-82b1d9b68c9a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6a870b406292794c86573398e00b0a46e62362bdc01af63e357b83e8e631690 +size 2173141 diff --git a/train/ae985773-f8c8-4baf-9b9e-51f77b1e9b73.png b/train/ae985773-f8c8-4baf-9b9e-51f77b1e9b73.png new file mode 100644 index 0000000000000000000000000000000000000000..a0c0547fdbfef0908e279db8e9dfa4dbb763942f --- /dev/null +++ b/train/ae985773-f8c8-4baf-9b9e-51f77b1e9b73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1279d52a87f1542f739bc2e646d6e71cc764dd0568b8aac8a8f3635c4083afb +size 2216120 diff --git a/train/aee1568e-8413-4fea-ba30-c6a34515d1c9.png b/train/aee1568e-8413-4fea-ba30-c6a34515d1c9.png new file mode 100644 index 0000000000000000000000000000000000000000..897d59f0ea4cba54122c4fe7ead6a21815751935 --- /dev/null +++ b/train/aee1568e-8413-4fea-ba30-c6a34515d1c9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd3c2f2773b4f257388a1d03c9f6b60925310f6ec83810ca7605f8f0a17be53c +size 2035509 diff --git a/train/aeead079-ec33-4f71-9be6-0b9319d24987.png b/train/aeead079-ec33-4f71-9be6-0b9319d24987.png new file mode 100644 index 0000000000000000000000000000000000000000..600795b91aa4cc753707091a45f8d04cadd6c16e --- /dev/null +++ b/train/aeead079-ec33-4f71-9be6-0b9319d24987.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c71f79473ad55843701891e3e41990e0d1bc66c37c02f0a26e1582ce859e5757 +size 2084087 diff --git a/train/af6fdf69-ab8b-498c-a22e-ac0ee8f5c9aa.png b/train/af6fdf69-ab8b-498c-a22e-ac0ee8f5c9aa.png new file mode 100644 index 0000000000000000000000000000000000000000..cbbe7c8fc1297cc8121a358c8a8f5b262a05043c --- /dev/null +++ b/train/af6fdf69-ab8b-498c-a22e-ac0ee8f5c9aa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa88099556ac67f7f61a8d902b9a4e46e1ab9ffc15a8514fe905e2117c8e968d +size 2138969 diff --git a/train/af723441-47d1-4490-befb-83733d4e6caa.png b/train/af723441-47d1-4490-befb-83733d4e6caa.png new file mode 100644 index 0000000000000000000000000000000000000000..6884f70d162f200ef776bad7f3fa839f1e1f3a19 --- /dev/null +++ b/train/af723441-47d1-4490-befb-83733d4e6caa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e4e9aa835e7617087077b80982d5279ee8ebbedca115d39fb54649274d7d21 +size 2092005 diff --git a/train/afa5571c-6148-42a2-ac1a-61533ed60b24.png b/train/afa5571c-6148-42a2-ac1a-61533ed60b24.png new file mode 100644 index 0000000000000000000000000000000000000000..bc8174334c472fdd432c39c988373e6f111aeb68 --- /dev/null +++ b/train/afa5571c-6148-42a2-ac1a-61533ed60b24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2120eb464c269e280c9aebdb776f0a96038e5e148747cf8cc7649dd0d0cfeab +size 2091944 diff --git a/train/b01218f4-15d4-42ae-bdae-188f298e7638.png b/train/b01218f4-15d4-42ae-bdae-188f298e7638.png new file mode 100644 index 0000000000000000000000000000000000000000..d4328ab1d9521f04fcf07b30e429942b7d26b392 --- /dev/null +++ b/train/b01218f4-15d4-42ae-bdae-188f298e7638.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06d76fd95e04a01b3826d124e4f58b9d74a332aa47af4c1fe4a104f234d4dc6a +size 2172848 diff --git a/train/b06ed12c-1e63-4caf-b863-de0b5b7d1a38.png b/train/b06ed12c-1e63-4caf-b863-de0b5b7d1a38.png new file mode 100644 index 0000000000000000000000000000000000000000..acdf133b726dc6c5095c3f7386ed9d92ecf4f855 --- /dev/null +++ b/train/b06ed12c-1e63-4caf-b863-de0b5b7d1a38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a876b0400f9d74f400a7f1a222fea5d9771e0a002e5271af95109b674ab97873 +size 2087254 diff --git a/train/b0a63439-ab8e-4359-87b2-dc61a9a1f424.png b/train/b0a63439-ab8e-4359-87b2-dc61a9a1f424.png new file mode 100644 index 0000000000000000000000000000000000000000..9c329507e296fd4a2fc89535f5e7dbd7d5c1c5d1 --- /dev/null +++ b/train/b0a63439-ab8e-4359-87b2-dc61a9a1f424.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e1c9c96b78505833459f5c91fd89d519840dafe325ac15f86c7998e09fcfc2f +size 2171823 diff --git a/train/b0c21b15-c08e-474b-9641-cc951d0bb9e9.png b/train/b0c21b15-c08e-474b-9641-cc951d0bb9e9.png new file mode 100644 index 0000000000000000000000000000000000000000..67747b12460b83e4afcd81cfccd4b06299444e5c --- /dev/null +++ b/train/b0c21b15-c08e-474b-9641-cc951d0bb9e9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d1d7f13853c22e63787a6c36df413ad8650c41a34902f005c65e26638ee3a13 +size 2168151 diff --git a/train/b0cd8f27-3fdf-46a2-831c-c04e037d9971.png b/train/b0cd8f27-3fdf-46a2-831c-c04e037d9971.png new file mode 100644 index 0000000000000000000000000000000000000000..a7bf6a114b25b0f12b25a96ac3961ea67bc8be63 --- /dev/null +++ b/train/b0cd8f27-3fdf-46a2-831c-c04e037d9971.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ac611e4da134e6b8c6d86523b7e0caffaa3862fd46fd296429f3b5ec1935f1 +size 2064205 diff --git a/train/b0f809e5-ae35-4469-8bae-c4d5132df637.png b/train/b0f809e5-ae35-4469-8bae-c4d5132df637.png new file mode 100644 index 0000000000000000000000000000000000000000..066a4032cf4c7f983dc4eff044e5258683bc4f6b --- /dev/null +++ b/train/b0f809e5-ae35-4469-8bae-c4d5132df637.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed69762b34bbd2561ce13274d2d7c128fdda38ecfdcbef5488d7077cb282c71f +size 2160422 diff --git a/train/b2200a5c-bc6b-488f-a984-5af5897dc273.png b/train/b2200a5c-bc6b-488f-a984-5af5897dc273.png new file mode 100644 index 0000000000000000000000000000000000000000..ac503173a2321e1d663e0ec854e4ce25f305365f --- /dev/null +++ b/train/b2200a5c-bc6b-488f-a984-5af5897dc273.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ee7b8edc73093b15d04d1e634e7119dc02e165205c5486af52adee94b8ddfc5 +size 2091773 diff --git a/train/b249939c-addb-41ef-a68e-40a0902e1b4d.png b/train/b249939c-addb-41ef-a68e-40a0902e1b4d.png new file mode 100644 index 0000000000000000000000000000000000000000..0d20d27ca5498f5e39c07d9dfd41631acb46b40e --- /dev/null +++ b/train/b249939c-addb-41ef-a68e-40a0902e1b4d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2387801583d61b047e80172fe3d54477ad23d89f35f74e37542d412c1f68ee37 +size 2165219 diff --git a/train/b24a36be-004e-48dc-a536-ebecaaa1d9f4.png b/train/b24a36be-004e-48dc-a536-ebecaaa1d9f4.png new file mode 100644 index 0000000000000000000000000000000000000000..cf961ca8be6d37a721b74f495730f8e0d5e1f78b --- /dev/null +++ b/train/b24a36be-004e-48dc-a536-ebecaaa1d9f4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5081784745a3941a559dca47a48d168e48350896a0a12a5e13c553bd52ebee71 +size 2053363 diff --git a/train/b255a99f-ee92-4e1b-b360-e2ecd481992e.png b/train/b255a99f-ee92-4e1b-b360-e2ecd481992e.png new file mode 100644 index 0000000000000000000000000000000000000000..1b82f7ed0b798e691e7c4a558282a1916ba5cd6f --- /dev/null +++ b/train/b255a99f-ee92-4e1b-b360-e2ecd481992e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e3a2b4b2364b1939f950dd48428c0e9df40f5d757cece7f8a7af002d96571d4 +size 2111748 diff --git a/train/b28b1643-70fc-4923-b1bd-4e01dfeb3ede.png b/train/b28b1643-70fc-4923-b1bd-4e01dfeb3ede.png new file mode 100644 index 0000000000000000000000000000000000000000..a86f8e5ffd503f73f6d15ea6bdac9346df8200a6 --- /dev/null +++ b/train/b28b1643-70fc-4923-b1bd-4e01dfeb3ede.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d49142d1c7b1f850ff984bd160209e12fa1e7e09b50494ab29c738bfcd03dd +size 2048508 diff --git a/train/b2e4b867-4ed7-4161-8107-73775cb10fab.png b/train/b2e4b867-4ed7-4161-8107-73775cb10fab.png new file mode 100644 index 0000000000000000000000000000000000000000..b729f6cf7b49de4a888f95fa6153036dadc4c519 --- /dev/null +++ b/train/b2e4b867-4ed7-4161-8107-73775cb10fab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fbbefb3fd6493da93add13d32b47f95e245198dc5d363ce04da2ef08c7961b5 +size 1991496 diff --git a/train/b2f39aea-6396-490d-9616-ffd6b3711e84.png b/train/b2f39aea-6396-490d-9616-ffd6b3711e84.png new file mode 100644 index 0000000000000000000000000000000000000000..f92bcd181fd4a9e0aa94f474bcaaaf5eddcfb2d5 --- /dev/null +++ b/train/b2f39aea-6396-490d-9616-ffd6b3711e84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:417cb15330d698626a79e044c064ac5654d4b463dac257d1def16f81891c143e +size 2178974 diff --git a/train/b2f793b8-4f91-4fbf-a7c4-a71553e2c51e.png b/train/b2f793b8-4f91-4fbf-a7c4-a71553e2c51e.png new file mode 100644 index 0000000000000000000000000000000000000000..74e5aff96530beb9d76fd5cabc258239eefae338 --- /dev/null +++ b/train/b2f793b8-4f91-4fbf-a7c4-a71553e2c51e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b6786ec58d83c70e849e1cdf64f14d574535c9bf7b299a2cfb762c6457b8bf9 +size 2182020 diff --git a/train/b309acff-103a-4701-b75e-90b6005779e8.png b/train/b309acff-103a-4701-b75e-90b6005779e8.png new file mode 100644 index 0000000000000000000000000000000000000000..2972fa38bfc3dae1cf428adf8f2c91defd05aa85 --- /dev/null +++ b/train/b309acff-103a-4701-b75e-90b6005779e8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:820d20c4fd7d0554c448cecd50599c387953d78f94003a52e177b93878baf38c +size 2187645 diff --git a/train/b3237861-9062-4c2d-942f-be318eb3da03.png b/train/b3237861-9062-4c2d-942f-be318eb3da03.png new file mode 100644 index 0000000000000000000000000000000000000000..287bc7074ca20772689438eb63e873c92dc58683 --- /dev/null +++ b/train/b3237861-9062-4c2d-942f-be318eb3da03.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e362c885fd37e0c503c6d0ae3f073c5da246a6b256d4d29c7ddb3d461c07e3b0 +size 2030968 diff --git a/train/b34dd522-827c-41d1-a48a-4f28f2e29f1a.png b/train/b34dd522-827c-41d1-a48a-4f28f2e29f1a.png new file mode 100644 index 0000000000000000000000000000000000000000..c8ae1da81d79ddc3332ee519f87334c236c591a8 --- /dev/null +++ b/train/b34dd522-827c-41d1-a48a-4f28f2e29f1a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e61cb4ab801ca746d15cfcf04ab3b07ee7033507f6ad0ce8f80486c4d63e8bae +size 2247905 diff --git a/train/b3c7a6b6-4ad6-400a-8038-ca94c7f0546e.png b/train/b3c7a6b6-4ad6-400a-8038-ca94c7f0546e.png new file mode 100644 index 0000000000000000000000000000000000000000..f366ef1586baec0f475c7b3ccd9d3f2d8fb19393 --- /dev/null +++ b/train/b3c7a6b6-4ad6-400a-8038-ca94c7f0546e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:178373d913417672eecdcb7295cca711bf9b9953975a91782a2f2e37b4a14bc5 +size 1971483 diff --git a/train/b411e659-d68b-4461-8747-7a841037b0cf.png b/train/b411e659-d68b-4461-8747-7a841037b0cf.png new file mode 100644 index 0000000000000000000000000000000000000000..054da96bb8e7232bc8d112990c1655ffc6f9d76b --- /dev/null +++ b/train/b411e659-d68b-4461-8747-7a841037b0cf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f1edba6b42ae455fb0747e3351536bbcc2e95788620558ecc94a7636ea94905 +size 2259162 diff --git a/train/b43b8e69-2d53-4591-8644-cbe96dcb740e.png b/train/b43b8e69-2d53-4591-8644-cbe96dcb740e.png new file mode 100644 index 0000000000000000000000000000000000000000..a0c930157a81e092817433fadd5706f7f0e446e7 --- /dev/null +++ b/train/b43b8e69-2d53-4591-8644-cbe96dcb740e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8105bd0c8f12cc9c380d165d17e89f6277db31e8117b428b34f592591985b60 +size 2242777 diff --git a/train/b5731f6e-396f-46c6-b789-ce961a57a3c2.png b/train/b5731f6e-396f-46c6-b789-ce961a57a3c2.png new file mode 100644 index 0000000000000000000000000000000000000000..ad2faa3d3d3699e1bdc06c7afc48b1b330eaa7e3 --- /dev/null +++ b/train/b5731f6e-396f-46c6-b789-ce961a57a3c2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e954fb86ab713a3f4eb1bba4aa53e7c58c7d83829e04564fb0235b6d9fcd655b +size 2198235 diff --git a/train/b5b751f5-4321-4ef6-9809-c50b6419833d.png b/train/b5b751f5-4321-4ef6-9809-c50b6419833d.png new file mode 100644 index 0000000000000000000000000000000000000000..a0548628d93fb6571687816fe4a31ef0735bb168 --- /dev/null +++ b/train/b5b751f5-4321-4ef6-9809-c50b6419833d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac34784201c6fdda65a52f43bf73ed7223a3f4c3202484d0e75d9f87e62163b1 +size 2044731 diff --git a/train/b5e2546e-7991-4e00-ba43-02d8a7349c28.png b/train/b5e2546e-7991-4e00-ba43-02d8a7349c28.png new file mode 100644 index 0000000000000000000000000000000000000000..a3b26e46d7c012c019e325f493e0f76fe6dad613 --- /dev/null +++ b/train/b5e2546e-7991-4e00-ba43-02d8a7349c28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2002dd0bbbe7a69e0c8bae709fa0be0b2988383af3115fbc39c1361410561361 +size 2171563 diff --git a/train/b63e324a-e165-4f7b-9121-845cd465d047.png b/train/b63e324a-e165-4f7b-9121-845cd465d047.png new file mode 100644 index 0000000000000000000000000000000000000000..fec9a041099ab30dbc5d2e193f7824a0d3816981 --- /dev/null +++ b/train/b63e324a-e165-4f7b-9121-845cd465d047.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba5a431c1b6f4bfd88a694d27d7cb32cc6c7889ad28e51682ba94e0ec65d549d +size 2128189 diff --git a/train/b6660a0b-5792-4a10-bbe8-17ad87b6adbc.png b/train/b6660a0b-5792-4a10-bbe8-17ad87b6adbc.png new file mode 100644 index 0000000000000000000000000000000000000000..10960be4c6d77fde8570d618a064878bbe58490d --- /dev/null +++ b/train/b6660a0b-5792-4a10-bbe8-17ad87b6adbc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c88d4ae1eede62d3ea77f6dbe6e19998f8ea4943eae044de0aa647e0e5ddffe7 +size 2087378 diff --git a/train/b6e1246a-08ac-47be-abe1-3c22a542a6cf.png b/train/b6e1246a-08ac-47be-abe1-3c22a542a6cf.png new file mode 100644 index 0000000000000000000000000000000000000000..c8612193d3bc4cfe53d361c395bdbbaffd964662 --- /dev/null +++ b/train/b6e1246a-08ac-47be-abe1-3c22a542a6cf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff7abf2e81079ed5c9b1bfdc462dc6f92f70742f351731d7d16a827e8b0bde3e +size 2016739 diff --git a/train/b6f5114f-be01-4a1f-a20e-7cf7c690a6d6.png b/train/b6f5114f-be01-4a1f-a20e-7cf7c690a6d6.png new file mode 100644 index 0000000000000000000000000000000000000000..3b12cdfe6b2d7eed03b81b2ffecd086ee86fee1b --- /dev/null +++ b/train/b6f5114f-be01-4a1f-a20e-7cf7c690a6d6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ee82b25ff68ecef6ff875752a680fa9510dd634a30d5a2849662637a4736c97 +size 2200921 diff --git a/train/b7a84131-3f72-47dd-b7ce-3e28e21e81ef.png b/train/b7a84131-3f72-47dd-b7ce-3e28e21e81ef.png new file mode 100644 index 0000000000000000000000000000000000000000..a5dfb09fa09ece2ab03c666305fd5b07fc265a04 --- /dev/null +++ b/train/b7a84131-3f72-47dd-b7ce-3e28e21e81ef.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d743e39053460a80e3c2e83108cee652024f06fca93da0f84b60e9a5ce55ad38 +size 2181009 diff --git a/train/b7b91117-a9f4-499e-9914-ea500e468544.png b/train/b7b91117-a9f4-499e-9914-ea500e468544.png new file mode 100644 index 0000000000000000000000000000000000000000..9cea57c7a2cd76e7e62557043340c72548772aec --- /dev/null +++ b/train/b7b91117-a9f4-499e-9914-ea500e468544.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f40fa6489084cc7f90ca39099fa5758311ef184c164e227a9161347a55401e +size 2178846 diff --git a/train/b7c7532f-d2f5-4a4f-95bc-a8cc631fd1f3.png b/train/b7c7532f-d2f5-4a4f-95bc-a8cc631fd1f3.png new file mode 100644 index 0000000000000000000000000000000000000000..d35d0b2ba31e424b9e0b7a73d245dc58189104e8 --- /dev/null +++ b/train/b7c7532f-d2f5-4a4f-95bc-a8cc631fd1f3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8963ac504273c07926a7992a702f60005b9d3f7812f6ae2a3e0bfc4d747958fa +size 2107889 diff --git a/train/b7fd0556-fde4-4e43-8348-f714e6bed3af.png b/train/b7fd0556-fde4-4e43-8348-f714e6bed3af.png new file mode 100644 index 0000000000000000000000000000000000000000..c851f337b3f1fa1d18fb0bd4df33dd083c452234 --- /dev/null +++ b/train/b7fd0556-fde4-4e43-8348-f714e6bed3af.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92715001e8d8528dbbc5cd6bcd680526ece553fb56a98c8e2837c16ccd89ceaa +size 2158165 diff --git a/train/b82f83fe-101a-43d2-b8dc-76651baf8ef3.png b/train/b82f83fe-101a-43d2-b8dc-76651baf8ef3.png new file mode 100644 index 0000000000000000000000000000000000000000..a23d1414d86b718c56117cac6e6e006c0bba1702 --- /dev/null +++ b/train/b82f83fe-101a-43d2-b8dc-76651baf8ef3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2703bda5f7e7c2b46fa42aa044c9479bf64e5861deb84bbb8d9feabb56355c63 +size 1922911 diff --git a/train/b8520d34-6f8a-4dfc-9453-8de4f9e77860.png b/train/b8520d34-6f8a-4dfc-9453-8de4f9e77860.png new file mode 100644 index 0000000000000000000000000000000000000000..54b964cd32608e120bf38370224404342eefb871 --- /dev/null +++ b/train/b8520d34-6f8a-4dfc-9453-8de4f9e77860.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e72f5e604f8eb000a862b1b73c951e5a422fcd340a0b3d570b78b5b4f54531f9 +size 2050487 diff --git a/train/b884c797-eed2-4e12-8d76-0518600806b9.png b/train/b884c797-eed2-4e12-8d76-0518600806b9.png new file mode 100644 index 0000000000000000000000000000000000000000..c40bd89995a5e816730ed7cde3a19c6562046a44 --- /dev/null +++ b/train/b884c797-eed2-4e12-8d76-0518600806b9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e5526a1fef2d634a91d37e3eddfecb4809eb1ec2c746a2e6ff3c4533281646 +size 2150157 diff --git a/train/b8acd2ef-7f73-411d-92de-58a9d58ff0dc.png b/train/b8acd2ef-7f73-411d-92de-58a9d58ff0dc.png new file mode 100644 index 0000000000000000000000000000000000000000..d2e4cd0833c362098be8384d57f352988d1d1ec6 --- /dev/null +++ b/train/b8acd2ef-7f73-411d-92de-58a9d58ff0dc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8dd9b106f3c21c5cf382b43251b3f2c0d922221bc28511a2359c65131d6b8c8 +size 2141364 diff --git a/train/b96fd6ea-b809-4b33-bb9b-f8550fed6bf8.png b/train/b96fd6ea-b809-4b33-bb9b-f8550fed6bf8.png new file mode 100644 index 0000000000000000000000000000000000000000..2b538bb0563031eb50edd7aef3e76f420b9b95df --- /dev/null +++ b/train/b96fd6ea-b809-4b33-bb9b-f8550fed6bf8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33eae670abf830591318262c91e1b43ee75c6b2e691c437a811bd7747b509c12 +size 2098948 diff --git a/train/ba6127cf-3339-4b91-a12c-055e39c52f45.png b/train/ba6127cf-3339-4b91-a12c-055e39c52f45.png new file mode 100644 index 0000000000000000000000000000000000000000..e67d86aac2078d452bf2527957507d8464e410c0 --- /dev/null +++ b/train/ba6127cf-3339-4b91-a12c-055e39c52f45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce90296e2f7b988ecd08e5dc6453c344bcb2ae62c8e40cd63e333ee9b897b3e9 +size 2242895 diff --git a/train/badc95a9-4ce7-4f11-948d-10c7e127d83e.png b/train/badc95a9-4ce7-4f11-948d-10c7e127d83e.png new file mode 100644 index 0000000000000000000000000000000000000000..8d8b9241565b051ba46b052c036f5e418539deef --- /dev/null +++ b/train/badc95a9-4ce7-4f11-948d-10c7e127d83e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee35a7c3b65c84045360e78b0d91e91bf24fbdfca857204e798677387861775f +size 2234493 diff --git a/train/bb0a5ffd-e406-4e9b-a844-3fc3db715c52.png b/train/bb0a5ffd-e406-4e9b-a844-3fc3db715c52.png new file mode 100644 index 0000000000000000000000000000000000000000..6ded275b17b99731625449298f1bffd51adf01db --- /dev/null +++ b/train/bb0a5ffd-e406-4e9b-a844-3fc3db715c52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:178ce2534c233b61dcb23512174753cc8072c920dcae42f75bb4238846e4b42b +size 2142091 diff --git a/train/bb1daa3e-115a-45d0-9579-a29efdd677ae.png b/train/bb1daa3e-115a-45d0-9579-a29efdd677ae.png new file mode 100644 index 0000000000000000000000000000000000000000..eec2b0ae2d8300bf652813fb1d5901c9077bf9bf --- /dev/null +++ b/train/bb1daa3e-115a-45d0-9579-a29efdd677ae.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aac2efda9dfaa020e29a91ad8f53354be7ff1e32a56c7f1e3a3d062271119692 +size 2201318 diff --git a/train/bba6555c-5d22-4b7f-a6da-c0fb557e4a07.png b/train/bba6555c-5d22-4b7f-a6da-c0fb557e4a07.png new file mode 100644 index 0000000000000000000000000000000000000000..1e019b4faa1705633786d771d2c60fe56c462bd0 --- /dev/null +++ b/train/bba6555c-5d22-4b7f-a6da-c0fb557e4a07.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c28b8247cfe2dd87296b7f298205fb01aeda463d268b5eb1e459391971d7aaaa +size 2224643 diff --git a/train/bc3e8873-6fe3-4b62-a406-09e2bd121dde.png b/train/bc3e8873-6fe3-4b62-a406-09e2bd121dde.png new file mode 100644 index 0000000000000000000000000000000000000000..d0c1a1329d928b73e89b67fe1970e51693e39972 --- /dev/null +++ b/train/bc3e8873-6fe3-4b62-a406-09e2bd121dde.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7915115dc9a1fbcc371dae91bcfd19dbd59a3d8092fdc03070e17a8b73e90427 +size 2197957 diff --git a/train/bc4388b7-577f-4f64-9768-57baae510fe6.png b/train/bc4388b7-577f-4f64-9768-57baae510fe6.png new file mode 100644 index 0000000000000000000000000000000000000000..dfac63862ed155fc4f557c9609c92ea06b2148fb --- /dev/null +++ b/train/bc4388b7-577f-4f64-9768-57baae510fe6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4550d1df55b59a90d3afba0d73a28001245d550ced4f4477a319b453ea63cc8a +size 2234324 diff --git a/train/bc81a945-2643-4f46-be5b-f9e4dc07e2a6.png b/train/bc81a945-2643-4f46-be5b-f9e4dc07e2a6.png new file mode 100644 index 0000000000000000000000000000000000000000..a0039a2d9f3892d9165232cb0b5a1d2d7c51bf85 --- /dev/null +++ b/train/bc81a945-2643-4f46-be5b-f9e4dc07e2a6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1044a55028032f0da04ed594a85099cc24a100669001978af21edf6cc8384c50 +size 2030850 diff --git a/train/bc8b084d-bfa8-4b92-a7ef-117729b55d1c.png b/train/bc8b084d-bfa8-4b92-a7ef-117729b55d1c.png new file mode 100644 index 0000000000000000000000000000000000000000..6482c8bb525ba7e796dd04c65978be8e0bc9e3e1 --- /dev/null +++ b/train/bc8b084d-bfa8-4b92-a7ef-117729b55d1c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae0012b3e041efb64f0cc909fe17a06c8a384750fc9b8508997a3e73cd1333c1 +size 2069350 diff --git a/train/bcd4f40c-920e-47af-a0e1-c18d4fb246b0.png b/train/bcd4f40c-920e-47af-a0e1-c18d4fb246b0.png new file mode 100644 index 0000000000000000000000000000000000000000..b568571d96ba5790755d1bf8b13d3837457ba102 --- /dev/null +++ b/train/bcd4f40c-920e-47af-a0e1-c18d4fb246b0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90289c8881d592cd32e0743337f6c24944846b8b71be64ce2ea11b4f4e5e03e1 +size 2015222 diff --git a/train/bd30b10b-f16b-422f-8e07-71cf6c094a0b.png b/train/bd30b10b-f16b-422f-8e07-71cf6c094a0b.png new file mode 100644 index 0000000000000000000000000000000000000000..e4b900218052613c7f6384b51baa866025633388 --- /dev/null +++ b/train/bd30b10b-f16b-422f-8e07-71cf6c094a0b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1768f3bb99658991861d9c59ecc297ac47c78f783ede43cbfa1775c12a999f86 +size 2092072 diff --git a/train/bdb50bbe-c30d-48d9-8c8f-f3803d3ad183.png b/train/bdb50bbe-c30d-48d9-8c8f-f3803d3ad183.png new file mode 100644 index 0000000000000000000000000000000000000000..a2a59373af965f1c388adfd06701b58ee43f8202 --- /dev/null +++ b/train/bdb50bbe-c30d-48d9-8c8f-f3803d3ad183.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be95b0c0b0dbe31f3d9d5399be723ca850b3edbdf560ba65714a0cbc9824bbf5 +size 2171587 diff --git a/train/be33a5e1-9e90-4018-b53d-e9b17af4e384.png b/train/be33a5e1-9e90-4018-b53d-e9b17af4e384.png new file mode 100644 index 0000000000000000000000000000000000000000..4657d24fa20b416ed5da7eb99dd43da3105d70db --- /dev/null +++ b/train/be33a5e1-9e90-4018-b53d-e9b17af4e384.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0c20b6d4555ea35725d9153fc2f4a96eab6e86e6a4fae846b7ad2a0ca7b152c +size 2161941 diff --git a/train/be3994d5-3c31-4a4e-abc7-a1f8521f2f13.png b/train/be3994d5-3c31-4a4e-abc7-a1f8521f2f13.png new file mode 100644 index 0000000000000000000000000000000000000000..a1fb343b7475a99d6999314eebacbdec539d21c8 --- /dev/null +++ b/train/be3994d5-3c31-4a4e-abc7-a1f8521f2f13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:363135fa29ca0cfb3b8e43aeb7bac1220b880421f7d4400d31c0ebe1195453bf +size 2207599 diff --git a/train/beb02533-6018-44a2-bd27-1ef2444669a5.png b/train/beb02533-6018-44a2-bd27-1ef2444669a5.png new file mode 100644 index 0000000000000000000000000000000000000000..037b1050617b10048df92f997445717b55de0346 --- /dev/null +++ b/train/beb02533-6018-44a2-bd27-1ef2444669a5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a9b0fcf4bfbcedf053349d499fdf44273c84caca412f40f5e70c3fbf6ff43a0 +size 2097111 diff --git a/train/beb066db-2a0b-4046-bce0-7d166bbe08c5.png b/train/beb066db-2a0b-4046-bce0-7d166bbe08c5.png new file mode 100644 index 0000000000000000000000000000000000000000..adc29f3de393b15a92ca0500a7f4cc7af4ee8a8f --- /dev/null +++ b/train/beb066db-2a0b-4046-bce0-7d166bbe08c5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b2720a61d3dcf6c0484bbb941880ec3b862bd5f00d938ee92ff546d2deaeb4f +size 2000931 diff --git a/train/bec81c4e-7e61-4f5f-a3bb-df45ac04ac45.png b/train/bec81c4e-7e61-4f5f-a3bb-df45ac04ac45.png new file mode 100644 index 0000000000000000000000000000000000000000..9c4f16b28b58c2d315bcf3dfbf6909a6529aa974 --- /dev/null +++ b/train/bec81c4e-7e61-4f5f-a3bb-df45ac04ac45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2461c8c82702f6930ff995f376c61218fedfb3b7f17c06e62bb7a9a231df6ba +size 2121983 diff --git a/train/bef9e21b-d92d-4bbe-a7cd-4b1a2f15b3eb.png b/train/bef9e21b-d92d-4bbe-a7cd-4b1a2f15b3eb.png new file mode 100644 index 0000000000000000000000000000000000000000..70537604749decf6a52eca5e5106b69cb8c34628 --- /dev/null +++ b/train/bef9e21b-d92d-4bbe-a7cd-4b1a2f15b3eb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db9ba8b3088ca6c4d9631afd72b943432fae64d1ce94aa02f406ea2af2da2506 +size 2069834 diff --git a/train/bfb057a3-7ea3-4e36-bc92-49e9bde02123.png b/train/bfb057a3-7ea3-4e36-bc92-49e9bde02123.png new file mode 100644 index 0000000000000000000000000000000000000000..2938692334e08643f3ab1bdc379f7f8f5c72d742 --- /dev/null +++ b/train/bfb057a3-7ea3-4e36-bc92-49e9bde02123.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9857375862d2285bd1462e59195ff80f0bd9d95c0bbe3c7b35b45bfed464955 +size 2050783 diff --git a/train/c096d3d7-0328-435b-a2f9-f5d7b67da7cd.png b/train/c096d3d7-0328-435b-a2f9-f5d7b67da7cd.png new file mode 100644 index 0000000000000000000000000000000000000000..9191be785b5edb9e7a0dfdcacf734b3a8d8d1073 --- /dev/null +++ b/train/c096d3d7-0328-435b-a2f9-f5d7b67da7cd.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ff5b87abfc525af7a47a9e657121a46cf8e3c5e2a8ecea86194ac8928c132f9 +size 1989522 diff --git a/train/c13be44b-1c6b-4829-8375-487810a50b70.png b/train/c13be44b-1c6b-4829-8375-487810a50b70.png new file mode 100644 index 0000000000000000000000000000000000000000..975109dac2603bd1627b2b7d6da142eabdb97724 --- /dev/null +++ b/train/c13be44b-1c6b-4829-8375-487810a50b70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeecf20bf71b7b1fabbfe311f6f4fa55c1cea5af5a4634ca3e05fe0b3990596b +size 2188669 diff --git a/train/c174fbaa-aa33-4c1e-9a16-43bf1917a00e.png b/train/c174fbaa-aa33-4c1e-9a16-43bf1917a00e.png new file mode 100644 index 0000000000000000000000000000000000000000..53c50cdaa90d720ef40f7a1bf4f1011bb7c2d13c --- /dev/null +++ b/train/c174fbaa-aa33-4c1e-9a16-43bf1917a00e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa65bccece07007dc87c842eda9da0234673979ad3eafb650f188e2d43aaba9 +size 2127976 diff --git a/train/c1a5052e-156c-4082-aa4e-727d82cc0232.png b/train/c1a5052e-156c-4082-aa4e-727d82cc0232.png new file mode 100644 index 0000000000000000000000000000000000000000..84284c42b318f66b3fe5fb2d8a261ec7baa866e5 --- /dev/null +++ b/train/c1a5052e-156c-4082-aa4e-727d82cc0232.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18530c2ed4bf0a8ac71ce9ea3759524c9c6c609f9d39c643449772030e01e687 +size 2134626 diff --git a/train/c2152070-db85-4c30-8dc0-b577eb35e0f7.png b/train/c2152070-db85-4c30-8dc0-b577eb35e0f7.png new file mode 100644 index 0000000000000000000000000000000000000000..80c3d87e7b83b63ac88d948969b0d93c893f4848 --- /dev/null +++ b/train/c2152070-db85-4c30-8dc0-b577eb35e0f7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70445bdc905781519e0b952c98bbc3dabbd53c4166a79db988280d98a3d92e3c +size 2226179 diff --git a/train/c220626e-7ecb-4165-82da-9f3115e75a5d.png b/train/c220626e-7ecb-4165-82da-9f3115e75a5d.png new file mode 100644 index 0000000000000000000000000000000000000000..6be492353add36800c608ab99c1dae86b4880ed9 --- /dev/null +++ b/train/c220626e-7ecb-4165-82da-9f3115e75a5d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfffb2338185dcdcc76c56226ad7f92de80199caf8f0848d81dc4451a7847649 +size 2161923 diff --git a/train/c282fa28-d93b-461d-9e40-35200fd0e012.png b/train/c282fa28-d93b-461d-9e40-35200fd0e012.png new file mode 100644 index 0000000000000000000000000000000000000000..368e8e3b790acdbd26d8883630c924f7c8a40bde --- /dev/null +++ b/train/c282fa28-d93b-461d-9e40-35200fd0e012.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7fdff918a1b37771dccbd37c6ba2c3326b871e25067246ef268d3bc2000e14e +size 2078569 diff --git a/train/c2ff2096-65fe-4b56-b59b-e02960eaf491.png b/train/c2ff2096-65fe-4b56-b59b-e02960eaf491.png new file mode 100644 index 0000000000000000000000000000000000000000..40305950a6d6bccd2fc5b7e8a7ea358aac37319c --- /dev/null +++ b/train/c2ff2096-65fe-4b56-b59b-e02960eaf491.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c70110f01e3fffa480719b04961afb12d01a0679f6154147a91e3a9ad3132c1 +size 2066657 diff --git a/train/c31b30d7-028f-4c9f-b091-8a17d22ca287.png b/train/c31b30d7-028f-4c9f-b091-8a17d22ca287.png new file mode 100644 index 0000000000000000000000000000000000000000..f3d7b726242ebab39615d241125144763f79ae39 --- /dev/null +++ b/train/c31b30d7-028f-4c9f-b091-8a17d22ca287.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe181d0ce8ed8924ec27503d79725561d11f30d7ed8b6bc7b22399ff21d45afc +size 2092787 diff --git a/train/c36547ab-7982-4c20-839c-7e9401f1c249.png b/train/c36547ab-7982-4c20-839c-7e9401f1c249.png new file mode 100644 index 0000000000000000000000000000000000000000..614cedacef060ae947c166dc8abf7a330792e109 --- /dev/null +++ b/train/c36547ab-7982-4c20-839c-7e9401f1c249.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b6966e13667ddb89cda4fd5247579e69b9d3b0872857b8903313e4c7157ef3 +size 2204599 diff --git a/train/c36899d3-d063-4570-a395-72810df75de9.png b/train/c36899d3-d063-4570-a395-72810df75de9.png new file mode 100644 index 0000000000000000000000000000000000000000..8fb4c3d435825d2133d384d717ea0fb74a9d492a --- /dev/null +++ b/train/c36899d3-d063-4570-a395-72810df75de9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4100ab58d501c8c21b7ce05dd0dea71aec97a33bfdcd3badefb8c25f5c2e5b65 +size 2141512 diff --git a/train/c36a8136-7a00-4035-87b1-ce4aff55db95.png b/train/c36a8136-7a00-4035-87b1-ce4aff55db95.png new file mode 100644 index 0000000000000000000000000000000000000000..ee71fa7f10f23f3a83e8d7fd4a84ba94ebbf66fc --- /dev/null +++ b/train/c36a8136-7a00-4035-87b1-ce4aff55db95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a45b5491b17d34bfc50210de0dc9b2d3ef5cab303b6a5e6f2fa4a31d74eaf9a7 +size 2147879 diff --git a/train/c3bd0305-bd79-4712-a342-498f5b05ccbc.png b/train/c3bd0305-bd79-4712-a342-498f5b05ccbc.png new file mode 100644 index 0000000000000000000000000000000000000000..c83f096c7816690e5122e1f0e1a9f52d86fc9c88 --- /dev/null +++ b/train/c3bd0305-bd79-4712-a342-498f5b05ccbc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:434551d47ce81afba5581c161fe741932b8137e41439ea3dc2d7639b4566e3cb +size 2052740 diff --git a/train/c42f4fa3-6a86-40f6-9b61-977c225a36a0.png b/train/c42f4fa3-6a86-40f6-9b61-977c225a36a0.png new file mode 100644 index 0000000000000000000000000000000000000000..722cae6c9c6919d5f1b79773b5ecd2b80cd7d839 --- /dev/null +++ b/train/c42f4fa3-6a86-40f6-9b61-977c225a36a0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c4a2be8b26d225d49fe99e8972740fe8fac388efb6ebc6b0c5a08cf7d76ca0 +size 2180212 diff --git a/train/c495556f-437f-4131-bdcf-0c3a15182cd5.png b/train/c495556f-437f-4131-bdcf-0c3a15182cd5.png new file mode 100644 index 0000000000000000000000000000000000000000..f474abc7e5e71ba471cc29d85ab3e92e03bd6600 --- /dev/null +++ b/train/c495556f-437f-4131-bdcf-0c3a15182cd5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58d617665f1d203eac7c390caf0042705eedc9e60d9b8869cb64926238fe5b4b +size 2178688 diff --git a/train/c49eed69-4da0-4b0d-b1e5-520892d4da5a.png b/train/c49eed69-4da0-4b0d-b1e5-520892d4da5a.png new file mode 100644 index 0000000000000000000000000000000000000000..8c5f59108240addafa72d2194a185d0e0d7df403 --- /dev/null +++ b/train/c49eed69-4da0-4b0d-b1e5-520892d4da5a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a796cd17de30d22c5d2eea7d8f8b39b360fad7250369628904a1dcaefdc4f336 +size 2099375 diff --git a/train/c4a38641-0aef-4957-92c2-02fa2224c3f5.png b/train/c4a38641-0aef-4957-92c2-02fa2224c3f5.png new file mode 100644 index 0000000000000000000000000000000000000000..63c81b67c75cbb2703dc4e5d28a4699d7224ce37 --- /dev/null +++ b/train/c4a38641-0aef-4957-92c2-02fa2224c3f5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b754508b29cf0cf45cfba27aafd91692e0fc72e1295abd3831394c7887f91d25 +size 2184882 diff --git a/train/c5414c46-0935-4a60-98be-29e5720216b7.png b/train/c5414c46-0935-4a60-98be-29e5720216b7.png new file mode 100644 index 0000000000000000000000000000000000000000..4a4319d5fc312b9f954e73277b3c8cf94a0c5d60 --- /dev/null +++ b/train/c5414c46-0935-4a60-98be-29e5720216b7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:569ba645b64c78dee4817cef881ce9778774e1b30482bc7f1e493de45410cfa5 +size 2092716 diff --git a/train/c5686454-d902-4b61-a4c3-902751d8f139.png b/train/c5686454-d902-4b61-a4c3-902751d8f139.png new file mode 100644 index 0000000000000000000000000000000000000000..a7346e0b29c8be2f41fc04dbd0fd3e1f94ffa2c4 --- /dev/null +++ b/train/c5686454-d902-4b61-a4c3-902751d8f139.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35acb8dd03568af41a8a111d7c21c2e47f6747962630fdba60d801296d2cd26f +size 2143558 diff --git a/train/c57dc6a7-a2f8-4ede-a027-9d3703747d07.png b/train/c57dc6a7-a2f8-4ede-a027-9d3703747d07.png new file mode 100644 index 0000000000000000000000000000000000000000..295efa9b2ce6d78058211aeac40982d6f24f7d29 --- /dev/null +++ b/train/c57dc6a7-a2f8-4ede-a027-9d3703747d07.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dea1c021d9c5fb5f9383eb7b3b611542b9b505e0d9999000b999be1dd9d0040e +size 2160445 diff --git a/train/c58e8654-6191-49c9-8812-ea96e783b957.png b/train/c58e8654-6191-49c9-8812-ea96e783b957.png new file mode 100644 index 0000000000000000000000000000000000000000..0333d7be60254469b8a107957d109263a8a397ad --- /dev/null +++ b/train/c58e8654-6191-49c9-8812-ea96e783b957.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1a747ee8c860be79b49f1475a0fc1980b6b2746db98b4c3cd094ff569f77c6a +size 2169720 diff --git a/train/c5c0c21c-2020-4b44-8ff6-37afaba83494.png b/train/c5c0c21c-2020-4b44-8ff6-37afaba83494.png new file mode 100644 index 0000000000000000000000000000000000000000..6fd6615b053ebebde295439c1787a5e4de594b38 --- /dev/null +++ b/train/c5c0c21c-2020-4b44-8ff6-37afaba83494.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bfc8f614562b79833a76007dc46aa791d594a63fa6f0c9f2d16dbd5cc011f5b +size 2075304 diff --git a/train/c5d85f05-f819-41bb-94c3-e06553073c8f.png b/train/c5d85f05-f819-41bb-94c3-e06553073c8f.png new file mode 100644 index 0000000000000000000000000000000000000000..2b5c383c769b652123c40385b9e90cbb5f4135af --- /dev/null +++ b/train/c5d85f05-f819-41bb-94c3-e06553073c8f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f5a10e973b688a9265ad5846cbaeffe6f6764ad7bf789e46e5a90741cc59e17 +size 2229082 diff --git a/train/c635a4d0-4400-46c0-8c3c-cda983ae7efc.png b/train/c635a4d0-4400-46c0-8c3c-cda983ae7efc.png new file mode 100644 index 0000000000000000000000000000000000000000..2b05e7f91d13d6c7cb6f9a972c22a46da8a3176c --- /dev/null +++ b/train/c635a4d0-4400-46c0-8c3c-cda983ae7efc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f4dc75d8e669241df04a719971180f7c33ca7610c15062711196267f5be9b3 +size 2233681 diff --git a/train/c6549e05-3842-474a-af0d-885ebf89f309.png b/train/c6549e05-3842-474a-af0d-885ebf89f309.png new file mode 100644 index 0000000000000000000000000000000000000000..a4d7e103c7747e7064b068178ef0c812117de52e --- /dev/null +++ b/train/c6549e05-3842-474a-af0d-885ebf89f309.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:893c33eab12fda1b17568a14872848b8d0a94fb6249d5b5faf8f9b58899d8783 +size 2142069 diff --git a/train/c6b173ae-3eba-4ac0-befa-73584d34bbf3.png b/train/c6b173ae-3eba-4ac0-befa-73584d34bbf3.png new file mode 100644 index 0000000000000000000000000000000000000000..24fb750f9efb8c71092e5341fe0923c38af3f0d5 --- /dev/null +++ b/train/c6b173ae-3eba-4ac0-befa-73584d34bbf3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d528bef226d0865f2cb4a8350f6b82300985b822e4bc3ccd2c212ca14e2755f1 +size 2051889 diff --git a/train/c74c8358-528c-4bc9-a6e0-c9345fe02d2f.png b/train/c74c8358-528c-4bc9-a6e0-c9345fe02d2f.png new file mode 100644 index 0000000000000000000000000000000000000000..bd1639345f483ccaf2137607af98ee4bbc749729 --- /dev/null +++ b/train/c74c8358-528c-4bc9-a6e0-c9345fe02d2f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f876f47f3cfd456c53a82c18b95402ef5cf6482d7bab33ffd49347a98a88a107 +size 2124000 diff --git a/train/c773aecf-05f9-4ac3-a648-299e42079658.png b/train/c773aecf-05f9-4ac3-a648-299e42079658.png new file mode 100644 index 0000000000000000000000000000000000000000..8385026da3d6e6d51f9b278320e724aa35ef91ec --- /dev/null +++ b/train/c773aecf-05f9-4ac3-a648-299e42079658.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce5b5614253e3b3ea3643b625d485327d57a9886e785f826df94ed9781251f45 +size 2250610 diff --git a/train/c7a01a97-f81e-4772-b22b-97b2e4508973.png b/train/c7a01a97-f81e-4772-b22b-97b2e4508973.png new file mode 100644 index 0000000000000000000000000000000000000000..902b2252cfb5a302f37d5ef58f9989312eabc34b --- /dev/null +++ b/train/c7a01a97-f81e-4772-b22b-97b2e4508973.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1b43b67afd8013ceded63908cf75a94c66de68aa3a551ded09552a6d8bb6157 +size 2112474 diff --git a/train/c7af40a4-7bf6-478e-a975-33cf4f359ae4.png b/train/c7af40a4-7bf6-478e-a975-33cf4f359ae4.png new file mode 100644 index 0000000000000000000000000000000000000000..f6df8f1fe60abbfd25800fbab84015167bb0535c --- /dev/null +++ b/train/c7af40a4-7bf6-478e-a975-33cf4f359ae4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88693988264892504d285ce4dc6ee97027ed8c7819a455f375ac71c2f5fbbc93 +size 2218138 diff --git a/train/c8427601-4840-479f-912f-68fd83a90d2a.png b/train/c8427601-4840-479f-912f-68fd83a90d2a.png new file mode 100644 index 0000000000000000000000000000000000000000..ce2916fd4ac8b603d6900b6f3ee0360821f29064 --- /dev/null +++ b/train/c8427601-4840-479f-912f-68fd83a90d2a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcbda84dd65f38beb7306621b4171135c1971a236c58a5265970e52bb3cf4d5e +size 2129544 diff --git a/train/c8714a8e-10ef-4e27-b185-c653a8d4fd07.png b/train/c8714a8e-10ef-4e27-b185-c653a8d4fd07.png new file mode 100644 index 0000000000000000000000000000000000000000..769d449f14f3bfbf5ed59a10681634ddb763b4c3 --- /dev/null +++ b/train/c8714a8e-10ef-4e27-b185-c653a8d4fd07.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b7ba30c00f1e85ac7dda8d8b0ea1114ec6ead47e8bd065a11594e559e69a847 +size 2051781 diff --git a/train/c8e21687-1de4-43c3-9e1e-4df0c0a3a030.png b/train/c8e21687-1de4-43c3-9e1e-4df0c0a3a030.png new file mode 100644 index 0000000000000000000000000000000000000000..25403a0bca86c500ae85ebe7a39917c75921e57e --- /dev/null +++ b/train/c8e21687-1de4-43c3-9e1e-4df0c0a3a030.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ebf1e1af9becdee1fb52d6557e86fb39ef7a39f9e0b4d5ecf19d74e9df4c49 +size 2060409 diff --git a/train/c912f3ce-6089-4966-b979-635f065b730a.png b/train/c912f3ce-6089-4966-b979-635f065b730a.png new file mode 100644 index 0000000000000000000000000000000000000000..8487e04df134ec358fe2a2672842f2dd4f6e364b --- /dev/null +++ b/train/c912f3ce-6089-4966-b979-635f065b730a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c3d4944db63048e7b65b68e2142ccdb111cb68da97acff69cc00a9513b355c +size 2110683 diff --git a/train/c96ed2d4-4ac5-422e-a2e7-d518d86f1d1b.png b/train/c96ed2d4-4ac5-422e-a2e7-d518d86f1d1b.png new file mode 100644 index 0000000000000000000000000000000000000000..2855826f6eb185f0a107ed4d272c5ba7eadff785 --- /dev/null +++ b/train/c96ed2d4-4ac5-422e-a2e7-d518d86f1d1b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:276825e8a3278639227564b04ff5e8dc8780c7e824011c5ca333f8074e0d872f +size 2104426 diff --git a/train/c98c10f9-cddf-42a1-90e2-ecedf9655ede.png b/train/c98c10f9-cddf-42a1-90e2-ecedf9655ede.png new file mode 100644 index 0000000000000000000000000000000000000000..47cebbca089e8f9ffe69ad0a34e1e37d11bb80a5 --- /dev/null +++ b/train/c98c10f9-cddf-42a1-90e2-ecedf9655ede.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a67aa5941877b9c798bb9591da35d9a5cdc02eab0cdaff7cf616712ddd17d2 +size 2210599 diff --git a/train/c9fba584-9bc9-4f36-b162-cf7a3d112e03.png b/train/c9fba584-9bc9-4f36-b162-cf7a3d112e03.png new file mode 100644 index 0000000000000000000000000000000000000000..8b3970cf1ee3baf54554e469744c3c58f655c3d2 --- /dev/null +++ b/train/c9fba584-9bc9-4f36-b162-cf7a3d112e03.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7400f717fb748f9cce6fb644b3a7bbb1c56d0eac7c62b01e3c489d2571a8c97 +size 2063833 diff --git a/train/ca68a9d5-bf29-4c67-b534-0eab2339c3bc.png b/train/ca68a9d5-bf29-4c67-b534-0eab2339c3bc.png new file mode 100644 index 0000000000000000000000000000000000000000..e28583ef4b2816db3ea356d5e595730e1d6aa7ac --- /dev/null +++ b/train/ca68a9d5-bf29-4c67-b534-0eab2339c3bc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02a6a77e926b70601d6b055f2419418742d2826c67d93c01ee5a1469aadbce84 +size 2047637 diff --git a/train/ca92f04b-fce2-4318-b1ff-ba8b0cb21ebb.png b/train/ca92f04b-fce2-4318-b1ff-ba8b0cb21ebb.png new file mode 100644 index 0000000000000000000000000000000000000000..34fce30e4585cb3c7d0cad1b878c8a3d292cbfab --- /dev/null +++ b/train/ca92f04b-fce2-4318-b1ff-ba8b0cb21ebb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cc9c01ee400ea7778ab077b90d584a09ddf062f5a397d86dbc78bb8719044a0 +size 2116004 diff --git a/train/ca9d87ae-d19b-44fc-bb9f-64bb08ffc514.png b/train/ca9d87ae-d19b-44fc-bb9f-64bb08ffc514.png new file mode 100644 index 0000000000000000000000000000000000000000..f5a781110639464b7bf6a7f809631c67d1db16b9 --- /dev/null +++ b/train/ca9d87ae-d19b-44fc-bb9f-64bb08ffc514.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:850de782be2aba36a70bca15d99b2cfbd09d0765e8a06e226801eeea73865c80 +size 2156769 diff --git a/train/caa4852c-ffff-4aa8-ac2e-01a02b00585a.png b/train/caa4852c-ffff-4aa8-ac2e-01a02b00585a.png new file mode 100644 index 0000000000000000000000000000000000000000..701126f57663c45ddf83d4fe3e3b901275fb3ee9 --- /dev/null +++ b/train/caa4852c-ffff-4aa8-ac2e-01a02b00585a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eedefb9085e6619649140ee6f4b2d82cf69014beb3b7d76961c3181acdaf44f6 +size 2128622 diff --git a/train/cb336ab8-b5d5-452b-bb93-7401abaae3cb.png b/train/cb336ab8-b5d5-452b-bb93-7401abaae3cb.png new file mode 100644 index 0000000000000000000000000000000000000000..3126d68ce6cab80f58e48dd5fec7832aa4cf5c0b --- /dev/null +++ b/train/cb336ab8-b5d5-452b-bb93-7401abaae3cb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e297005c4cc1a13bf855873de4732d2e7edaf39dfadbb1270970cf2368c92c74 +size 2182310 diff --git a/train/cbce8db6-04c0-4721-be0a-1fa443c4f951.png b/train/cbce8db6-04c0-4721-be0a-1fa443c4f951.png new file mode 100644 index 0000000000000000000000000000000000000000..ef3fbab3756a20b96374218baba30dc727be4284 --- /dev/null +++ b/train/cbce8db6-04c0-4721-be0a-1fa443c4f951.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8541171f2b551eb6ede49178139a2e5bdff08d38490f5bc6708ce44f6517f86 +size 2054691 diff --git a/train/cbe2d96b-90d4-4a06-81dc-3a14c79d8c46.png b/train/cbe2d96b-90d4-4a06-81dc-3a14c79d8c46.png new file mode 100644 index 0000000000000000000000000000000000000000..512759d6db8ffd3d199dfacdd55361a690764aff --- /dev/null +++ b/train/cbe2d96b-90d4-4a06-81dc-3a14c79d8c46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc582665a24664754888947ea8eed4708c0ba07e39337cd8b8d98b3427008acc +size 2224616 diff --git a/train/cc524b83-0a06-4d28-a979-89e2f41cd2c5.png b/train/cc524b83-0a06-4d28-a979-89e2f41cd2c5.png new file mode 100644 index 0000000000000000000000000000000000000000..da31c47b317eacaf407183796195151c7f9bd5ca --- /dev/null +++ b/train/cc524b83-0a06-4d28-a979-89e2f41cd2c5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de854e8827e818e9cbc2cfd035a2158a158a36408f156ed5f27e5560948b668 +size 2134653 diff --git a/train/cc8c36c4-c2a4-4c3b-ac8f-fb95844dbd48.png b/train/cc8c36c4-c2a4-4c3b-ac8f-fb95844dbd48.png new file mode 100644 index 0000000000000000000000000000000000000000..7d4962363b5a0ee9522ba4ee18f5442265ce8ea3 --- /dev/null +++ b/train/cc8c36c4-c2a4-4c3b-ac8f-fb95844dbd48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab5e6fe06344c0f5d97318b79fa2d7259eb87ac158e3553827c76ae5a553f1a +size 2003626 diff --git a/train/cd53e8e4-f754-4149-ba3b-3d376ff9aa89.png b/train/cd53e8e4-f754-4149-ba3b-3d376ff9aa89.png new file mode 100644 index 0000000000000000000000000000000000000000..a1fb6d19b7b01cc5cedb5c75a71e2a38a1670cd7 --- /dev/null +++ b/train/cd53e8e4-f754-4149-ba3b-3d376ff9aa89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da82e4542c5f6d4a687965f923c0a7c12314c5f33e6c6fc5dacbb656f1354825 +size 2215354 diff --git a/train/cd55ed8a-0858-4d7f-af33-de85ec305f53.png b/train/cd55ed8a-0858-4d7f-af33-de85ec305f53.png new file mode 100644 index 0000000000000000000000000000000000000000..4c15168eb779f8f5bed76cbecda9a51ea6b1946b --- /dev/null +++ b/train/cd55ed8a-0858-4d7f-af33-de85ec305f53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd2c27a84c70c9b17c92571054d63b7c844806e49071c537d420388e08674d1 +size 2192250 diff --git a/train/cd720c8d-af84-422b-8f88-0ef3aac2337e.png b/train/cd720c8d-af84-422b-8f88-0ef3aac2337e.png new file mode 100644 index 0000000000000000000000000000000000000000..69b7ded29bfaa55606a3ccaebeb17971ffad7feb --- /dev/null +++ b/train/cd720c8d-af84-422b-8f88-0ef3aac2337e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27ce17d97c26a9fa1abe9fe635ec2093ee4ffa46b9538395a577206d2d62f196 +size 2041857 diff --git a/train/cd7674a1-f4ae-4fef-af24-8371eaa92109.png b/train/cd7674a1-f4ae-4fef-af24-8371eaa92109.png new file mode 100644 index 0000000000000000000000000000000000000000..461f646c30e51a241e51f1fbe316dd031db3cad9 --- /dev/null +++ b/train/cd7674a1-f4ae-4fef-af24-8371eaa92109.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bec3b1539077a270d26a9072cddbf8ab9eb6731a2be205b6b38eb74c3f10dbe2 +size 2182406 diff --git a/train/cdac7424-ac11-4d7b-9bc8-61296aa33feb.png b/train/cdac7424-ac11-4d7b-9bc8-61296aa33feb.png new file mode 100644 index 0000000000000000000000000000000000000000..56fa51ce3c66d6ba1c6cc1c97ad738bd68d7ee53 --- /dev/null +++ b/train/cdac7424-ac11-4d7b-9bc8-61296aa33feb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b354ab9b1d8017a5c68d0024e202352904c30251134c7690a199ec8d97371339 +size 2157101 diff --git a/train/ce473eeb-756c-4dc1-bbfe-6c4327a11cb8.png b/train/ce473eeb-756c-4dc1-bbfe-6c4327a11cb8.png new file mode 100644 index 0000000000000000000000000000000000000000..a040bd23bdc07a786190ccfa2dd1356cd4ccdfa3 --- /dev/null +++ b/train/ce473eeb-756c-4dc1-bbfe-6c4327a11cb8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11517596a3333260fda538ed4b568189da9b12fea1969835e02732bd7c9bd7cd +size 2207392 diff --git a/train/cea597a1-2f93-4294-a99e-ee2dd2ba4109.png b/train/cea597a1-2f93-4294-a99e-ee2dd2ba4109.png new file mode 100644 index 0000000000000000000000000000000000000000..c5e86633ce8ab8cd59e8b6614b825aca7ca26f39 --- /dev/null +++ b/train/cea597a1-2f93-4294-a99e-ee2dd2ba4109.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b91e818d2edebbfc41db5edcf53b43ea3734768c9762e12da9a71c39ef32da1f +size 2042095 diff --git a/train/cea8d467-6f0a-4efb-9ff9-04f7d490dd0b.png b/train/cea8d467-6f0a-4efb-9ff9-04f7d490dd0b.png new file mode 100644 index 0000000000000000000000000000000000000000..52a11066365a0bbc81b3b8537ba868cbddf8e2d7 --- /dev/null +++ b/train/cea8d467-6f0a-4efb-9ff9-04f7d490dd0b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c3ae91d57d18c73e162840708e4a1c6c78b00222f701160a681fa90d6db3ddc +size 2144897 diff --git a/train/cf1bbcc1-2774-4d11-9faf-aea5ab7a86a1.png b/train/cf1bbcc1-2774-4d11-9faf-aea5ab7a86a1.png new file mode 100644 index 0000000000000000000000000000000000000000..b76bc7ffec08d8c8e7e216019ad8a34ea1ab3451 --- /dev/null +++ b/train/cf1bbcc1-2774-4d11-9faf-aea5ab7a86a1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbb95d1fc00f86b9f0496a3f387837e12bd83a59cedb68d7c22520d4373c2bf3 +size 2139907 diff --git a/train/cf45b877-1734-4057-81f2-f32bc3f050b3.png b/train/cf45b877-1734-4057-81f2-f32bc3f050b3.png new file mode 100644 index 0000000000000000000000000000000000000000..021ff2adcef75e0609bb4cb195a70f0827d1bcf8 --- /dev/null +++ b/train/cf45b877-1734-4057-81f2-f32bc3f050b3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842b54669f1f81c6992064f38b84d7c3676f8eb3afe2bf75ab2dfb739b17b028 +size 1997387 diff --git a/train/cf49c1bc-76f1-4a9a-ad64-e6b35570cd43.png b/train/cf49c1bc-76f1-4a9a-ad64-e6b35570cd43.png new file mode 100644 index 0000000000000000000000000000000000000000..9b5c7a9da17b290bc5ae08253d033bedcb4d9e5d --- /dev/null +++ b/train/cf49c1bc-76f1-4a9a-ad64-e6b35570cd43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94d2f77a6c3bf10fa7e8a11ee0056deb32e9c75f1b2409a835c78b448622c3ed +size 2025649 diff --git a/train/cfb2b867-3bc4-478f-9e0e-daa7e7a124b8.png b/train/cfb2b867-3bc4-478f-9e0e-daa7e7a124b8.png new file mode 100644 index 0000000000000000000000000000000000000000..5c1bb6f8c21e825fedacd78574964e311727a55c --- /dev/null +++ b/train/cfb2b867-3bc4-478f-9e0e-daa7e7a124b8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa4a23fcf3037d482359ba8ee98529ba131b9f7fd320b98b655b863afae91fe +size 2115120 diff --git a/train/cfbce7df-200c-4d28-92e1-d1aee032686f.png b/train/cfbce7df-200c-4d28-92e1-d1aee032686f.png new file mode 100644 index 0000000000000000000000000000000000000000..2dd48a1a075bfd4d6434ab8754cbc2e90038a829 --- /dev/null +++ b/train/cfbce7df-200c-4d28-92e1-d1aee032686f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39abf2b81338ceb246c9ef501ec0f67c19ce6f4b5b73b366c3610236e4a631fb +size 2105741 diff --git a/train/d02d12ca-9e34-41e6-b91c-8063c2c4891c.png b/train/d02d12ca-9e34-41e6-b91c-8063c2c4891c.png new file mode 100644 index 0000000000000000000000000000000000000000..239f06a183b137884d8894fc52207d6f14006cb0 --- /dev/null +++ b/train/d02d12ca-9e34-41e6-b91c-8063c2c4891c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b361e224cd345ad036dd4a6ff913e3de1399ff2d1af2054f14ff7ef19c3fbb8 +size 2181772 diff --git a/train/d03f03f2-a82a-410f-bd9a-71195e41ef28.png b/train/d03f03f2-a82a-410f-bd9a-71195e41ef28.png new file mode 100644 index 0000000000000000000000000000000000000000..c44f6553d087af5ec28109a91cbfa9e16a760e46 --- /dev/null +++ b/train/d03f03f2-a82a-410f-bd9a-71195e41ef28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e276d371a65f7babbbef7607f01856759af487b13a17597c6f8c04c19acabb3 +size 2144437 diff --git a/train/d0bdcf8f-3d23-4e2f-a9a8-a0558348e45f.png b/train/d0bdcf8f-3d23-4e2f-a9a8-a0558348e45f.png new file mode 100644 index 0000000000000000000000000000000000000000..61261cde2fe572e1da1f2aeb88565d53da64cc56 --- /dev/null +++ b/train/d0bdcf8f-3d23-4e2f-a9a8-a0558348e45f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c0845d6b0313c0688c728525a7483ea4b0d4afc929577fd608b47c4acb99e6 +size 2085598 diff --git a/train/d0c9d4a3-0101-40a1-80e0-80878eee51d8.png b/train/d0c9d4a3-0101-40a1-80e0-80878eee51d8.png new file mode 100644 index 0000000000000000000000000000000000000000..124f9669bf21ddc35f973f6e183e1d0d3ae5ff36 --- /dev/null +++ b/train/d0c9d4a3-0101-40a1-80e0-80878eee51d8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f8c3da8f3c5ceaf0f0852fd75f68e9ee7827629aac3ae22a5c542266b943809 +size 2071185 diff --git a/train/d11887fd-80d8-4cf3-9d14-c62030f8632a.png b/train/d11887fd-80d8-4cf3-9d14-c62030f8632a.png new file mode 100644 index 0000000000000000000000000000000000000000..8831185bddd9e9ab3373d7c13e1ad1321a338a8f --- /dev/null +++ b/train/d11887fd-80d8-4cf3-9d14-c62030f8632a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c4f432927cfbb7c4c530ed1c9af3b0a38e3d4f697531b31dadd32debb94d4c2 +size 2050108 diff --git a/train/d19c9baf-ea02-4dd1-9c2b-98e8e1d75b84.png b/train/d19c9baf-ea02-4dd1-9c2b-98e8e1d75b84.png new file mode 100644 index 0000000000000000000000000000000000000000..ab81eaf1591d211b73546b5ad66c48cf4fadbc2e --- /dev/null +++ b/train/d19c9baf-ea02-4dd1-9c2b-98e8e1d75b84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22a4fdb4702b11babaec2bbfca03c37084bddb72cb5a2e6e1b694005a6521359 +size 2163749 diff --git a/train/d1b6e91a-973f-4e6c-919d-1271f2c457c4.png b/train/d1b6e91a-973f-4e6c-919d-1271f2c457c4.png new file mode 100644 index 0000000000000000000000000000000000000000..89a691aac92ce436457a6d3af3ba45cf6c0ae7b7 --- /dev/null +++ b/train/d1b6e91a-973f-4e6c-919d-1271f2c457c4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d845f0adc575b92028d5d385f4e9984f960bf946882c04e039892ce47f02f8 +size 2050363 diff --git a/train/d21351a5-4e02-4bf6-a35d-ed80bf3b6fd0.png b/train/d21351a5-4e02-4bf6-a35d-ed80bf3b6fd0.png new file mode 100644 index 0000000000000000000000000000000000000000..5dcfb5198034fdd731ffb94b7332796fbe0900ed --- /dev/null +++ b/train/d21351a5-4e02-4bf6-a35d-ed80bf3b6fd0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4abf9f64d3c28b9ab06fe12e1ff7c6c2603a94272ac92149bcf65b1e8da2486a +size 2087908 diff --git a/train/d22d12f4-65d1-43b9-b55e-cdfbccfc4241.png b/train/d22d12f4-65d1-43b9-b55e-cdfbccfc4241.png new file mode 100644 index 0000000000000000000000000000000000000000..0d6e2531d13871e62b8f463c1df622363fcca9e6 --- /dev/null +++ b/train/d22d12f4-65d1-43b9-b55e-cdfbccfc4241.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9464e76676cf1277ee5165ba1dc3f56f14f4062c47121d04a837f4ca84874fe3 +size 2113982 diff --git a/train/d2957af0-3b1b-4e6c-ad73-65b62f9b5dad.png b/train/d2957af0-3b1b-4e6c-ad73-65b62f9b5dad.png new file mode 100644 index 0000000000000000000000000000000000000000..31021682376e1b228b222c3d66090478a492ce66 --- /dev/null +++ b/train/d2957af0-3b1b-4e6c-ad73-65b62f9b5dad.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2534565420b8f33a4ec5f33e39d9d0cca4f643dc7b83a4964668c31ad1890f2f +size 2010999 diff --git a/train/d2c0ab9c-fa65-47bf-bdc7-bc763dba4f8a.png b/train/d2c0ab9c-fa65-47bf-bdc7-bc763dba4f8a.png new file mode 100644 index 0000000000000000000000000000000000000000..fa858466bc1e159fbac1278d9f943e32894d63d5 --- /dev/null +++ b/train/d2c0ab9c-fa65-47bf-bdc7-bc763dba4f8a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63f4b392e8c694dcc4590f690757c70b9d235a3519d35b4903fa1372cc1a32d6 +size 2092296 diff --git a/train/d2c0bcca-41df-456b-a24a-2c61c554a318.png b/train/d2c0bcca-41df-456b-a24a-2c61c554a318.png new file mode 100644 index 0000000000000000000000000000000000000000..c152e05fe221aeefcc170302bf6dfd33412fe1ee --- /dev/null +++ b/train/d2c0bcca-41df-456b-a24a-2c61c554a318.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c173679af467d7cf0ddec8ca7f79461d6f64d0fa2b51799c6182714ad08d07c +size 2121901 diff --git a/train/d2cf9d1f-41bb-4db4-810a-63b4333fcb32.png b/train/d2cf9d1f-41bb-4db4-810a-63b4333fcb32.png new file mode 100644 index 0000000000000000000000000000000000000000..946f6c6b4ccfc594a8102d262785f923de6ec12b --- /dev/null +++ b/train/d2cf9d1f-41bb-4db4-810a-63b4333fcb32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf61bbe867fbf9b06b5d7b85d18e9a602629c4e1738010123d7d7d8faf0dc929 +size 2130380 diff --git a/train/d306ffde-b500-4277-9f03-bc3d161633bb.png b/train/d306ffde-b500-4277-9f03-bc3d161633bb.png new file mode 100644 index 0000000000000000000000000000000000000000..7756ed01c5805dfb9a686da8d4e4db3e628ca746 --- /dev/null +++ b/train/d306ffde-b500-4277-9f03-bc3d161633bb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb3a54406f89928c71f33c36107f44347a6c743f94f456adee274ec414a7990c +size 2154137 diff --git a/train/d307da59-516a-4cf5-9347-f59bc0e00355.png b/train/d307da59-516a-4cf5-9347-f59bc0e00355.png new file mode 100644 index 0000000000000000000000000000000000000000..785cbdbce00498cce67c3624f072d77d3760fce7 --- /dev/null +++ b/train/d307da59-516a-4cf5-9347-f59bc0e00355.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab5896ab7959501c46c379123935422f6d02fa2b6cbeb3b36eeb57de4308e598 +size 2266079 diff --git a/train/d30a837b-08b5-46d7-98c6-3ae821c92479.png b/train/d30a837b-08b5-46d7-98c6-3ae821c92479.png new file mode 100644 index 0000000000000000000000000000000000000000..d6d2b9fc738eef0f01e720cd8bdb1b0d833bc45f --- /dev/null +++ b/train/d30a837b-08b5-46d7-98c6-3ae821c92479.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6c7cd7f61c48f87b9e4e625035388511029c21a1920ce91b471248e9d5c220e +size 2238743 diff --git a/train/d36136ef-eb35-406f-b5a8-ae1cceb5e86c.png b/train/d36136ef-eb35-406f-b5a8-ae1cceb5e86c.png new file mode 100644 index 0000000000000000000000000000000000000000..c5a7e79da9a846f1d4a07baffffb065150c1ebfb --- /dev/null +++ b/train/d36136ef-eb35-406f-b5a8-ae1cceb5e86c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0d7d765e1929520af88363b025d008b20c9abc8fae8d293be4aa1f97ac1681 +size 2044363 diff --git a/train/d3a79e6e-2c93-457a-bd0b-8380e1d74bfd.png b/train/d3a79e6e-2c93-457a-bd0b-8380e1d74bfd.png new file mode 100644 index 0000000000000000000000000000000000000000..80c79a735c3ba167d5087bad88f12091026a3e75 --- /dev/null +++ b/train/d3a79e6e-2c93-457a-bd0b-8380e1d74bfd.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80c6ecb5dc67f0adf92da1ce85572f384e5b836e69b57e1edc3cb18d94e6086b +size 2153667 diff --git a/train/d3c0c9d9-455a-4704-95f1-65c21403cf0e.png b/train/d3c0c9d9-455a-4704-95f1-65c21403cf0e.png new file mode 100644 index 0000000000000000000000000000000000000000..ad28db45f62667cf6469e08227cfe1dc1d46bead --- /dev/null +++ b/train/d3c0c9d9-455a-4704-95f1-65c21403cf0e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdc7626ee5f6f80aba718af371ab88d4aabe9aa2d20f69e918d91a303e4aa4c2 +size 2165077 diff --git a/train/d4342cc6-08bf-44bb-b017-aea2e856641e.png b/train/d4342cc6-08bf-44bb-b017-aea2e856641e.png new file mode 100644 index 0000000000000000000000000000000000000000..d91f90d4ffa854b466c2c4deeda8562442c3ce92 --- /dev/null +++ b/train/d4342cc6-08bf-44bb-b017-aea2e856641e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e626c98fa54be04510df3701adb22973e93548f4861775462d04ffa29f7040e +size 1982965 diff --git a/train/d493601a-4f2b-46f5-98d4-04098644fd6c.png b/train/d493601a-4f2b-46f5-98d4-04098644fd6c.png new file mode 100644 index 0000000000000000000000000000000000000000..2b1a4443e70d282c199a3b73cc82ac80bd1680ff --- /dev/null +++ b/train/d493601a-4f2b-46f5-98d4-04098644fd6c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5e2b49b2f1baeeb7a832e40d5206c5dfd6888e0e3f191dc0e1a210b0de69a8 +size 2218328 diff --git a/train/d4a0f08d-496f-4401-bb37-af3e167caeda.png b/train/d4a0f08d-496f-4401-bb37-af3e167caeda.png new file mode 100644 index 0000000000000000000000000000000000000000..664c215768beb323b6c2cc96333ce33363034878 --- /dev/null +++ b/train/d4a0f08d-496f-4401-bb37-af3e167caeda.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e000bd1a063dca80a63031323cc7857a622e163fcef7856811a30ef82de7d14 +size 2102816 diff --git a/train/d4a1c0ee-e15e-4c70-aac7-d5268b983abd.png b/train/d4a1c0ee-e15e-4c70-aac7-d5268b983abd.png new file mode 100644 index 0000000000000000000000000000000000000000..bb84f7493467c50efab7271492f9b97595ff91da --- /dev/null +++ b/train/d4a1c0ee-e15e-4c70-aac7-d5268b983abd.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:330184f5b4df1182bc6ee0513b0a17d68513d419b33907868617acc5ee67de15 +size 2165035 diff --git a/train/d4b62286-e9bf-442f-bed5-9322e5251ea7.png b/train/d4b62286-e9bf-442f-bed5-9322e5251ea7.png new file mode 100644 index 0000000000000000000000000000000000000000..eec25ff4e92f4d130e55aabce05485fa602bb71f --- /dev/null +++ b/train/d4b62286-e9bf-442f-bed5-9322e5251ea7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d7f5ce4163462d4f3fd3f7dbeb505283538cb22d3310d32356c23c6241c56b5 +size 2163926 diff --git a/train/d4c9de84-8fea-49d5-92c6-353945aed9b1.png b/train/d4c9de84-8fea-49d5-92c6-353945aed9b1.png new file mode 100644 index 0000000000000000000000000000000000000000..15414223f40d4ca3e196fe4ef7763fd7467253fe --- /dev/null +++ b/train/d4c9de84-8fea-49d5-92c6-353945aed9b1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d9f53f4f39cfccb3e54fa17f691d2f5c45a133eb8d8635173ff873baf8762ac +size 2150642 diff --git a/train/d53007db-06d5-4d97-9651-722f2e1c1af7.png b/train/d53007db-06d5-4d97-9651-722f2e1c1af7.png new file mode 100644 index 0000000000000000000000000000000000000000..b65528aaf9720d0776a200251bce882309be6e0c --- /dev/null +++ b/train/d53007db-06d5-4d97-9651-722f2e1c1af7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5b8de7a46d6fc4b54ee9a7952fb6ea9e5c55bedd8666491c745076cbca1f4f +size 2229355 diff --git a/train/d5de88b7-49f2-4316-92e8-28bc3996a338.png b/train/d5de88b7-49f2-4316-92e8-28bc3996a338.png new file mode 100644 index 0000000000000000000000000000000000000000..d1c4950a8723b00b23abfc4ec470e8653db920f0 --- /dev/null +++ b/train/d5de88b7-49f2-4316-92e8-28bc3996a338.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b25c41148670836a108999f18bf1fe60abea2b4c9806ddf3da6af662da85c8 +size 2163566 diff --git a/train/d6287fc1-a42e-429c-a2d9-6230b5783b93.png b/train/d6287fc1-a42e-429c-a2d9-6230b5783b93.png new file mode 100644 index 0000000000000000000000000000000000000000..65d25b336eb76c401154aae9032d1f52cdbe8bba --- /dev/null +++ b/train/d6287fc1-a42e-429c-a2d9-6230b5783b93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b08c1613ce9e0dcb1b22ca1a8368a590f63c4c7c5f3eb9841641bba2578f58 +size 2138339 diff --git a/train/d6495ece-37f8-482b-8a3b-f1580fdd555f.png b/train/d6495ece-37f8-482b-8a3b-f1580fdd555f.png new file mode 100644 index 0000000000000000000000000000000000000000..773986c2c960a93b145a5f4cdb6929aee167a4c1 --- /dev/null +++ b/train/d6495ece-37f8-482b-8a3b-f1580fdd555f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f8cdad605c5ce4676afc3b081dfb91da9f07c0b68a0888fd4b077da89ec8b77 +size 2206213 diff --git a/train/d6d10d45-8d91-4475-a373-a479a1f39758.png b/train/d6d10d45-8d91-4475-a373-a479a1f39758.png new file mode 100644 index 0000000000000000000000000000000000000000..f476c44c0c7631075ffceed3c6df0c301ee16fed --- /dev/null +++ b/train/d6d10d45-8d91-4475-a373-a479a1f39758.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06f927b85ea60be8b5d6d0a11e032d577690594086087ae3957836cd1c3ac9d2 +size 2170773 diff --git a/train/d7628893-e72f-4098-843d-7117527a3550.png b/train/d7628893-e72f-4098-843d-7117527a3550.png new file mode 100644 index 0000000000000000000000000000000000000000..c58c4b4997d7282f2e6c02358ee71f7d143a8a23 --- /dev/null +++ b/train/d7628893-e72f-4098-843d-7117527a3550.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:089e12d7a8e91c1e92ff6f4a21f42a6ab88cf7649b27c428987161624fc53a63 +size 2075487 diff --git a/train/d78783b0-0f92-49e5-bfd1-e682905075ab.png b/train/d78783b0-0f92-49e5-bfd1-e682905075ab.png new file mode 100644 index 0000000000000000000000000000000000000000..ee0652aefd6fbf8eca8425877b93634cc30d7c14 --- /dev/null +++ b/train/d78783b0-0f92-49e5-bfd1-e682905075ab.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da7ea59f9ec8ab79589e71ae2130cd9d6f4a00c526c4d61775c50d45cf7b106 +size 2117459 diff --git a/train/d7ddc0ec-af68-40c5-a465-d0205eea8fff.png b/train/d7ddc0ec-af68-40c5-a465-d0205eea8fff.png new file mode 100644 index 0000000000000000000000000000000000000000..f0023c0dfb1077ab9ec1ea132d44d354ff705cc6 --- /dev/null +++ b/train/d7ddc0ec-af68-40c5-a465-d0205eea8fff.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e78cb73ac19ea1eb8aa070df4c2f6987741c56f65bfda94e369b2730e168e8d7 +size 2039699 diff --git a/train/d80eae02-2664-4441-a62e-cf7ef717f1f6.png b/train/d80eae02-2664-4441-a62e-cf7ef717f1f6.png new file mode 100644 index 0000000000000000000000000000000000000000..edefb9c299a6f37274749291a6fef57e37a59b13 --- /dev/null +++ b/train/d80eae02-2664-4441-a62e-cf7ef717f1f6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c45f7f21392d3b5e03fca396240718080cc81a0078498fa811472fb7a06d750f +size 2229051 diff --git a/train/d8c07a12-b1f1-4f5a-8c05-95480953d016.png b/train/d8c07a12-b1f1-4f5a-8c05-95480953d016.png new file mode 100644 index 0000000000000000000000000000000000000000..5bcc0b4db5a5e33928027406619159c0807861f3 --- /dev/null +++ b/train/d8c07a12-b1f1-4f5a-8c05-95480953d016.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd7ef65dc77aed7b376c4ce4c4d24d2dd4f40057e01772f8ceb018b0aa50916f +size 2238894 diff --git a/train/d8c5ac9e-feac-41c6-8e7d-2209436c84f8.png b/train/d8c5ac9e-feac-41c6-8e7d-2209436c84f8.png new file mode 100644 index 0000000000000000000000000000000000000000..d41954584add5f25f71faee7b1f0a106ac839ff0 --- /dev/null +++ b/train/d8c5ac9e-feac-41c6-8e7d-2209436c84f8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4083b9d5033c35c74e8de554a208748703f9e3635afccc286cf0dfb652d4590f +size 2287890 diff --git a/train/d903f02a-4486-4ebe-a9ce-857ad1af0659.png b/train/d903f02a-4486-4ebe-a9ce-857ad1af0659.png new file mode 100644 index 0000000000000000000000000000000000000000..c8937a95d5c696f2072084a606ca08cf941db700 --- /dev/null +++ b/train/d903f02a-4486-4ebe-a9ce-857ad1af0659.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93fe75e9f233bf5f6f49cce42d53cac5af5647eb9a7e6cbdf35a9865297e1b1d +size 2140807 diff --git a/train/d945723b-de48-4c22-96e9-ed11ac5e1fd5.png b/train/d945723b-de48-4c22-96e9-ed11ac5e1fd5.png new file mode 100644 index 0000000000000000000000000000000000000000..8b798920d22cbd4fa23d7bc193332efba58ee894 --- /dev/null +++ b/train/d945723b-de48-4c22-96e9-ed11ac5e1fd5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abfec8d2ce77040c3905f8ac2cfb1226720579b65fbdbd6320ef82a2abd68910 +size 2037586 diff --git a/train/d97c3c4f-d2af-41e7-9da9-f707c4015ac2.png b/train/d97c3c4f-d2af-41e7-9da9-f707c4015ac2.png new file mode 100644 index 0000000000000000000000000000000000000000..40dc2d25393128073c35734e1912c6bb1885e078 --- /dev/null +++ b/train/d97c3c4f-d2af-41e7-9da9-f707c4015ac2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:961771e8df61787c17e96fd6309f352fefb19111cca16a800f7abe1b09e9d43e +size 2189901 diff --git a/train/d99b305e-61c5-4cdf-9c81-67e95d21f903.png b/train/d99b305e-61c5-4cdf-9c81-67e95d21f903.png new file mode 100644 index 0000000000000000000000000000000000000000..08796e9e71903764a99073d171dc5ac4afc2a02e --- /dev/null +++ b/train/d99b305e-61c5-4cdf-9c81-67e95d21f903.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8ac4f3f46e50a792eb1ec91a8f0e40a41b75931dff4b6e0683aeb479cffa5f8 +size 2086427 diff --git a/train/da399ef9-de6e-41f3-9afa-24d5813f64db.png b/train/da399ef9-de6e-41f3-9afa-24d5813f64db.png new file mode 100644 index 0000000000000000000000000000000000000000..d73b83a90df6fad30c38a713f3d61aa064b0e389 --- /dev/null +++ b/train/da399ef9-de6e-41f3-9afa-24d5813f64db.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d60609a6d26b2dd21a79b3f0517d38ed7b65e831b2a4daca06ff41fa6d972382 +size 2183621 diff --git a/train/da9de355-b894-46c7-baad-0cf9745cd022.png b/train/da9de355-b894-46c7-baad-0cf9745cd022.png new file mode 100644 index 0000000000000000000000000000000000000000..f836122eef9537f1eff6511f7ae437cfc87f5811 --- /dev/null +++ b/train/da9de355-b894-46c7-baad-0cf9745cd022.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de7ed38cc80586d338469c665976d329351f59dad7b352d5d3b9055481ed074 +size 2096911 diff --git a/train/db998985-a041-418d-8f8a-3650147ccc92.png b/train/db998985-a041-418d-8f8a-3650147ccc92.png new file mode 100644 index 0000000000000000000000000000000000000000..049d5f0e15c9eeafdce9e935d9632039142dff92 --- /dev/null +++ b/train/db998985-a041-418d-8f8a-3650147ccc92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea0a8690087c426e7d7a755f0c18f1e97e35125d4cff6b5682923b7f22644deb +size 1988122 diff --git a/train/dba2900b-8883-40f4-bd4b-e9d0bd828631.png b/train/dba2900b-8883-40f4-bd4b-e9d0bd828631.png new file mode 100644 index 0000000000000000000000000000000000000000..737abfec5447ba8baf090f954924250f78b9f34d --- /dev/null +++ b/train/dba2900b-8883-40f4-bd4b-e9d0bd828631.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3699ed31bd2800b66c9f4931949d5c80dd126af7c62f2e2794ced43e356072d4 +size 2151467 diff --git a/train/dba81309-96ed-483a-8885-5a9468633e3e.png b/train/dba81309-96ed-483a-8885-5a9468633e3e.png new file mode 100644 index 0000000000000000000000000000000000000000..79787df87522cebe5d4786a6cb0bbba5416a7ec8 --- /dev/null +++ b/train/dba81309-96ed-483a-8885-5a9468633e3e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29972577ca3437b2cfd6e54cd8f84ea7e4c97eb43e9537ca3b98615ca4c0e6f6 +size 2177228 diff --git a/train/dbe370ec-17b1-4b21-aaec-45239fb8cf27.png b/train/dbe370ec-17b1-4b21-aaec-45239fb8cf27.png new file mode 100644 index 0000000000000000000000000000000000000000..40286617183cf8b65c64fe2243d136134cf62e80 --- /dev/null +++ b/train/dbe370ec-17b1-4b21-aaec-45239fb8cf27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e161f95396381a66c9370dcbe8c4e17ec4818aa223b76d5d23364aa270bd6f3 +size 2097690 diff --git a/train/dbfaac8d-2ac9-42db-81e7-be27065d0a51.png b/train/dbfaac8d-2ac9-42db-81e7-be27065d0a51.png new file mode 100644 index 0000000000000000000000000000000000000000..f7ba896f681d83a650a886610797985abf4b67f2 --- /dev/null +++ b/train/dbfaac8d-2ac9-42db-81e7-be27065d0a51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4677a0527292ccd9b40c17086f5fe57a1788f0491333a2bd633fe4e8b9dc2df0 +size 2078860 diff --git a/train/dc41709a-a106-4921-acef-6ce2432bd755.png b/train/dc41709a-a106-4921-acef-6ce2432bd755.png new file mode 100644 index 0000000000000000000000000000000000000000..85655810cdd92a032207fce683fa565e33d49dd3 --- /dev/null +++ b/train/dc41709a-a106-4921-acef-6ce2432bd755.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cccd3c37f99337812dcffa6d8b6dec5960a0f4795df5426a3d8ae3eff9e42084 +size 2191457 diff --git a/train/dc977dd8-ed49-4280-b11c-96be9df1697d.png b/train/dc977dd8-ed49-4280-b11c-96be9df1697d.png new file mode 100644 index 0000000000000000000000000000000000000000..f615fb5703b3c09fa113010cff201a337845d1a5 --- /dev/null +++ b/train/dc977dd8-ed49-4280-b11c-96be9df1697d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22a361ab7303952f2951ebd2f335408ff557f75412c815b03974c429e74172e5 +size 2057526 diff --git a/train/dcd62471-72e2-437d-94dc-b5ea7595f976.png b/train/dcd62471-72e2-437d-94dc-b5ea7595f976.png new file mode 100644 index 0000000000000000000000000000000000000000..c8d7878da8c90b31e6417c8749a4756fba3bf87c --- /dev/null +++ b/train/dcd62471-72e2-437d-94dc-b5ea7595f976.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0955269b4262dc30f5ed8f7836f49253fee55addf48d40049537fa527a01bf35 +size 2121509 diff --git a/train/dd20c6b1-732d-4055-9a5f-c35be7b7c609.png b/train/dd20c6b1-732d-4055-9a5f-c35be7b7c609.png new file mode 100644 index 0000000000000000000000000000000000000000..f32383a279dd29f321cf59ff995864ac64aae51c --- /dev/null +++ b/train/dd20c6b1-732d-4055-9a5f-c35be7b7c609.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b265bfdee3450327262bb3c99dbc2e6881339b8203e2f8090ede6037d73fdce9 +size 2162588 diff --git a/train/dd4daa85-0457-410f-af66-ba31f65dd585.png b/train/dd4daa85-0457-410f-af66-ba31f65dd585.png new file mode 100644 index 0000000000000000000000000000000000000000..80ab77178d114a13377e0ea04b01d72f4e1f8ae7 --- /dev/null +++ b/train/dd4daa85-0457-410f-af66-ba31f65dd585.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6955edd59acb0eaf27a4892e51192c57f0d9af7ff9e1e418bac57fc5cfb8cb +size 2134491 diff --git a/train/dd5f8330-13ee-427a-977b-942839244127.png b/train/dd5f8330-13ee-427a-977b-942839244127.png new file mode 100644 index 0000000000000000000000000000000000000000..e2f434b2dda5f8b5a9a1f2f1cdfeafddff6a50a8 --- /dev/null +++ b/train/dd5f8330-13ee-427a-977b-942839244127.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abb499b0cb49dd5e281917b503e69a1dd36d03636e74551103c9d0ee5a274527 +size 1971072 diff --git a/train/dd7bbd1c-de73-4552-8bc7-5a3b20b12517.png b/train/dd7bbd1c-de73-4552-8bc7-5a3b20b12517.png new file mode 100644 index 0000000000000000000000000000000000000000..7d8f36bb02248573b2d992f9cb337d99b8c7655d --- /dev/null +++ b/train/dd7bbd1c-de73-4552-8bc7-5a3b20b12517.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85518911f02ffcb89585128de25a625e8c915e380894b3d4d3ba2b0c25ca03fd +size 2138703 diff --git a/train/de1d3a36-f8d7-47f5-80ac-40eaa2428a7b.png b/train/de1d3a36-f8d7-47f5-80ac-40eaa2428a7b.png new file mode 100644 index 0000000000000000000000000000000000000000..3c09506b0814f9a746104e6686a6c2cb1712ebce --- /dev/null +++ b/train/de1d3a36-f8d7-47f5-80ac-40eaa2428a7b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61d6f7a23efd95eda617c5057cff438b5c8280437d1084ac5d05b945fc4f6d8c +size 2136000 diff --git a/train/de496334-7b6a-4f5e-adab-2dc21cc08947.png b/train/de496334-7b6a-4f5e-adab-2dc21cc08947.png new file mode 100644 index 0000000000000000000000000000000000000000..7cb1f2507e06f6246e0d6e976af1b606ebde7dc3 --- /dev/null +++ b/train/de496334-7b6a-4f5e-adab-2dc21cc08947.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7330b16a899814be15473a74174c01ab4e768dd11288eda08fe5c55d0151cddb +size 2144435 diff --git a/train/de65ab45-a649-42a4-9976-b740bcddc9c1.png b/train/de65ab45-a649-42a4-9976-b740bcddc9c1.png new file mode 100644 index 0000000000000000000000000000000000000000..fbb3cfa539ce98a2ee42fcc2c1b4d4f46ba989c0 --- /dev/null +++ b/train/de65ab45-a649-42a4-9976-b740bcddc9c1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d77e8018287496214c1b2687859e3029627c568d99e9120bd2077a30a8b5bee +size 2162757 diff --git a/train/ded80dfb-fc8b-4a14-87a6-11c60b8e35b9.png b/train/ded80dfb-fc8b-4a14-87a6-11c60b8e35b9.png new file mode 100644 index 0000000000000000000000000000000000000000..80b98516f8a83456e5db86ab96f901269ed65e6c --- /dev/null +++ b/train/ded80dfb-fc8b-4a14-87a6-11c60b8e35b9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce7099eff66fdb8a287aaf8551498e58fe4009dd124add3e01d0ca8ccce77130 +size 2037609 diff --git a/train/df0047f3-9004-4828-a7e8-7ab1c2e43ceb.png b/train/df0047f3-9004-4828-a7e8-7ab1c2e43ceb.png new file mode 100644 index 0000000000000000000000000000000000000000..93c559b11baa1c3e07dbaeabda6373bebddc0f6b --- /dev/null +++ b/train/df0047f3-9004-4828-a7e8-7ab1c2e43ceb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c679ed47ee9aca6fd0317c81f3a4a32584626f03bd83b0bcb4e19a08959d24c +size 2155026 diff --git a/train/df300670-490c-464e-b40b-64d09c1af5c4.png b/train/df300670-490c-464e-b40b-64d09c1af5c4.png new file mode 100644 index 0000000000000000000000000000000000000000..f66d6fe107472b4879c60d664bdd56c57ac620de --- /dev/null +++ b/train/df300670-490c-464e-b40b-64d09c1af5c4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f008a917bedbb2755ffd34b6954e6f5cb16dbe418efc0b5d257ad20b47064acc +size 2197419 diff --git a/train/df390099-22e1-481b-951d-6350f2e110e0.png b/train/df390099-22e1-481b-951d-6350f2e110e0.png new file mode 100644 index 0000000000000000000000000000000000000000..bc75ac37621ebca14f0b04948692c0b6f75a49d9 --- /dev/null +++ b/train/df390099-22e1-481b-951d-6350f2e110e0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9484cef4224b65e1f722dad1f0e12aa3f90c8523bd614ba185314ea2a048afd +size 2257755 diff --git a/train/df696895-77ce-488a-847d-b9edb838bce6.png b/train/df696895-77ce-488a-847d-b9edb838bce6.png new file mode 100644 index 0000000000000000000000000000000000000000..4722d9614ed74b3c803e8a0c7deef25845a37df7 --- /dev/null +++ b/train/df696895-77ce-488a-847d-b9edb838bce6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c07aa93d35005956c570cef75266bccb61a73996923564ca6c496fa560c57749 +size 2181507 diff --git a/train/df7dc598-584d-4ef5-9679-b3c4b44d1852.png b/train/df7dc598-584d-4ef5-9679-b3c4b44d1852.png new file mode 100644 index 0000000000000000000000000000000000000000..8d655f01ba3ae309e18379a6eac1fee08c5a2a6e --- /dev/null +++ b/train/df7dc598-584d-4ef5-9679-b3c4b44d1852.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c13f5b8f2d7e49323f85b229a917e14793df0e7d3b4dbcb36043d56290fc2ae8 +size 2076417 diff --git a/train/df938d30-b633-4cee-8314-b7c3bb8b09e6.png b/train/df938d30-b633-4cee-8314-b7c3bb8b09e6.png new file mode 100644 index 0000000000000000000000000000000000000000..96360d390fb637e553aa6a5bc52cfd6d8d317b81 --- /dev/null +++ b/train/df938d30-b633-4cee-8314-b7c3bb8b09e6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef62143ff489e4000b62770f010f4e59d9fc9348ae7f7dd43927cef32100e88 +size 2199537 diff --git a/train/dffc6471-67b5-4020-bb90-0de71d6cf162.png b/train/dffc6471-67b5-4020-bb90-0de71d6cf162.png new file mode 100644 index 0000000000000000000000000000000000000000..91644855fec523f32bfe6da1fe583bfaaed4b1fb --- /dev/null +++ b/train/dffc6471-67b5-4020-bb90-0de71d6cf162.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4423753ad749b327fdf0fe692b9ff00ed724b13f762e9cb39fba68e7220e85a2 +size 2121195 diff --git a/train/e069966b-e4d6-476d-a6d2-9b2b338f1160.png b/train/e069966b-e4d6-476d-a6d2-9b2b338f1160.png new file mode 100644 index 0000000000000000000000000000000000000000..4968ff53097908194b39e775ec674820ade24738 --- /dev/null +++ b/train/e069966b-e4d6-476d-a6d2-9b2b338f1160.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0468350c433ece67624882b17cb2bbc5fb6eb0588e2067093cb9a98b63f0e3de +size 2236064 diff --git a/train/e075472f-0045-4e86-af68-f3c51651fab8.png b/train/e075472f-0045-4e86-af68-f3c51651fab8.png new file mode 100644 index 0000000000000000000000000000000000000000..0cc84339992fcb38301e9b5dc2b92197712ce223 --- /dev/null +++ b/train/e075472f-0045-4e86-af68-f3c51651fab8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46e17d7d068fccf1ab7db97ede17c04348827661d1e560274bf171b08e545626 +size 2162728 diff --git a/train/e0a171fe-4644-4001-897d-4272630215fb.png b/train/e0a171fe-4644-4001-897d-4272630215fb.png new file mode 100644 index 0000000000000000000000000000000000000000..9d0d577cd4d96447d403ca00b43e62da021da214 --- /dev/null +++ b/train/e0a171fe-4644-4001-897d-4272630215fb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:407a429da3e2f48fce156db8b79a1187f058e2ae7295b0e16aedab7c46bfcd69 +size 2144704 diff --git a/train/e0b5765d-49d3-4747-8695-4fdfbed7e2a3.png b/train/e0b5765d-49d3-4747-8695-4fdfbed7e2a3.png new file mode 100644 index 0000000000000000000000000000000000000000..90e2852f4397da97f19caa5cd948fa52031746f5 --- /dev/null +++ b/train/e0b5765d-49d3-4747-8695-4fdfbed7e2a3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:972757db8393b9f74463581afd17747ec6f065cf24f09e36382471020ee8413d +size 2102553 diff --git a/train/e0c52ecc-38cb-457b-b8d8-293a0246aa4b.png b/train/e0c52ecc-38cb-457b-b8d8-293a0246aa4b.png new file mode 100644 index 0000000000000000000000000000000000000000..486e13e484fea2e10e8050c6cd884972435f8b00 --- /dev/null +++ b/train/e0c52ecc-38cb-457b-b8d8-293a0246aa4b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d91c92012646ddc067cab3b16888b64e6752f21cbe8c33ccfb528dfc94a54afb +size 2192616 diff --git a/train/e0f268a1-53ff-4947-b916-e78642ce2fd6.png b/train/e0f268a1-53ff-4947-b916-e78642ce2fd6.png new file mode 100644 index 0000000000000000000000000000000000000000..be259fd374d1c865b4c0c4d50763f5548528d5d4 --- /dev/null +++ b/train/e0f268a1-53ff-4947-b916-e78642ce2fd6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99c7e95b8d9302fde5fcaa2b191053a478d3960696cb254ddb22b4511c4aa57d +size 2128989 diff --git a/train/e0f50cf3-f2c2-4352-8bcb-7ab3a1029d22.png b/train/e0f50cf3-f2c2-4352-8bcb-7ab3a1029d22.png new file mode 100644 index 0000000000000000000000000000000000000000..ed648f1af1cffb5c936a473b4f2480544dabd50c --- /dev/null +++ b/train/e0f50cf3-f2c2-4352-8bcb-7ab3a1029d22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50aea5cfbc6307ab4314955e10ffd9533f54f3a41f386e3428e5e584fd707d99 +size 2103487 diff --git a/train/e131746a-614b-4035-a83d-51279c05330c.png b/train/e131746a-614b-4035-a83d-51279c05330c.png new file mode 100644 index 0000000000000000000000000000000000000000..8788e8dba0a91c096db3d293433eab73f82def4c --- /dev/null +++ b/train/e131746a-614b-4035-a83d-51279c05330c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:601770ea01ca6d3c9db2a096d1d8d4e66830db557eb2e8d17286cbc18edda79a +size 2151550 diff --git a/train/e15873ef-6469-4d6a-8a43-93e36407abaf.png b/train/e15873ef-6469-4d6a-8a43-93e36407abaf.png new file mode 100644 index 0000000000000000000000000000000000000000..e459bd1f365e30582af2a2a204a391e67b88ca50 --- /dev/null +++ b/train/e15873ef-6469-4d6a-8a43-93e36407abaf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7ee97eed7a1d3220f88a74f64e7241602de6e982ca1ca33e5629fcb35098436 +size 2036713 diff --git a/train/e2187f59-b99f-4881-bdfd-7d49bbd7d9bf.png b/train/e2187f59-b99f-4881-bdfd-7d49bbd7d9bf.png new file mode 100644 index 0000000000000000000000000000000000000000..137a517320e731e68bc0b737bae89327337c2d9b --- /dev/null +++ b/train/e2187f59-b99f-4881-bdfd-7d49bbd7d9bf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:566b8d9026ad3de25190145da87db312188a4b58b7aa0ad5a076a66575f152be +size 2140072 diff --git a/train/e22fa6ae-d47b-4b39-ab16-a9e52a3224db.png b/train/e22fa6ae-d47b-4b39-ab16-a9e52a3224db.png new file mode 100644 index 0000000000000000000000000000000000000000..3a8463c1cd96b4e7dd5cc2678fe7548f5c44d6a6 --- /dev/null +++ b/train/e22fa6ae-d47b-4b39-ab16-a9e52a3224db.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a06de5a0c131bafd1439bbcdfe135913f3de04df020c008a1c1291e2cfef0f35 +size 2151261 diff --git a/train/e23070bc-2997-4355-ac96-7677ee929cc5.png b/train/e23070bc-2997-4355-ac96-7677ee929cc5.png new file mode 100644 index 0000000000000000000000000000000000000000..96c7e1f0d1ea3c337864e2bf07a4484cecfa6730 --- /dev/null +++ b/train/e23070bc-2997-4355-ac96-7677ee929cc5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:552b65c6e6db77d50812b2c22884e190cf0e75cce2cb962a197a812bbbba5c8b +size 2162128 diff --git a/train/e2462e45-0522-417c-9361-5e6aae991c31.png b/train/e2462e45-0522-417c-9361-5e6aae991c31.png new file mode 100644 index 0000000000000000000000000000000000000000..0f11d33f148d184fcfab3d20cc7fccb8c3c99ca5 --- /dev/null +++ b/train/e2462e45-0522-417c-9361-5e6aae991c31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37591c4dc09dfa367861c4838e9ac882f3595e63fdee4718f80af3578c492510 +size 2071176 diff --git a/train/e2bce8ac-66ed-4e38-8518-c512052fd03c.png b/train/e2bce8ac-66ed-4e38-8518-c512052fd03c.png new file mode 100644 index 0000000000000000000000000000000000000000..4d71af60e09aea77ef6511ecb7bed4d343e90663 --- /dev/null +++ b/train/e2bce8ac-66ed-4e38-8518-c512052fd03c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7c335e9fddf784d649065f86471a23b9d8ee40ad4926dc08ae09bd15025dcd +size 1981445 diff --git a/train/e2c9fc94-700f-4957-967f-daae8f085f38.png b/train/e2c9fc94-700f-4957-967f-daae8f085f38.png new file mode 100644 index 0000000000000000000000000000000000000000..9a2cd88a5ea4bf1c99dca98be0e0a453ba18c5a2 --- /dev/null +++ b/train/e2c9fc94-700f-4957-967f-daae8f085f38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4353ec2a2a24f74d974b6801b236da1540f8217b5fdb06535bfcf5afd9b7cf6 +size 2094312 diff --git a/train/e320bc85-12f5-48ce-bb69-83352fe51068.png b/train/e320bc85-12f5-48ce-bb69-83352fe51068.png new file mode 100644 index 0000000000000000000000000000000000000000..ec6d1f32bada490eb0b7e7b72adc128d8a04a7b8 --- /dev/null +++ b/train/e320bc85-12f5-48ce-bb69-83352fe51068.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab422345948a28d96e4fda95e58607636a39abf107b121707f330ebadad154a3 +size 2040313 diff --git a/train/e33bbcc5-aab5-45ae-a9e2-86086e9eef2f.png b/train/e33bbcc5-aab5-45ae-a9e2-86086e9eef2f.png new file mode 100644 index 0000000000000000000000000000000000000000..e2c6c58b86d9afaf9c7270a0315d81ce910ef029 --- /dev/null +++ b/train/e33bbcc5-aab5-45ae-a9e2-86086e9eef2f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6280ab31aaa4d2d10ff9351ca7ccec484f7436c04d9c6ebf3ba8bfbaffe5143e +size 2149428 diff --git a/train/e3a79873-40dd-4c68-abd0-892d1dae6895.png b/train/e3a79873-40dd-4c68-abd0-892d1dae6895.png new file mode 100644 index 0000000000000000000000000000000000000000..da9bb9b27edf3e1664644f3a2ea7f73b0a517b4d --- /dev/null +++ b/train/e3a79873-40dd-4c68-abd0-892d1dae6895.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0920bed4d6024e365b332489312c823717ed2bdbc6c0c24c82508fac19998c3 +size 2182393 diff --git a/train/e3c345b3-632b-4542-9fcf-8764a3d96441.png b/train/e3c345b3-632b-4542-9fcf-8764a3d96441.png new file mode 100644 index 0000000000000000000000000000000000000000..c857b95ea54c2c9cafadf05cd6fd2ed0126397aa --- /dev/null +++ b/train/e3c345b3-632b-4542-9fcf-8764a3d96441.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08f9d91492080a0e1228a38fb74af47307349df099627308b44aefd3d3c76fe4 +size 2188869 diff --git a/train/e3d33ef0-e407-4bfb-858a-b9f94e0f6534.png b/train/e3d33ef0-e407-4bfb-858a-b9f94e0f6534.png new file mode 100644 index 0000000000000000000000000000000000000000..646cb0f79d3e8ac7005fab513a7e35a984471a31 --- /dev/null +++ b/train/e3d33ef0-e407-4bfb-858a-b9f94e0f6534.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1810a802124f2b5fac2a32f7494c59fb2d79c72be8990081e281712cac44b68 +size 2027079 diff --git a/train/e3e48ddb-9d3d-4df4-a3ef-164e07ffd785.png b/train/e3e48ddb-9d3d-4df4-a3ef-164e07ffd785.png new file mode 100644 index 0000000000000000000000000000000000000000..39a88cca73815f650246ac22f4197eb9592640fa --- /dev/null +++ b/train/e3e48ddb-9d3d-4df4-a3ef-164e07ffd785.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55dbfabd3ed5cd20b1f6ab1670df1a49c0ce238960a20cfd1b67ed60dd76625a +size 2097920 diff --git a/train/e4d7997f-9be7-4d65-abb8-4888fa7af4bd.png b/train/e4d7997f-9be7-4d65-abb8-4888fa7af4bd.png new file mode 100644 index 0000000000000000000000000000000000000000..c64b9e8bcab04a3baeb88d2c400399552a1db8f8 --- /dev/null +++ b/train/e4d7997f-9be7-4d65-abb8-4888fa7af4bd.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:373bb57486df9ce9052caee4577dc80da056907b8f60e671ef91fef9c1398db9 +size 2211579 diff --git a/train/e5501e6d-91e4-4066-9770-bd8cafde48d7.png b/train/e5501e6d-91e4-4066-9770-bd8cafde48d7.png new file mode 100644 index 0000000000000000000000000000000000000000..e8891f40e29f0c83542b34685409a9e4389f9b12 --- /dev/null +++ b/train/e5501e6d-91e4-4066-9770-bd8cafde48d7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed3bcbcd7b94ed5c1d321c784d3e5e22e8f2851c2e77f71da2761e08b17d7741 +size 2086704 diff --git a/train/e638ab85-a9ed-4a9c-adc9-56d9e1bdfada.png b/train/e638ab85-a9ed-4a9c-adc9-56d9e1bdfada.png new file mode 100644 index 0000000000000000000000000000000000000000..b8a5cba183ce12cce4609e300b4d16b30f98f548 --- /dev/null +++ b/train/e638ab85-a9ed-4a9c-adc9-56d9e1bdfada.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef986f9df2ac39b85fd81ac6554bfacc628c03c348fa2fd8feda97b40bcca70 +size 2153379 diff --git a/train/e666c334-71e2-477d-bf60-eb67657f055a.png b/train/e666c334-71e2-477d-bf60-eb67657f055a.png new file mode 100644 index 0000000000000000000000000000000000000000..41910d66b106827b3a152654eac69806fb5b9c6b --- /dev/null +++ b/train/e666c334-71e2-477d-bf60-eb67657f055a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:632b2c8cd27b9bb93898568e64afcc55254194b382e0315cf25303b01ce59116 +size 2157553 diff --git a/train/e68a4fab-d9e1-4989-af11-01bdbf4803f8.png b/train/e68a4fab-d9e1-4989-af11-01bdbf4803f8.png new file mode 100644 index 0000000000000000000000000000000000000000..fd1576fd4fa45292f58c11fcdc28b3015fe250bc --- /dev/null +++ b/train/e68a4fab-d9e1-4989-af11-01bdbf4803f8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e48a63d6f44b280da2e2d4a941ed8dfb68c3ce0159b194a595ae4aca8f2f30 +size 2214438 diff --git a/train/e725ce7c-18c4-4476-a4a0-85d75bd0ae50.png b/train/e725ce7c-18c4-4476-a4a0-85d75bd0ae50.png new file mode 100644 index 0000000000000000000000000000000000000000..59ea7e47afb7cd32397370b5ae1cf6ceb95a2589 --- /dev/null +++ b/train/e725ce7c-18c4-4476-a4a0-85d75bd0ae50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b190520af77b77720e0cd56df0395ffd8aa9ac68acf78ba78421d2a532394790 +size 2133540 diff --git a/train/e737e05a-6301-4466-b683-e037a580c823.png b/train/e737e05a-6301-4466-b683-e037a580c823.png new file mode 100644 index 0000000000000000000000000000000000000000..5fb392353ad6ff54e2a3cdc8262e8b40dd9530e3 --- /dev/null +++ b/train/e737e05a-6301-4466-b683-e037a580c823.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf241108f213fd0a0d75a17f79530b92e9b2f9dbe731da65ad31c615965cc21 +size 2151654 diff --git a/train/e73e6c00-c0b1-4180-ac07-e1d0efd36b8c.png b/train/e73e6c00-c0b1-4180-ac07-e1d0efd36b8c.png new file mode 100644 index 0000000000000000000000000000000000000000..55fe8f2dfe98d7274eba26239af4b8e155c9f13a --- /dev/null +++ b/train/e73e6c00-c0b1-4180-ac07-e1d0efd36b8c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a44e9bcb00df4b7b173e9d74868282bcbda7bda5ccc37433a850f44bbb12cc1 +size 2041304 diff --git a/train/e756dcb4-ac5e-40ba-9722-18100c99ce79.png b/train/e756dcb4-ac5e-40ba-9722-18100c99ce79.png new file mode 100644 index 0000000000000000000000000000000000000000..d0876658df3c503377486d87bd642c14ac5a510e --- /dev/null +++ b/train/e756dcb4-ac5e-40ba-9722-18100c99ce79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de96cacee64e93dd3ff3089d14371f06ecadaa0314010162578ee2ce5d39a3b5 +size 2188022 diff --git a/train/e83cc3af-7bde-4ba7-8f29-58d7d77103f0.png b/train/e83cc3af-7bde-4ba7-8f29-58d7d77103f0.png new file mode 100644 index 0000000000000000000000000000000000000000..e763f0eee9d85fdbbdf19ccbb487fe41c76efc8b --- /dev/null +++ b/train/e83cc3af-7bde-4ba7-8f29-58d7d77103f0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de8132caf26a1222622559984f178d27f88179fab22ace39a8585ef44fe926c +size 2096346 diff --git a/train/e879a470-c4c7-4fbf-9ebf-c5c4c2d5a6cd.png b/train/e879a470-c4c7-4fbf-9ebf-c5c4c2d5a6cd.png new file mode 100644 index 0000000000000000000000000000000000000000..63c219c180026b41187db3a509b452c1b5798007 --- /dev/null +++ b/train/e879a470-c4c7-4fbf-9ebf-c5c4c2d5a6cd.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25bf6355cdcec8f66f04c57edf9a26cbd163e807754a6864d35e69489b973062 +size 2143873 diff --git a/train/e8dfde67-9942-4cf7-8d2d-82f861321d80.png b/train/e8dfde67-9942-4cf7-8d2d-82f861321d80.png new file mode 100644 index 0000000000000000000000000000000000000000..6fecc3ebca93a0f3360de3ac67e2b7505fdcf253 --- /dev/null +++ b/train/e8dfde67-9942-4cf7-8d2d-82f861321d80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9fe303545f4a8b17b99b830aa32bf58eb7f55ae661ae7bbfe34c734f15b29e5 +size 2178082 diff --git a/train/e91d166e-6edb-403d-93a5-f49a4295281a.png b/train/e91d166e-6edb-403d-93a5-f49a4295281a.png new file mode 100644 index 0000000000000000000000000000000000000000..542c969692aad1186f3b17c53a6e31fa53ce7407 --- /dev/null +++ b/train/e91d166e-6edb-403d-93a5-f49a4295281a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:674f6be95081db9e50337b4450cdd873aa63ca6c4baa801f2a565356dcfffcbd +size 2087382 diff --git a/train/e95a61eb-96ef-4f1a-8bd6-f3ccc9c9f482.png b/train/e95a61eb-96ef-4f1a-8bd6-f3ccc9c9f482.png new file mode 100644 index 0000000000000000000000000000000000000000..725a2bdffac16790b0512831d935d9c932b0563d --- /dev/null +++ b/train/e95a61eb-96ef-4f1a-8bd6-f3ccc9c9f482.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6130ad44b500c6da8d006aa36a916c16c746289fd883c87617fd2c276eca3953 +size 2043139 diff --git a/train/e9bef1bc-e090-4f51-bdfb-145305f81e98.png b/train/e9bef1bc-e090-4f51-bdfb-145305f81e98.png new file mode 100644 index 0000000000000000000000000000000000000000..5b3f564a37aa2e03bd3669a723b36ea0c3458fb8 --- /dev/null +++ b/train/e9bef1bc-e090-4f51-bdfb-145305f81e98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2ba623729055e740b5b9501ae1fcf5ebb499ac359c470e159dd45519ebce5c6 +size 2059288 diff --git a/train/e9cba149-ff17-48a3-8b62-8415c9ec99b5.png b/train/e9cba149-ff17-48a3-8b62-8415c9ec99b5.png new file mode 100644 index 0000000000000000000000000000000000000000..2d3e9c0580d99112b75625883c00faeeae364bab --- /dev/null +++ b/train/e9cba149-ff17-48a3-8b62-8415c9ec99b5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:179a37e00577fdb516f9c22bfa0ed044bbdcc57db05beea5c1783014aed067c3 +size 2128053 diff --git a/train/e9f9b2f6-e6ea-4d33-a03e-aff995124e3a.png b/train/e9f9b2f6-e6ea-4d33-a03e-aff995124e3a.png new file mode 100644 index 0000000000000000000000000000000000000000..d4af1be3dc7449bb37d6993ad322dd28b3a82449 --- /dev/null +++ b/train/e9f9b2f6-e6ea-4d33-a03e-aff995124e3a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7356998e59577d36621a62ec48e10ef5f11f91937c8fcaf833c0a3fc396fda6 +size 2126632 diff --git a/train/ea02c7b5-989f-49df-b904-7bbd0aea0752.png b/train/ea02c7b5-989f-49df-b904-7bbd0aea0752.png new file mode 100644 index 0000000000000000000000000000000000000000..d8f250c48940ce158f39291380dbdec6a357bac4 --- /dev/null +++ b/train/ea02c7b5-989f-49df-b904-7bbd0aea0752.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:971e012a002c5ba9570a4b5c311b2777db53a1cc42881a827f97a35be44a3f30 +size 2034786 diff --git a/train/ea6cd24a-6342-4c7e-a4f5-37b92bbcf246.png b/train/ea6cd24a-6342-4c7e-a4f5-37b92bbcf246.png new file mode 100644 index 0000000000000000000000000000000000000000..489a701c919b8a9f28d05231f20033f7e544e31e --- /dev/null +++ b/train/ea6cd24a-6342-4c7e-a4f5-37b92bbcf246.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6663f70e1e39ba2d90c94cc4a73fbce0f80ff650f503f8091909aca063a654ce +size 2151542 diff --git a/train/ea9b5aba-b1aa-45a1-a0ec-6657bc963b77.png b/train/ea9b5aba-b1aa-45a1-a0ec-6657bc963b77.png new file mode 100644 index 0000000000000000000000000000000000000000..2e6ce8a4d7591e0ac2e759974f13b4665b0853ce --- /dev/null +++ b/train/ea9b5aba-b1aa-45a1-a0ec-6657bc963b77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca254a8640d559ec2ecce37630e13516ff703d5f7794af77550aae73d5ffc6cc +size 2090537 diff --git a/train/eaa36b42-4632-455d-b9dd-af126eadb0ac.png b/train/eaa36b42-4632-455d-b9dd-af126eadb0ac.png new file mode 100644 index 0000000000000000000000000000000000000000..059ddb5da7e158b06c563b5417392c2ecee23ed6 --- /dev/null +++ b/train/eaa36b42-4632-455d-b9dd-af126eadb0ac.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7728fa27d581623c665bf9f657f718f2869e2e58edab15f538fa4030f120f387 +size 2039479 diff --git a/train/ebae60a0-630b-419f-9864-5c611c70f8c4.png b/train/ebae60a0-630b-419f-9864-5c611c70f8c4.png new file mode 100644 index 0000000000000000000000000000000000000000..fc19b699d744353ba6ddf5b789f3b1ed264ec919 --- /dev/null +++ b/train/ebae60a0-630b-419f-9864-5c611c70f8c4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b0d22439d321c1353d80418e94914a6b4167b2d65d4e09f3f04edbccf2f1f96 +size 2101404 diff --git a/train/ebae8321-6212-4815-b824-d625d9e22798.png b/train/ebae8321-6212-4815-b824-d625d9e22798.png new file mode 100644 index 0000000000000000000000000000000000000000..f4b511d59cdebf16512e6398e1eae2a7180412b4 --- /dev/null +++ b/train/ebae8321-6212-4815-b824-d625d9e22798.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c414213eba82dafec697393f3e79a4f097bdccc3773c10953a61813649704a6c +size 1981087 diff --git a/train/ebb6e02f-254f-46fe-878e-4d338f9aa79e.png b/train/ebb6e02f-254f-46fe-878e-4d338f9aa79e.png new file mode 100644 index 0000000000000000000000000000000000000000..09f882d842266bb8adc0006fadcfb040c09e717c --- /dev/null +++ b/train/ebb6e02f-254f-46fe-878e-4d338f9aa79e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44e96ced439a8a157869c9f29898fbbbed456ccb3909f90f5ee98f50978fe601 +size 2054380 diff --git a/train/ebc5eab8-06d2-4e5d-8f85-027cd99f3c94.png b/train/ebc5eab8-06d2-4e5d-8f85-027cd99f3c94.png new file mode 100644 index 0000000000000000000000000000000000000000..ebdbdd9732183eeaeeb632d03ccd0dfdce9fd6a6 --- /dev/null +++ b/train/ebc5eab8-06d2-4e5d-8f85-027cd99f3c94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac608a36ee9d4ec2f1ac8617a800cd613b3eab8d751295d86c736905ecd4764b +size 2179330 diff --git a/train/ebd2e195-d7c7-4190-9cb2-336bd176fcf5.png b/train/ebd2e195-d7c7-4190-9cb2-336bd176fcf5.png new file mode 100644 index 0000000000000000000000000000000000000000..5074ec5a7526e00965ada626039037d590be03d3 --- /dev/null +++ b/train/ebd2e195-d7c7-4190-9cb2-336bd176fcf5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c5689e0f5e06410b890670798a88e40dec831cb1bb0073e444903f4bd9a4b3f +size 2145567 diff --git a/train/ecc780eb-78af-408d-8170-d0d189080477.png b/train/ecc780eb-78af-408d-8170-d0d189080477.png new file mode 100644 index 0000000000000000000000000000000000000000..43acbbf14fd3af373b36f225d63e86285cc6bda4 --- /dev/null +++ b/train/ecc780eb-78af-408d-8170-d0d189080477.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5ff907a1644974db9ac33f3e53c934b617baeff98954f557fae0c86a3e2ddfc +size 2144199 diff --git a/train/ed739b6d-aff3-404f-9189-75dd0eabe37a.png b/train/ed739b6d-aff3-404f-9189-75dd0eabe37a.png new file mode 100644 index 0000000000000000000000000000000000000000..d6da308b9cc45a731ef1ce26a6ada136fb544b5b --- /dev/null +++ b/train/ed739b6d-aff3-404f-9189-75dd0eabe37a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7378bd194a1519a86b9d344c0f0698eec43b4203f6f5a0a69b5f7e9d8883891 +size 2237196 diff --git a/train/ed879f3d-8cd9-47d0-bcd4-30b56737c129.png b/train/ed879f3d-8cd9-47d0-bcd4-30b56737c129.png new file mode 100644 index 0000000000000000000000000000000000000000..27e305052835aefdc0ef2881597bb928d387c2da --- /dev/null +++ b/train/ed879f3d-8cd9-47d0-bcd4-30b56737c129.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dcb105e519c6d43848c1409864c2684d77dba249cbadc563a5b8760a2353265 +size 2154540 diff --git a/train/eda5d316-af14-40e2-a805-54e884896fd9.png b/train/eda5d316-af14-40e2-a805-54e884896fd9.png new file mode 100644 index 0000000000000000000000000000000000000000..a5f5320fa76ce9fe0eff91610e3dd688a9f395ed --- /dev/null +++ b/train/eda5d316-af14-40e2-a805-54e884896fd9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29130ac4c6064e0eb5c49d3c969a3d0b223b69fbad83be3747b3786be33848d6 +size 2180631 diff --git a/train/edee32cb-6293-441d-942c-149882df82a1.png b/train/edee32cb-6293-441d-942c-149882df82a1.png new file mode 100644 index 0000000000000000000000000000000000000000..12c6858bee38469e4a96945ae1fdcc0d7ee38626 --- /dev/null +++ b/train/edee32cb-6293-441d-942c-149882df82a1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d4aa24a992ac14d9c4a716f9c80824f4550c54b0d848828dc746d09e17e37f +size 2058329 diff --git a/train/edfaad69-483f-4208-9025-1760c7956a89.png b/train/edfaad69-483f-4208-9025-1760c7956a89.png new file mode 100644 index 0000000000000000000000000000000000000000..20157479cee38aedf3d8205a918e82b958782b12 --- /dev/null +++ b/train/edfaad69-483f-4208-9025-1760c7956a89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36eebb214bfdf10f8430f34eb2bffd2a578bebd328d3a9f31db51df0dcb8dfc +size 2026073 diff --git a/train/edfedf73-e4fc-4804-9c6a-15c8fcbd5fc0.png b/train/edfedf73-e4fc-4804-9c6a-15c8fcbd5fc0.png new file mode 100644 index 0000000000000000000000000000000000000000..912fb254b4bf4ed3d7fa4b5696268aab2e7528a1 --- /dev/null +++ b/train/edfedf73-e4fc-4804-9c6a-15c8fcbd5fc0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11581c1be6ba73c83a43d5c1c98d204839af9794294a09b2c973755b52183b79 +size 2191240 diff --git a/train/ee472b75-fa94-47b0-9b40-1754c7bdcea7.png b/train/ee472b75-fa94-47b0-9b40-1754c7bdcea7.png new file mode 100644 index 0000000000000000000000000000000000000000..33e05d30c1a007a87c1b6938dc462e28848c117d --- /dev/null +++ b/train/ee472b75-fa94-47b0-9b40-1754c7bdcea7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52bf6c0030d64910302b350d13f0d3f7530fa7d68b0b2c266d5e7a50c38443aa +size 2131690 diff --git a/train/ee654059-157a-4699-8f81-b9b9bb9a4dcc.png b/train/ee654059-157a-4699-8f81-b9b9bb9a4dcc.png new file mode 100644 index 0000000000000000000000000000000000000000..0e70e29d542b5ea672b5dfa669f2536d2045b739 --- /dev/null +++ b/train/ee654059-157a-4699-8f81-b9b9bb9a4dcc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01ee8cd9f77e6a5a1477fc50d2e80225835df2de8c916d0a7405131e33835b5d +size 2236730 diff --git a/train/eebf86a8-e0ce-411e-a731-2ddc231c92de.png b/train/eebf86a8-e0ce-411e-a731-2ddc231c92de.png new file mode 100644 index 0000000000000000000000000000000000000000..08e21efcfbfeb6e89b02da89a0033378844882f2 --- /dev/null +++ b/train/eebf86a8-e0ce-411e-a731-2ddc231c92de.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66be9b15a16f81bd5393cd50fb9a3f48c12c9a49c3f59241b725be3b865f97a3 +size 2190356 diff --git a/train/eec5e55e-5aa8-4b09-91b8-4a24d9838395.png b/train/eec5e55e-5aa8-4b09-91b8-4a24d9838395.png new file mode 100644 index 0000000000000000000000000000000000000000..7731afb36903fe6dc5914244a66c296c5e690eb7 --- /dev/null +++ b/train/eec5e55e-5aa8-4b09-91b8-4a24d9838395.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4db733ff119ca61702d7b4cc92349a5ed884e0c982b8e26b545d5838c15f30 +size 2113210 diff --git a/train/ef7ba57f-17f0-45ee-8187-25357c88b3c4.png b/train/ef7ba57f-17f0-45ee-8187-25357c88b3c4.png new file mode 100644 index 0000000000000000000000000000000000000000..73a172d8988311a09cc973cf7673184919f9280d --- /dev/null +++ b/train/ef7ba57f-17f0-45ee-8187-25357c88b3c4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2754957c86eb19e2763f1fd5e7495574bd6456ca80a0877d9c206b950f47c5dd +size 2136827 diff --git a/train/effa4fb6-e77c-49f4-8b04-67b4a0ffbaa1.png b/train/effa4fb6-e77c-49f4-8b04-67b4a0ffbaa1.png new file mode 100644 index 0000000000000000000000000000000000000000..c9eb4b0653ede600d17e04155469de3780db2952 --- /dev/null +++ b/train/effa4fb6-e77c-49f4-8b04-67b4a0ffbaa1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f235fc257301d3fba7990096111c0e5ba1b90112bf4754747c1b4ed1017d3789 +size 2130104 diff --git a/train/f00fca36-d663-4c3f-87ac-d54d1e3793a8.png b/train/f00fca36-d663-4c3f-87ac-d54d1e3793a8.png new file mode 100644 index 0000000000000000000000000000000000000000..7d0701b6f70e305a6bbd334802b7b179a3c44188 --- /dev/null +++ b/train/f00fca36-d663-4c3f-87ac-d54d1e3793a8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d306bd6a2be2088a57780faa6125b214f7f8f5e549884aeda8774d2ffa0fe9d +size 2032266 diff --git a/train/f02f0933-cba7-407c-b139-295612bf9a5d.png b/train/f02f0933-cba7-407c-b139-295612bf9a5d.png new file mode 100644 index 0000000000000000000000000000000000000000..48dcd9709dd6462b37b1aad436f99b6a631ab965 --- /dev/null +++ b/train/f02f0933-cba7-407c-b139-295612bf9a5d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10ff32a7bfb391852f37df5e330cbc1a5e465f80074ece94066cd6deeef1629 +size 2181323 diff --git a/train/f06c0c41-66d3-4d3d-ac47-7b2514ea2cb1.png b/train/f06c0c41-66d3-4d3d-ac47-7b2514ea2cb1.png new file mode 100644 index 0000000000000000000000000000000000000000..2e2f290812bf39f0335ad655729662b2e6f1f353 --- /dev/null +++ b/train/f06c0c41-66d3-4d3d-ac47-7b2514ea2cb1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3265ec73411d8f75c4830c869a466a159b3383b54046d095b76d5db58d9402c6 +size 2123444 diff --git a/train/f0ba85bc-e9b9-4162-8d22-ae429983e558.png b/train/f0ba85bc-e9b9-4162-8d22-ae429983e558.png new file mode 100644 index 0000000000000000000000000000000000000000..cc66473e60aba97a201470c896449f8050f4f8ae --- /dev/null +++ b/train/f0ba85bc-e9b9-4162-8d22-ae429983e558.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e05e8cb048b9ce3d48ae2d505197f07939ba252fffa36ad3ec3c572e723f8180 +size 2111894 diff --git a/train/f1929a33-06a7-4b1a-b7b1-7fb809c5c52e.png b/train/f1929a33-06a7-4b1a-b7b1-7fb809c5c52e.png new file mode 100644 index 0000000000000000000000000000000000000000..5da5260eae69cd5aab713c08ef925df729c903ce --- /dev/null +++ b/train/f1929a33-06a7-4b1a-b7b1-7fb809c5c52e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99d7fca423621b68e1c385803e4070e7b98fc18089582ee0eb334875bee1cf84 +size 1999083 diff --git a/train/f1a4f1e9-23bf-4d50-8eea-7bc27b24277c.png b/train/f1a4f1e9-23bf-4d50-8eea-7bc27b24277c.png new file mode 100644 index 0000000000000000000000000000000000000000..281204eb6303b086dc8d0c3d2f40cf0e459360c9 --- /dev/null +++ b/train/f1a4f1e9-23bf-4d50-8eea-7bc27b24277c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd15c3e19cf9fd5f4b42fac2bbb899a7fe07d39e59473138da34dff17ab17b53 +size 2173920 diff --git a/train/f20e8dba-472d-4d74-b6ae-83c0bf295b8f.png b/train/f20e8dba-472d-4d74-b6ae-83c0bf295b8f.png new file mode 100644 index 0000000000000000000000000000000000000000..e8e828bc5437355f3ce0750cbb9f6028633af45d --- /dev/null +++ b/train/f20e8dba-472d-4d74-b6ae-83c0bf295b8f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a79bb01ed3e6f79ff3ebc712a795556968a100be8a5f10adfa55ed06542852e0 +size 2124782 diff --git a/train/f23541f9-2169-4546-b064-2c2ac5f80bc2.png b/train/f23541f9-2169-4546-b064-2c2ac5f80bc2.png new file mode 100644 index 0000000000000000000000000000000000000000..ee01cddcca4c8ad6fd83d8a8a23856bcd3010c9c --- /dev/null +++ b/train/f23541f9-2169-4546-b064-2c2ac5f80bc2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6da134c52f0903d66e1e0860da2571c254b30c9b0a85d7aeb89c2ebe202a382 +size 2160564 diff --git a/train/f24237a6-04b5-496b-ab52-1c070d7ed619.png b/train/f24237a6-04b5-496b-ab52-1c070d7ed619.png new file mode 100644 index 0000000000000000000000000000000000000000..0ab4bebcddabf46d92107a3a254d3f63633273a9 --- /dev/null +++ b/train/f24237a6-04b5-496b-ab52-1c070d7ed619.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a8ee791008a66eae76d58870a2826bcc68325988185d661d067dc0b0ee2b078 +size 2253207 diff --git a/train/f26132cf-f738-4464-8d47-60266603b163.png b/train/f26132cf-f738-4464-8d47-60266603b163.png new file mode 100644 index 0000000000000000000000000000000000000000..7f7a49e5c746827a904379a76284269c6c874df3 --- /dev/null +++ b/train/f26132cf-f738-4464-8d47-60266603b163.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:565c7292c3dfc24c1a16af574579134c104799a4425cf331de32216053b594fd +size 2121371 diff --git a/train/f2acab05-ff73-44c7-b29b-b030ef858e84.png b/train/f2acab05-ff73-44c7-b29b-b030ef858e84.png new file mode 100644 index 0000000000000000000000000000000000000000..616c7f3cc37b6cbc08927552c50316743ec5e5ef --- /dev/null +++ b/train/f2acab05-ff73-44c7-b29b-b030ef858e84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3bf8ae675a135f76545c5ef69a070b38d807f55f300efbbb1ecff397302a1b0 +size 2078944 diff --git a/train/f2adee2c-f9bb-475c-a818-85b47d75e8a6.png b/train/f2adee2c-f9bb-475c-a818-85b47d75e8a6.png new file mode 100644 index 0000000000000000000000000000000000000000..bfef80efb91b8c39e209d55a600f0f1c89761a00 --- /dev/null +++ b/train/f2adee2c-f9bb-475c-a818-85b47d75e8a6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4948efcd442bc24d4a8011ba9f44845de10345e00ee84b7773761efc3ea0058c +size 2089881 diff --git a/train/f2c1a937-85d7-4f4b-a4ff-f4ca5af92d7b.png b/train/f2c1a937-85d7-4f4b-a4ff-f4ca5af92d7b.png new file mode 100644 index 0000000000000000000000000000000000000000..896bbee175642f0e3510b562fe489552012b5f34 --- /dev/null +++ b/train/f2c1a937-85d7-4f4b-a4ff-f4ca5af92d7b.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37a1edb7a242e4166dba2f44439befa2f6c3eb4afcb30963341c91625b5b85b8 +size 2108522 diff --git a/train/f2c7ca4a-9e08-468a-981b-4242217641ca.png b/train/f2c7ca4a-9e08-468a-981b-4242217641ca.png new file mode 100644 index 0000000000000000000000000000000000000000..a6a204e49d48a647f6e892e1539d67aaa9a10b62 --- /dev/null +++ b/train/f2c7ca4a-9e08-468a-981b-4242217641ca.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44247ae21c2a708e9648fb2f149bd25e1c6626b2ba184ddb5a15bbc54844387a +size 2231341 diff --git a/train/f2e23fdf-0cb5-43f8-af14-82701741dbb3.png b/train/f2e23fdf-0cb5-43f8-af14-82701741dbb3.png new file mode 100644 index 0000000000000000000000000000000000000000..a620a86fa2dac6cd9869581fdb0691ca1b9b1b18 --- /dev/null +++ b/train/f2e23fdf-0cb5-43f8-af14-82701741dbb3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61fdcb842991e7d6a9c48ecdcb2acc92cf9ae290988e9dec263944e6d941a516 +size 2131617 diff --git a/train/f319fb50-cfac-4391-afbe-54016bfa9cdd.png b/train/f319fb50-cfac-4391-afbe-54016bfa9cdd.png new file mode 100644 index 0000000000000000000000000000000000000000..9f368f1480ff531e52bb23d3112c9d1221a8afd8 --- /dev/null +++ b/train/f319fb50-cfac-4391-afbe-54016bfa9cdd.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:292e26e179bba9266c656a72562acc04d61b819aac6c72fe696c2c9cf0cc3dde +size 2169023 diff --git a/train/f38c61e2-c99c-441d-a20b-8cf1afd1a25f.png b/train/f38c61e2-c99c-441d-a20b-8cf1afd1a25f.png new file mode 100644 index 0000000000000000000000000000000000000000..4bee2a805b45a24463f1feb7ff31cca57247ce2f --- /dev/null +++ b/train/f38c61e2-c99c-441d-a20b-8cf1afd1a25f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4071dc72dcf0c9fd64debfcd8d3920eb4814933cc66d4c22f7adfad709d8a905 +size 2110891 diff --git a/train/f39b15a0-f1bd-42ac-afc5-8079d6cf4d6a.png b/train/f39b15a0-f1bd-42ac-afc5-8079d6cf4d6a.png new file mode 100644 index 0000000000000000000000000000000000000000..8cabc0a524388c3e9d71e8a15cff8c7da9a12006 --- /dev/null +++ b/train/f39b15a0-f1bd-42ac-afc5-8079d6cf4d6a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d41b05fa85c0982efa67d6b31de67e16480af39c9edaf6fa4911b3d0168693 +size 2211032 diff --git a/train/f3a9a8ea-7ca3-4219-9909-1b9b296b6d50.png b/train/f3a9a8ea-7ca3-4219-9909-1b9b296b6d50.png new file mode 100644 index 0000000000000000000000000000000000000000..c75fe54693cef9d629e639280209b3a75a2b5fd4 --- /dev/null +++ b/train/f3a9a8ea-7ca3-4219-9909-1b9b296b6d50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c767977949e080662d35d1cdf5c3dbcb5ad4fa4151f13d6a8e26a5a5279cf1aa +size 2191337 diff --git a/train/f3ee19a1-b187-47cd-8e33-e086446d5533.png b/train/f3ee19a1-b187-47cd-8e33-e086446d5533.png new file mode 100644 index 0000000000000000000000000000000000000000..495855b4d8c128fe9d2e2b8189728407e71a5b35 --- /dev/null +++ b/train/f3ee19a1-b187-47cd-8e33-e086446d5533.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f045711455c09a54c39a553a8c5c3358577b66ef27142770fabe08755a0db58c +size 2184537 diff --git a/train/f47b2a2f-1716-450a-be76-abb2814e12ae.png b/train/f47b2a2f-1716-450a-be76-abb2814e12ae.png new file mode 100644 index 0000000000000000000000000000000000000000..12e21685685dce150aae93f5e52b07704c64ba2b --- /dev/null +++ b/train/f47b2a2f-1716-450a-be76-abb2814e12ae.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:003172072b462fa03ad49cd81cb501fdadf70f441ee7faee4a67dc9004e8056e +size 2153641 diff --git a/train/f492a73b-042a-4285-959b-7b1133f2570e.png b/train/f492a73b-042a-4285-959b-7b1133f2570e.png new file mode 100644 index 0000000000000000000000000000000000000000..a19bbef5530eaf620680d696be3738649981457c --- /dev/null +++ b/train/f492a73b-042a-4285-959b-7b1133f2570e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c482b2a81ae4e515101dce24e027d5e4fa82fab9546eb83b8681f94d7db9fb +size 2190951 diff --git a/train/f4a3bcdd-efaf-4a05-9149-9d72fda6bd99.png b/train/f4a3bcdd-efaf-4a05-9149-9d72fda6bd99.png new file mode 100644 index 0000000000000000000000000000000000000000..08714375e2d30ac8ad9b858afd7d90a07cb76bf2 --- /dev/null +++ b/train/f4a3bcdd-efaf-4a05-9149-9d72fda6bd99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d2ed33ed6cd3d3d69c510361ce33cdb954b1faa8fb1bdae30c66c831fe8de1f +size 2168015 diff --git a/train/f4e3a33f-17d8-450c-9a8d-4eead1aafd7e.png b/train/f4e3a33f-17d8-450c-9a8d-4eead1aafd7e.png new file mode 100644 index 0000000000000000000000000000000000000000..2da443cf3811563abf8d279835def9ad6d18ea3b --- /dev/null +++ b/train/f4e3a33f-17d8-450c-9a8d-4eead1aafd7e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5761b416682148db0bd9f51fa32db768e61539237ccb86db267228c93386521b +size 2131770 diff --git a/train/f5395061-dbd8-4933-a290-d2b3a0271e9c.png b/train/f5395061-dbd8-4933-a290-d2b3a0271e9c.png new file mode 100644 index 0000000000000000000000000000000000000000..0a257bf08fac69ebbd12f1455bbd3fdb6eeb23a8 --- /dev/null +++ b/train/f5395061-dbd8-4933-a290-d2b3a0271e9c.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12a3bf699dcefc08bebd19c0267aacefc1b01f583597ae67d50997de7a04ee43 +size 2059042 diff --git a/train/f5617175-99a7-4d00-bbef-971ffab5c53d.png b/train/f5617175-99a7-4d00-bbef-971ffab5c53d.png new file mode 100644 index 0000000000000000000000000000000000000000..5d1b71b9eea4b510bac48e2ffd60430f92d849db --- /dev/null +++ b/train/f5617175-99a7-4d00-bbef-971ffab5c53d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bf3f6b7571195e56e351b1d5a3dc551d869e0d82521a75319f1cfd8022c4af +size 2102040 diff --git a/train/f6abeaa6-22d1-4e81-a153-2dac520d63c9.png b/train/f6abeaa6-22d1-4e81-a153-2dac520d63c9.png new file mode 100644 index 0000000000000000000000000000000000000000..e1a41d5170c6ace403f88261faac96fad8a548df --- /dev/null +++ b/train/f6abeaa6-22d1-4e81-a153-2dac520d63c9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cc9663740a1aff2c2c95f705c71dd7694428d19acd0e9fa95d571aa16ccc940 +size 2198658 diff --git a/train/f7559841-5148-4089-910e-0812ae81fbf3.png b/train/f7559841-5148-4089-910e-0812ae81fbf3.png new file mode 100644 index 0000000000000000000000000000000000000000..78b58ad9d20fa53071340ccca9544635fdcbb0cd --- /dev/null +++ b/train/f7559841-5148-4089-910e-0812ae81fbf3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f803273f2af4a23675df2187e26b648883de3b3049d3bb0f6252b58af5e47189 +size 2198473 diff --git a/train/f75664f1-8291-4755-981f-1508a07e63b2.png b/train/f75664f1-8291-4755-981f-1508a07e63b2.png new file mode 100644 index 0000000000000000000000000000000000000000..b481525fb39e13bece3df23e5eeca28d46363a78 --- /dev/null +++ b/train/f75664f1-8291-4755-981f-1508a07e63b2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dfefbd0d95f6692ee4f74e589c241f22d85386bdafa15cdc4df8973d0487b66 +size 2182586 diff --git a/train/f76f890c-b630-4290-bc9e-4337a3bfe8d8.png b/train/f76f890c-b630-4290-bc9e-4337a3bfe8d8.png new file mode 100644 index 0000000000000000000000000000000000000000..e0a80f8876d1cab1ef002eb1ca67168848b3dec9 --- /dev/null +++ b/train/f76f890c-b630-4290-bc9e-4337a3bfe8d8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a3ebc02a7b6af48c4bee49f7357d4c8a73a1ae7f68a38ebe8ac35cd09224cc +size 2108588 diff --git a/train/f7b8f2a3-2bb0-4c49-869f-07d409bbd660.png b/train/f7b8f2a3-2bb0-4c49-869f-07d409bbd660.png new file mode 100644 index 0000000000000000000000000000000000000000..2fdb8cd46086ec737a92251f19bbed5504e6f55a --- /dev/null +++ b/train/f7b8f2a3-2bb0-4c49-869f-07d409bbd660.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5400603b15abc75eeb80c9a35653c3e1d5855b46f3c9d4dfdfbeb9f241c4f83f +size 2240773 diff --git a/train/f7d74515-9149-46de-a2ae-30dd5b7b6e87.png b/train/f7d74515-9149-46de-a2ae-30dd5b7b6e87.png new file mode 100644 index 0000000000000000000000000000000000000000..e545b6a12f712bab51d2bcbed73aededa277d316 --- /dev/null +++ b/train/f7d74515-9149-46de-a2ae-30dd5b7b6e87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b836021894a54ad7be2b2e2eaf555851ee1755ae81b97715c4979c5f98c3cdd0 +size 2127645 diff --git a/train/f800cc6e-8cd4-4127-b238-5f0232d88af5.png b/train/f800cc6e-8cd4-4127-b238-5f0232d88af5.png new file mode 100644 index 0000000000000000000000000000000000000000..9f19c2af9625699aafe8761758a5d7074fa423e2 --- /dev/null +++ b/train/f800cc6e-8cd4-4127-b238-5f0232d88af5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a51ff54f5a7c2b41b319f44e73ea99d6ab725314f3cebe11ffd00a0e52ad678 +size 2093373 diff --git a/train/f89b14ba-317e-4972-8278-3b68ab66ea94.png b/train/f89b14ba-317e-4972-8278-3b68ab66ea94.png new file mode 100644 index 0000000000000000000000000000000000000000..d4ed4d0e38919dea0167a41f5a7106d7d6f9b033 --- /dev/null +++ b/train/f89b14ba-317e-4972-8278-3b68ab66ea94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3482bf35fafb197b76a6d4193cd0b71b7a454a5e2a5db63d1a002a81bb62b77a +size 2172944 diff --git a/train/f8a80451-f902-4f69-9100-f982c9edd68d.png b/train/f8a80451-f902-4f69-9100-f982c9edd68d.png new file mode 100644 index 0000000000000000000000000000000000000000..8046423581eb4ef14f08f1019d4948c022679957 --- /dev/null +++ b/train/f8a80451-f902-4f69-9100-f982c9edd68d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d30340f7d1c07d2cdbf781f029dce785e343a9698aefa9f9d5ce41c7a2c2b87 +size 2169994 diff --git a/train/f8d4186a-084d-4c00-b2e9-30f0a06415a2.png b/train/f8d4186a-084d-4c00-b2e9-30f0a06415a2.png new file mode 100644 index 0000000000000000000000000000000000000000..4bf8a99f3dc07a86b1b9320d7f222d2713a90806 --- /dev/null +++ b/train/f8d4186a-084d-4c00-b2e9-30f0a06415a2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b96dd4720917a0cd0cdb3d65877b6c04240507352cd3f7ec47594ff45c367378 +size 2106370 diff --git a/train/fa52f8fa-610a-45bf-be66-b12d1d91bfa4.png b/train/fa52f8fa-610a-45bf-be66-b12d1d91bfa4.png new file mode 100644 index 0000000000000000000000000000000000000000..2862a1b3abfaedfdde4506ca8d302d6bca671aa4 --- /dev/null +++ b/train/fa52f8fa-610a-45bf-be66-b12d1d91bfa4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97cefcc0077c9d9a6282bf81c43d6ea9293a445293fc614810529b026e734d0e +size 2230696 diff --git a/train/faa0ccb0-ef30-40a9-84da-bca60be7dd6e.png b/train/faa0ccb0-ef30-40a9-84da-bca60be7dd6e.png new file mode 100644 index 0000000000000000000000000000000000000000..ce67afb177af367b1d283e95dd1bb156612611f9 --- /dev/null +++ b/train/faa0ccb0-ef30-40a9-84da-bca60be7dd6e.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63cca2d1893ef8f9eba04244b064f0119dcd2e545274a526f77cd5c6acee81d8 +size 1965857 diff --git a/train/faa8be0a-791f-4ff6-98dc-3820de17dde3.png b/train/faa8be0a-791f-4ff6-98dc-3820de17dde3.png new file mode 100644 index 0000000000000000000000000000000000000000..5c8e68069e62d029d957913022069cf705ca4011 --- /dev/null +++ b/train/faa8be0a-791f-4ff6-98dc-3820de17dde3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fccf97113935d0e5f8d5a9ad213d23c3a1e5b385e647a24b032b16d01bb1309 +size 2217071 diff --git a/train/fad6ff13-858e-4c13-b4c4-b59e574b72bc.png b/train/fad6ff13-858e-4c13-b4c4-b59e574b72bc.png new file mode 100644 index 0000000000000000000000000000000000000000..724472147fa3a094488d5650b85fdbcd5121b4a0 --- /dev/null +++ b/train/fad6ff13-858e-4c13-b4c4-b59e574b72bc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7d161f234001e02973e212f5d3c515c0f34d67ba72f2a9441d73a4056013c56 +size 2217357 diff --git a/train/fb2ad6d0-dcb7-402e-a653-11844d0af870.png b/train/fb2ad6d0-dcb7-402e-a653-11844d0af870.png new file mode 100644 index 0000000000000000000000000000000000000000..c903bc5d219f1259f8145bc76d599c709157d11b --- /dev/null +++ b/train/fb2ad6d0-dcb7-402e-a653-11844d0af870.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d1d55fc73f46f3df9f782f33c780cb004ba47904865a59bc87a557fccb449e1 +size 2171839 diff --git a/train/fb3864b5-9616-4974-8e03-595b7b5cce74.png b/train/fb3864b5-9616-4974-8e03-595b7b5cce74.png new file mode 100644 index 0000000000000000000000000000000000000000..070a068a0243884b0a9e4b933267e67ca8d3b9f6 --- /dev/null +++ b/train/fb3864b5-9616-4974-8e03-595b7b5cce74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:123713f9a0b4f45bf40e4186d94bfc5006d982743348ef0f7c52a1602f6c933f +size 2134423 diff --git a/train/fb66b020-9c75-48df-84f1-421d07c449e7.png b/train/fb66b020-9c75-48df-84f1-421d07c449e7.png new file mode 100644 index 0000000000000000000000000000000000000000..31bb0a8cfddba38731dcbcaed53c7b07db3abe55 --- /dev/null +++ b/train/fb66b020-9c75-48df-84f1-421d07c449e7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73737fad732e307b8ee4518e043dcc68db39f62a28516ca7ce35a3e8b77a3641 +size 2172369 diff --git a/train/fb7344d8-1570-4129-be3e-7f9d0c5ea3eb.png b/train/fb7344d8-1570-4129-be3e-7f9d0c5ea3eb.png new file mode 100644 index 0000000000000000000000000000000000000000..e1a4090b8d3dea544b8326893f93d1b43c952d61 --- /dev/null +++ b/train/fb7344d8-1570-4129-be3e-7f9d0c5ea3eb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eb7d4aba35a1759729ff85d52db98ed5ac1d96934b2f0ddf792843f531bdabc +size 2116699 diff --git a/train/fb74f2b9-a33c-4274-9855-954fd930d815.png b/train/fb74f2b9-a33c-4274-9855-954fd930d815.png new file mode 100644 index 0000000000000000000000000000000000000000..6959f16e9dbae8b7087eca1b4aaae399388e0c3c --- /dev/null +++ b/train/fb74f2b9-a33c-4274-9855-954fd930d815.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f93255916c93139a1b8be444fa19253f51321db9de87e9d3916124eee24cc6a +size 2178814 diff --git a/train/fba0e221-2455-4e4e-8704-7716fcc9f374.png b/train/fba0e221-2455-4e4e-8704-7716fcc9f374.png new file mode 100644 index 0000000000000000000000000000000000000000..9711e8985d3e0df54f15a767222274eb8cbabcc7 --- /dev/null +++ b/train/fba0e221-2455-4e4e-8704-7716fcc9f374.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ccf8ad46b1a4e5f1b1814d2eebeb13100f663edbc0c49608fbd55463f004b41 +size 2129400 diff --git a/train/fbe1a10e-ba6e-4488-899b-7d875fd21781.png b/train/fbe1a10e-ba6e-4488-899b-7d875fd21781.png new file mode 100644 index 0000000000000000000000000000000000000000..331fede4ff75ba144db6879044d83b67ff2a0ffd --- /dev/null +++ b/train/fbe1a10e-ba6e-4488-899b-7d875fd21781.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee659ca01a1c2e3c58bda12fa3d671a039869e2aaeaf2951e57c88cdf4f0d596 +size 2192522 diff --git a/train/fc0be4c5-1b5d-44d5-9d70-6ef9f3d0cf97.png b/train/fc0be4c5-1b5d-44d5-9d70-6ef9f3d0cf97.png new file mode 100644 index 0000000000000000000000000000000000000000..e6c2c362535ef5c076031205229d17c6ebd52079 --- /dev/null +++ b/train/fc0be4c5-1b5d-44d5-9d70-6ef9f3d0cf97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c7ad3678200ed004020cdcb118c8f2fbe79ac0d8ef0d371280ecaea28ea9cb +size 2228548 diff --git a/train/fc2fd51f-1ca0-4a20-91d4-f3f22c61ad7f.png b/train/fc2fd51f-1ca0-4a20-91d4-f3f22c61ad7f.png new file mode 100644 index 0000000000000000000000000000000000000000..e678f543e402dc150c731e2cc4b611ca69cdaf14 --- /dev/null +++ b/train/fc2fd51f-1ca0-4a20-91d4-f3f22c61ad7f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99349777a88df6d194c36304a077150b3f2badd8ed4a0bb04a7a10bd85c86ac0 +size 2217125 diff --git a/train/fcd67cd5-ec87-4611-a8a5-515026b9d0a7.png b/train/fcd67cd5-ec87-4611-a8a5-515026b9d0a7.png new file mode 100644 index 0000000000000000000000000000000000000000..77c8381538969fc5c06f6295773e0d00bef5d950 --- /dev/null +++ b/train/fcd67cd5-ec87-4611-a8a5-515026b9d0a7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7ee3d6e8fa06181f53dd8dad7aa0c242595b3eee12d6ffab15fe299b05985e8 +size 2110609 diff --git a/train/fd375e5f-0a7b-417c-9078-9796bff616f4.png b/train/fd375e5f-0a7b-417c-9078-9796bff616f4.png new file mode 100644 index 0000000000000000000000000000000000000000..7ca651afce017a97e9a0c171c2ecfa72d8d96ac7 --- /dev/null +++ b/train/fd375e5f-0a7b-417c-9078-9796bff616f4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64ec0f41a6ff498723a9bb83fe516cc4d3dadf985810610a961a60be1c8698ab +size 2238475 diff --git a/train/fd3c0d0b-2354-451e-9023-30906c4082c8.png b/train/fd3c0d0b-2354-451e-9023-30906c4082c8.png new file mode 100644 index 0000000000000000000000000000000000000000..042262180d2714f472bdcac5c42160537d59e592 --- /dev/null +++ b/train/fd3c0d0b-2354-451e-9023-30906c4082c8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb62eca20d0c902346a35eefcaecaf1a6275993aaf46acd74115bdf016908a5e +size 2117947 diff --git a/train/fd69e148-81dc-42eb-9cf7-2aca924f7fe4.png b/train/fd69e148-81dc-42eb-9cf7-2aca924f7fe4.png new file mode 100644 index 0000000000000000000000000000000000000000..3f8973031293fca2583667cd3496974102bb96e5 --- /dev/null +++ b/train/fd69e148-81dc-42eb-9cf7-2aca924f7fe4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d49c92f36ee58db4ce6a34f3530bd90566a7e2da6b6bee7c980e0310ebb9234d +size 2052771 diff --git a/train/fd82fd31-a4e3-4d1d-97d3-dfc4ad8fd721.png b/train/fd82fd31-a4e3-4d1d-97d3-dfc4ad8fd721.png new file mode 100644 index 0000000000000000000000000000000000000000..e5f2446692d9ae9f36b2f894a3b332941289c200 --- /dev/null +++ b/train/fd82fd31-a4e3-4d1d-97d3-dfc4ad8fd721.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c63fb636b7997f0693104f89ea2630478c0188c11afcc778a59ffdc9c3816e1a +size 2121359 diff --git a/train/fdb45b06-0b10-4556-af4c-a692e0166628.png b/train/fdb45b06-0b10-4556-af4c-a692e0166628.png new file mode 100644 index 0000000000000000000000000000000000000000..d1dd763e27e6c9f86631d6a65f80257269a26d45 --- /dev/null +++ b/train/fdb45b06-0b10-4556-af4c-a692e0166628.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb268fa5aa317241c28f3c63930ca79e4a101f74ec106139bd212ffa1361250 +size 2077917 diff --git a/train/fdcbbb73-28db-43b6-ba6a-63333a373cc0.png b/train/fdcbbb73-28db-43b6-ba6a-63333a373cc0.png new file mode 100644 index 0000000000000000000000000000000000000000..e60febaf568ba29693e170b896b4b7ef4756d80b --- /dev/null +++ b/train/fdcbbb73-28db-43b6-ba6a-63333a373cc0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a83edf73971e77400ad2e2cd1abfe8f108f396474b46739b07b81c8bb70b9cb +size 2084601 diff --git a/train/fdd0d344-3b36-4f98-aab0-0c599c70ed71.png b/train/fdd0d344-3b36-4f98-aab0-0c599c70ed71.png new file mode 100644 index 0000000000000000000000000000000000000000..2ee8e61eb28ac448ed9f5c3294dceb83096b61ae --- /dev/null +++ b/train/fdd0d344-3b36-4f98-aab0-0c599c70ed71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65e2457815be349cb1a594b6337c78b998b0fb69d283d542c5bbce04121ccab7 +size 2099244 diff --git a/train/fdd65e29-d416-4c04-8cf8-aed42d56f807.png b/train/fdd65e29-d416-4c04-8cf8-aed42d56f807.png new file mode 100644 index 0000000000000000000000000000000000000000..78e12e4d92d9672e9a9320debd2094ce894a7535 --- /dev/null +++ b/train/fdd65e29-d416-4c04-8cf8-aed42d56f807.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:821744955f96ad1603746f7def9ec145e1b55b34f6c83779744925bba436478b +size 1953128 diff --git a/train/fdd90299-008c-4a1e-9ec6-6f159cc3af14.png b/train/fdd90299-008c-4a1e-9ec6-6f159cc3af14.png new file mode 100644 index 0000000000000000000000000000000000000000..bc4d44cca5b5a1b22a389cb9a2da83effbdefa35 --- /dev/null +++ b/train/fdd90299-008c-4a1e-9ec6-6f159cc3af14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8982872619b0a8cdc7424d7aa8a2ffcea499dda790c0f25b9bb22544c174bada +size 2055951 diff --git a/train/fdf85c65-dbe2-4289-bd4e-de40bf70b2c4.png b/train/fdf85c65-dbe2-4289-bd4e-de40bf70b2c4.png new file mode 100644 index 0000000000000000000000000000000000000000..74dbc2b8321ce0fc0b6a5edeb6a39c47e8e67fe7 --- /dev/null +++ b/train/fdf85c65-dbe2-4289-bd4e-de40bf70b2c4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ed9d4806cc64044a8f21d5f2ea2d61ab13c8d90c8e14f5c55f85aeaa27a1ff +size 2209201 diff --git a/train/fdfdc985-91b0-4656-a8a7-73453d68ceed.png b/train/fdfdc985-91b0-4656-a8a7-73453d68ceed.png new file mode 100644 index 0000000000000000000000000000000000000000..31f87f80fe8117329bbbf412ad97f3324b3d2678 --- /dev/null +++ b/train/fdfdc985-91b0-4656-a8a7-73453d68ceed.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aada2c98a553ac36645df3bab246ead25776e7528a20877ce4d02985eda6c94b +size 2112931 diff --git a/train/fe1bb9f6-7d24-4186-9571-ebd2e86ba11a.png b/train/fe1bb9f6-7d24-4186-9571-ebd2e86ba11a.png new file mode 100644 index 0000000000000000000000000000000000000000..14470244b141cdccb285a4a188503749ea085f6e --- /dev/null +++ b/train/fe1bb9f6-7d24-4186-9571-ebd2e86ba11a.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:610db7d0933832ea644c0d54de2c15bacae08c851498c15cb05f754e07d049c2 +size 2055292 diff --git a/train/ff10ed9c-c187-4dda-90a6-0b9e1080fa30.png b/train/ff10ed9c-c187-4dda-90a6-0b9e1080fa30.png new file mode 100644 index 0000000000000000000000000000000000000000..76f667650ac810e261735139f562cebbd6ce3a61 --- /dev/null +++ b/train/ff10ed9c-c187-4dda-90a6-0b9e1080fa30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e3eb874a0a80c3aab3fff839f8bdeae2afc85563fa2ade822800aa141fc270c +size 2197030 diff --git a/train/ff13ea4a-0597-4adc-8c6e-2badf139cd31.png b/train/ff13ea4a-0597-4adc-8c6e-2badf139cd31.png new file mode 100644 index 0000000000000000000000000000000000000000..9e09922ed6d883bc3039f670d058abf2551359e4 --- /dev/null +++ b/train/ff13ea4a-0597-4adc-8c6e-2badf139cd31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83a47af043fb809c4f1c999e3628ca1918aa05818b9871cc6e0fca7d80b1682e +size 2088559 diff --git a/train/ff2f4675-7934-4007-b16f-7fd9c765cfa2.png b/train/ff2f4675-7934-4007-b16f-7fd9c765cfa2.png new file mode 100644 index 0000000000000000000000000000000000000000..82ee93c92cee6ee75c7122556f3152ca11621013 --- /dev/null +++ b/train/ff2f4675-7934-4007-b16f-7fd9c765cfa2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:939947803272bf5839c16c4584a47f492d824a82a0e95d7b9faa0baa1f26c45d +size 2183080 diff --git a/train/ff798441-ed26-42bd-b2c3-7de1a9196bbc.png b/train/ff798441-ed26-42bd-b2c3-7de1a9196bbc.png new file mode 100644 index 0000000000000000000000000000000000000000..66b0c1fa7c251f87c8883bc91d74d28cbe9d7691 --- /dev/null +++ b/train/ff798441-ed26-42bd-b2c3-7de1a9196bbc.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1113c8d60af9995911483aeefcc488086257eca95e40bee933785f4c967dc406 +size 2106711 diff --git a/train/ffeb8b51-9929-4a48-a77a-25c1dbd166cb.png b/train/ffeb8b51-9929-4a48-a77a-25c1dbd166cb.png new file mode 100644 index 0000000000000000000000000000000000000000..5fdf6f4f371173176ef08b157797ab9d6c584204 --- /dev/null +++ b/train/ffeb8b51-9929-4a48-a77a-25c1dbd166cb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d821bfee7546cac0c3d21b0ffa98ae7ed15267640420f86db8e67d2ce39c383a +size 2101563 diff --git a/train/fffb2205-0a46-4c8a-9aa4-f011e887c907.png b/train/fffb2205-0a46-4c8a-9aa4-f011e887c907.png new file mode 100644 index 0000000000000000000000000000000000000000..d01ce805acbce74355117c3b8e577c2f50bccdfa --- /dev/null +++ b/train/fffb2205-0a46-4c8a-9aa4-f011e887c907.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bdae29f4db17e53f1b3686e608ef9584e54c4c03bade22236a48ac614922f0f +size 1971944 diff --git a/train/metadata.csv b/train/metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..2ef377491748a959ae8a4d18bdf5b0fdfaa2f968 --- /dev/null +++ b/train/metadata.csv @@ -0,0 +1,1007 @@ +file_name,seed,positive_prompt,negative_prompt,model,steps,cfg,sampler_name,scheduler,denoise +087d553d-bf95-4150-b481-542b473cb223.png,69867773740868,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +89bb67b1-9733-48b0-9cae-230aa3bde7f7.png,249723531034326,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +466e9bc6-8586-464e-8a34-b0b00f7fcfbb.png,181465119951608,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +06ae6eb9-0fda-4964-bc06-43853616a584.png,657441083881730,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +76ece72d-509d-49cf-b0c3-f1e99076c0e5.png,833677363958203,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +86e4da2c-0a9f-49f1-849e-815b9dfd1784.png,888290108799128,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cd720c8d-af84-422b-8f88-0ef3aac2337e.png,1874855180699,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c36a8136-7a00-4035-87b1-ce4aff55db95.png,110407092306982,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +bc81a945-2643-4f46-be5b-f9e4dc07e2a6.png,52119773435238,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0d145dca-ab42-4c8f-bbb4-323a49df8d26.png,56058196708667,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +47c936e2-0bb7-4196-9f50-0129caaf49d5.png,6111434027594,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +da399ef9-de6e-41f3-9afa-24d5813f64db.png,513546896263884,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e756dcb4-ac5e-40ba-9722-18100c99ce79.png,355575642615865,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +39b8ce67-248f-4dac-b474-d535e87153d4.png,81247959376534,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c5686454-d902-4b61-a4c3-902751d8f139.png,823442339062125,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +13fcafda-f72a-4925-a8ec-d13937e4333c.png,19801449161817,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1796749e-a934-4346-b8cb-fc2b50b204dc.png,518375345505026,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5d10bf8a-f824-41ac-8b78-b6c239de1e56.png,742830661854899,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +62ffe5f5-f655-4d8c-abe6-28eee8916cb8.png,950286129695392,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3bedb5b8-2393-4cc3-aa49-03bbaacd5470.png,72895702128022,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +72416c05-41db-4e2d-a308-6c59cf49ffa6.png,315917865921134,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +34e57d82-5dd9-4610-aa3d-43dc37b095d8.png,868056507727918,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e725ce7c-18c4-4476-a4a0-85d75bd0ae50.png,490485174884811,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a97236f3-ea66-40d4-b08b-fe2c1186a711.png,49273412053236,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f06c0c41-66d3-4d3d-ac47-7b2514ea2cb1.png,1006196187588489,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +764e8558-9974-4a93-9ac2-bf6ab8ea689f.png,264657856646248,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1410a114-715f-48c2-8b9c-56b09ed7940d.png,824319024684341,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5171a9af-8a78-4aab-afd7-846c6c6a81ce.png,924353731888852,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +22e647d2-bfb2-412f-9dc4-4f2ec10f6ad5.png,755131275057918,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cbe2d96b-90d4-4a06-81dc-3a14c79d8c46.png,547954474137196,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c8427601-4840-479f-912f-68fd83a90d2a.png,937402396559725,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +746ab561-d38a-4bd0-9cfb-092f35ac45f0.png,950937669558460,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b309acff-103a-4701-b75e-90b6005779e8.png,92548050773174,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +69e31464-f3d9-4ec3-8201-804fbff8811a.png,486606240628554,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +10c209be-809b-4e21-ac40-cc03bc75d035.png,709149180602395,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +42f1590d-e7a0-4d85-843a-7b9f7939f21d.png,630953396938679,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +293a68d0-dc08-43af-b371-9ac4a54e7246.png,528782424122439,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a1ba63f8-23fc-476d-86ac-c40a02e477c9.png,514298847914416,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +145f835f-431f-4daf-8fa1-0ce729c3c307.png,463190870407478,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7131eb8a-b602-4a7b-a448-cf93779afd69.png,53026775869694,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b6f5114f-be01-4a1f-a20e-7cf7c690a6d6.png,821340942381523,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +92398d2b-0fe9-4c52-9fd6-aa87461c25d1.png,1050380167845649,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ac8c1a12-194a-45fc-b559-f8d23787a385.png,363385785604267,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7985edc1-68d6-4cfc-b217-4b37be7804df.png,726543901609867,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +213b02c4-0c07-49f7-8fcb-1bfa20b00a69.png,787469909425257,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3bea7867-e50b-452a-a404-92aea5ba2079.png,541227108520086,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e0f268a1-53ff-4947-b916-e78642ce2fd6.png,419253572079479,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2331094e-4263-4a2a-8477-106cc488931a.png,243324036498448,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +63077608-3d57-4bf5-ab12-09f12680601c.png,301941092052278,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b0c21b15-c08e-474b-9641-cc951d0bb9e9.png,323635604278308,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +911bab72-10d1-43a4-9b2f-3b2523735381.png,319133295515847,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2337b73c-c372-4e03-973d-ffbec0f5319b.png,1102890468812458,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +75990661-041a-41c9-8732-dcd94a3232ef.png,1118891314984093,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a6d28d88-d512-48f1-9900-190c98ed6073.png,939618593621068,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +90b68fd4-aedb-4327-b762-2b4653ed9f87.png,957674515402387,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fc2fd51f-1ca0-4a20-91d4-f3f22c61ad7f.png,908062539103660,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c8714a8e-10ef-4e27-b185-c653a8d4fd07.png,1023885892124200,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6a801313-8ff0-47d8-8fb3-daa8a51fdaab.png,856601452602126,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cc524b83-0a06-4d28-a979-89e2f41cd2c5.png,716775488934272,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9a21cc8a-e508-4a00-be24-3549821a086e.png,822880015521306,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ff10ed9c-c187-4dda-90a6-0b9e1080fa30.png,30885331688022,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +714b4fab-891e-418b-8941-784cb8df7e65.png,224414691483466,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +62eea76a-dbcb-4029-81d9-98751eaa6489.png,661468838118257,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e0f50cf3-f2c2-4352-8bcb-7ab3a1029d22.png,1034891651093943,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c9fba584-9bc9-4f36-b162-cf7a3d112e03.png,507346417684314,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9fe66dfe-0f13-4e17-89f5-b31ce800a346.png,8401452148026,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +71e4a6ba-5b82-4cae-91ca-53afb03fee90.png,887252500042037,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2623c452-7497-43eb-9006-eee9cc13449e.png,444858323886103,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2583b5fa-8b63-46e9-842c-6b30c2705c66.png,757228358836042,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +32eb67f8-66ca-40ed-85bb-1d2154cfba45.png,269522278129094,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0d908735-cf9d-4509-be37-fae1e1555aae.png,500748565325525,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +25057b00-fe3c-49bd-9fe9-08fb69ab5dd0.png,696623793628251,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ac664a74-faa2-4329-afbf-799cbf901db1.png,22771505105630,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e0b5765d-49d3-4747-8695-4fdfbed7e2a3.png,461537050801873,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +85e6ccd2-a1fc-4968-aef0-12a5fc58e95c.png,1083122339657932,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c58e8654-6191-49c9-8812-ea96e783b957.png,452861522125471,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +84c852d1-6f98-4050-ae6a-0407f1dfe1f5.png,870259922464576,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fd375e5f-0a7b-417c-9078-9796bff616f4.png,934435991357962,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +df0047f3-9004-4828-a7e8-7ab1c2e43ceb.png,673659039451811,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f20e8dba-472d-4d74-b6ae-83c0bf295b8f.png,1075904292154127,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a7a32c53-8d31-4ec3-a79e-c917aa558d81.png,250873320841183,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c096d3d7-0328-435b-a2f9-f5d7b67da7cd.png,368586564567087,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +578c44ec-37b4-4068-aa94-786f564cf05d.png,283554111189902,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c5414c46-0935-4a60-98be-29e5720216b7.png,861940078750813,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +43281979-c820-49c2-a9be-085681cd9302.png,244818470219854,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fc0be4c5-1b5d-44d5-9d70-6ef9f3d0cf97.png,700754917835312,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3fb7415b-ccfd-4151-a080-8f3223ecce6d.png,1004649154758870,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fbe1a10e-ba6e-4488-899b-7d875fd21781.png,715028882548698,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +10c362e4-e22f-4d81-bc32-84f616148794.png,940060649802424,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e33bbcc5-aab5-45ae-a9e2-86086e9eef2f.png,1108889074097745,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1b44ff3e-0907-43ca-9c9d-5273df2f372c.png,572385214687305,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +70b97802-c1f5-4333-a2b0-cf2ab30c6ba2.png,200701613822184,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fd3c0d0b-2354-451e-9023-30906c4082c8.png,796456685893363,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f7b8f2a3-2bb0-4c49-869f-07d409bbd660.png,1074952231761918,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +06813f46-dd8f-4421-87c8-322399ac69f5.png,142343597392122,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +237f9334-7379-4320-a155-5a35d32caf4e.png,163648492890514,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f6abeaa6-22d1-4e81-a153-2dac520d63c9.png,366996286801581,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c5c0c21c-2020-4b44-8ff6-37afaba83494.png,997091145394495,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a59b1a87-93f8-4c08-9731-e4028982e43e.png,771797486418781,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +160e6319-f499-4744-85f7-04dd477785a2.png,42524763286291,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0e0a074a-c257-4ce2-9ce8-894d54ee7275.png,868222667228985,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +98291191-3e9b-484a-a613-2ea19c653081.png,336487882721312,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e131746a-614b-4035-a83d-51279c05330c.png,718562476599356,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0aa2ca92-b532-4fab-aa13-463d55576073.png,525672081828778,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +eda5d316-af14-40e2-a805-54e884896fd9.png,187701050661190,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cea8d467-6f0a-4efb-9ff9-04f7d490dd0b.png,626017079406941,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +686e51ec-bc5e-44af-8dae-75ebf8dcde75.png,526883625585413,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +29720c85-9102-41e9-b135-676993b6cb28.png,295620047112259,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +241e7253-3dfe-48be-a105-15830f09ba17.png,230061224398010,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +184bc346-8a2f-47a8-86c9-187a7d2b96f8.png,679196834047205,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +00455cd0-6372-41e6-9ec0-07e92a0c9a08.png,896786149243562,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +bef9e21b-d92d-4bbe-a7cd-4b1a2f15b3eb.png,471960039754093,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6f8989bb-0d9c-40fc-9a21-7a8973d388ae.png,755720004904244,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b7c7532f-d2f5-4a4f-95bc-a8cc631fd1f3.png,58999958247821,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0a7d9d9e-faa7-4334-a726-d85a484dccfd.png,347877796779336,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2158a18d-e4d3-4d1a-bc3e-7fa644431074.png,769061819223579,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +95020cb9-63d3-4f9e-8e2c-dba431a84a5a.png,692031564896115,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e2bce8ac-66ed-4e38-8518-c512052fd03c.png,246199891225210,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2c00dcb9-ea30-41cc-95da-067c3f67b810.png,232203340394702,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d493601a-4f2b-46f5-98d4-04098644fd6c.png,94895733779546,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7512fc5f-e5bd-41db-9272-bb541448eaa8.png,79473191065792,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +effa4fb6-e77c-49f4-8b04-67b4a0ffbaa1.png,653321792001157,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +46611fde-786b-4ae2-902e-0ba08eaab9de.png,895384346726548,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4b3677af-e668-4fab-b5bb-73a8473433c8.png,369534283559990,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a5b76c0b-0dfe-4604-9fa8-6850bc203240.png,838297438746393,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fdd65e29-d416-4c04-8cf8-aed42d56f807.png,649893097896894,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +882313e3-2db9-4cf2-8520-8f6a3ae4374f.png,318705391614530,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +71a81f23-db0e-48ae-b522-09f01ba4a6df.png,753593875383156,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5f99a317-aabc-44a6-8dcc-caf6a11a96b7.png,1095755349610403,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8d778b73-ac74-42f6-a8c1-99b924b29d00.png,1056486945916783,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8eae5d1b-5a76-48ff-9b4c-2217c09aba4e.png,251851184632199,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +873918d9-7ac9-4beb-8ea3-958dc409dcc8.png,490715691969381,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7bdb1c7b-ea3b-440e-ade2-0008a30c9657.png,134137754953931,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c57dc6a7-a2f8-4ede-a027-9d3703747d07.png,1001081045724040,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fb66b020-9c75-48df-84f1-421d07c449e7.png,560013383870379,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +73ad58ae-dcdb-412b-b5aa-fd7b33f5ac79.png,1033595630953318,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +67f94cf9-bbb7-42a5-aca2-5a90fa9f6b63.png,974260686026362,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f319fb50-cfac-4391-afbe-54016bfa9cdd.png,897334691551075,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +82a9b0da-0d90-41dd-aeee-f5283e235ca2.png,290577489194572,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9ac93fca-fd43-4fa0-9fb8-ba7bde42960f.png,174615243061559,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b2f39aea-6396-490d-9616-ffd6b3711e84.png,102742927365586,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +37c095b1-4072-410a-8c70-519b85213528.png,507652204802603,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5a875461-a5a8-4574-bb96-86fd9132b8f0.png,1044250379288421,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9f50e84f-5c2a-4eeb-bbdc-14e02a1217bb.png,834402393536652,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ff13ea4a-0597-4adc-8c6e-2badf139cd31.png,844065514623354,a realistic japanese ukiyo-e painting with skeletons,malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b0f809e5-ae35-4469-8bae-c4d5132df637.png,1048746218892025,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3492b35c-3cc6-4283-97a7-d23c0c58bf66.png,91139273527689,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +298b636c-50aa-424a-9226-11d586e8c273.png,953477172707411,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +bb0a5ffd-e406-4e9b-a844-3fc3db715c52.png,690284434473012,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b7fd0556-fde4-4e43-8348-f714e6bed3af.png,600215820562787,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +14647e11-2d32-4134-ad81-6b4c418b5de8.png,221301219398364,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8bf8f934-4368-407f-a425-95d15d108110.png,606660712862963,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +48a09e7d-39c9-432f-8f8e-e55bb017e021.png,514167891406326,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +42ec65a2-776e-401b-8965-74ecaa04a426.png,1045625430019539,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a673a596-066f-4ca4-9969-b379f168ec55.png,215027992020515,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +895261c5-ee78-4041-864c-71863aef85cd.png,703658630754844,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6c8294ab-bc1c-43a1-91c7-4887671d4dd7.png,880510134275324,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d4342cc6-08bf-44bb-b017-aea2e856641e.png,92961038512015,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +83b265e4-194a-45a3-bd2d-6134c530981a.png,529786364793566,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c13be44b-1c6b-4829-8375-487810a50b70.png,326462198034357,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9998c0de-293b-4083-afec-24586c4c00f0.png,122439434089701,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +52bc1154-3b19-4f2a-a3bc-b01d55ac1ce0.png,466335690723421,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d307da59-516a-4cf5-9347-f59bc0e00355.png,991079960217209,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +beb066db-2a0b-4046-bce0-7d166bbe08c5.png,846757084210685,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +62ee0179-6784-4ca9-8a88-e733eeb71873.png,201963010429934,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5aef91cb-776c-4977-aed3-8f031f158c87.png,330395548807636,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c49eed69-4da0-4b0d-b1e5-520892d4da5a.png,24793806137745,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +27242ff9-1120-49b2-8f37-9a5e56a9f4a7.png,799048549094477,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +65719eaa-a42b-472c-9ef0-271907af9f5e.png,152379057174814,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d4a0f08d-496f-4401-bb37-af3e167caeda.png,468496381824758,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5b28a624-9aca-4755-bed0-1b0df4bee074.png,926054434906102,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +19f2fd3f-1300-4dd9-b168-04cb60188a60.png,975541870381137,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0154dcbe-9039-412b-af6c-53e25da0a86d.png,554691248248359,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1bf8d81a-6b10-4fbc-96c9-f129e39e9078.png,781182094065077,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ea6cd24a-6342-4c7e-a4f5-37b92bbcf246.png,935898641364625,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9c7cd9da-1ae7-4f71-a995-9300d3f5d511.png,433310467547701,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +583b45d1-16e2-4944-9a0e-85601f985918.png,817160441709688,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fad6ff13-858e-4c13-b4c4-b59e574b72bc.png,642383121532161,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b96fd6ea-b809-4b33-bb9b-f8550fed6bf8.png,818169278876158,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +921aefdf-d3e6-4ef2-a272-975109598689.png,1050459615957830,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f8d4186a-084d-4c00-b2e9-30f0a06415a2.png,310816351020485,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3f51e00b-f571-41ec-b690-49bfa918821d.png,666728368056978,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2ca53f93-032a-4a68-a6bb-df2d2c97eea5.png,333826620652641,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0528732a-2f4a-403d-90d1-e7e46d927bb6.png,796865856625251,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +227ab017-4ad5-4f8d-be5e-2b5f310d41c4.png,679614746131536,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fffb2205-0a46-4c8a-9aa4-f011e887c907.png,549443654563857,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4f78a429-b49c-4717-8484-354b45ae73ae.png,693758709682005,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6cc306f6-ed7f-4033-93ef-4088e0b15895.png,1124371507431217,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fb3864b5-9616-4974-8e03-595b7b5cce74.png,195316528823869,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7f8002cf-b76a-4a7c-ad98-419c79280870.png,868982960868685,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1ee5566d-e117-488b-a4bc-ea2007c64c30.png,94227814730346,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a8a29545-dc9a-4ab7-861c-5e7e80e75cce.png,964991120886707,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e9cba149-ff17-48a3-8b62-8415c9ec99b5.png,76111868742425,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2f65c73b-2d3e-4670-ae0d-aa08bfa6a9ce.png,1103919404165596,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +bc4388b7-577f-4f64-9768-57baae510fe6.png,536957420934509,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +69101655-0151-46f1-967c-076c75f59e7c.png,261936415233417,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +02073830-7134-407a-8b6f-c734930164ea.png,811822614788477,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0504a319-4408-4d31-b842-5760fec46e7e.png,675920957412401,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8b13cbce-f21f-4484-9f6e-7e5472398475.png,875331363692354,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +93f9a17e-7bf7-4b0e-8945-8de66ee296d5.png,430029062320477,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +86e5cac5-6f5e-4e55-be99-2219e6230ffe.png,349306763105245,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3857832d-0212-476a-ab8a-f9c4d4c15547.png,507065534370817,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f4e3a33f-17d8-450c-9a8d-4eead1aafd7e.png,647072601166073,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +233f967b-3899-4a8b-bbf5-a10f10d72378.png,802541782077911,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ca92f04b-fce2-4318-b1ff-ba8b0cb21ebb.png,927890619007539,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e15873ef-6469-4d6a-8a43-93e36407abaf.png,72316712762961,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c8e21687-1de4-43c3-9e1e-4df0c0a3a030.png,206846534716170,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6508238c-2492-4d24-8501-ea27bea90966.png,251922782285447,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +55944441-4acf-4f7f-b069-30c95780c5be.png,505927577425863,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +84031709-d432-4d38-bddb-3406960c769a.png,259139363002857,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2c5bb11d-27b9-469d-958d-e309aaa92cfa.png,290185971308286,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +aa14daa8-98f0-4432-bd6b-04de11617fae.png,204382190098811,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f3ee19a1-b187-47cd-8e33-e086446d5533.png,160766843227445,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +176c0ada-5447-4bfb-95e3-4d0c7918dc57.png,713214388691269,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a97c5d83-15f4-4e1d-b019-fa49e169b614.png,924375549045679,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fdf85c65-dbe2-4289-bd4e-de40bf70b2c4.png,87506413606480,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2f8f32ad-824a-4b50-8c3f-638764ed1ed3.png,824773981768756,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0dd627fe-bef4-49bc-b48f-749e0d95ed45.png,874806808271694,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f800cc6e-8cd4-4127-b238-5f0232d88af5.png,770571180343172,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c1a5052e-156c-4082-aa4e-727d82cc0232.png,203735870701690,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9d0ae7f2-bab6-4d49-bc8c-ff02ad9bb484.png,686167856350163,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +75e8e13e-750b-4f04-8b7d-fef2401012e7.png,309637412464608,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7b57a8e8-c3fc-44ee-b65d-7479f5ec2d34.png,597101994474793,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1a1513b4-41ae-4f44-9b8b-b0b04a70a0de.png,863460630908872,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +85f1e7f1-1a7d-43f1-b453-47b52b1004a9.png,579076323960533,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +edee32cb-6293-441d-942c-149882df82a1.png,230088299662045,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a8895ae4-348c-44ae-b782-1889a81c0713.png,645407872580409,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +dffc6471-67b5-4020-bb90-0de71d6cf162.png,393560149308718,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f23541f9-2169-4546-b064-2c2ac5f80bc2.png,878466280105134,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +165b46f3-3c6c-42ce-93e4-20669d23254c.png,36741081658436,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6c7c0b2c-1161-43ad-8a02-6afcf9f0bf9c.png,421366910813580,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8edaaffc-c1e7-4d2e-a71f-55498e52edd6.png,177984029102214,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fdd0d344-3b36-4f98-aab0-0c599c70ed71.png,1034426541701591,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4ff7e7eb-f1a4-4692-9282-f91edeb2b529.png,584416169804384,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f89b14ba-317e-4972-8278-3b68ab66ea94.png,903641452169790,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +15e5b918-8f59-460d-8af5-c5bd479bd372.png,1096031794084370,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +78eb12c9-4390-462f-9ba9-123d9393a7db.png,132013391445658,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8f30a943-1080-4d6c-91b4-df22e2d4b51c.png,364951445951094,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4f0782c8-4728-47bd-8765-fe5568b6cf5a.png,153356747324671,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +06067581-a0aa-4525-8d36-3c4b329ac151.png,52305559999075,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e68a4fab-d9e1-4989-af11-01bdbf4803f8.png,456480325020982,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f39b15a0-f1bd-42ac-afc5-8079d6cf4d6a.png,156859668713276,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5d78b6ed-496a-4e6c-8c73-c1584f5665e1.png,48151845107944,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fb7344d8-1570-4129-be3e-7f9d0c5ea3eb.png,1107095644560356,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7ba79b68-8ba9-4969-be33-87bf312bb66b.png,383576546287266,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +09c0a834-97b3-4254-8e3b-21dc40e6b1dc.png,224733260687030,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +04d9fd59-4440-4777-b944-f065d56677cb.png,728331598859720,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d8c5ac9e-feac-41c6-8e7d-2209436c84f8.png,990046938520767,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +af6fdf69-ab8b-498c-a22e-ac0ee8f5c9aa.png,6353443500698,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ebae60a0-630b-419f-9864-5c611c70f8c4.png,628909182543916,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cea597a1-2f93-4294-a99e-ee2dd2ba4109.png,975346263613,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +40065fe2-13dc-4c07-bc11-cf14f8f637aa.png,585467265273019,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +939d1f9c-e061-490e-9b03-0e79be1fd2dd.png,11312816191817,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +30cd7452-b467-4030-8fb9-c3e50e1a8d98.png,586989485826627,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +02773e2a-3abf-4669-abba-4102b3d9d149.png,642523647787877,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d36136ef-eb35-406f-b5a8-ae1cceb5e86c.png,1118967777369692,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +513dd09a-e1c8-4f52-87f2-be25beda9734.png,317830762837363,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2514340f-8cce-4ef8-9ff2-84a78c419ead.png,1048370945420237,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +32d5142e-6357-4fad-969f-2a9f86799ad2.png,13045347137096,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0d21753b-86a7-4490-9581-366b12c45ee0.png,382856424559986,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3993a286-7367-42b4-abb0-497da6259582.png,221605697523442,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d2c0ab9c-fa65-47bf-bdc7-bc763dba4f8a.png,218416037682261,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1d9c9715-6371-4d64-a52f-a83e10a55b52.png,403562966854078,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6aa82736-4bdf-474d-aa7e-e1462eae2f3b.png,827369881365330,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f7559841-5148-4089-910e-0812ae81fbf3.png,298639174809994,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ea9b5aba-b1aa-45a1-a0ec-6657bc963b77.png,464556651284018,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +54878c89-cfa8-4fe9-830c-84208c71f381.png,699387973947345,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6509692b-9fd1-4861-a51a-c399d53f45c2.png,442871728084887,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fb2ad6d0-dcb7-402e-a653-11844d0af870.png,472744520767021,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a814615b-8baa-4489-8335-1f5e097578d1.png,649157796413196,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +87d2d6a8-aa4f-4b1b-bb7c-8bd08f532e27.png,165518972080475,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d02d12ca-9e34-41e6-b91c-8063c2c4891c.png,760241924431723,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +25c84815-c31a-4282-a10e-f988afdde0c0.png,905446190949214,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fa52f8fa-610a-45bf-be66-b12d1d91bfa4.png,829260730687140,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8c08079e-31f2-4262-aaf8-4482f691abd1.png,207355625996432,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +147f5026-0f59-48d3-a14c-96ed98badeb0.png,56618283163258,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6223125a-c0ef-4154-bb62-8d120cc46c5a.png,877121691115208,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b34dd522-827c-41d1-a48a-4f28f2e29f1a.png,888663470993367,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +bd30b10b-f16b-422f-8e07-71cf6c094a0b.png,821631169893279,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e9f9b2f6-e6ea-4d33-a03e-aff995124e3a.png,930188889285427,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +04d2ae96-443b-4cbd-873f-e60a769e29a5.png,228840234700232,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +034e5c87-f053-4cda-9d46-57652b174de7.png,206335890884008,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4dc86a21-259a-4fb1-b835-cb22d8f4474c.png,98170738587924,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +dd20c6b1-732d-4055-9a5f-c35be7b7c609.png,137367248273593,a realistic japanese ukiyo-e painting with skeletons,malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cf45b877-1734-4057-81f2-f32bc3f050b3.png,79839193201361,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8c0f8b06-798a-4a7c-b6a3-9f6018320fe9.png,364433790983712,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d7ddc0ec-af68-40c5-a465-d0205eea8fff.png,568532164077567,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +86cab72e-89cf-4360-9805-bf2a0d65162a.png,285907115531570,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +516ffc6e-ea04-4d7d-8f76-9accf505baf7.png,1039130783564522,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b2200a5c-bc6b-488f-a984-5af5897dc273.png,616985803841029,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2700ed9a-79e9-4014-b4ae-d2154c6066ef.png,122349368300993,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +76cc4752-e5e6-41ef-93c1-780df0064059.png,313858929336241,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9f5a2a89-82f0-4d4a-b8dc-e067536ce404.png,322804680384163,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +443404b4-9b6a-4ac9-ac7a-0fbcfa083c50.png,691615688389405,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +27222465-0152-43bd-aa97-7a496d64b7ad.png,26411777058142,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5d641ff1-4929-41db-b80a-7612dc80652f.png,444411477357828,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +87829f98-b4df-4732-9adb-e35e37d2ce4f.png,394169211995808,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +de65ab45-a649-42a4-9976-b740bcddc9c1.png,215781605429456,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3d7285de-c625-419f-a32c-6310e7b4f68e.png,835695707875890,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4fdf8bda-3c7d-457b-8409-fbe45939a74b.png,269887978903948,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +bb1daa3e-115a-45d0-9579-a29efdd677ae.png,269804131952754,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3b7fd777-732b-4518-8691-1a3c2e282122.png,351880859548562,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +092558b5-f573-4882-9184-6a64168878a9.png,552547071592653,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +095baeaf-8285-44a4-a573-3283259b8d0c.png,392299310968178,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b411e659-d68b-4461-8747-7a841037b0cf.png,522909493564151,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +caa4852c-ffff-4aa8-ac2e-01a02b00585a.png,384340299117307,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9e4b4847-251f-470a-aa0f-a3338d079311.png,877155949784135,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8d006102-0087-4dba-b0fd-4690e6c62d68.png,646182455530746,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ac7a7d2d-3998-4609-acf1-f867b679d756.png,950542010205214,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6db20c68-0891-4d08-8299-690fadc4e69f.png,22239395940422,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +833e813d-0818-49c8-9948-53c63f7096f9.png,1085936251104455,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +394a520c-a517-430c-9297-e8a2488ebb9a.png,473259841168687,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +98e446bc-cd95-4ad5-bc00-b3ddf6e83308.png,680005707843022,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +13686927-8450-40e2-b67a-68db85738b0f.png,47038806119321,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e2187f59-b99f-4881-bdfd-7d49bbd7d9bf.png,108079252254824,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8db77fbb-9394-4098-a9d4-4e61b7a3181d.png,876570253158180,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4dfbfada-9cf3-42e0-bd39-58f940615e15.png,383406005806360,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7763d453-4719-4312-aed5-2bd960982b1e.png,1040846713923667,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1d1dd54a-1fa7-46c5-ae4d-e237e82e09a0.png,832077677479797,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +335bdada-984d-48f2-b814-7bc95e79ba9f.png,724703032958162,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6dc7a527-c89b-48d3-8655-aa0553974897.png,93548476444673,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +32a921b6-a769-421f-a81f-d869f83e72e7.png,784695649504490,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d6495ece-37f8-482b-8a3b-f1580fdd555f.png,734101431423099,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1e437c0a-f8d9-4bcc-9036-2b891bb993ac.png,64076591432693,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +18a9ee59-658a-4953-9503-de43bc0a9572.png,279676028037436,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +32f71c8a-5c7c-473e-af10-9160c6f3acf9.png,668991843171977,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b8520d34-6f8a-4dfc-9453-8de4f9e77860.png,436783801472505,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +128dd44e-cf10-430d-88bd-e991ddd32445.png,704070880508677,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +eec5e55e-5aa8-4b09-91b8-4a24d9838395.png,248589828739146,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9f37245a-d6db-419c-9e51-3b64b8567b07.png,252375564962426,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3f152217-23f0-4db6-bfe3-5fe99ff89160.png,62840571411025,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0bc0a57b-39aa-4f5b-ba69-f36e14267f02.png,862170224160867,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3212455a-353e-4c4b-9b01-b10573a32295.png,642344814870643,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e2462e45-0522-417c-9361-5e6aae991c31.png,208806596346379,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +366cb531-60bd-4879-9fa2-2f6da16dd352.png,899753121940469,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b2f793b8-4f91-4fbf-a7c4-a71553e2c51e.png,47396370624170,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +78d7edce-a5e1-4316-b330-c96ee783f99d.png,958672432555226,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0b62386f-dc23-41cb-b8cf-0bcf703f5278.png,1006871726288455,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e9bef1bc-e090-4f51-bdfb-145305f81e98.png,402622722878217,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ecc780eb-78af-408d-8170-d0d189080477.png,549879762677026,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +49472bbf-6396-42d0-a73d-3ad859c06560.png,73085364225387,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6e53ba30-27bb-4589-b7c6-15e7cc11af01.png,682952137687110,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ee472b75-fa94-47b0-9b40-1754c7bdcea7.png,524709956255327,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +360d5253-860e-4343-af8a-4754baa553df.png,388955939852972,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f00fca36-d663-4c3f-87ac-d54d1e3793a8.png,204108180930255,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7953a16d-45be-4a3c-b37f-213d9d489068.png,32564428191304,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +593a45f5-d830-40e8-b13d-207e916d3811.png,1016800260887519,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d4a1c0ee-e15e-4c70-aac7-d5268b983abd.png,1027541973984252,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5e37cd64-fc91-4f35-918c-913b559f1ffc.png,787578080379572,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7e16564f-6a0b-4841-904a-b9369719fc23.png,103632920483471,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6d29158e-dc09-41bf-8265-b4dd1e82795d.png,889166256761460,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3831a9b0-a69d-438c-932f-73340d239853.png,847030767004810,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +aee1568e-8413-4fea-ba30-c6a34515d1c9.png,278552056630189,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fba0e221-2455-4e4e-8704-7716fcc9f374.png,357678543573110,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2dfb8d69-951d-4f64-8c64-17e798db9a44.png,233401797346044,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +de1d3a36-f8d7-47f5-80ac-40eaa2428a7b.png,758891589714749,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d11887fd-80d8-4cf3-9d14-c62030f8632a.png,221484689761817,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e4d7997f-9be7-4d65-abb8-4888fa7af4bd.png,572244839610473,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3fa2bc95-b362-4f65-8793-ba89ddeb17e0.png,310087585991247,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cfbce7df-200c-4d28-92e1-d1aee032686f.png,711773287922991,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +68cb0f5f-9e41-4aa3-b391-90749116ea98.png,831009415469819,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5643406b-ee02-4de1-96c3-2a736cff9a63.png,456521501223984,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9d905a25-75db-478c-940c-5328513e4184.png,958377456679644,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a16f0320-6e23-484a-848e-f9208443fff6.png,888249717250262,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +78506f26-f811-4ac4-a7df-0103cb704397.png,581413779675421,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +39bcc8f4-1bdd-485b-9ff2-09b697f6adf2.png,488544375050217,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +46eb6001-2c8a-4600-9356-d22235405577.png,882457900922362,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3bb3d9bb-31a1-4ab4-8f42-d5ec0839c51c.png,990445419792591,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +114b5c25-68a0-481b-aa55-709385b200f8.png,1089570700507096,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c6549e05-3842-474a-af0d-885ebf89f309.png,886983202434862,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +16f27639-706e-4aef-bf0d-616cbae36054.png,1015297030054569,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e3e48ddb-9d3d-4df4-a3ef-164e07ffd785.png,1112035553737611,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8168fe0d-f00c-4f19-aa31-721171fa7b4d.png,266237844767448,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8a7a7025-64ef-4e11-a8c7-61211c85b453.png,25458890913570,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d3a79e6e-2c93-457a-bd0b-8380e1d74bfd.png,568679376962575,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +abb4aaf4-bb42-4832-9e50-c5e006306082.png,547033135366614,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +be3994d5-3c31-4a4e-abc7-a1f8521f2f13.png,509618364121511,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +24add177-4451-43d4-844e-4421f4f3e9ef.png,478889056377866,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +34391d66-d56d-4b51-9829-acc724826982.png,845146169555332,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ba6127cf-3339-4b91-a12c-055e39c52f45.png,604129262382086,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +90c82d43-ae67-42d0-9bd0-e6e842f47ba9.png,463405047570305,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3b5383a6-3aaa-4c39-8808-4930efc1bcd3.png,1073194514111838,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +87b60bd0-1e80-4d4c-92e9-b8802971875e.png,737446879133922,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2ce7183e-21d8-4dec-8b35-18188482d939.png,566298248672575,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ded80dfb-fc8b-4a14-87a6-11c60b8e35b9.png,1042721585657773,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7e14d13b-676f-4fc9-9992-6fed41af59cf.png,1045534818098166,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +02b71c19-e6a8-46e0-975c-66089fdea26d.png,95227980030854,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +02167913-42d2-4f78-9451-26e118d5270f.png,505800421148871,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7a0ff7d3-3c9d-4e8d-be20-95700d04b554.png,816282833745775,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3027164a-d5d1-49fe-8abc-277395a85c48.png,485640571247110,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d97c3c4f-d2af-41e7-9da9-f707c4015ac2.png,807136822826913,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9f9a06ea-c967-4089-9aa0-82590d504f7e.png,332493274938287,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +02c500de-33df-41fb-a39f-c16bfba4a015.png,834030981513710,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f5395061-dbd8-4933-a290-d2b3a0271e9c.png,750610247446997,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1941738b-7606-42a6-b1d5-1cdb9b6274d2.png,110342802673449,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +82242655-20d9-4588-98e4-c42b10ed78bc.png,997123141550369,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +03485da8-fb49-4dc9-bbef-e4a2232c0181.png,182196889631784,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +586dc789-d988-48f9-86ba-bec63e0830f6.png,846825268651975,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0846f615-28ff-448a-9ad6-2a43ffc6d823.png,2949225114277,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9cdfe30c-4217-4ce3-b791-de8fbce368fc.png,133522396938001,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f76f890c-b630-4290-bc9e-4337a3bfe8d8.png,411747345930910,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c6b173ae-3eba-4ac0-befa-73584d34bbf3.png,751498894959951,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a8aa685d-b6f5-4b84-a89a-70704d0f49ee.png,404595935105534,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4c984ae6-8f6a-4639-a4a0-e1a7d69c3370.png,109881508563649,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b82f83fe-101a-43d2-b8dc-76651baf8ef3.png,1114788583642739,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +edfedf73-e4fc-4804-9c6a-15c8fcbd5fc0.png,116534515170365,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +bdb50bbe-c30d-48d9-8c8f-f3803d3ad183.png,767073344026384,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e73e6c00-c0b1-4180-ac07-e1d0efd36b8c.png,501068785660513,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +faa8be0a-791f-4ff6-98dc-3820de17dde3.png,517365349320095,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d0bdcf8f-3d23-4e2f-a9a8-a0558348e45f.png,185357368765393,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0a90a58f-3341-4b89-8661-f35e78c01a0e.png,351804994638165,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6516ec8f-bd60-4669-97c0-7305d41766bf.png,812704371264133,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b01218f4-15d4-42ae-bdae-188f298e7638.png,471882458449426,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +23eea520-7f8e-4203-8269-77ebc5b0d4a1.png,344054525578090,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b06ed12c-1e63-4caf-b863-de0b5b7d1a38.png,558692996900524,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3d2e65cc-c286-47b3-a687-16b3f93f1059.png,259030143941750,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +68aef1f3-2917-43aa-ad75-b4ccfac72268.png,529768335309376,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b3c7a6b6-4ad6-400a-8038-ca94c7f0546e.png,136884495693795,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5ad3b3b0-1a76-4d5e-98cd-765a12fbe7a6.png,1047780197990382,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d99b305e-61c5-4cdf-9c81-67e95d21f903.png,736236108142459,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ebb6e02f-254f-46fe-878e-4d338f9aa79e.png,1008887158316685,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0f5aa902-5ed0-48e5-ba40-62fc64202063.png,38817438555792,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4803030f-570f-48db-b9d8-f6cdfb511d39.png,1124383338837012,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +79cee1a1-2e11-438e-8944-655d16501178.png,411193824381882,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5afe8181-4edb-4b4a-9338-e69cad7046fb.png,331341157497563,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4028b92b-a984-40d8-9505-a3ea040048b6.png,935224242550820,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fdb45b06-0b10-4556-af4c-a692e0166628.png,231632553603233,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8a163e2f-f6f8-46ed-8028-758104fa0984.png,295444410672716,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b5e2546e-7991-4e00-ba43-02d8a7349c28.png,199450123403454,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +df390099-22e1-481b-951d-6350f2e110e0.png,1112394238289855,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8c0f6100-5f5e-4d5a-9bb5-6167e0bf5245.png,758189916144760,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f38c61e2-c99c-441d-a20b-8cf1afd1a25f.png,180772479419981,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a7961134-e838-4661-be8d-99bc63507b7a.png,808113504731471,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +130fb014-f5cd-4317-abce-f4e60e434351.png,548288151113442,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +32cd9a6c-3614-418c-b94c-383e56a576e2.png,983655215933261,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +147cb3e7-e218-4232-888d-e8ad8c14f3fe.png,734587615738602,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +13c82f0d-f633-4e3c-afa2-568e1a1e424b.png,656982668715726,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a29fa34e-c25a-467d-beca-e776d0250d0e.png,257100159498138,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9c54a923-dd5d-4baf-9e5e-c462e241b6f9.png,955508536998929,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e737e05a-6301-4466-b683-e037a580c823.png,320530371820209,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f3a9a8ea-7ca3-4219-9909-1b9b296b6d50.png,561480717089228,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +453abd64-8629-4ae5-84ca-2d7a30c6725d.png,558599085906860,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +99b8b242-e13f-4d74-ade2-aaa0bbff2f63.png,684443179063384,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +824f5e1f-2f31-493d-b0f6-8096202af8ce.png,1055458338535835,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6475a329-23fc-44b2-805a-a8217b865ede.png,929350160674643,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ea02c7b5-989f-49df-b904-7bbd0aea0752.png,563426390602678,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +15a02825-afcc-43ab-82a5-fb7b7534bf72.png,566032090321895,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8d399ebe-34e5-4eea-b960-87b00c4c87bc.png,162854152087459,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1cbf98cc-464b-427c-9c6b-17c3c9211d91.png,263965667728494,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +68f10e71-5e9f-48bc-be5e-08a817085274.png,93340716864997,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +dc41709a-a106-4921-acef-6ce2432bd755.png,67166418599258,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a8ced64c-b4c9-43e7-b8ef-78b8c3b604c4.png,393548454589762,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8cc3a893-24a4-4244-b2b0-f0f9799f3848.png,492950992592060,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +59379ec8-ab5d-47fc-8f47-2bb1d17b7188.png,89477766014145,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4988b565-f4d0-43da-b955-dd221262910e.png,429504961580549,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +562bc1b9-4212-44e2-acef-85737644fae2.png,458813570600904,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e22fa6ae-d47b-4b39-ab16-a9e52a3224db.png,478499160543451,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c174fbaa-aa33-4c1e-9a16-43bf1917a00e.png,1108180270857277,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7d0d056a-6025-47df-aa3e-246cad9fe609.png,552922028006474,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a6df4193-9424-4200-8525-f3eb0d61faae.png,217932175219929,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f4a3bcdd-efaf-4a05-9149-9d72fda6bd99.png,652736298601603,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b5b751f5-4321-4ef6-9809-c50b6419833d.png,340576738819332,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +65a70913-d00e-49ed-a350-bcd95b1f8238.png,258332452594646,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9d6ab902-76ef-4b0d-a105-0de3b532e437.png,386898718458190,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9cd577a9-5b2a-4764-97c6-88ce42974544.png,1066590343893210,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2f95b323-35d6-4dfb-8d55-99eb192cfa0e.png,1057181430794523,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +866e4e4b-e5a7-4ce6-aa37-42512b8e13d6.png,679539673453092,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fdfdc985-91b0-4656-a8a7-73453d68ceed.png,490618768940282,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a25de7b3-88df-4a67-a430-5a77cc30e4dd.png,1073831141414313,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a76ca378-a893-406b-ab2b-b08ab6036dc6.png,928665721312821,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +06625d12-86ba-4028-9a71-097186bbb754.png,836109146832138,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +19529e18-487a-4280-a959-70174f9044ba.png,1006358458684363,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2c767f90-107f-4f20-94ab-82855221e026.png,625254650741049,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2b262d5e-d763-4ebc-823d-2f3f6350294e.png,833563518544498,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6849739f-eb2b-4362-ae59-9e8baca9be07.png,181668943762873,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +57d9d649-3e99-48fb-9e90-83bce07cef4f.png,889624261614673,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +56b2e2c6-46a9-44dd-8a24-9779842b8a2f.png,452168491542405,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +abdc8b0f-e7ec-4b1d-ac96-c348d435b8b9.png,647422663859823,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b6660a0b-5792-4a10-bbe8-17ad87b6adbc.png,1085619448067984,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +94fb2ebf-b416-4de4-85e0-e8786af8f255.png,643071191903971,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5bf376c7-517d-4566-96d3-3e4be779c9df.png,819623521414840,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +beb02533-6018-44a2-bd27-1ef2444669a5.png,428976709995000,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b0cd8f27-3fdf-46a2-831c-c04e037d9971.png,822635964111580,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +643da7a8-40c4-4a45-8673-37d786bc9f3e.png,166814603516408,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4f321d5d-201a-40b7-8f2e-70868803cf14.png,76909347826874,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5af12b6a-da5b-4e92-8077-93b07288016f.png,492412065960769,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +695f3e45-daa0-4d62-ae28-303bcb804deb.png,50958983123430,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +df696895-77ce-488a-847d-b9edb838bce6.png,285040674311441,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8f199f8d-b0e8-4d1f-a298-7aa9da3698be.png,254859867243483,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f5617175-99a7-4d00-bbef-971ffab5c53d.png,621558254020524,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f24237a6-04b5-496b-ab52-1c070d7ed619.png,746079241679760,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fdcbbb73-28db-43b6-ba6a-63333a373cc0.png,842989963560971,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d53007db-06d5-4d97-9651-722f2e1c1af7.png,503944822407271,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +bfb057a3-7ea3-4e36-bc92-49e9bde02123.png,4524257609885,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0c6c12b2-c43c-41bd-93fc-8b9b64668fb4.png,789752281760683,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b8acd2ef-7f73-411d-92de-58a9d58ff0dc.png,527838664459810,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b28b1643-70fc-4923-b1bd-4e01dfeb3ede.png,802145555754814,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8f3d73b9-8150-4774-bbcf-c4428748d30a.png,72805084617801,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cbce8db6-04c0-4721-be0a-1fa443c4f951.png,903160313782038,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8a476020-e6ed-4848-bbf5-a829e1f00126.png,1074103281189614,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ebc5eab8-06d2-4e5d-8f85-027cd99f3c94.png,984049986888145,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3a002399-c03e-478b-99da-9399fcdbf9d5.png,549256781200511,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +348dc6b3-6a72-485d-81fe-28ff55ac3fc2.png,671561673544800,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fe1bb9f6-7d24-4186-9571-ebd2e86ba11a.png,929569222740512,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1283f5fb-1d42-40ed-b3dc-f3731fa67a87.png,105230548081882,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3d48595b-0143-4db3-95ec-a11bd7732a94.png,6575294765786,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b63e324a-e165-4f7b-9121-845cd465d047.png,527517064901334,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a7ec9505-5b91-46cf-b75b-20ccb9f483d9.png,266889322487583,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +afa5571c-6148-42a2-ac1a-61533ed60b24.png,684301869862776,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ffeb8b51-9929-4a48-a77a-25c1dbd166cb.png,851020768190716,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1bc1be21-6f56-468b-87d8-588a4576fd87.png,522838238256531,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2ee85921-537c-4bba-8c08-15e9eac4aedf.png,653847043219376,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +123085ec-454d-4514-940b-3cfae26607ca.png,75270409227020,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5f79d877-b71d-48aa-a19f-deef7d4a8471.png,452537482994949,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +55057e97-94ab-4d7d-99bb-9a7c07db2a87.png,431265992806704,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2675e431-0e69-4d53-935c-db4a90db8184.png,14678434208687,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0798fb4c-927a-4a11-beb8-538e8c854cd5.png,919800236327625,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cd7674a1-f4ae-4fef-af24-8371eaa92109.png,72238063962724,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ae18c382-528f-4ce3-983c-82b1d9b68c9a.png,634925429334450,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +eaa36b42-4632-455d-b9dd-af126eadb0ac.png,336246978044956,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +67cb2a8c-f7b4-4887-8966-aa89821b7395.png,1049602543425272,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1d05616f-6d5a-4a2a-b79b-c12a24e1c09d.png,252999941340787,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f2c1a937-85d7-4f4b-a4ff-f4ca5af92d7b.png,271081519369193,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1ec09ed0-fa28-43b0-b1b8-78516d524876.png,911648720836658,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0d489516-5893-48e9-8eff-68b1f7e3d24c.png,1074011732314121,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c220626e-7ecb-4165-82da-9f3115e75a5d.png,547524989786246,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7323f579-b14c-4559-bfeb-0d379c53b2a1.png,451501650170451,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +86f90c89-5fbd-441f-a918-e7ab5c403c2b.png,1644095381413,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +aeead079-ec33-4f71-9be6-0b9319d24987.png,74344640464190,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b2e4b867-4ed7-4161-8107-73775cb10fab.png,58509260228222,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e91d166e-6edb-403d-93a5-f49a4295281a.png,705434339397342,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ef7ba57f-17f0-45ee-8187-25357c88b3c4.png,158885557126594,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c3bd0305-bd79-4712-a342-498f5b05ccbc.png,891510076915642,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8c246d73-653b-4fe8-b0aa-c8b2654c9830.png,949599940362769,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cf1bbcc1-2774-4d11-9faf-aea5ab7a86a1.png,917327038599750,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +00eafd43-d28d-4c33-b28a-899bd47da74a.png,615385377122845,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2239f0c6-7f82-4a8f-92f5-e5b532ccc856.png,568063853413661,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +86ba17bf-b257-4ad6-97b4-bc282351ae16.png,79308111237283,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e3a79873-40dd-4c68-abd0-892d1dae6895.png,167941605021365,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c495556f-437f-4131-bdcf-0c3a15182cd5.png,209674178174278,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0dd3306f-935a-41bc-898b-e6f2468e1f2a.png,663404861067307,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1691bd06-23e3-48e6-84a6-182a85755fae.png,792672373509070,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d7628893-e72f-4098-843d-7117527a3550.png,881533339134504,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a2499ef2-fcc5-4933-a35a-078eddeba84d.png,788044219245204,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4666025f-4ac3-4360-a809-51ab1b82c8d0.png,502321713168622,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9cd9d444-ded0-446b-a014-d555b18461ca.png,784079821794787,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7888bd81-3d48-4326-ae7e-b9f0bd828936.png,1089117333749182,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +911baadd-7b56-48d8-9eeb-433b66fd6043.png,315227010380326,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +540b84dc-0a13-41c6-9864-a5059b98224a.png,20287244930581,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a92abe5d-b71b-465a-bc19-5f1d01ea749a.png,387605717406970,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +27bbaf7e-5c8f-4c76-ac99-a499b81347e9.png,127134583436526,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +59912a95-4ec9-4661-ab0e-9c1211669c59.png,56168935358282,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c912f3ce-6089-4966-b979-635f065b730a.png,274982452407189,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4b52fc97-ee2c-4785-b26f-ec2b83e287d6.png,1043664034877579,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c2ff2096-65fe-4b56-b59b-e02960eaf491.png,138092485373631,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4a022fa7-1738-4849-bbc7-0b53ac4294cb.png,651214002548006,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c5d85f05-f819-41bb-94c3-e06553073c8f.png,204648575466065,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cf49c1bc-76f1-4a9a-ad64-e6b35570cd43.png,132947816080884,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9e4d2d45-2a5c-44e1-8549-897f8093cb71.png,122147861221630,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +13504758-b369-469b-bd79-a0df902e6cf3.png,1082304588595284,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9e76abce-423c-485e-8a71-aa0dcc1217de.png,540945144411340,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +aa0b6d37-d170-421b-a467-ce844c2ae8d7.png,440166678668218,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +33da1a93-8d02-415b-b4eb-6b3c78e961eb.png,620755647116353,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d4c9de84-8fea-49d5-92c6-353945aed9b1.png,14343149615786,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6ca09523-802f-4ffa-a58b-7536e6c4fd1a.png,36937968892274,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1f33c7d2-16a1-4d68-ab17-28d79d38a988.png,866263632722661,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +042d818e-065e-4e01-86cc-d91c49d7077c.png,988637589892636,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f1929a33-06a7-4b1a-b7b1-7fb809c5c52e.png,496586907010489,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0178de63-7d50-4f3e-9a99-f14a71e07586.png,751252549554712,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e075472f-0045-4e86-af68-f3c51651fab8.png,1110880487470126,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d6d10d45-8d91-4475-a373-a479a1f39758.png,920102821684137,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1466b5e3-26c5-40c7-a8dc-62bf0fe91696.png,648863163604601,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b24a36be-004e-48dc-a536-ebecaaa1d9f4.png,1014555012532560,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +bcd4f40c-920e-47af-a0e1-c18d4fb246b0.png,106483377144160,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f47b2a2f-1716-450a-be76-abb2814e12ae.png,390638687918610,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a3919f98-54fb-49d3-b342-292dc8f7b3a1.png,165772918781742,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +27ee5a9e-c5e9-44a7-93b9-a223aa00a3cc.png,135139020851308,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +13225402-737c-4382-95f6-855053973835.png,1085502127137412,a japanese ukiyo-e painting with skeletons,,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +82cb4eaa-494c-41b3-8aba-89b109e8f0fe.png,856040053946,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +635d6078-d274-45b0-b485-ca45a6c3421b.png,445590349593883,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +72188415-847d-4a87-b67a-b1de3786f5c2.png,874259866027685,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +35381560-4e68-47a9-a91f-b12512f733cc.png,134093920395518,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c74c8358-528c-4bc9-a6e0-c9345fe02d2f.png,547511050681734,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7dce9451-7deb-418a-a8ae-b01403eef57b.png,629927724564010,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7ef3c680-5fef-4be7-9f34-45f5309aa549.png,14550721044950,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6a5789f7-a584-4657-a5a1-4538f0d5667e.png,59809783187558,a japanese ukiyo-e painting with skeletons,malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +78f0cf88-5a13-49db-b235-2812872469e4.png,1052748532372126,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +df300670-490c-464e-b40b-64d09c1af5c4.png,475753690760445,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4ae455b2-e80a-4b50-8996-dc1a22de4f6b.png,1080394453717047,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +70843108-97a7-4b0e-894c-a29a940eb52d.png,144217088495002,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +14b86ca4-a888-4996-80b5-941cd84ed030.png,416139321330345,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d945723b-de48-4c22-96e9-ed11ac5e1fd5.png,413584594216108,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +48d7705a-9503-4154-bf51-378fc814d6ff.png,388200752632951,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +dd7bbd1c-de73-4552-8bc7-5a3b20b12517.png,849279500274123,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +39bd1ba9-5dfa-49d1-9fa2-27624a15fe6a.png,834465290004236,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7d0ced8b-e6eb-4420-a295-9ba409dadf9f.png,548043254687915,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +37fe1f13-2faf-43b7-b7a4-619ccd3506e0.png,782995827433274,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d21351a5-4e02-4bf6-a35d-ed80bf3b6fd0.png,566155300736473,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +60aedf4e-7bca-4f17-9be4-25d108118b36.png,746502970537005,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +689a9363-c36d-44c2-abb8-4ed84ede1ed6.png,605595678129924,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +edfaad69-483f-4208-9025-1760c7956a89.png,1088823485067864,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +eebf86a8-e0ce-411e-a731-2ddc231c92de.png,329575357129781,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b0a63439-ab8e-4359-87b2-dc61a9a1f424.png,295818548774868,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +582f517f-1d61-49c3-9850-b6e748058245.png,485352377431208,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1f30e798-76b9-4d10-aa70-22c3229710a5.png,735980129845878,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e95a61eb-96ef-4f1a-8bd6-f3ccc9c9f482.png,414597184581700,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4047a304-7e58-4cd5-9c44-2b4574255f6e.png,281678679487751,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fcd67cd5-ec87-4611-a8a5-515026b9d0a7.png,291661632853112,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cc8c36c4-c2a4-4c3b-ac8f-fb95844dbd48.png,371287223495314,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9c2863f0-e823-47e4-9325-c95a7f0e41d7.png,94381486401304,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0a564b4a-9f9f-4c24-bf5e-81bd9b7f19c3.png,1083364975542051,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2c527947-6359-4a59-8421-a4bc308172a5.png,236143699212013,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +dba81309-96ed-483a-8885-5a9468633e3e.png,395157492476442,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +80b2a9d0-0527-46d3-a4a4-9acb0f07a042.png,736230399704464,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d22d12f4-65d1-43b9-b55e-cdfbccfc4241.png,47770186774586,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +97f2594f-1252-4f95-b915-750e130f9046.png,745186628999002,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9f5c4e45-212e-4b62-9850-0febada032c2.png,1077634241515662,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +20651fac-0e0c-4583-8325-aa368cc75f01.png,803734137162658,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d5de88b7-49f2-4316-92e8-28bc3996a338.png,538723456565658,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e879a470-c4c7-4fbf-9ebf-c5c4c2d5a6cd.png,869853952404077,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a1a518a4-a028-4d4e-bda3-e022a49a1b19.png,435230736500624,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0a16e2d9-cd1d-4058-9c5b-af1316818da9.png,974451610124613,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +de496334-7b6a-4f5e-adab-2dc21cc08947.png,1075389690347816,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d8c07a12-b1f1-4f5a-8c05-95480953d016.png,504482861683609,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f1a4f1e9-23bf-4d50-8eea-7bc27b24277c.png,813665663614877,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1365d48a-1ab9-4ea7-aa95-8f97a8c2405a.png,164944683057251,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +58e29a08-0af9-42a4-a90b-67f6c748d2e6.png,1007369313140013,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1e39731a-b34a-44ee-b8b7-f2a013cb5e3a.png,1038669825719577,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ca68a9d5-bf29-4c67-b534-0eab2339c3bc.png,49917624304032,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c36547ab-7982-4c20-839c-7e9401f1c249.png,655591641093698,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0441a292-e8b8-45ae-9817-efee1e5147e6.png,1071416107151055,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +db998985-a041-418d-8f8a-3650147ccc92.png,186004457592568,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +aad1ad38-e89c-4584-a0f4-f305bf0b696a.png,41933716266180,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c4a38641-0aef-4957-92c2-02fa2224c3f5.png,933547636363231,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7a6bc1da-79cd-48a1-9214-6110225286ff.png,532160133327618,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +763c655b-fee4-4cbc-91ca-6f916e414fda.png,115354238553953,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4889fe4a-1537-4398-95b3-7ce2f1aed4e1.png,682123622146035,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +269ecc63-2799-4f44-a720-79cfc3045363.png,659476783301894,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +44e86c66-1537-4aed-9e72-935b60056744.png,825123233401349,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d78783b0-0f92-49e5-bfd1-e682905075ab.png,199880055331,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e0a171fe-4644-4001-897d-4272630215fb.png,768566281893269,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +52394ee6-d346-4ac6-a663-6a958f5a90e3.png,41948933402108,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +dd5f8330-13ee-427a-977b-942839244127.png,105211116392341,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +709f8f01-0f78-4ee8-b42e-9bb8feb52905.png,236757858091317,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c31b30d7-028f-4c9f-b091-8a17d22ca287.png,545883935128282,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +86081d13-f753-4a95-8421-bbcc9220eb58.png,492034542312138,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7ca1fdb2-b21d-4fa6-9d1f-ca09d9600b20.png,696009159295404,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5be0e86b-8367-4b67-9567-e7ce4b5dbbce.png,805362853079256,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +46639df4-a4bf-4592-8d58-a24faa922d40.png,868158731401864,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9b8ff681-6b20-4c02-a58e-8cba14b568a4.png,489872115908407,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +23cf1c88-a521-4902-b46d-c88dfdd57f6e.png,266817953290986,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2b74088e-ab06-42fa-a5dd-fa8849ae3f9c.png,497972667056813,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6ea7f6ff-91d9-4076-9154-3fd7551fd128.png,400881771840082,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b7a84131-3f72-47dd-b7ce-3e28e21e81ef.png,214065726429204,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3f9ffb81-988b-46a8-9ada-c96d7ffd280f.png,179656093669790,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +52c13b67-41ac-4a4f-9e14-7924c2ed7585.png,304810733758000,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +125802de-9b2d-4636-8911-21781e47a6b3.png,77399269342364,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5e9ede86-bab9-4c39-90d9-4e6720776fe8.png,566735237893433,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0071a8c3-b16d-4de5-932b-d40b5b7661d1.png,430313406869235,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +dc977dd8-ed49-4280-b11c-96be9df1697d.png,502216928283446,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b7b91117-a9f4-499e-9914-ea500e468544.png,826047691900692,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f02f0933-cba7-407c-b139-295612bf9a5d.png,956427697613679,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +df7dc598-584d-4ef5-9679-b3c4b44d1852.png,375476814784561,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +938714a0-c8df-4557-be27-5794f42e874b.png,908706120342521,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1f2e0cc9-1cf7-4799-901b-e1996b2e48a8.png,652021369579762,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a709ea2e-b192-4481-9efb-fb6c8fba458b.png,1071953383101645,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +883289b6-8d88-4045-8d59-d3238164761a.png,180717261858859,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +512de57d-e9c2-40b2-88d3-7a2ea5191556.png,46440053395594,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +43408cb4-c299-4e4c-866d-bbdab4b122b7.png,429505684233936,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ff798441-ed26-42bd-b2c3-7de1a9196bbc.png,178970173158310,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3081735f-62bf-4194-a812-92c9bd81ed85.png,307851500286591,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +04695513-6b7f-41a7-a961-27db5ab03592.png,827751323991789,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +dbe370ec-17b1-4b21-aaec-45239fb8cf27.png,42563630683791,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b6e1246a-08ac-47be-abe1-3c22a542a6cf.png,998080075723235,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4dee6747-b1e2-4e99-86d4-372ddbe4c6c4.png,311156881372921,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +50438bf6-a2f4-4876-bbc3-9fc57cf36a58.png,273685681201367,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +82a36d21-e1eb-40b8-882d-2ba1fff20a0c.png,77949456857524,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +58334b67-8e8d-4dcc-8a0f-523d24f07ade.png,139966801527261,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +77c6a176-c5c8-438e-8bc3-8de28487d790.png,927072518534991,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +30bbacfe-1844-4602-b925-468e02f66f17.png,269246091541229,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c98c10f9-cddf-42a1-90e2-ecedf9655ede.png,801790240156589,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +171d8cd5-012f-440a-bc4f-18baf629755c.png,1059179358810104,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f492a73b-042a-4285-959b-7b1133f2570e.png,79742368574368,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cdac7424-ac11-4d7b-9bc8-61296aa33feb.png,1102718193113960,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a86cfba4-c045-4aaf-9c0f-909e85fc4f11.png,26551301439359,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +550b1c4e-16dc-4b94-b025-20f8906559f5.png,837281249673678,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9f54de98-c87a-4a57-a236-edea68d5a351.png,1097642328630708,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +747ee80f-e566-476d-b83c-5558dea8c98a.png,81310036532295,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c7a01a97-f81e-4772-b22b-97b2e4508973.png,1065472515541845,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +70bff15b-58bd-4632-a937-19a03111bd0d.png,516933202960135,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +90df7d25-f9b1-4515-aa41-fba841bec808.png,188291784405561,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +abf89c73-6b54-4050-a9fb-ea08fa1362c9.png,170631193067642,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1f007183-15cc-468a-921a-3cbfe529887e.png,465162534631392,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +22271a7a-6f91-4c0a-81da-1726a703d5c5.png,708881889924394,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6bfc1d56-a9ad-4c6d-bba2-1105d0bc20dc.png,344673108320938,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +90800149-f5bb-4b95-8a6a-4fd0f27504c4.png,665812802796825,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +34ec0e2e-18c9-43b1-9a35-05bae203c3bc.png,672653158819784,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6e33f8ee-acd4-40ec-9b2c-0dd911f99278.png,13396249827938,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +61d4ce02-32ae-431b-a70d-68d1d450251d.png,813296323845908,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2fd8673e-a07c-4d6e-b88d-06ab18c323ca.png,1100100571189210,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +07970142-cc85-4a30-9fa6-3bf45f43f32d.png,90761949554585,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +80cbdda1-e91b-4bb0-b666-900b4b8e4c99.png,44574835520753,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8d78dbff-9684-4aac-bada-12bfbee98f5c.png,942660164546960,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +776c5a9e-a618-4843-add3-8b6e0ce316c9.png,1090768936376924,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +31ed2022-f46e-4554-9d54-8f66de76dc3c.png,47278426077947,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +05d01729-6ced-4b22-a492-352443dcc74c.png,44185239194512,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +209302f7-26d0-4f15-8110-ba15bd1255d0.png,938479141549841,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3a0bee3a-ceb2-49cb-8363-5b7545ddeadf.png,502686305217428,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5bf9eb82-902c-4c8c-b5d2-197a79ea8776.png,249479470362993,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1097cc56-5bf8-4678-9d30-be799d908a3d.png,324253290794796,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9f0253fe-7f96-46af-aad0-bf194abddb4f.png,131129651525743,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +71cce3d0-5ff5-42fe-a272-3ba952972815.png,975876460798985,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +176363cf-66e4-43af-9d26-831e63130b29.png,570427139349111,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +93ef0fcc-c090-47bd-9dd1-063ee7755fd6.png,162323152301341,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +55da0887-bc61-4111-9f99-7da8d44150c8.png,92659360643058,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +26ad9c67-4702-420f-ab1c-f2df484d8c65.png,596957863756942,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +16112580-8d20-4612-a11e-f02b96de99d7.png,76678536591969,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9fa80ccb-69f4-4f54-85b1-f6a1486f8bfc.png,58706701555293,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b43b8e69-2d53-4591-8644-cbe96dcb740e.png,317185035709425,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6234df4a-3a48-46b5-b9c0-1b0fd8769745.png,687692200918557,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f26132cf-f738-4464-8d47-60266603b163.png,14126307323442,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8f2fb6e2-1c1b-415c-a2c5-8a57e873e7a5.png,1043762653687223,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a9163e27-eae1-4088-98a0-d4b0799d19b1.png,1514550975517,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1471a831-a7fc-40fc-b1cc-2d4b3275d8da.png,166029068881947,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6de1620c-ffbf-4b60-a287-66554a87e0ab.png,1042589849081661,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +98575751-e768-44b9-a6c2-c6112cbffd49.png,732812898594938,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9b2aee96-0de7-482d-8af4-8e0b8d5021f8.png,329762124264113,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1858988d-7a15-4988-8c32-2f222db1ee51.png,1104690354535630,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5537b24b-f9eb-4cbc-9755-e3e9cef066d2.png,974971196023308,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +18bc3749-f443-4006-8bdf-e57e34429ddf.png,380575738247365,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a40edfc1-7c48-49bc-a899-b6b6fecedd40.png,160919099059572,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fb74f2b9-a33c-4274-9855-954fd930d815.png,1119830784824526,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +60bc0e2f-1d49-4596-ae01-f2a5c820b755.png,63370929359763,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d306ffde-b500-4277-9f03-bc3d161633bb.png,784302487592799,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a6f5c9f9-a7c0-48eb-b367-041130fc3933.png,612658602646500,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +61e8ab06-bc8b-4ad0-ba92-2ddffdd16f65.png,1119528258676259,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ad4b1cc6-447a-4389-b6f3-7cf371141edf.png,1023782358909084,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +94ab2321-c7cf-42bc-838e-a91b724cfa48.png,426067601215791,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3f08b477-feb2-40ad-b41e-6b4a41b11268.png,793601151960150,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +94433e31-d70b-4884-a4eb-ff99c1094fea.png,700349694617846,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d03f03f2-a82a-410f-bd9a-71195e41ef28.png,8149698150227,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5119450e-28fd-45af-be65-f920b708522e.png,763186061456379,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +79c1ef65-29a6-47c3-80d1-465dfe1baa0b.png,112600484147337,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d6287fc1-a42e-429c-a2d9-6230b5783b93.png,165273089348669,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1552a169-e3e0-4b24-a728-e11b9f2cdac3.png,48646487769661,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +51605565-e25c-4f9a-a726-d76e4d3c547c.png,477575077783887,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9679c820-d544-4ed2-9ba7-a632c9db7d1a.png,903231845846018,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +badc95a9-4ce7-4f11-948d-10c7e127d83e.png,566836488322376,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1ee3d625-aa62-406a-a009-ae92a3a33dfa.png,962711536170168,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +327a2a51-0428-47e8-bacc-4fe894a73dc4.png,562150784939844,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +39744b0a-0bcd-438e-925c-abf45c80feca.png,807598665887424,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ee654059-157a-4699-8f81-b9b9bb9a4dcc.png,380163872984835,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ae985773-f8c8-4baf-9b9e-51f77b1e9b73.png,1043332050992499,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +844816f4-2d00-4fff-99c4-81c8994e960d.png,775117410121121,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f2e23fdf-0cb5-43f8-af14-82701741dbb3.png,658785688415960,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +16a2fb27-ce85-4b08-94c1-9ace16d67835.png,666798914264694,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +589e006a-b7a9-4f88-83fa-777a1c8db83b.png,928028186624590,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ebae8321-6212-4815-b824-d625d9e22798.png,986320056276966,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f2acab05-ff73-44c7-b29b-b030ef858e84.png,694687016039741,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4e203a19-7600-41e6-990c-51d75f6aec3d.png,918793626456739,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2f9d1f30-f9ee-4171-a491-061fd6caea2c.png,1059885482266942,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +59ce2d62-3f22-47ef-bb41-48a61de75db7.png,899427928558625,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +81f408b3-d61a-449d-b4cf-c796b05a4c97.png,967294328577726,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5ea330f7-3443-4cd5-bec9-22b3bdbc82b2.png,923723003759612,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +015f9c37-62da-4756-b6f5-4e1c9d48f21a.png,402650699928539,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +343cd286-76eb-4753-ba0f-b8f77a54ab6a.png,1014740615070669,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d80eae02-2664-4441-a62e-cf7ef717f1f6.png,889566776675229,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +593bc85f-5c9c-46bc-8e98-7ce1a131fdff.png,78442567699677,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f0ba85bc-e9b9-4162-8d22-ae429983e558.png,842499136425910,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ebd2e195-d7c7-4190-9cb2-336bd176fcf5.png,580922033012672,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c7af40a4-7bf6-478e-a975-33cf4f359ae4.png,11617233199969,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1961fa3f-8bb6-4b42-a661-51d37ec12209.png,613220071765995,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5cbf092e-bf9b-4c89-9c48-01db4fbe8c70.png,131270308479200,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +45b46743-57ad-4122-b053-50c73d35fcc9.png,1049080648005193,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +696a0fbb-8450-44b7-97ce-df0d7cd60a15.png,295466062530380,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +59d4e474-3073-4b11-80fb-0d3a4e91fe2d.png,467067717258964,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +317d2d19-efbc-4183-8da4-11c3c6fe65f8.png,893287243916066,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b884c797-eed2-4e12-8d76-0518600806b9.png,745761675813138,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +25288ef9-369a-4fdd-a16c-6f8ec4f8309d.png,971319595921058,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cd53e8e4-f754-4149-ba3b-3d376ff9aa89.png,931695769612234,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a1fb193f-b022-4335-9b7b-b2352e8b962d.png,236604692724797,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ca9d87ae-d19b-44fc-bb9f-64bb08ffc514.png,174071605862778,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c42f4fa3-6a86-40f6-9b61-977c225a36a0.png,271322275506323,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +546ef2f9-95fe-4e2a-aacb-89cefff8d395.png,537500892781756,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +015dd218-e636-44d9-8664-26932c9999b0.png,484424754728560,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8475aa1d-730a-4c6c-add1-001c5ca01aea.png,344829831357235,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4aecf763-12fd-456d-9037-6382fe1bb590.png,418134434561615,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +18d2af2f-25ae-4ab2-ad7f-2e34069d10c2.png,805831476993213,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8da62d14-9d50-4437-865b-9ff448c25b2f.png,272819663638467,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0f85e464-574f-4b72-915a-8857d116c1cc.png,772359630559108,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +dbfaac8d-2ac9-42db-81e7-be27065d0a51.png,1078585182389187,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a1e83891-e67f-4e65-8b84-7f99fe890d30.png,530619929899111,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6931bcff-88b4-48bb-b4a4-98f47c685b6d.png,747233765268688,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +086b80d5-0621-4bb6-b7b6-a3767b2fbc5b.png,495588099986584,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a3b01464-b382-480e-837f-c3b275503a87.png,586200400318588,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c2152070-db85-4c30-8dc0-b577eb35e0f7.png,270546560732854,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0f43e5ea-e797-4225-9c91-9535d018d678.png,347050199834893,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +618cd6e4-f3ca-46ca-96e6-b4815fcf48c1.png,472183075285690,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a66622e5-53d2-46e3-ad54-c02b3efc931a.png,850981008272267,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9e1bb8ad-f72f-4596-9daa-6cd154efa72f.png,803957769090986,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7ae4017a-5220-418e-9bb1-01d2294da85c.png,13171176883197,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7ad74a9a-4380-4bf7-af03-4f8c3f1d0fd8.png,687253671664037,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f2c7ca4a-9e08-468a-981b-4242217641ca.png,150863985102603,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +90b10c09-229b-4842-82af-3235828a24dc.png,1068825667675587,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4a830759-8e5f-4a99-9195-a9aa18f7eda2.png,1117696516485653,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3ecf0b59-2da7-4f97-a57f-9b37d08cb8da.png,1121081129461518,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1acfe134-ae7a-415e-b4a7-8b1af2f330ab.png,748204845321694,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +243aa388-82f2-4335-bf9a-c9904636f451.png,144700649108801,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3f4a8946-2607-4579-bf8f-45821a0f681a.png,1093846246927141,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +26ebedba-2812-441d-a068-e37845c4f154.png,480620275518057,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +58fd66a8-5719-4d6e-a27a-a1e52e8336c4.png,601067201219386,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1689102a-0862-4158-9fe9-573998d73f58.png,812152183113933,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f2adee2c-f9bb-475c-a818-85b47d75e8a6.png,4266474670858,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1ec15cea-c176-4e74-b980-75aef89683cf.png,1036230322867575,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6af6b043-e54b-4bb4-8ddd-00b4642096a3.png,434968827996609,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7a71281b-207a-4a1a-bdb0-e8c72eea23ca.png,655058974493448,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +46e3a0e0-0bb9-4043-b666-b36ec04ed138.png,533068274643358,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2ffb37c5-41db-4ae0-8cc3-6bb164b1d896.png,333047915972182,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e3c345b3-632b-4542-9fcf-8764a3d96441.png,320392286714812,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4f5be013-5358-44e0-8dcc-c9f6363d047c.png,456322969408246,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e5501e6d-91e4-4066-9770-bd8cafde48d7.png,789565473429282,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9b1a0150-5a0f-40de-8798-41e2d1bdf8cb.png,492122237175914,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ff2f4675-7934-4007-b16f-7fd9c765cfa2.png,792551924076470,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +be33a5e1-9e90-4018-b53d-e9b17af4e384.png,286962790007308,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +681ac9d0-6502-415a-84bd-aa2b8c4fccc4.png,164801316003164,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6cb32c23-7e09-48f6-8433-a14288e6b3cf.png,167395987093068,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d903f02a-4486-4ebe-a9ce-857ad1af0659.png,399078125875541,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8bbfaf5d-1897-469b-85ed-05e120ee96fd.png,272211384392942,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +59648583-ac52-44c5-8b3e-f9a863562a27.png,1097459172824803,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e8dfde67-9942-4cf7-8d2d-82f861321d80.png,1059171303687219,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +93f238cd-20ce-4196-9554-089d7344682d.png,391681354965130,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +88656be2-98b1-4b91-bf6b-daf44b058c65.png,931417068506353,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +abcefeac-21a2-4fe2-a958-f200b2e6b3f2.png,674708224187650,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5f19d0cf-1886-4073-8688-36d5e01ed3f1.png,543473789585644,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1c87b0c3-a4b4-41e3-8bba-e4e214299724.png,223380252580414,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +bc8b084d-bfa8-4b92-a7ef-117729b55d1c.png,472966994702186,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1f178836-9f1d-4ee9-beef-8de229aeda86.png,662814489084994,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +77574f02-b8bc-4a82-99f3-43eaedcb5389.png,976933043743996,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f7d74515-9149-46de-a2ae-30dd5b7b6e87.png,604557128757469,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2f721dc3-bd62-4bc8-8d3f-395749ee7841.png,451580459280310,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e0c52ecc-38cb-457b-b8d8-293a0246aa4b.png,645181341016919,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +83115e8b-8274-46c6-8171-5fac5cb1913d.png,1004225251934709,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +26d846b0-d519-4375-9077-979e9e430651.png,623877722248282,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6cfbdda4-7fcb-489e-8c50-4526ba0308ce.png,14358990544116,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +196eb0b7-882c-4b73-945b-cddefbd7e684.png,389006033345295,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d2c0bcca-41df-456b-a24a-2c61c554a318.png,903820054514932,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1dcbc12e-dc5d-4f86-ad0d-16db02e55829.png,538743536218168,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +84d1a618-a4da-4674-8904-2b659c03d227.png,922284916066908,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b3237861-9062-4c2d-942f-be318eb3da03.png,1059519639875655,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6c60b773-fcfb-464b-af0c-31115a5aa96b.png,230226149474030,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9dcd1ef5-74f0-4055-8360-ef6e04578c4c.png,1104797637028019,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ed739b6d-aff3-404f-9189-75dd0eabe37a.png,1090552584541581,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8a347165-9260-4020-b647-0afacd1ceb6a.png,497011226845788,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +aa6943dd-d376-4f62-95b1-4da41cbd7e7c.png,356292211111617,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +601e2191-6282-4072-b1f3-f1d8d92644ca.png,690431926162851,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7661288e-4e91-44ce-af7f-6350ba876d93.png,934571119324852,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2925cff6-8faa-43ee-abd3-e8c0c48d00cf.png,368427207733106,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +994f09f8-f294-46c1-b7e7-106ceffc40e2.png,994907943954862,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c96ed2d4-4ac5-422e-a2e7-d518d86f1d1b.png,189123509618670,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +bba6555c-5d22-4b7f-a6da-c0fb557e4a07.png,48660790365722,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a39ca4e1-eeb2-4dab-9308-acc7c2a07776.png,789116481465398,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e2c9fc94-700f-4957-967f-daae8f085f38.png,976165012663832,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +251df509-26ed-4b77-9e89-89ec4e24619a.png,900225159858234,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +652557a3-38e7-4961-bdb8-a95f59f4e298.png,964023969132246,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +68b83a2e-2094-4f73-8348-46e5c5f4e91c.png,1041362110251094,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +63e78444-2e4f-4fb9-b702-e9d54eae2e7c.png,271798337231958,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cfb2b867-3bc4-478f-9e0e-daa7e7a124b8.png,889477338365036,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +72756e84-227e-48ac-a898-e083575504a5.png,568451549877327,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +81352517-9932-4382-b549-9b45374418a1.png,722653115445342,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fd69e148-81dc-42eb-9cf7-2aca924f7fe4.png,49721739282178,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e320bc85-12f5-48ce-bb69-83352fe51068.png,944230381274632,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a78c8efb-a8c1-4372-b3e7-c20c93691953.png,473544226465449,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +81a5f8ce-302f-45e0-8cf0-e9af6da36f57.png,538496063338979,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6552e07b-e40b-4f1c-9cd4-b4d5fd50be48.png,300358591161730,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +56a4cdbe-59ef-43fd-943e-c0ba7fd1fb8e.png,528195233039632,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +60bc3166-f224-4683-8285-13e633c050f4.png,243902951796247,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +104e9189-ad76-4c3e-9410-db5932e794b5.png,234188309020975,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +743309a0-50e0-4698-bccf-dd7654133fc4.png,769043403057475,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +faa0ccb0-ef30-40a9-84da-bca60be7dd6e.png,548310682954310,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +66e2f9f6-3824-4404-ba31-ee7d5650b16a.png,514027909323957,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +01d76e8e-10e6-4926-8c9b-2c23d7a84c5c.png,790856827130060,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +47a9b7e0-95b1-4522-9a11-174214af91f1.png,397330527664406,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +57d67064-1c45-48e9-aadf-8bf1cc789875.png,322612862017549,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +02609d0c-651c-4c18-b027-67a18efcb0e5.png,787716303728745,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +43870038-1d4c-4304-a1c3-a5e7fcb2e1ed.png,390456169072752,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2cdb9218-79a3-4091-aecc-b0457ae4f653.png,699784342245853,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4bcd02e3-792e-4801-b3f2-897f2f9f4f22.png,241226913150436,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +982429d3-4519-44c8-af60-9a10b404f203.png,710888065271901,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +73565f1c-f779-419e-8c71-bec8af65bf45.png,1007823694151228,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +da9de355-b894-46c7-baad-0cf9745cd022.png,768562407518075,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +af723441-47d1-4490-befb-83733d4e6caa.png,254236372349219,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b255a99f-ee92-4e1b-b360-e2ecd481992e.png,168528217539006,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e638ab85-a9ed-4a9c-adc9-56d9e1bdfada.png,590098353830787,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8686d0d5-0a01-4bec-9472-3b22db21b035.png,963788624421913,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8b20be5f-f79e-44bb-ae17-3950104c9f02.png,743410017128324,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ce473eeb-756c-4dc1-bbfe-6c4327a11cb8.png,1062466330156310,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +741e81fa-86d0-438e-8a15-5a484a96dc4c.png,477603788485141,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3e6b4e21-3989-432c-b574-1dd050bce0f8.png,980270054919017,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +02d28798-45ea-4890-9cf6-ecc3077ef93d.png,1008845329134439,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a15202b7-f818-4359-89fd-a2ad3228342b.png,878461267767510,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +8c605543-8349-4068-88da-28309a539eeb.png,1108101183383591,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3564e900-c97e-4c1f-92cb-734c2a557685.png,584552653565554,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5d89f0a6-a589-46af-8eb5-5387b75b3555.png,338354216964294,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +89f08182-630d-4707-8d93-9c99360864be.png,973898610056938,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4bd85564-21cd-40e4-a169-9e476f5b2a88.png,973200217021695,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +bc3e8873-6fe3-4b62-a406-09e2bd121dde.png,833304532125768,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6bddb3b7-32c4-4979-8693-918f121d11f0.png,469244143701319,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +21252684-8162-4a78-99fc-c4dfb75fdc92.png,563256231132235,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5efc3292-085b-4865-b0f1-dd6d3903c5b1.png,818020175580559,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0604dbd4-890d-4d99-b3fb-ee5ad4efd3b4.png,365135569575623,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4c65b4e4-c916-4969-b5cd-712830cdcccc.png,116250723732291,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4ab51f86-d96f-4619-a1d9-2fb6e62e8d5a.png,460609798187383,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +814feb22-9a0d-4fca-866c-853bfd0aa345.png,1091941009897350,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +dd4daa85-0457-410f-af66-ba31f65dd585.png,880524311574129,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +46cd7076-12f0-431e-9614-b2ba69a83431.png,754289819480727,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5cfe65ab-b67b-492d-bf38-3b3d9c9eab09.png,952969228062675,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f8a80451-f902-4f69-9100-f982c9edd68d.png,945633056392881,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d3c0c9d9-455a-4704-95f1-65c21403cf0e.png,82673847583249,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c282fa28-d93b-461d-9e40-35200fd0e012.png,98938518684602,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4c929e4b-58e4-4745-b67e-dfec8d1f225d.png,924367866422680,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0c8137dd-954e-43d8-a610-fc2cb97db07f.png,164978550066415,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +91610863-8400-45bb-a71a-ee8af08dbf5d.png,398169287390818,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +f75664f1-8291-4755-981f-1508a07e63b2.png,933849083214935,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +09706049-653a-42f7-9345-ee20996c1957.png,431211758024738,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +93e98148-a9e7-466f-87e7-f773d249ae5a.png,258706648402409,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0ba9a6c8-4e09-4803-82ed-5ef8f5a37481.png,1097677021129359,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +df938d30-b633-4cee-8314-b7c3bb8b09e6.png,427813334478878,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1174dda0-2b61-45d9-8e21-fe9d45da9639.png,56966756814615,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5426816e-db1e-48ae-acb9-0d6fe32615aa.png,704627600866330,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d2957af0-3b1b-4e6c-ad73-65b62f9b5dad.png,63867435256749,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e23070bc-2997-4355-ac96-7677ee929cc5.png,745205820168269,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +31a61f4b-5eec-4a6b-be39-210b9866aa20.png,649918104024051,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e83cc3af-7bde-4ba7-8f29-58d7d77103f0.png,469470918691885,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +83be6a72-0116-439c-83f1-a93ace149dba.png,455332956467428,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +78a531d0-0972-429d-8707-94f76fc420b1.png,235986694834441,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +6a36e724-688c-4ad7-bac1-aa7c6f97d104.png,978238194449929,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d30a837b-08b5-46d7-98c6-3ae821c92479.png,438757383875578,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c36899d3-d063-4570-a395-72810df75de9.png,1114893646868409,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +31ffa7ef-30b2-4949-b53c-d48546edca33.png,305884923316046,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b5731f6e-396f-46c6-b789-ce961a57a3c2.png,182945556669190,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4c2f6a00-fa05-4479-a74c-e9e5a277cb5b.png,869201094734376,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5af71714-3f03-43ee-bd08-0e2325c13937.png,604577701659957,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +00b6572d-cddd-401d-971a-6115b71bc71c.png,969679111533548,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +04d69896-054c-4762-b8e7-327cdb31503d.png,519418994542859,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d0c9d4a3-0101-40a1-80e0-80878eee51d8.png,245565036614249,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4aefea5b-4ff9-439f-8574-4e96b8e656fe.png,870161573155405,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e666c334-71e2-477d-bf60-eb67657f055a.png,465595257461580,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d2cf9d1f-41bb-4db4-810a-63b4333fcb32.png,215166420157736,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +02b3ff90-1780-4ae1-81f9-64723d74a738.png,506189063527805,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +bec81c4e-7e61-4f5f-a3bb-df45ac04ac45.png,1123175961395478,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +15628330-5fc8-46e1-82ce-18ec52a28d8c.png,455167203453630,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d19c9baf-ea02-4dd1-9c2b-98e8e1d75b84.png,31792110767508,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7f00d94a-12be-4d5b-b763-fb26fcf8d911.png,113230471895814,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a10a3588-8993-426d-a844-4e3835481727.png,58576246242642,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +07a05d0f-55a9-4728-ab2e-ed069e96fe88.png,571704560030907,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +4d07ac0a-4f6e-417e-96f7-09879ffb1c7b.png,877071809181411,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a6828401-a9d1-4c01-9bcb-891eecc7bbc0.png,316620024232421,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +acb52b23-07e0-4fc7-b6c4-340c84e525ed.png,446466264335896,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d4b62286-e9bf-442f-bed5-9322e5251ea7.png,852699005565549,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +606e4ade-a289-4ecd-b2f7-35b57ff7c4e5.png,266069460835102,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c773aecf-05f9-4ac3-a648-299e42079658.png,345602816335639,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ad938b70-3136-4f47-b12a-649966770f9e.png,781115838853832,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +d1b6e91a-973f-4e6c-919d-1271f2c457c4.png,625756239724711,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e3d33ef0-e407-4bfb-858a-b9f94e0f6534.png,110141973125246,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2bebfe39-1fa1-4d9d-b640-132a2c4468cf.png,888616153933333,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7175c8af-07da-46f7-bdb9-896d2a772f5d.png,41947582417668,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +267006c2-0baf-415e-81a8-b66b36f8df52.png,535620316304085,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +97431573-8ab0-445a-96ba-d020db5cd772.png,308460625814353,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2a5ee122-3023-41fe-babd-e63e6dc18b33.png,230012425586108,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cb336ab8-b5d5-452b-bb93-7401abaae3cb.png,137499326839086,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3d05f17a-f7fb-416d-929c-a6c383769cb4.png,444225950573126,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +ed879f3d-8cd9-47d0-bcd4-30b56737c129.png,798717998195148,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +36f3ded4-11ba-4455-b7b8-8fc8d1f89765.png,623411941459167,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +438243c1-e0da-495b-b657-1153392e796a.png,127865058592892,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a8f21a34-0e86-4036-a3be-9fe67037ce4a.png,672817036749810,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +7e7d2169-2a40-492e-aa22-8a700998bd2f.png,791722413739223,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +29c9258f-bf83-4e77-ada1-009adf06c5cb.png,561698714730779,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +cd55ed8a-0858-4d7f-af33-de85ec305f53.png,327216143238649,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +b249939c-addb-41ef-a68e-40a0902e1b4d.png,174406661569698,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2bf05cad-e4c9-4609-a533-6b914cfec6c2.png,782120696503847,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +1f3be357-d121-4bea-93c5-dc992eaf479d.png,1034194519921257,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3d495542-7d5c-47fb-ab5b-c0e38948e2e6.png,816676417176594,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +c635a4d0-4400-46c0-8c3c-cda983ae7efc.png,1044072664349743,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +dba2900b-8883-40f4-bd4b-e9d0bd828631.png,410590501930575,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2a44913a-aa7b-43c4-b78a-9595fcc62691.png,103725687188398,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +3469ed6b-3c7b-4d9c-ba95-c01a2d929d51.png,764775442818208,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +54f1b78c-9afa-416c-be82-8e7cbe6e2548.png,125955784803545,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +e069966b-e4d6-476d-a6d2-9b2b338f1160.png,788132705238098,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +34818723-0e91-4e0b-806a-f3527d59cb4b.png,891039600597482,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a3ceec89-b697-49f3-bc64-6db7bfde3296.png,456950704932728,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +08eb296e-f91f-4da4-abfb-0015d4340167.png,840727633643847,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fd82fd31-a4e3-4d1d-97d3-dfc4ad8fd721.png,878108805720568,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +dcd62471-72e2-437d-94dc-b5ea7595f976.png,779884355736545,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +aa7ca95b-17e4-44b2-b209-d79535f9b534.png,778882670078914,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +2a791880-dec7-485b-885c-8db989de7049.png,239119179712054,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +717684a2-9c6c-407d-b115-930d744c137f.png,62635955501167,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +9fca78e1-4e5f-4a10-9bc9-7a82318aedcd.png,847592558203443,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +0092e70e-e5d0-416f-a08d-738d823c0263.png,459813789395847,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +a1ee2372-cd5f-4497-8535-eba0288961f5.png,730068442667040,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +5303e5f8-7bce-4ad2-8df1-e317ffeabdc4.png,542244161860556,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +352d5a9d-adaf-4f53-abfd-36600ae5a268.png,95593674678145,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +54b5ddc4-2aeb-4501-b393-b41aa8a7f946.png,182229681405214,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +025e6153-83c1-4f6c-84eb-3cf176674699.png,194654963971423,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +fdd90299-008c-4a1e-9ec6-6f159cc3af14.png,839580496925903,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +acf9f7f8-b75d-4957-9f12-8952344a3cda.png,1089358694238198,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0 +04e08d0a-f33a-4355-b45b-d456e1bb555d.png,117908385573376,"Takiyasha the Witch, depicted in the style of ukiyo-e, conjuring the eerie Skeleton Spectre in an ancient, moonlit forest. The scene features traditional Japanese attire, flowing robes, and glowing magical runes, all rendered with the characteristic woodblock print style of ukiyo-e, capturing the haunting beauty and ethereal presence of the spectral figure.",malformed,sdxl_lightning_4step.safetensors,4,1.0,euler,sgm_uniform,1.0