From 1e553059146e7fde61a78bc27b5c35b358199212 Mon Sep 17 00:00:00 2001 From: bl3kunja Date: Sun, 9 Nov 2025 08:55:29 +0100 Subject: [PATCH] commited with removed gtk wrapper. Simple python run file with all requirements. --- GTK_WRAPPER_README.md | 140 - gtk_wrapper.py | 107 - setup_gtk_wrapper.sh | 23 - start_app.py | 111 + .../tournament_20251108_232118.json | 4583 +++++++++++++++++ .../tournament_20251109_083952.json | 2035 ++++++++ tournament_results.json | 2991 +++++------ 7 files changed, 8242 insertions(+), 1748 deletions(-) delete mode 100644 GTK_WRAPPER_README.md delete mode 100644 gtk_wrapper.py delete mode 100644 setup_gtk_wrapper.sh create mode 100755 start_app.py create mode 100644 tournament_archives/tournament_20251108_232118.json create mode 100644 tournament_archives/tournament_20251109_083952.json diff --git a/GTK_WRAPPER_README.md b/GTK_WRAPPER_README.md deleted file mode 100644 index 8564dba..0000000 --- a/GTK_WRAPPER_README.md +++ /dev/null @@ -1,140 +0,0 @@ -# GTK Wrapper for Flask Application - -This wrapper embeds your Flask web application in a native GTK window using WebKit2, providing a desktop application experience. - -## Installation - -### Prerequisites -- Python 3.6+ -- GTK 3.0 -- WebKit2 4.0 -- PyGObject - -### Automatic Setup (Linux) - -Run the provided setup script: -```bash -bash setup_gtk_wrapper.sh -``` - -This will install all required system packages and Python dependencies. - -### Manual Setup - -If the automated script doesn't work for your system, install the packages manually: - -**Ubuntu/Debian:** -```bash -sudo apt-get update -sudo apt-get install -y python3-gi gir1.2-gtk-3.0 gir1.2-webkit2-4.1 libgtk-3-0 libwebkit2gtk-4.1-0 -pip3 install flask -``` - -**Fedora/RHEL:** -```bash -sudo dnf install python3-gobject gtk3 webkit2-gtk3 -pip3 install flask -``` - -**Arch Linux:** -```bash -sudo pacman -S python-gobject gtk3 webkit2gtk -pip3 install flask -``` - -**macOS (via Homebrew):** -```bash -brew install gtk+3 webkit2gtk python3 -pip3 install flask -``` - -## Usage - -Run the GTK wrapper with: -```bash -python3 gtk_wrapper.py -``` - -Or make it executable and run directly: -```bash -chmod +x gtk_wrapper.py -./gtk_wrapper.py -``` - -## Features - -- **Native GTK Window**: Runs your Flask app in a native GTK 3 window -- **WebKit2 Rendering**: Uses WebKit2 for modern web rendering -- **Background Flask Server**: Automatically starts your Flask app in a background thread -- **Developer Mode**: Developer tools are enabled for debugging (inspect element) -- **Responsive UI**: Window is resizable and responsive - -## Configuration - -You can customize the wrapper by editing `gtk_wrapper.py`: - -### Window Size -```python -self.set_default_size(1200, 800) # Change to desired width, height -``` - -### Window Title -```python -self.set_title('Your App Title') -``` - -### Flask Server Port -```python -self.flask_port = 5000 # Change to desired port -``` - -### Developer Tools -To disable developer tools (inspect element), comment out: -```python -self.webview.get_settings().set_property('enable-developer-extras', True) -``` - -## Troubleshooting - -### "No module named 'gi'" -Install PyGObject: `pip3 install PyGObject` - -### "gi.repository.Gtk" not found -Install GTK bindings: `sudo apt-get install python3-gi gir1.2-gtk-3.0` - -### "gi.repository.WebKit2" not found -Install WebKit2 bindings: `sudo apt-get install gir1.2-webkit2-4.0` - -### Flask server won't start -- Check if port 5000 is already in use -- Ensure you're running from the correct directory -- Check Flask app for syntax errors - -### Page shows "Unable to reach" error -- Wait a few seconds for the Flask server to start -- Check the terminal for Flask startup messages -- Ensure all Flask dependencies are installed - -## File Structure - -``` -TV_APP_V1.0.0/ -├── app.py # Your Flask application -├── gtk_wrapper.py # GTK wrapper (this file) -├── setup_gtk_wrapper.sh # Automated setup script -├── GTK_WRAPPER_README.md # This file -├── templates/ # Flask templates -├── static/ # Flask static files -└── locales/ # Language files -``` - -## Notes - -- The Flask app runs in debug mode disabled to prevent auto-reloading conflicts with GTK -- The app uses threading to run Flask in the background without blocking GTK events -- All Flask features (routing, sessions, file uploads, etc.) work normally - -## Support - -For issues with the Flask app itself, see the main app documentation. -For GTK/WebKit issues, refer to the respective project documentation. diff --git a/gtk_wrapper.py b/gtk_wrapper.py deleted file mode 100644 index 00fe31d..0000000 --- a/gtk_wrapper.py +++ /dev/null @@ -1,107 +0,0 @@ -#!/usr/bin/env python3 -""" -GTK Wrapper for Flask Application -Runs the Flask app in a separate thread and displays it in a GTK window using WebKit -""" - -import sys -import threading -import time -import gi -import os -from pathlib import Path - -gi.require_version('Gtk', '3.0') -gi.require_version('WebKit2', '4.1') - -from gi.repository import Gtk, WebKit2, GLib - -# Import the Flask app -from app import app as flask_app - - -class FlaskWindow(Gtk.ApplicationWindow): - def __init__(self, application): - super().__init__(application=application) - - self.flask_thread = None - self.flask_port = 5000 - self.flask_host = '127.0.0.1' - self.flask_url = f'http://{self.flask_host}:{self.flask_port}/' - - # Configure window - self.set_title('Shooting Range Management System') - self.set_default_size(1200, 800) - self.set_position(Gtk.WindowPosition.CENTER) - - # Create WebKit view - self.webview = WebKit2.WebView() - self.webview.get_settings().set_property('enable-developer-extras', True) - - # Create container - container = Gtk.Box(orientation=Gtk.Orientation.VERTICAL) - container.pack_start(self.webview, True, True, 0) - - self.add(container) - self.connect('destroy', self.on_destroy) - - # Start Flask server in background - self.start_flask_server() - - # Load the Flask app in WebView after a short delay to ensure server is ready - GLib.timeout_add(2000, self.load_flask_url) - - def start_flask_server(self): - """Start Flask development server in a separate thread""" - def run_flask(): - # Change to app directory to ensure relative paths work - app_dir = Path(__file__).parent - os.chdir(app_dir) - - # Run Flask app - flask_app.run( - host=self.flask_host, - port=self.flask_port, - debug=False, - use_reloader=False, - threaded=True - ) - - self.flask_thread = threading.Thread(target=run_flask, daemon=True) - self.flask_thread.start() - print(f"Flask server starting on {self.flask_url}") - - def load_flask_url(self): - """Load the Flask application in the WebView""" - try: - self.webview.load_uri(self.flask_url) - print(f"Loading {self.flask_url}") - return False # Don't repeat - except Exception as e: - print(f"Error loading Flask URL: {e}") - return False - - def on_destroy(self, widget): - """Handle window close event""" - print("Closing application...") - Gtk.main_quit() - - -class FlaskGTKApp(Gtk.Application): - def __init__(self): - super().__init__(application_id='com.example.flaskgtk') - self.connect('activate', self.on_activate) - - def on_activate(self, app): - window = FlaskWindow(app) - window.show_all() - window.present() - - -def main(): - app = FlaskGTKApp() - return app.run(sys.argv) - - -if __name__ == '__main__': - sys.exit(main()) diff --git a/setup_gtk_wrapper.sh b/setup_gtk_wrapper.sh deleted file mode 100644 index 194694c..0000000 --- a/setup_gtk_wrapper.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash -# Setup script for GTK Wrapper dependencies - -echo "Installing GTK wrapper dependencies..." - -# Update package list -sudo apt-get update - -# Install GTK3 and WebKit2 development libraries -echo "Installing GTK3 and WebKit2 libraries..." -sudo apt-get install -y \ - python3-gi \ - gir1.2-gtk-3.0 \ - gir1.2-webkit2-4.0 \ - libgtk-3-0 \ - libwebkit2gtk-4.0-37 - -# Install pip packages if needed -echo "Checking Python dependencies..." -pip3 install flask - -echo "Setup complete! You can now run the GTK wrapper with:" -echo " python3 gtk_wrapper.py" diff --git a/start_app.py b/start_app.py new file mode 100755 index 0000000..b853a3c --- /dev/null +++ b/start_app.py @@ -0,0 +1,111 @@ +#!/usr/bin/env python3 +""" +TV_APP V1.0.0 - One-Click Launcher +Automatically installs dependencies and starts the web application +""" + +import os +import sys +import subprocess +import webbrowser +import time +import importlib.util + +def check_python_version(): + """Check if Python 3.7+ is available""" + if sys.version_info < (3, 7): + print("ERROR: Python 3.7+ is required") + print(f"You have Python {sys.version}") + return False + return True + +def check_and_install_flask(): + """Check if Flask is installed, install if not""" + flask_spec = importlib.util.find_spec("flask") + + if flask_spec is not None: + import flask + print(f"✓ Flask is installed: v{flask.__version__}") + return True + + print("⚠ Flask not found. Installing...") + try: + subprocess.check_call([sys.executable, "-m", "pip", "install", "flask", "-q"]) + print("✓ Flask installed successfully") + return True + except subprocess.CalledProcessError: + print("ERROR: Failed to install Flask") + return False + +def main(): + """Main installation and startup routine""" + print("\n" + "="*70) + print(" TV_APP V1.0.0 - Installation & Launcher") + print("="*70 + "\n") + + # Check Python version + print("[1/4] Checking Python version...") + if not check_python_version(): + print("\nPlease install Python 3.7 or higher") + input("Press Enter to exit...") + return False + + import flask + print(f"✓ Python {sys.version.split()[0]} found\n") + + # Check Flask + print("[2/4] Checking Flask installation...") + if not check_and_install_flask(): + input("Press Enter to exit...") + return False + print() + + # Verify app.py exists + print("[3/4] Verifying application files...") + app_path = os.path.join(os.path.dirname(__file__), "app.py") + if not os.path.exists(app_path): + print(f"ERROR: app.py not found at {app_path}") + input("Press Enter to exit...") + return False + print("✓ Application found: app.py\n") + + # Start the app + print("[4/4] Starting web application...\n") + print("="*70) + print(" TV_APP is starting...") + print("="*70) + print("\nThe application will be available at: http://localhost:5000") + print("Press Ctrl+C to stop the server\n") + + time.sleep(2) + + # Open browser + try: + webbrowser.open("http://localhost:5000", new=1) + except: + pass + + # Change to app directory and run + os.chdir(os.path.dirname(__file__)) + + try: + # Import and run the Flask app + import app + app.app.run(host='0.0.0.0', port=5000, debug=True, use_reloader=False) + except ImportError as e: + print(f"ERROR: Could not import app.py: {e}") + input("Press Enter to exit...") + return False + except KeyboardInterrupt: + print("\n\nServer stopped by user") + return True + except Exception as e: + print(f"ERROR: {e}") + input("Press Enter to exit...") + return False + + return True + +if __name__ == "__main__": + success = main() + sys.exit(0 if success else 1) diff --git a/tournament_archives/tournament_20251108_232118.json b/tournament_archives/tournament_20251108_232118.json new file mode 100644 index 0000000..da4e9b1 --- /dev/null +++ b/tournament_archives/tournament_20251108_232118.json @@ -0,0 +1,4583 @@ +{ + "tournament": { + "rounds": [ + { + "round_number": 1, + "players": [ + { + "id": 35, + "name": "Vanja Kolar", + "enabled": true + }, + { + "id": 33, + "name": "Namir Uzunovi\u0107", + "enabled": true + }, + { + "id": 3, + "name": "Ivan Tandler", + "enabled": true + }, + { + "id": 40, + "name": "Jaka Cvar", + "enabled": true + }, + { + "id": 42, + "name": "Jure Glaser", + "enabled": true + }, + { + "id": 38, + "name": "Bojan Sudar", + "enabled": true + } + ], + "status": "pending" + }, + { + "round_number": 2, + "players": [ + { + "id": 41, + "name": "Tadej \u0160truc", + "enabled": true + }, + { + "id": 10, + "name": "Mitja \u010ceh", + "enabled": true + }, + { + "id": 17, + "name": "Du\u0161an Onuk", + "enabled": true + }, + { + "id": 39, + "name": "Tia Sudar", + "enabled": true + }, + { + "id": 8, + "name": "Franc \u017digart", + "enabled": true + }, + { + "id": 9, + "name": "Janez Bo\u017ei\u010d", + "enabled": true + } + ], + "status": "waiting" + }, + { + "round_number": 3, + "players": [ + { + "id": 36, + "name": "Klara Wankmuller", + "enabled": true + }, + { + "id": 37, + "name": "Milan Stramec", + "enabled": true + }, + { + "id": 15, + "name": "Jan Pleterski", + "enabled": true + }, + { + "id": 34, + "name": "Jo\u017ee Planin\u0161ec", + "enabled": true + }, + { + "id": 13, + "name": "Angelca Mrak", + "enabled": true + }, + { + "id": 7, + "name": "Branko Poker\u017enik", + "enabled": true + } + ], + "status": "waiting" + }, + { + "round_number": 4, + "players": [ + { + "id": 26, + "name": "Jakob Herman", + "enabled": true + }, + { + "id": 32, + "name": "David Strni\u0161a", + "enabled": true + }, + { + "id": 43, + "name": "Marko Pokr\u017enik", + "enabled": true + }, + { + "id": 18, + "name": "Matja\u017e Pleterski", + "enabled": true + }, + { + "id": 22, + "name": "Doris Fesel", + "enabled": true + }, + { + "id": 31, + "name": "Dejan Ku\u010dnik", + "enabled": true + } + ], + "status": "waiting" + }, + { + "round_number": 5, + "players": [ + { + "id": 5, + "name": "Jo\u017ee Verhnjak", + "enabled": true + }, + { + "id": 20, + "name": "Jo\u017ee Preglav", + "enabled": true + }, + { + "id": 16, + "name": "Silvo Poro\u010dnik", + "enabled": true + }, + { + "id": 48, + "name": "Janja Salcman", + "enabled": true + }, + { + "id": 12, + "name": "Matej Kvasnik", + "enabled": true + }, + { + "id": 25, + "name": "Andrej Herman", + "enabled": true + } + ], + "status": "waiting" + }, + { + "round_number": 6, + "players": [ + { + "id": 44, + "name": "Anka Ka\u010dnik", + "enabled": true + }, + { + "id": 14, + "name": "Karli Proje", + "enabled": true + }, + { + "id": 23, + "name": "Robi Krautberger", + "enabled": true + }, + { + "id": 11, + "name": "Rado Kefer", + "enabled": true + }, + { + "id": 2, + "name": "Nik Pleterski", + "enabled": true + }, + { + "id": 29, + "name": "Alen Kolar", + "enabled": true + } + ], + "status": "waiting" + }, + { + "round_number": 7, + "players": [ + { + "id": 49, + "name": "Jolanda Verhnjak", + "enabled": true + }, + { + "id": 30, + "name": "Maja Hirtl", + "enabled": true + }, + { + "id": 4, + "name": "Mateja Pleterski", + "enabled": true + }, + { + "id": 46, + "name": "Tijana \u0160tumpfl", + "enabled": true + }, + { + "id": 1, + "name": "Domen Pleterski", + "enabled": true + }, + { + "id": 47, + "name": "Ljuba Mr\u0161ak", + "enabled": true + } + ], + "status": "waiting" + }, + { + "round_number": 8, + "players": [ + { + "id": 6, + "name": "Mateja Senica", + "enabled": true + }, + { + "id": 24, + "name": "Jo\u017ee Verdinek", + "enabled": true + }, + { + "id": 28, + "name": "An\u017ee Kolar", + "enabled": true + }, + { + "id": 19, + "name": "Franc Rizmal", + "enabled": true + }, + { + "id": 45, + "name": "Lidija Blimen", + "enabled": true + }, + { + "id": 21, + "name": "Marko Blimen", + "enabled": true + } + ], + "status": "waiting" + }, + { + "round_number": 9, + "players": [ + { + "id": 27, + "name": "Janez Mrak", + "enabled": true + } + ], + "status": "waiting" + } + ], + "created_at": "2025-11-08T23:20:56.722423", + "total_players": 49, + "total_rounds": 9, + "current_round": 1, + "tournament_type": "20_targets" + }, + "results": { + "tournament_id": "2025-11-08T23:20:56.722423", + "tournament_type": "20_targets", + "participants": { + "35": { + "name": "Vanja Kolar", + "targets": { + "1": { + "shot1": 2, + "shot2": 10 + }, + "2": { + "shot1": 4, + "shot2": 0 + }, + "3": { + "shot1": 0, + "shot2": 10 + }, + "4": { + "shot1": 6, + "shot2": 2 + }, + "5": { + "shot1": 8, + "shot2": 7 + }, + "6": { + "shot1": 10, + "shot2": 4 + }, + "7": { + "shot1": 2, + "shot2": 1 + }, + "8": { + "shot1": 0, + "shot2": 6 + }, + "9": { + "shot1": 6, + "shot2": 1 + }, + "10": { + "shot1": 0, + "shot2": 8 + }, + "11": { + "shot1": 1, + "shot2": 2 + }, + "12": { + "shot1": 1, + "shot2": 1 + }, + "13": { + "shot1": 10, + "shot2": 1 + }, + "14": { + "shot1": 6, + "shot2": 2 + }, + "15": { + "shot1": 9, + "shot2": 0 + }, + "16": { + "shot1": 7, + "shot2": 4 + }, + "17": { + "shot1": 8, + "shot2": 9 + }, + "18": { + "shot1": 1, + "shot2": 3 + }, + "19": { + "shot1": 4, + "shot2": 1 + }, + "20": { + "shot1": 0, + "shot2": 10 + } + }, + "total_score": 167, + "completed": true + }, + "33": { + "name": "Namir Uzunovi\u0107", + "targets": { + "1": { + "shot1": 8, + "shot2": 5 + }, + "2": { + "shot1": 8, + "shot2": 3 + }, + "3": { + "shot1": 9, + "shot2": 5 + }, + "4": { + "shot1": 10, + "shot2": 2 + }, + "5": { + "shot1": 2, + "shot2": 6 + }, + "6": { + "shot1": 10, + "shot2": 10 + }, + "7": { + "shot1": 3, + "shot2": 0 + }, + "8": { + "shot1": 6, + "shot2": 10 + }, + "9": { + "shot1": 10, + "shot2": 2 + }, + "10": { + "shot1": 6, + "shot2": 10 + }, + "11": { + "shot1": 4, + "shot2": 1 + }, + "12": { + "shot1": 4, + "shot2": 1 + }, + "13": { + "shot1": 2, + "shot2": 10 + }, + "14": { + "shot1": 8, + "shot2": 10 + }, + "15": { + "shot1": 8, + "shot2": 8 + }, + "16": { + "shot1": 6, + "shot2": 7 + }, + "17": { + "shot1": 1, + "shot2": 5 + }, + "18": { + "shot1": 0, + "shot2": 9 + }, + "19": { + "shot1": 8, + "shot2": 2 + }, + "20": { + "shot1": 1, + "shot2": 7 + } + }, + "total_score": 227, + "completed": true + }, + "3": { + "name": "Ivan Tandler", + "targets": { + "1": { + "shot1": 7, + "shot2": 4 + }, + "2": { + "shot1": 4, + "shot2": 0 + }, + "3": { + "shot1": 10, + "shot2": 10 + }, + "4": { + "shot1": 0, + "shot2": 7 + }, + "5": { + "shot1": 3, + "shot2": 7 + }, + "6": { + "shot1": 0, + "shot2": 0 + }, + "7": { + "shot1": 5, + "shot2": 9 + }, + "8": { + "shot1": 9, + "shot2": 2 + }, + "9": { + "shot1": 1, + "shot2": 0 + }, + "10": { + "shot1": 0, + "shot2": 8 + }, + "11": { + "shot1": 10, + "shot2": 5 + }, + "12": { + "shot1": 10, + "shot2": 3 + }, + "13": { + "shot1": 3, + "shot2": 5 + }, + "14": { + "shot1": 7, + "shot2": 2 + }, + "15": { + "shot1": 1, + "shot2": 8 + }, + "16": { + "shot1": 9, + "shot2": 0 + }, + "17": { + "shot1": 1, + "shot2": 10 + }, + "18": { + "shot1": 3, + "shot2": 1 + }, + "19": { + "shot1": 8, + "shot2": 7 + }, + "20": { + "shot1": 0, + "shot2": 9 + } + }, + "total_score": 188, + "completed": true + }, + "40": { + "name": "Jaka Cvar", + "targets": { + "1": { + "shot1": 6, + "shot2": 3 + }, + "2": { + "shot1": 7, + "shot2": 8 + }, + "3": { + "shot1": 7, + "shot2": 1 + }, + "4": { + "shot1": 8, + "shot2": 3 + }, + "5": { + "shot1": 0, + "shot2": 7 + }, + "6": { + "shot1": 8, + "shot2": 1 + }, + "7": { + "shot1": 4, + "shot2": 8 + }, + "8": { + "shot1": 5, + "shot2": 6 + }, + "9": { + "shot1": 10, + "shot2": 0 + }, + "10": { + "shot1": 7, + "shot2": 4 + }, + "11": { + "shot1": 3, + "shot2": 2 + }, + "12": { + "shot1": 2, + "shot2": 9 + }, + "13": { + "shot1": 7, + "shot2": 10 + }, + "14": { + "shot1": 5, + "shot2": 9 + }, + "15": { + "shot1": 4, + "shot2": 10 + }, + "16": { + "shot1": 2, + "shot2": 6 + }, + "17": { + "shot1": 6, + "shot2": 0 + }, + "18": { + "shot1": 5, + "shot2": 5 + }, + "19": { + "shot1": 3, + "shot2": 0 + }, + "20": { + "shot1": 5, + "shot2": 2 + } + }, + "total_score": 198, + "completed": true + }, + "42": { + "name": "Jure Glaser", + "targets": { + "1": { + "shot1": 6, + "shot2": 10 + }, + "2": { + "shot1": 10, + "shot2": 2 + }, + "3": { + "shot1": 6, + "shot2": 1 + }, + "4": { + "shot1": 1, + "shot2": 7 + }, + "5": { + "shot1": 5, + "shot2": 8 + }, + "6": { + "shot1": 1, + "shot2": 4 + }, + "7": { + "shot1": 2, + "shot2": 1 + }, + "8": { + "shot1": 9, + "shot2": 0 + }, + "9": { + "shot1": 2, + "shot2": 9 + }, + "10": { + "shot1": 2, + "shot2": 9 + }, + "11": { + "shot1": 3, + "shot2": 9 + }, + "12": { + "shot1": 10, + "shot2": 0 + }, + "13": { + "shot1": 1, + "shot2": 9 + }, + "14": { + "shot1": 8, + "shot2": 5 + }, + "15": { + "shot1": 6, + "shot2": 8 + }, + "16": { + "shot1": 0, + "shot2": 5 + }, + "17": { + "shot1": 0, + "shot2": 8 + }, + "18": { + "shot1": 9, + "shot2": 8 + }, + "19": { + "shot1": 5, + "shot2": 5 + }, + "20": { + "shot1": 9, + "shot2": 6 + } + }, + "total_score": 209, + "completed": true + }, + "38": { + "name": "Bojan Sudar", + "targets": { + "1": { + "shot1": 1, + "shot2": 0 + }, + "2": { + "shot1": 1, + "shot2": 9 + }, + "3": { + "shot1": 3, + "shot2": 10 + }, + "4": { + "shot1": 9, + "shot2": 1 + }, + "5": { + "shot1": 10, + "shot2": 10 + }, + "6": { + "shot1": 7, + "shot2": 4 + }, + "7": { + "shot1": 6, + "shot2": 10 + }, + "8": { + "shot1": 8, + "shot2": 0 + }, + "9": { + "shot1": 10, + "shot2": 8 + }, + "10": { + "shot1": 8, + "shot2": 1 + }, + "11": { + "shot1": 10, + "shot2": 6 + }, + "12": { + "shot1": 2, + "shot2": 5 + }, + "13": { + "shot1": 0, + "shot2": 10 + }, + "14": { + "shot1": 10, + "shot2": 8 + }, + "15": { + "shot1": 1, + "shot2": 5 + }, + "16": { + "shot1": 1, + "shot2": 10 + }, + "17": { + "shot1": 0, + "shot2": 8 + }, + "18": { + "shot1": 2, + "shot2": 5 + }, + "19": { + "shot1": 0, + "shot2": 1 + }, + "20": { + "shot1": 0, + "shot2": 0 + } + }, + "total_score": 200, + "completed": true + }, + "41": { + "name": "Tadej \u0160truc", + "targets": { + "1": { + "shot1": 3, + "shot2": 8 + }, + "2": { + "shot1": 6, + "shot2": 0 + }, + "3": { + "shot1": 1, + "shot2": 8 + }, + "4": { + "shot1": 6, + "shot2": 0 + }, + "5": { + "shot1": 5, + "shot2": 7 + }, + "6": { + "shot1": 0, + "shot2": 0 + }, + "7": { + "shot1": 2, + "shot2": 7 + }, + "8": { + "shot1": 2, + "shot2": 6 + }, + "9": { + "shot1": 7, + "shot2": 5 + }, + "10": { + "shot1": 6, + "shot2": 6 + }, + "11": { + "shot1": 10, + "shot2": 9 + }, + "12": { + "shot1": 10, + "shot2": 4 + }, + "13": { + "shot1": 0, + "shot2": 0 + }, + "14": { + "shot1": 9, + "shot2": 2 + }, + "15": { + "shot1": 4, + "shot2": 10 + }, + "16": { + "shot1": 10, + "shot2": 0 + }, + "17": { + "shot1": 4, + "shot2": 10 + }, + "18": { + "shot1": 8, + "shot2": 10 + }, + "19": { + "shot1": 4, + "shot2": 6 + }, + "20": { + "shot1": 0, + "shot2": 4 + } + }, + "total_score": 199, + "completed": true + }, + "10": { + "name": "Mitja \u010ceh", + "targets": { + "1": { + "shot1": 8, + "shot2": 7 + }, + "2": { + "shot1": 2, + "shot2": 8 + }, + "3": { + "shot1": 3, + "shot2": 7 + }, + "4": { + "shot1": 7, + "shot2": 8 + }, + "5": { + "shot1": 3, + "shot2": 4 + }, + "6": { + "shot1": 10, + "shot2": 5 + }, + "7": { + "shot1": 2, + "shot2": 10 + }, + "8": { + "shot1": 3, + "shot2": 1 + }, + "9": { + "shot1": 6, + "shot2": 3 + }, + "10": { + "shot1": 6, + "shot2": 5 + }, + "11": { + "shot1": 2, + "shot2": 0 + }, + "12": { + "shot1": 1, + "shot2": 8 + }, + "13": { + "shot1": 10, + "shot2": 6 + }, + "14": { + "shot1": 10, + "shot2": 1 + }, + "15": { + "shot1": 7, + "shot2": 0 + }, + "16": { + "shot1": 1, + "shot2": 6 + }, + "17": { + "shot1": 4, + "shot2": 8 + }, + "18": { + "shot1": 3, + "shot2": 4 + }, + "19": { + "shot1": 9, + "shot2": 3 + }, + "20": { + "shot1": 3, + "shot2": 2 + } + }, + "total_score": 196, + "completed": true + }, + "17": { + "name": "Du\u0161an Onuk", + "targets": { + "1": { + "shot1": 8, + "shot2": 7 + }, + "2": { + "shot1": 9, + "shot2": 3 + }, + "3": { + "shot1": 10, + "shot2": 8 + }, + "4": { + "shot1": 8, + "shot2": 7 + }, + "5": { + "shot1": 9, + "shot2": 9 + }, + "6": { + "shot1": 5, + "shot2": 4 + }, + "7": { + "shot1": 10, + "shot2": 3 + }, + "8": { + "shot1": 9, + "shot2": 7 + }, + "9": { + "shot1": 1, + "shot2": 8 + }, + "10": { + "shot1": 8, + "shot2": 6 + }, + "11": { + "shot1": 7, + "shot2": 5 + }, + "12": { + "shot1": 8, + "shot2": 5 + }, + "13": { + "shot1": 4, + "shot2": 8 + }, + "14": { + "shot1": 10, + "shot2": 0 + }, + "15": { + "shot1": 3, + "shot2": 3 + }, + "16": { + "shot1": 5, + "shot2": 8 + }, + "17": { + "shot1": 0, + "shot2": 5 + }, + "18": { + "shot1": 10, + "shot2": 0 + }, + "19": { + "shot1": 9, + "shot2": 3 + }, + "20": { + "shot1": 1, + "shot2": 9 + } + }, + "total_score": 242, + "completed": true + }, + "39": { + "name": "Tia Sudar", + "targets": { + "1": { + "shot1": 1, + "shot2": 9 + }, + "2": { + "shot1": 2, + "shot2": 5 + }, + "3": { + "shot1": 2, + "shot2": 1 + }, + "4": { + "shot1": 4, + "shot2": 3 + }, + "5": { + "shot1": 9, + "shot2": 2 + }, + "6": { + "shot1": 9, + "shot2": 7 + }, + "7": { + "shot1": 8, + "shot2": 0 + }, + "8": { + "shot1": 3, + "shot2": 4 + }, + "9": { + "shot1": 1, + "shot2": 5 + }, + "10": { + "shot1": 9, + "shot2": 9 + }, + "11": { + "shot1": 4, + "shot2": 6 + }, + "12": { + "shot1": 6, + "shot2": 0 + }, + "13": { + "shot1": 9, + "shot2": 7 + }, + "14": { + "shot1": 9, + "shot2": 9 + }, + "15": { + "shot1": 2, + "shot2": 10 + }, + "16": { + "shot1": 2, + "shot2": 2 + }, + "17": { + "shot1": 1, + "shot2": 5 + }, + "18": { + "shot1": 4, + "shot2": 4 + }, + "19": { + "shot1": 8, + "shot2": 9 + }, + "20": { + "shot1": 8, + "shot2": 8 + } + }, + "total_score": 206, + "completed": true + }, + "8": { + "name": "Franc \u017digart", + "targets": { + "1": { + "shot1": 10, + "shot2": 0 + }, + "2": { + "shot1": 3, + "shot2": 0 + }, + "3": { + "shot1": 4, + "shot2": 3 + }, + "4": { + "shot1": 1, + "shot2": 4 + }, + "5": { + "shot1": 4, + "shot2": 7 + }, + "6": { + "shot1": 9, + "shot2": 5 + }, + "7": { + "shot1": 1, + "shot2": 4 + }, + "8": { + "shot1": 8, + "shot2": 2 + }, + "9": { + "shot1": 3, + "shot2": 5 + }, + "10": { + "shot1": 1, + "shot2": 9 + }, + "11": { + "shot1": 8, + "shot2": 5 + }, + "12": { + "shot1": 8, + "shot2": 4 + }, + "13": { + "shot1": 1, + "shot2": 3 + }, + "14": { + "shot1": 3, + "shot2": 8 + }, + "15": { + "shot1": 10, + "shot2": 10 + }, + "16": { + "shot1": 0, + "shot2": 9 + }, + "17": { + "shot1": 2, + "shot2": 10 + }, + "18": { + "shot1": 10, + "shot2": 3 + }, + "19": { + "shot1": 9, + "shot2": 4 + }, + "20": { + "shot1": 6, + "shot2": 2 + } + }, + "total_score": 198, + "completed": true + }, + "9": { + "name": "Janez Bo\u017ei\u010d", + "targets": { + "1": { + "shot1": 1, + "shot2": 10 + }, + "2": { + "shot1": 3, + "shot2": 10 + }, + "3": { + "shot1": 5, + "shot2": 3 + }, + "4": { + "shot1": 9, + "shot2": 8 + }, + "5": { + "shot1": 4, + "shot2": 4 + }, + "6": { + "shot1": 1, + "shot2": 6 + }, + "7": { + "shot1": 2, + "shot2": 6 + }, + "8": { + "shot1": 7, + "shot2": 6 + }, + "9": { + "shot1": 5, + "shot2": 3 + }, + "10": { + "shot1": 10, + "shot2": 10 + }, + "11": { + "shot1": 6, + "shot2": 8 + }, + "12": { + "shot1": 6, + "shot2": 0 + }, + "13": { + "shot1": 8, + "shot2": 10 + }, + "14": { + "shot1": 0, + "shot2": 4 + }, + "15": { + "shot1": 5, + "shot2": 8 + }, + "16": { + "shot1": 7, + "shot2": 7 + }, + "17": { + "shot1": 2, + "shot2": 9 + }, + "18": { + "shot1": 4, + "shot2": 9 + }, + "19": { + "shot1": 4, + "shot2": 5 + }, + "20": { + "shot1": 1, + "shot2": 0 + } + }, + "total_score": 216, + "completed": true + }, + "36": { + "name": "Klara Wankmuller", + "targets": { + "1": { + "shot1": 8, + "shot2": 7 + }, + "2": { + "shot1": 5, + "shot2": 2 + }, + "3": { + "shot1": 10, + "shot2": 7 + }, + "4": { + "shot1": 0, + "shot2": 5 + }, + "5": { + "shot1": 6, + "shot2": 6 + }, + "6": { + "shot1": 1, + "shot2": 10 + }, + "7": { + "shot1": 4, + "shot2": 3 + }, + "8": { + "shot1": 0, + "shot2": 1 + }, + "9": { + "shot1": 5, + "shot2": 9 + }, + "10": { + "shot1": 8, + "shot2": 10 + }, + "11": { + "shot1": 3, + "shot2": 2 + }, + "12": { + "shot1": 6, + "shot2": 0 + }, + "13": { + "shot1": 9, + "shot2": 8 + }, + "14": { + "shot1": 5, + "shot2": 5 + }, + "15": { + "shot1": 3, + "shot2": 5 + }, + "16": { + "shot1": 1, + "shot2": 4 + }, + "17": { + "shot1": 6, + "shot2": 1 + }, + "18": { + "shot1": 3, + "shot2": 4 + }, + "19": { + "shot1": 1, + "shot2": 2 + }, + "20": { + "shot1": 7, + "shot2": 8 + } + }, + "total_score": 190, + "completed": true + }, + "37": { + "name": "Milan Stramec", + "targets": { + "1": { + "shot1": 0, + "shot2": 2 + }, + "2": { + "shot1": 6, + "shot2": 6 + }, + "3": { + "shot1": 5, + "shot2": 1 + }, + "4": { + "shot1": 9, + "shot2": 8 + }, + "5": { + "shot1": 1, + "shot2": 9 + }, + "6": { + "shot1": 4, + "shot2": 0 + }, + "7": { + "shot1": 0, + "shot2": 3 + }, + "8": { + "shot1": 1, + "shot2": 0 + }, + "9": { + "shot1": 7, + "shot2": 9 + }, + "10": { + "shot1": 4, + "shot2": 4 + }, + "11": { + "shot1": 1, + "shot2": 6 + }, + "12": { + "shot1": 6, + "shot2": 4 + }, + "13": { + "shot1": 7, + "shot2": 6 + }, + "14": { + "shot1": 9, + "shot2": 2 + }, + "15": { + "shot1": 3, + "shot2": 9 + }, + "16": { + "shot1": 5, + "shot2": 4 + }, + "17": { + "shot1": 2, + "shot2": 3 + }, + "18": { + "shot1": 5, + "shot2": 10 + }, + "19": { + "shot1": 7, + "shot2": 6 + }, + "20": { + "shot1": 10, + "shot2": 5 + } + }, + "total_score": 189, + "completed": true + }, + "15": { + "name": "Jan Pleterski", + "targets": { + "1": { + "shot1": 3, + "shot2": 2 + }, + "2": { + "shot1": 3, + "shot2": 6 + }, + "3": { + "shot1": 4, + "shot2": 6 + }, + "4": { + "shot1": 9, + "shot2": 10 + }, + "5": { + "shot1": 3, + "shot2": 6 + }, + "6": { + "shot1": 7, + "shot2": 4 + }, + "7": { + "shot1": 2, + "shot2": 10 + }, + "8": { + "shot1": 6, + "shot2": 8 + }, + "9": { + "shot1": 4, + "shot2": 8 + }, + "10": { + "shot1": 3, + "shot2": 0 + }, + "11": { + "shot1": 6, + "shot2": 1 + }, + "12": { + "shot1": 9, + "shot2": 7 + }, + "13": { + "shot1": 2, + "shot2": 10 + }, + "14": { + "shot1": 3, + "shot2": 8 + }, + "15": { + "shot1": 0, + "shot2": 0 + }, + "16": { + "shot1": 1, + "shot2": 5 + }, + "17": { + "shot1": 4, + "shot2": 2 + }, + "18": { + "shot1": 0, + "shot2": 9 + }, + "19": { + "shot1": 9, + "shot2": 2 + }, + "20": { + "shot1": 5, + "shot2": 4 + } + }, + "total_score": 191, + "completed": true + }, + "34": { + "name": "Jo\u017ee Planin\u0161ec", + "targets": { + "1": { + "shot1": 7, + "shot2": 2 + }, + "2": { + "shot1": 6, + "shot2": 9 + }, + "3": { + "shot1": 3, + "shot2": 0 + }, + "4": { + "shot1": 8, + "shot2": 2 + }, + "5": { + "shot1": 8, + "shot2": 7 + }, + "6": { + "shot1": 7, + "shot2": 10 + }, + "7": { + "shot1": 7, + "shot2": 8 + }, + "8": { + "shot1": 5, + "shot2": 8 + }, + "9": { + "shot1": 0, + "shot2": 0 + }, + "10": { + "shot1": 0, + "shot2": 5 + }, + "11": { + "shot1": 5, + "shot2": 7 + }, + "12": { + "shot1": 0, + "shot2": 7 + }, + "13": { + "shot1": 6, + "shot2": 1 + }, + "14": { + "shot1": 1, + "shot2": 6 + }, + "15": { + "shot1": 6, + "shot2": 3 + }, + "16": { + "shot1": 10, + "shot2": 8 + }, + "17": { + "shot1": 6, + "shot2": 3 + }, + "18": { + "shot1": 1, + "shot2": 8 + }, + "19": { + "shot1": 1, + "shot2": 5 + }, + "20": { + "shot1": 4, + "shot2": 3 + } + }, + "total_score": 193, + "completed": true + }, + "13": { + "name": "Angelca Mrak", + "targets": { + "1": { + "shot1": 0, + "shot2": 3 + }, + "2": { + "shot1": 0, + "shot2": 4 + }, + "3": { + "shot1": 7, + "shot2": 9 + }, + "4": { + "shot1": 0, + "shot2": 6 + }, + "5": { + "shot1": 7, + "shot2": 5 + }, + "6": { + "shot1": 9, + "shot2": 0 + }, + "7": { + "shot1": 0, + "shot2": 8 + }, + "8": { + "shot1": 8, + "shot2": 2 + }, + "9": { + "shot1": 4, + "shot2": 0 + }, + "10": { + "shot1": 2, + "shot2": 0 + }, + "11": { + "shot1": 0, + "shot2": 2 + }, + "12": { + "shot1": 9, + "shot2": 4 + }, + "13": { + "shot1": 0, + "shot2": 9 + }, + "14": { + "shot1": 1, + "shot2": 10 + }, + "15": { + "shot1": 0, + "shot2": 7 + }, + "16": { + "shot1": 2, + "shot2": 7 + }, + "17": { + "shot1": 3, + "shot2": 9 + }, + "18": { + "shot1": 0, + "shot2": 10 + }, + "19": { + "shot1": 3, + "shot2": 4 + }, + "20": { + "shot1": 7, + "shot2": 6 + } + }, + "total_score": 167, + "completed": true + }, + "7": { + "name": "Branko Poker\u017enik", + "targets": { + "1": { + "shot1": 2, + "shot2": 8 + }, + "2": { + "shot1": 7, + "shot2": 1 + }, + "3": { + "shot1": 7, + "shot2": 4 + }, + "4": { + "shot1": 7, + "shot2": 4 + }, + "5": { + "shot1": 5, + "shot2": 9 + }, + "6": { + "shot1": 5, + "shot2": 2 + }, + "7": { + "shot1": 5, + "shot2": 2 + }, + "8": { + "shot1": 4, + "shot2": 10 + }, + "9": { + "shot1": 3, + "shot2": 8 + }, + "10": { + "shot1": 0, + "shot2": 10 + }, + "11": { + "shot1": 2, + "shot2": 8 + }, + "12": { + "shot1": 4, + "shot2": 1 + }, + "13": { + "shot1": 7, + "shot2": 6 + }, + "14": { + "shot1": 6, + "shot2": 3 + }, + "15": { + "shot1": 7, + "shot2": 10 + }, + "16": { + "shot1": 1, + "shot2": 0 + }, + "17": { + "shot1": 0, + "shot2": 10 + }, + "18": { + "shot1": 10, + "shot2": 9 + }, + "19": { + "shot1": 9, + "shot2": 9 + }, + "20": { + "shot1": 5, + "shot2": 8 + } + }, + "total_score": 218, + "completed": true + }, + "26": { + "name": "Jakob Herman", + "targets": { + "1": { + "shot1": 2, + "shot2": 4 + }, + "2": { + "shot1": 4, + "shot2": 4 + }, + "3": { + "shot1": 5, + "shot2": 1 + }, + "4": { + "shot1": 8, + "shot2": 9 + }, + "5": { + "shot1": 10, + "shot2": 5 + }, + "6": { + "shot1": 6, + "shot2": 10 + }, + "7": { + "shot1": 3, + "shot2": 4 + }, + "8": { + "shot1": 1, + "shot2": 10 + }, + "9": { + "shot1": 9, + "shot2": 0 + }, + "10": { + "shot1": 2, + "shot2": 7 + }, + "11": { + "shot1": 3, + "shot2": 1 + }, + "12": { + "shot1": 1, + "shot2": 0 + }, + "13": { + "shot1": 3, + "shot2": 6 + }, + "14": { + "shot1": 0, + "shot2": 1 + }, + "15": { + "shot1": 5, + "shot2": 6 + }, + "16": { + "shot1": 3, + "shot2": 4 + }, + "17": { + "shot1": 8, + "shot2": 6 + }, + "18": { + "shot1": 3, + "shot2": 10 + }, + "19": { + "shot1": 0, + "shot2": 0 + }, + "20": { + "shot1": 0, + "shot2": 4 + } + }, + "total_score": 168, + "completed": true + }, + "32": { + "name": "David Strni\u0161a", + "targets": { + "1": { + "shot1": 2, + "shot2": 0 + }, + "2": { + "shot1": 1, + "shot2": 2 + }, + "3": { + "shot1": 2, + "shot2": 9 + }, + "4": { + "shot1": 6, + "shot2": 1 + }, + "5": { + "shot1": 6, + "shot2": 3 + }, + "6": { + "shot1": 6, + "shot2": 5 + }, + "7": { + "shot1": 8, + "shot2": 2 + }, + "8": { + "shot1": 6, + "shot2": 1 + }, + "9": { + "shot1": 7, + "shot2": 9 + }, + "10": { + "shot1": 8, + "shot2": 0 + }, + "11": { + "shot1": 7, + "shot2": 3 + }, + "12": { + "shot1": 2, + "shot2": 10 + }, + "13": { + "shot1": 7, + "shot2": 6 + }, + "14": { + "shot1": 8, + "shot2": 4 + }, + "15": { + "shot1": 1, + "shot2": 3 + }, + "16": { + "shot1": 6, + "shot2": 9 + }, + "17": { + "shot1": 5, + "shot2": 1 + }, + "18": { + "shot1": 4, + "shot2": 5 + }, + "19": { + "shot1": 3, + "shot2": 6 + }, + "20": { + "shot1": 7, + "shot2": 7 + } + }, + "total_score": 188, + "completed": true + }, + "43": { + "name": "Marko Pokr\u017enik", + "targets": { + "1": { + "shot1": 9, + "shot2": 4 + }, + "2": { + "shot1": 9, + "shot2": 1 + }, + "3": { + "shot1": 1, + "shot2": 4 + }, + "4": { + "shot1": 0, + "shot2": 8 + }, + "5": { + "shot1": 0, + "shot2": 1 + }, + "6": { + "shot1": 1, + "shot2": 6 + }, + "7": { + "shot1": 7, + "shot2": 4 + }, + "8": { + "shot1": 4, + "shot2": 6 + }, + "9": { + "shot1": 5, + "shot2": 8 + }, + "10": { + "shot1": 0, + "shot2": 8 + }, + "11": { + "shot1": 10, + "shot2": 10 + }, + "12": { + "shot1": 0, + "shot2": 0 + }, + "13": { + "shot1": 10, + "shot2": 4 + }, + "14": { + "shot1": 0, + "shot2": 4 + }, + "15": { + "shot1": 10, + "shot2": 10 + }, + "16": { + "shot1": 3, + "shot2": 5 + }, + "17": { + "shot1": 0, + "shot2": 7 + }, + "18": { + "shot1": 6, + "shot2": 10 + }, + "19": { + "shot1": 1, + "shot2": 3 + }, + "20": { + "shot1": 10, + "shot2": 7 + } + }, + "total_score": 196, + "completed": true + }, + "18": { + "name": "Matja\u017e Pleterski", + "targets": { + "1": { + "shot1": 1, + "shot2": 8 + }, + "2": { + "shot1": 1, + "shot2": 7 + }, + "3": { + "shot1": 8, + "shot2": 8 + }, + "4": { + "shot1": 2, + "shot2": 1 + }, + "5": { + "shot1": 2, + "shot2": 9 + }, + "6": { + "shot1": 4, + "shot2": 10 + }, + "7": { + "shot1": 5, + "shot2": 5 + }, + "8": { + "shot1": 0, + "shot2": 2 + }, + "9": { + "shot1": 6, + "shot2": 0 + }, + "10": { + "shot1": 10, + "shot2": 6 + }, + "11": { + "shot1": 2, + "shot2": 10 + }, + "12": { + "shot1": 5, + "shot2": 4 + }, + "13": { + "shot1": 6, + "shot2": 8 + }, + "14": { + "shot1": 8, + "shot2": 5 + }, + "15": { + "shot1": 7, + "shot2": 10 + }, + "16": { + "shot1": 3, + "shot2": 3 + }, + "17": { + "shot1": 6, + "shot2": 6 + }, + "18": { + "shot1": 0, + "shot2": 6 + }, + "19": { + "shot1": 2, + "shot2": 4 + }, + "20": { + "shot1": 9, + "shot2": 2 + } + }, + "total_score": 201, + "completed": true + }, + "22": { + "name": "Doris Fesel", + "targets": { + "1": { + "shot1": 9, + "shot2": 1 + }, + "2": { + "shot1": 8, + "shot2": 7 + }, + "3": { + "shot1": 8, + "shot2": 1 + }, + "4": { + "shot1": 1, + "shot2": 6 + }, + "5": { + "shot1": 10, + "shot2": 7 + }, + "6": { + "shot1": 6, + "shot2": 7 + }, + "7": { + "shot1": 7, + "shot2": 5 + }, + "8": { + "shot1": 4, + "shot2": 3 + }, + "9": { + "shot1": 3, + "shot2": 10 + }, + "10": { + "shot1": 0, + "shot2": 6 + }, + "11": { + "shot1": 4, + "shot2": 4 + }, + "12": { + "shot1": 0, + "shot2": 0 + }, + "13": { + "shot1": 6, + "shot2": 1 + }, + "14": { + "shot1": 10, + "shot2": 9 + }, + "15": { + "shot1": 8, + "shot2": 8 + }, + "16": { + "shot1": 5, + "shot2": 6 + }, + "17": { + "shot1": 7, + "shot2": 0 + }, + "18": { + "shot1": 4, + "shot2": 6 + }, + "19": { + "shot1": 0, + "shot2": 8 + }, + "20": { + "shot1": 10, + "shot2": 7 + } + }, + "total_score": 212, + "completed": true + }, + "31": { + "name": "Dejan Ku\u010dnik", + "targets": { + "1": { + "shot1": 5, + "shot2": 4 + }, + "2": { + "shot1": 0, + "shot2": 4 + }, + "3": { + "shot1": 3, + "shot2": 10 + }, + "4": { + "shot1": 7, + "shot2": 10 + }, + "5": { + "shot1": 7, + "shot2": 10 + }, + "6": { + "shot1": 8, + "shot2": 1 + }, + "7": { + "shot1": 4, + "shot2": 5 + }, + "8": { + "shot1": 7, + "shot2": 1 + }, + "9": { + "shot1": 7, + "shot2": 7 + }, + "10": { + "shot1": 5, + "shot2": 6 + }, + "11": { + "shot1": 4, + "shot2": 10 + }, + "12": { + "shot1": 1, + "shot2": 7 + }, + "13": { + "shot1": 4, + "shot2": 7 + }, + "14": { + "shot1": 6, + "shot2": 6 + }, + "15": { + "shot1": 10, + "shot2": 8 + }, + "16": { + "shot1": 8, + "shot2": 5 + }, + "17": { + "shot1": 9, + "shot2": 10 + }, + "18": { + "shot1": 1, + "shot2": 8 + }, + "19": { + "shot1": 2, + "shot2": 3 + }, + "20": { + "shot1": 1, + "shot2": 0 + } + }, + "total_score": 221, + "completed": true + }, + "5": { + "name": "Jo\u017ee Verhnjak", + "targets": { + "1": { + "shot1": 4, + "shot2": 1 + }, + "2": { + "shot1": 9, + "shot2": 3 + }, + "3": { + "shot1": 10, + "shot2": 2 + }, + "4": { + "shot1": 2, + "shot2": 9 + }, + "5": { + "shot1": 2, + "shot2": 4 + }, + "6": { + "shot1": 3, + "shot2": 7 + }, + "7": { + "shot1": 4, + "shot2": 5 + }, + "8": { + "shot1": 2, + "shot2": 8 + }, + "9": { + "shot1": 10, + "shot2": 6 + }, + "10": { + "shot1": 0, + "shot2": 1 + }, + "11": { + "shot1": 10, + "shot2": 9 + }, + "12": { + "shot1": 0, + "shot2": 0 + }, + "13": { + "shot1": 8, + "shot2": 7 + }, + "14": { + "shot1": 9, + "shot2": 2 + }, + "15": { + "shot1": 8, + "shot2": 5 + }, + "16": { + "shot1": 10, + "shot2": 4 + }, + "17": { + "shot1": 0, + "shot2": 1 + }, + "18": { + "shot1": 8, + "shot2": 8 + }, + "19": { + "shot1": 6, + "shot2": 7 + }, + "20": { + "shot1": 0, + "shot2": 10 + } + }, + "total_score": 204, + "completed": true + }, + "20": { + "name": "Jo\u017ee Preglav", + "targets": { + "1": { + "shot1": 8, + "shot2": 5 + }, + "2": { + "shot1": 2, + "shot2": 10 + }, + "3": { + "shot1": 3, + "shot2": 6 + }, + "4": { + "shot1": 7, + "shot2": 7 + }, + "5": { + "shot1": 4, + "shot2": 3 + }, + "6": { + "shot1": 7, + "shot2": 4 + }, + "7": { + "shot1": 8, + "shot2": 0 + }, + "8": { + "shot1": 5, + "shot2": 2 + }, + "9": { + "shot1": 9, + "shot2": 1 + }, + "10": { + "shot1": 4, + "shot2": 0 + }, + "11": { + "shot1": 0, + "shot2": 6 + }, + "12": { + "shot1": 10, + "shot2": 10 + }, + "13": { + "shot1": 7, + "shot2": 8 + }, + "14": { + "shot1": 2, + "shot2": 3 + }, + "15": { + "shot1": 0, + "shot2": 7 + }, + "16": { + "shot1": 3, + "shot2": 7 + }, + "17": { + "shot1": 7, + "shot2": 7 + }, + "18": { + "shot1": 5, + "shot2": 5 + }, + "19": { + "shot1": 3, + "shot2": 8 + }, + "20": { + "shot1": 1, + "shot2": 5 + } + }, + "total_score": 199, + "completed": true + }, + "16": { + "name": "Silvo Poro\u010dnik", + "targets": { + "1": { + "shot1": 7, + "shot2": 1 + }, + "2": { + "shot1": 6, + "shot2": 1 + }, + "3": { + "shot1": 10, + "shot2": 5 + }, + "4": { + "shot1": 8, + "shot2": 1 + }, + "5": { + "shot1": 2, + "shot2": 4 + }, + "6": { + "shot1": 10, + "shot2": 7 + }, + "7": { + "shot1": 4, + "shot2": 5 + }, + "8": { + "shot1": 5, + "shot2": 1 + }, + "9": { + "shot1": 0, + "shot2": 8 + }, + "10": { + "shot1": 5, + "shot2": 1 + }, + "11": { + "shot1": 0, + "shot2": 3 + }, + "12": { + "shot1": 4, + "shot2": 0 + }, + "13": { + "shot1": 8, + "shot2": 4 + }, + "14": { + "shot1": 4, + "shot2": 0 + }, + "15": { + "shot1": 4, + "shot2": 7 + }, + "16": { + "shot1": 8, + "shot2": 5 + }, + "17": { + "shot1": 6, + "shot2": 10 + }, + "18": { + "shot1": 9, + "shot2": 8 + }, + "19": { + "shot1": 7, + "shot2": 7 + }, + "20": { + "shot1": 2, + "shot2": 10 + } + }, + "total_score": 197, + "completed": true + }, + "48": { + "name": "Janja Salcman", + "targets": { + "1": { + "shot1": 10, + "shot2": 1 + }, + "2": { + "shot1": 9, + "shot2": 10 + }, + "3": { + "shot1": 8, + "shot2": 1 + }, + "4": { + "shot1": 6, + "shot2": 0 + }, + "5": { + "shot1": 10, + "shot2": 6 + }, + "6": { + "shot1": 4, + "shot2": 10 + }, + "7": { + "shot1": 1, + "shot2": 6 + }, + "8": { + "shot1": 9, + "shot2": 0 + }, + "9": { + "shot1": 5, + "shot2": 3 + }, + "10": { + "shot1": 4, + "shot2": 9 + }, + "11": { + "shot1": 5, + "shot2": 1 + }, + "12": { + "shot1": 4, + "shot2": 8 + }, + "13": { + "shot1": 0, + "shot2": 10 + }, + "14": { + "shot1": 8, + "shot2": 8 + }, + "15": { + "shot1": 6, + "shot2": 10 + }, + "16": { + "shot1": 6, + "shot2": 6 + }, + "17": { + "shot1": 4, + "shot2": 9 + }, + "18": { + "shot1": 8, + "shot2": 3 + }, + "19": { + "shot1": 6, + "shot2": 9 + }, + "20": { + "shot1": 6, + "shot2": 6 + } + }, + "total_score": 235, + "completed": true + }, + "12": { + "name": "Matej Kvasnik", + "targets": { + "1": { + "shot1": 5, + "shot2": 2 + }, + "2": { + "shot1": 10, + "shot2": 9 + }, + "3": { + "shot1": 4, + "shot2": 6 + }, + "4": { + "shot1": 3, + "shot2": 3 + }, + "5": { + "shot1": 10, + "shot2": 7 + }, + "6": { + "shot1": 10, + "shot2": 9 + }, + "7": { + "shot1": 0, + "shot2": 0 + }, + "8": { + "shot1": 6, + "shot2": 4 + }, + "9": { + "shot1": 7, + "shot2": 7 + }, + "10": { + "shot1": 4, + "shot2": 0 + }, + "11": { + "shot1": 3, + "shot2": 0 + }, + "12": { + "shot1": 8, + "shot2": 6 + }, + "13": { + "shot1": 2, + "shot2": 1 + }, + "14": { + "shot1": 0, + "shot2": 8 + }, + "15": { + "shot1": 4, + "shot2": 7 + }, + "16": { + "shot1": 8, + "shot2": 10 + }, + "17": { + "shot1": 6, + "shot2": 8 + }, + "18": { + "shot1": 6, + "shot2": 9 + }, + "19": { + "shot1": 4, + "shot2": 2 + }, + "20": { + "shot1": 8, + "shot2": 7 + } + }, + "total_score": 213, + "completed": true + }, + "25": { + "name": "Andrej Herman", + "targets": { + "1": { + "shot1": 5, + "shot2": 5 + }, + "2": { + "shot1": 6, + "shot2": 9 + }, + "3": { + "shot1": 3, + "shot2": 10 + }, + "4": { + "shot1": 6, + "shot2": 2 + }, + "5": { + "shot1": 3, + "shot2": 10 + }, + "6": { + "shot1": 0, + "shot2": 2 + }, + "7": { + "shot1": 5, + "shot2": 9 + }, + "8": { + "shot1": 3, + "shot2": 1 + }, + "9": { + "shot1": 6, + "shot2": 9 + }, + "10": { + "shot1": 6, + "shot2": 4 + }, + "11": { + "shot1": 0, + "shot2": 8 + }, + "12": { + "shot1": 1, + "shot2": 4 + }, + "13": { + "shot1": 2, + "shot2": 5 + }, + "14": { + "shot1": 10, + "shot2": 2 + }, + "15": { + "shot1": 5, + "shot2": 7 + }, + "16": { + "shot1": 0, + "shot2": 6 + }, + "17": { + "shot1": 0, + "shot2": 3 + }, + "18": { + "shot1": 9, + "shot2": 8 + }, + "19": { + "shot1": 7, + "shot2": 2 + }, + "20": { + "shot1": 0, + "shot2": 6 + } + }, + "total_score": 189, + "completed": true + }, + "44": { + "name": "Anka Ka\u010dnik", + "targets": { + "1": { + "shot1": 9, + "shot2": 6 + }, + "2": { + "shot1": 10, + "shot2": 4 + }, + "3": { + "shot1": 8, + "shot2": 3 + }, + "4": { + "shot1": 9, + "shot2": 4 + }, + "5": { + "shot1": 6, + "shot2": 5 + }, + "6": { + "shot1": 7, + "shot2": 2 + }, + "7": { + "shot1": 6, + "shot2": 6 + }, + "8": { + "shot1": 2, + "shot2": 2 + }, + "9": { + "shot1": 6, + "shot2": 10 + }, + "10": { + "shot1": 9, + "shot2": 6 + }, + "11": { + "shot1": 4, + "shot2": 9 + }, + "12": { + "shot1": 0, + "shot2": 1 + }, + "13": { + "shot1": 9, + "shot2": 3 + }, + "14": { + "shot1": 0, + "shot2": 0 + }, + "15": { + "shot1": 10, + "shot2": 2 + }, + "16": { + "shot1": 4, + "shot2": 6 + }, + "17": { + "shot1": 4, + "shot2": 10 + }, + "18": { + "shot1": 6, + "shot2": 4 + }, + "19": { + "shot1": 9, + "shot2": 8 + }, + "20": { + "shot1": 1, + "shot2": 4 + } + }, + "total_score": 214, + "completed": true + }, + "14": { + "name": "Karli Proje", + "targets": { + "1": { + "shot1": 7, + "shot2": 9 + }, + "2": { + "shot1": 1, + "shot2": 1 + }, + "3": { + "shot1": 3, + "shot2": 1 + }, + "4": { + "shot1": 4, + "shot2": 8 + }, + "5": { + "shot1": 8, + "shot2": 7 + }, + "6": { + "shot1": 9, + "shot2": 3 + }, + "7": { + "shot1": 2, + "shot2": 0 + }, + "8": { + "shot1": 8, + "shot2": 10 + }, + "9": { + "shot1": 4, + "shot2": 8 + }, + "10": { + "shot1": 3, + "shot2": 9 + }, + "11": { + "shot1": 6, + "shot2": 9 + }, + "12": { + "shot1": 0, + "shot2": 6 + }, + "13": { + "shot1": 2, + "shot2": 1 + }, + "14": { + "shot1": 4, + "shot2": 10 + }, + "15": { + "shot1": 1, + "shot2": 0 + }, + "16": { + "shot1": 3, + "shot2": 6 + }, + "17": { + "shot1": 7, + "shot2": 8 + }, + "18": { + "shot1": 1, + "shot2": 8 + }, + "19": { + "shot1": 0, + "shot2": 6 + }, + "20": { + "shot1": 7, + "shot2": 0 + } + }, + "total_score": 190, + "completed": true + }, + "23": { + "name": "Robi Krautberger", + "targets": { + "1": { + "shot1": 9, + "shot2": 6 + }, + "2": { + "shot1": 10, + "shot2": 2 + }, + "3": { + "shot1": 10, + "shot2": 9 + }, + "4": { + "shot1": 1, + "shot2": 1 + }, + "5": { + "shot1": 6, + "shot2": 9 + }, + "6": { + "shot1": 10, + "shot2": 2 + }, + "7": { + "shot1": 8, + "shot2": 5 + }, + "8": { + "shot1": 1, + "shot2": 10 + }, + "9": { + "shot1": 9, + "shot2": 4 + }, + "10": { + "shot1": 6, + "shot2": 10 + }, + "11": { + "shot1": 6, + "shot2": 0 + }, + "12": { + "shot1": 0, + "shot2": 7 + }, + "13": { + "shot1": 7, + "shot2": 5 + }, + "14": { + "shot1": 3, + "shot2": 10 + }, + "15": { + "shot1": 3, + "shot2": 4 + }, + "16": { + "shot1": 7, + "shot2": 6 + }, + "17": { + "shot1": 4, + "shot2": 2 + }, + "18": { + "shot1": 0, + "shot2": 3 + }, + "19": { + "shot1": 2, + "shot2": 1 + }, + "20": { + "shot1": 1, + "shot2": 1 + } + }, + "total_score": 200, + "completed": true + }, + "11": { + "name": "Rado Kefer", + "targets": { + "1": { + "shot1": 8, + "shot2": 10 + }, + "2": { + "shot1": 5, + "shot2": 0 + }, + "3": { + "shot1": 1, + "shot2": 3 + }, + "4": { + "shot1": 9, + "shot2": 2 + }, + "5": { + "shot1": 10, + "shot2": 2 + }, + "6": { + "shot1": 1, + "shot2": 8 + }, + "7": { + "shot1": 6, + "shot2": 5 + }, + "8": { + "shot1": 9, + "shot2": 4 + }, + "9": { + "shot1": 0, + "shot2": 9 + }, + "10": { + "shot1": 4, + "shot2": 0 + }, + "11": { + "shot1": 0, + "shot2": 10 + }, + "12": { + "shot1": 4, + "shot2": 1 + }, + "13": { + "shot1": 3, + "shot2": 4 + }, + "14": { + "shot1": 4, + "shot2": 1 + }, + "15": { + "shot1": 3, + "shot2": 8 + }, + "16": { + "shot1": 3, + "shot2": 2 + }, + "17": { + "shot1": 4, + "shot2": 7 + }, + "18": { + "shot1": 1, + "shot2": 0 + }, + "19": { + "shot1": 6, + "shot2": 10 + }, + "20": { + "shot1": 7, + "shot2": 0 + } + }, + "total_score": 174, + "completed": true + }, + "2": { + "name": "Nik Pleterski", + "targets": { + "1": { + "shot1": 10, + "shot2": 2 + }, + "2": { + "shot1": 9, + "shot2": 8 + }, + "3": { + "shot1": 5, + "shot2": 3 + }, + "4": { + "shot1": 7, + "shot2": 8 + }, + "5": { + "shot1": 6, + "shot2": 10 + }, + "6": { + "shot1": 0, + "shot2": 4 + }, + "7": { + "shot1": 5, + "shot2": 2 + }, + "8": { + "shot1": 2, + "shot2": 6 + }, + "9": { + "shot1": 1, + "shot2": 5 + }, + "10": { + "shot1": 2, + "shot2": 5 + }, + "11": { + "shot1": 8, + "shot2": 8 + }, + "12": { + "shot1": 4, + "shot2": 9 + }, + "13": { + "shot1": 10, + "shot2": 4 + }, + "14": { + "shot1": 9, + "shot2": 6 + }, + "15": { + "shot1": 9, + "shot2": 7 + }, + "16": { + "shot1": 7, + "shot2": 0 + }, + "17": { + "shot1": 0, + "shot2": 9 + }, + "18": { + "shot1": 7, + "shot2": 7 + }, + "19": { + "shot1": 8, + "shot2": 10 + }, + "20": { + "shot1": 5, + "shot2": 4 + } + }, + "total_score": 231, + "completed": true + }, + "29": { + "name": "Alen Kolar", + "targets": { + "1": { + "shot1": 10, + "shot2": 2 + }, + "2": { + "shot1": 3, + "shot2": 3 + }, + "3": { + "shot1": 0, + "shot2": 3 + }, + "4": { + "shot1": 6, + "shot2": 9 + }, + "5": { + "shot1": 3, + "shot2": 2 + }, + "6": { + "shot1": 1, + "shot2": 4 + }, + "7": { + "shot1": 1, + "shot2": 9 + }, + "8": { + "shot1": 10, + "shot2": 6 + }, + "9": { + "shot1": 8, + "shot2": 2 + }, + "10": { + "shot1": 2, + "shot2": 0 + }, + "11": { + "shot1": 3, + "shot2": 10 + }, + "12": { + "shot1": 5, + "shot2": 7 + }, + "13": { + "shot1": 4, + "shot2": 7 + }, + "14": { + "shot1": 4, + "shot2": 8 + }, + "15": { + "shot1": 7, + "shot2": 8 + }, + "16": { + "shot1": 2, + "shot2": 7 + }, + "17": { + "shot1": 8, + "shot2": 6 + }, + "18": { + "shot1": 1, + "shot2": 3 + }, + "19": { + "shot1": 5, + "shot2": 5 + }, + "20": { + "shot1": 9, + "shot2": 3 + } + }, + "total_score": 196, + "completed": true + }, + "49": { + "name": "Jolanda Verhnjak", + "targets": { + "1": { + "shot1": 1, + "shot2": 8 + }, + "2": { + "shot1": 6, + "shot2": 5 + }, + "3": { + "shot1": 6, + "shot2": 10 + }, + "4": { + "shot1": 10, + "shot2": 9 + }, + "5": { + "shot1": 9, + "shot2": 4 + }, + "6": { + "shot1": 0, + "shot2": 7 + }, + "7": { + "shot1": 10, + "shot2": 1 + }, + "8": { + "shot1": 3, + "shot2": 0 + }, + "9": { + "shot1": 6, + "shot2": 6 + }, + "10": { + "shot1": 1, + "shot2": 6 + }, + "11": { + "shot1": 5, + "shot2": 10 + }, + "12": { + "shot1": 3, + "shot2": 10 + }, + "13": { + "shot1": 0, + "shot2": 0 + }, + "14": { + "shot1": 6, + "shot2": 5 + }, + "15": { + "shot1": 10, + "shot2": 7 + }, + "16": { + "shot1": 4, + "shot2": 2 + }, + "17": { + "shot1": 4, + "shot2": 0 + }, + "18": { + "shot1": 9, + "shot2": 1 + }, + "19": { + "shot1": 4, + "shot2": 9 + }, + "20": { + "shot1": 2, + "shot2": 3 + } + }, + "total_score": 202, + "completed": true + }, + "30": { + "name": "Maja Hirtl", + "targets": { + "1": { + "shot1": 3, + "shot2": 0 + }, + "2": { + "shot1": 7, + "shot2": 6 + }, + "3": { + "shot1": 6, + "shot2": 10 + }, + "4": { + "shot1": 1, + "shot2": 8 + }, + "5": { + "shot1": 6, + "shot2": 9 + }, + "6": { + "shot1": 8, + "shot2": 6 + }, + "7": { + "shot1": 3, + "shot2": 6 + }, + "8": { + "shot1": 0, + "shot2": 9 + }, + "9": { + "shot1": 1, + "shot2": 10 + }, + "10": { + "shot1": 10, + "shot2": 4 + }, + "11": { + "shot1": 4, + "shot2": 8 + }, + "12": { + "shot1": 5, + "shot2": 2 + }, + "13": { + "shot1": 2, + "shot2": 6 + }, + "14": { + "shot1": 1, + "shot2": 0 + }, + "15": { + "shot1": 0, + "shot2": 6 + }, + "16": { + "shot1": 4, + "shot2": 8 + }, + "17": { + "shot1": 3, + "shot2": 2 + }, + "18": { + "shot1": 8, + "shot2": 0 + }, + "19": { + "shot1": 5, + "shot2": 10 + }, + "20": { + "shot1": 1, + "shot2": 1 + } + }, + "total_score": 189, + "completed": true + }, + "4": { + "name": "Mateja Pleterski", + "targets": { + "1": { + "shot1": 8, + "shot2": 9 + }, + "2": { + "shot1": 4, + "shot2": 8 + }, + "3": { + "shot1": 1, + "shot2": 10 + }, + "4": { + "shot1": 4, + "shot2": 4 + }, + "5": { + "shot1": 6, + "shot2": 3 + }, + "6": { + "shot1": 7, + "shot2": 0 + }, + "7": { + "shot1": 10, + "shot2": 6 + }, + "8": { + "shot1": 7, + "shot2": 10 + }, + "9": { + "shot1": 8, + "shot2": 9 + }, + "10": { + "shot1": 6, + "shot2": 3 + }, + "11": { + "shot1": 3, + "shot2": 7 + }, + "12": { + "shot1": 8, + "shot2": 4 + }, + "13": { + "shot1": 10, + "shot2": 1 + }, + "14": { + "shot1": 10, + "shot2": 2 + }, + "15": { + "shot1": 0, + "shot2": 9 + }, + "16": { + "shot1": 4, + "shot2": 5 + }, + "17": { + "shot1": 7, + "shot2": 9 + }, + "18": { + "shot1": 0, + "shot2": 0 + }, + "19": { + "shot1": 3, + "shot2": 5 + }, + "20": { + "shot1": 8, + "shot2": 1 + } + }, + "total_score": 219, + "completed": true + }, + "46": { + "name": "Tijana \u0160tumpfl", + "targets": { + "1": { + "shot1": 9, + "shot2": 2 + }, + "2": { + "shot1": 8, + "shot2": 9 + }, + "3": { + "shot1": 1, + "shot2": 10 + }, + "4": { + "shot1": 1, + "shot2": 4 + }, + "5": { + "shot1": 8, + "shot2": 10 + }, + "6": { + "shot1": 0, + "shot2": 2 + }, + "7": { + "shot1": 4, + "shot2": 7 + }, + "8": { + "shot1": 8, + "shot2": 8 + }, + "9": { + "shot1": 8, + "shot2": 3 + }, + "10": { + "shot1": 1, + "shot2": 4 + }, + "11": { + "shot1": 0, + "shot2": 3 + }, + "12": { + "shot1": 4, + "shot2": 10 + }, + "13": { + "shot1": 3, + "shot2": 10 + }, + "14": { + "shot1": 6, + "shot2": 6 + }, + "15": { + "shot1": 3, + "shot2": 1 + }, + "16": { + "shot1": 8, + "shot2": 3 + }, + "17": { + "shot1": 9, + "shot2": 8 + }, + "18": { + "shot1": 7, + "shot2": 5 + }, + "19": { + "shot1": 7, + "shot2": 9 + }, + "20": { + "shot1": 4, + "shot2": 3 + } + }, + "total_score": 216, + "completed": true + }, + "1": { + "name": "Domen Pleterski", + "targets": { + "1": { + "shot1": 3, + "shot2": 2 + }, + "2": { + "shot1": 0, + "shot2": 8 + }, + "3": { + "shot1": 7, + "shot2": 1 + }, + "4": { + "shot1": 4, + "shot2": 6 + }, + "5": { + "shot1": 2, + "shot2": 8 + }, + "6": { + "shot1": 3, + "shot2": 3 + }, + "7": { + "shot1": 6, + "shot2": 10 + }, + "8": { + "shot1": 10, + "shot2": 1 + }, + "9": { + "shot1": 2, + "shot2": 0 + }, + "10": { + "shot1": 9, + "shot2": 4 + }, + "11": { + "shot1": 8, + "shot2": 6 + }, + "12": { + "shot1": 8, + "shot2": 2 + }, + "13": { + "shot1": 2, + "shot2": 0 + }, + "14": { + "shot1": 1, + "shot2": 2 + }, + "15": { + "shot1": 9, + "shot2": 10 + }, + "16": { + "shot1": 5, + "shot2": 4 + }, + "17": { + "shot1": 10, + "shot2": 3 + }, + "18": { + "shot1": 10, + "shot2": 6 + }, + "19": { + "shot1": 10, + "shot2": 3 + }, + "20": { + "shot1": 0, + "shot2": 10 + } + }, + "total_score": 198, + "completed": true + }, + "47": { + "name": "Ljuba Mr\u0161ak", + "targets": { + "1": { + "shot1": 5, + "shot2": 8 + }, + "2": { + "shot1": 10, + "shot2": 6 + }, + "3": { + "shot1": 8, + "shot2": 0 + }, + "4": { + "shot1": 0, + "shot2": 2 + }, + "5": { + "shot1": 8, + "shot2": 6 + }, + "6": { + "shot1": 2, + "shot2": 1 + }, + "7": { + "shot1": 8, + "shot2": 2 + }, + "8": { + "shot1": 9, + "shot2": 10 + }, + "9": { + "shot1": 9, + "shot2": 9 + }, + "10": { + "shot1": 2, + "shot2": 0 + }, + "11": { + "shot1": 6, + "shot2": 9 + }, + "12": { + "shot1": 4, + "shot2": 4 + }, + "13": { + "shot1": 8, + "shot2": 9 + }, + "14": { + "shot1": 4, + "shot2": 1 + }, + "15": { + "shot1": 6, + "shot2": 5 + }, + "16": { + "shot1": 7, + "shot2": 4 + }, + "17": { + "shot1": 2, + "shot2": 1 + }, + "18": { + "shot1": 4, + "shot2": 4 + }, + "19": { + "shot1": 3, + "shot2": 2 + }, + "20": { + "shot1": 3, + "shot2": 2 + } + }, + "total_score": 193, + "completed": true + }, + "6": { + "name": "Mateja Senica", + "targets": { + "1": { + "shot1": 3, + "shot2": 6 + }, + "2": { + "shot1": 8, + "shot2": 0 + }, + "3": { + "shot1": 6, + "shot2": 3 + }, + "4": { + "shot1": 7, + "shot2": 2 + }, + "5": { + "shot1": 6, + "shot2": 5 + }, + "6": { + "shot1": 5, + "shot2": 3 + }, + "7": { + "shot1": 10, + "shot2": 9 + }, + "8": { + "shot1": 6, + "shot2": 9 + }, + "9": { + "shot1": 1, + "shot2": 2 + }, + "10": { + "shot1": 2, + "shot2": 8 + }, + "11": { + "shot1": 2, + "shot2": 2 + }, + "12": { + "shot1": 1, + "shot2": 8 + }, + "13": { + "shot1": 7, + "shot2": 6 + }, + "14": { + "shot1": 4, + "shot2": 3 + }, + "15": { + "shot1": 8, + "shot2": 7 + }, + "16": { + "shot1": 5, + "shot2": 9 + }, + "17": { + "shot1": 3, + "shot2": 7 + }, + "18": { + "shot1": 2, + "shot2": 5 + }, + "19": { + "shot1": 7, + "shot2": 5 + }, + "20": { + "shot1": 1, + "shot2": 3 + } + }, + "total_score": 196, + "completed": true + }, + "24": { + "name": "Jo\u017ee Verdinek", + "targets": { + "1": { + "shot1": 6, + "shot2": 0 + }, + "2": { + "shot1": 0, + "shot2": 2 + }, + "3": { + "shot1": 4, + "shot2": 3 + }, + "4": { + "shot1": 9, + "shot2": 4 + }, + "5": { + "shot1": 2, + "shot2": 8 + }, + "6": { + "shot1": 5, + "shot2": 1 + }, + "7": { + "shot1": 9, + "shot2": 9 + }, + "8": { + "shot1": 5, + "shot2": 6 + }, + "9": { + "shot1": 10, + "shot2": 7 + }, + "10": { + "shot1": 2, + "shot2": 1 + }, + "11": { + "shot1": 3, + "shot2": 2 + }, + "12": { + "shot1": 6, + "shot2": 8 + }, + "13": { + "shot1": 0, + "shot2": 5 + }, + "14": { + "shot1": 10, + "shot2": 4 + }, + "15": { + "shot1": 3, + "shot2": 5 + }, + "16": { + "shot1": 3, + "shot2": 5 + }, + "17": { + "shot1": 7, + "shot2": 9 + }, + "18": { + "shot1": 10, + "shot2": 1 + }, + "19": { + "shot1": 10, + "shot2": 10 + }, + "20": { + "shot1": 1, + "shot2": 7 + } + }, + "total_score": 202, + "completed": true + }, + "28": { + "name": "An\u017ee Kolar", + "targets": { + "1": { + "shot1": 1, + "shot2": 8 + }, + "2": { + "shot1": 4, + "shot2": 2 + }, + "3": { + "shot1": 4, + "shot2": 1 + }, + "4": { + "shot1": 0, + "shot2": 8 + }, + "5": { + "shot1": 8, + "shot2": 10 + }, + "6": { + "shot1": 6, + "shot2": 5 + }, + "7": { + "shot1": 4, + "shot2": 8 + }, + "8": { + "shot1": 6, + "shot2": 2 + }, + "9": { + "shot1": 8, + "shot2": 8 + }, + "10": { + "shot1": 7, + "shot2": 10 + }, + "11": { + "shot1": 5, + "shot2": 2 + }, + "12": { + "shot1": 8, + "shot2": 10 + }, + "13": { + "shot1": 7, + "shot2": 9 + }, + "14": { + "shot1": 5, + "shot2": 3 + }, + "15": { + "shot1": 10, + "shot2": 8 + }, + "16": { + "shot1": 1, + "shot2": 1 + }, + "17": { + "shot1": 3, + "shot2": 4 + }, + "18": { + "shot1": 10, + "shot2": 1 + }, + "19": { + "shot1": 1, + "shot2": 9 + }, + "20": { + "shot1": 6, + "shot2": 3 + } + }, + "total_score": 216, + "completed": true + }, + "19": { + "name": "Franc Rizmal", + "targets": { + "1": { + "shot1": 8, + "shot2": 7 + }, + "2": { + "shot1": 3, + "shot2": 10 + }, + "3": { + "shot1": 7, + "shot2": 9 + }, + "4": { + "shot1": 2, + "shot2": 1 + }, + "5": { + "shot1": 1, + "shot2": 9 + }, + "6": { + "shot1": 9, + "shot2": 1 + }, + "7": { + "shot1": 3, + "shot2": 4 + }, + "8": { + "shot1": 9, + "shot2": 4 + }, + "9": { + "shot1": 6, + "shot2": 1 + }, + "10": { + "shot1": 1, + "shot2": 3 + }, + "11": { + "shot1": 4, + "shot2": 3 + }, + "12": { + "shot1": 8, + "shot2": 7 + }, + "13": { + "shot1": 8, + "shot2": 7 + }, + "14": { + "shot1": 6, + "shot2": 1 + }, + "15": { + "shot1": 7, + "shot2": 7 + }, + "16": { + "shot1": 7, + "shot2": 1 + }, + "17": { + "shot1": 1, + "shot2": 8 + }, + "18": { + "shot1": 3, + "shot2": 0 + }, + "19": { + "shot1": 0, + "shot2": 0 + }, + "20": { + "shot1": 6, + "shot2": 5 + } + }, + "total_score": 187, + "completed": true + }, + "45": { + "name": "Lidija Blimen", + "targets": { + "1": { + "shot1": 5, + "shot2": 6 + }, + "2": { + "shot1": 7, + "shot2": 6 + }, + "3": { + "shot1": 4, + "shot2": 2 + }, + "4": { + "shot1": 4, + "shot2": 8 + }, + "5": { + "shot1": 7, + "shot2": 7 + }, + "6": { + "shot1": 8, + "shot2": 6 + }, + "7": { + "shot1": 6, + "shot2": 5 + }, + "8": { + "shot1": 7, + "shot2": 3 + }, + "9": { + "shot1": 9, + "shot2": 1 + }, + "10": { + "shot1": 4, + "shot2": 2 + }, + "11": { + "shot1": 8, + "shot2": 0 + }, + "12": { + "shot1": 5, + "shot2": 0 + }, + "13": { + "shot1": 7, + "shot2": 4 + }, + "14": { + "shot1": 10, + "shot2": 5 + }, + "15": { + "shot1": 9, + "shot2": 10 + }, + "16": { + "shot1": 0, + "shot2": 1 + }, + "17": { + "shot1": 1, + "shot2": 5 + }, + "18": { + "shot1": 0, + "shot2": 7 + }, + "19": { + "shot1": 5, + "shot2": 10 + }, + "20": { + "shot1": 10, + "shot2": 9 + } + }, + "total_score": 213, + "completed": true + }, + "21": { + "name": "Marko Blimen", + "targets": { + "1": { + "shot1": 6, + "shot2": 7 + }, + "2": { + "shot1": 10, + "shot2": 3 + }, + "3": { + "shot1": 1, + "shot2": 0 + }, + "4": { + "shot1": 5, + "shot2": 8 + }, + "5": { + "shot1": 4, + "shot2": 1 + }, + "6": { + "shot1": 10, + "shot2": 9 + }, + "7": { + "shot1": 8, + "shot2": 4 + }, + "8": { + "shot1": 7, + "shot2": 3 + }, + "9": { + "shot1": 9, + "shot2": 6 + }, + "10": { + "shot1": 4, + "shot2": 6 + }, + "11": { + "shot1": 7, + "shot2": 6 + }, + "12": { + "shot1": 0, + "shot2": 5 + }, + "13": { + "shot1": 7, + "shot2": 4 + }, + "14": { + "shot1": 2, + "shot2": 3 + }, + "15": { + "shot1": 1, + "shot2": 10 + }, + "16": { + "shot1": 8, + "shot2": 1 + }, + "17": { + "shot1": 4, + "shot2": 9 + }, + "18": { + "shot1": 2, + "shot2": 5 + }, + "19": { + "shot1": 4, + "shot2": 6 + }, + "20": { + "shot1": 6, + "shot2": 3 + } + }, + "total_score": 204, + "completed": true + }, + "27": { + "name": "Janez Mrak", + "targets": { + "1": { + "shot1": 0, + "shot2": 4 + }, + "2": { + "shot1": 7, + "shot2": 2 + }, + "3": { + "shot1": 2, + "shot2": 5 + }, + "4": { + "shot1": 10, + "shot2": 6 + }, + "5": { + "shot1": 6, + "shot2": 9 + }, + "6": { + "shot1": 2, + "shot2": 7 + }, + "7": { + "shot1": 2, + "shot2": 9 + }, + "8": { + "shot1": 9, + "shot2": 3 + }, + "9": { + "shot1": 5, + "shot2": 3 + }, + "10": { + "shot1": 1, + "shot2": 3 + }, + "11": { + "shot1": 6, + "shot2": 6 + }, + "12": { + "shot1": 3, + "shot2": 0 + }, + "13": { + "shot1": 5, + "shot2": 1 + }, + "14": { + "shot1": 7, + "shot2": 2 + }, + "15": { + "shot1": 2, + "shot2": 9 + }, + "16": { + "shot1": 3, + "shot2": 2 + }, + "17": { + "shot1": 9, + "shot2": 9 + }, + "18": { + "shot1": 1, + "shot2": 3 + }, + "19": { + "shot1": 1, + "shot2": 0 + }, + "20": { + "shot1": 9, + "shot2": 2 + } + }, + "total_score": 175, + "completed": true + } + }, + "tournament_finished": true, + "created_at": "2025-11-08T23:20:56.722715", + "finished_at": "2025-11-08T23:21:18.628216" + }, + "archived_at": "2025-11-08T23:21:18.628244" +} \ No newline at end of file diff --git a/tournament_archives/tournament_20251109_083952.json b/tournament_archives/tournament_20251109_083952.json new file mode 100644 index 0000000..e6d9eec --- /dev/null +++ b/tournament_archives/tournament_20251109_083952.json @@ -0,0 +1,2035 @@ +{ + "tournament": { + "rounds": [ + { + "round_number": 1, + "players": [ + { + "id": 8, + "name": "Franc \u017digart", + "enabled": true + }, + { + "id": 12, + "name": "Matej Kvasnik", + "enabled": true + }, + { + "id": 29, + "name": "Alen Kolar", + "enabled": true + }, + { + "id": 24, + "name": "Jo\u017ee Verdinek", + "enabled": true + }, + { + "id": 21, + "name": "Marko Blimen", + "enabled": true + }, + { + "id": 48, + "name": "Janja Salcman", + "enabled": true + } + ], + "status": "pending" + }, + { + "round_number": 2, + "players": [ + { + "id": 35, + "name": "Vanja Kolar", + "enabled": true + }, + { + "id": 17, + "name": "Du\u0161an Onuk", + "enabled": true + }, + { + "id": 3, + "name": "Ivan Tandler", + "enabled": true + }, + { + "id": 38, + "name": "Bojan Sudar", + "enabled": true + }, + { + "id": 37, + "name": "Milan Stramec", + "enabled": true + }, + { + "id": 41, + "name": "Tadej \u0160truc", + "enabled": true + } + ], + "status": "waiting" + }, + { + "round_number": 3, + "players": [ + { + "id": 32, + "name": "David Strni\u0161a", + "enabled": true + }, + { + "id": 31, + "name": "Dejan Ku\u010dnik", + "enabled": true + }, + { + "id": 28, + "name": "An\u017ee Kolar", + "enabled": true + }, + { + "id": 40, + "name": "Jaka Cvar", + "enabled": true + }, + { + "id": 22, + "name": "Doris Fesel", + "enabled": true + }, + { + "id": 15, + "name": "Jan Pleterski", + "enabled": true + } + ], + "status": "waiting" + }, + { + "round_number": 4, + "players": [ + { + "id": 44, + "name": "Anka Ka\u010dnik", + "enabled": true + }, + { + "id": 30, + "name": "Maja Hirtl", + "enabled": true + }, + { + "id": 14, + "name": "Karli Proje", + "enabled": true + }, + { + "id": 10, + "name": "Mitja \u010ceh", + "enabled": true + }, + { + "id": 7, + "name": "Branko Poker\u017enik", + "enabled": true + }, + { + "id": 33, + "name": "Namir Uzunovi\u0107", + "enabled": true + } + ], + "status": "waiting" + }, + { + "round_number": 5, + "players": [ + { + "id": 43, + "name": "Marko Pokr\u017enik", + "enabled": true + }, + { + "id": 18, + "name": "Matja\u017e Pleterski", + "enabled": true + }, + { + "id": 13, + "name": "Angelca Mrak", + "enabled": true + }, + { + "id": 19, + "name": "Franc Rizmal", + "enabled": true + }, + { + "id": 36, + "name": "Klara Wankmuller", + "enabled": true + }, + { + "id": 26, + "name": "Jakob Herman", + "enabled": true + } + ], + "status": "waiting" + }, + { + "round_number": 6, + "players": [ + { + "id": 6, + "name": "Mateja Senica", + "enabled": true + }, + { + "id": 27, + "name": "Janez Mrak", + "enabled": true + }, + { + "id": 45, + "name": "Lidija Blimen", + "enabled": true + }, + { + "id": 39, + "name": "Tia Sudar", + "enabled": true + }, + { + "id": 4, + "name": "Mateja Pleterski", + "enabled": true + }, + { + "id": 20, + "name": "Jo\u017ee Preglav", + "enabled": true + } + ], + "status": "waiting" + }, + { + "round_number": 7, + "players": [ + { + "id": 23, + "name": "Robi Krautberger", + "enabled": true + }, + { + "id": 11, + "name": "Rado Kefer", + "enabled": true + }, + { + "id": 2, + "name": "Nik Pleterski", + "enabled": true + }, + { + "id": 49, + "name": "Jolanda Verhnjak", + "enabled": true + }, + { + "id": 16, + "name": "Silvo Poro\u010dnik", + "enabled": true + }, + { + "id": 47, + "name": "Ljuba Mr\u0161ak", + "enabled": true + } + ], + "status": "waiting" + }, + { + "round_number": 8, + "players": [ + { + "id": 9, + "name": "Janez Bo\u017ei\u010d", + "enabled": true + }, + { + "id": 25, + "name": "Andrej Herman", + "enabled": true + }, + { + "id": 42, + "name": "Jure Glaser", + "enabled": true + }, + { + "id": 34, + "name": "Jo\u017ee Planin\u0161ec", + "enabled": true + }, + { + "id": 1, + "name": "Domen Pleterski", + "enabled": true + }, + { + "id": 5, + "name": "Jo\u017ee Verhnjak", + "enabled": true + } + ], + "status": "waiting" + }, + { + "round_number": 9, + "players": [ + { + "id": 46, + "name": "Tijana \u0160tumpfl", + "enabled": true + } + ], + "status": "waiting" + } + ], + "created_at": "2025-11-09T08:38:38.660721", + "total_players": 49, + "total_rounds": 9, + "current_round": 1, + "tournament_type": "4_targets" + }, + "results": { + "tournament_id": "2025-11-09T08:38:38.660721", + "tournament_type": "4_targets", + "participants": { + "8": { + "name": "Franc \u017digart", + "targets": { + "1": { + "shot1": 1, + "shot2": 2, + "shot3": 0, + "shot4": 9, + "shot5": 3 + }, + "2": { + "shot1": 3, + "shot2": 0, + "shot3": 1, + "shot4": 8, + "shot5": 10 + }, + "3": { + "shot1": 0, + "shot2": 9, + "shot3": 6, + "shot4": 8, + "shot5": 3 + }, + "4": { + "shot1": 6, + "shot2": 6, + "shot3": 2, + "shot4": 6, + "shot5": 6 + } + }, + "total_score": 89, + "completed": true + }, + "12": { + "name": "Matej Kvasnik", + "targets": { + "1": { + "shot1": 2, + "shot2": 4, + "shot3": 7, + "shot4": 7, + "shot5": 10 + }, + "2": { + "shot1": 0, + "shot2": 9, + "shot3": 5, + "shot4": 7, + "shot5": 7 + }, + "3": { + "shot1": 7, + "shot2": 3, + "shot3": 7, + "shot4": 4, + "shot5": 5 + }, + "4": { + "shot1": 8, + "shot2": 0, + "shot3": 1, + "shot4": 5, + "shot5": 2 + } + }, + "total_score": 100, + "completed": true + }, + "29": { + "name": "Alen Kolar", + "targets": { + "1": { + "shot1": 10, + "shot2": 9, + "shot3": 6, + "shot4": 2, + "shot5": 4 + }, + "2": { + "shot1": 1, + "shot2": 4, + "shot3": 9, + "shot4": 9, + "shot5": 3 + }, + "3": { + "shot1": 2, + "shot2": 4, + "shot3": 10, + "shot4": 1, + "shot5": 6 + }, + "4": { + "shot1": 6, + "shot2": 8, + "shot3": 10, + "shot4": 9, + "shot5": 2 + } + }, + "total_score": 115, + "completed": true + }, + "24": { + "name": "Jo\u017ee Verdinek", + "targets": { + "1": { + "shot1": 8, + "shot2": 1, + "shot3": 7, + "shot4": 3, + "shot5": 8 + }, + "2": { + "shot1": 8, + "shot2": 8, + "shot3": 6, + "shot4": 10, + "shot5": 6 + }, + "3": { + "shot1": 0, + "shot2": 4, + "shot3": 0, + "shot4": 9, + "shot5": 5 + }, + "4": { + "shot1": 3, + "shot2": 2, + "shot3": 0, + "shot4": 0, + "shot5": 4 + } + }, + "total_score": 92, + "completed": true + }, + "21": { + "name": "Marko Blimen", + "targets": { + "1": { + "shot1": 7, + "shot2": 7, + "shot3": 0, + "shot4": 4, + "shot5": 3 + }, + "2": { + "shot1": 2, + "shot2": 5, + "shot3": 8, + "shot4": 4, + "shot5": 6 + }, + "3": { + "shot1": 6, + "shot2": 9, + "shot3": 6, + "shot4": 10, + "shot5": 5 + }, + "4": { + "shot1": 6, + "shot2": 4, + "shot3": 7, + "shot4": 4, + "shot5": 7 + } + }, + "total_score": 110, + "completed": true + }, + "48": { + "name": "Janja Salcman", + "targets": { + "1": { + "shot1": 5, + "shot2": 10, + "shot3": 9, + "shot4": 0, + "shot5": 10 + }, + "2": { + "shot1": 1, + "shot2": 3, + "shot3": 3, + "shot4": 9, + "shot5": 2 + }, + "3": { + "shot1": 7, + "shot2": 5, + "shot3": 7, + "shot4": 8, + "shot5": 10 + }, + "4": { + "shot1": 6, + "shot2": 4, + "shot3": 0, + "shot4": 7, + "shot5": 9 + } + }, + "total_score": 115, + "completed": true + }, + "35": { + "name": "Vanja Kolar", + "targets": { + "1": { + "shot1": 0, + "shot2": 2, + "shot3": 9, + "shot4": 6, + "shot5": 10 + }, + "2": { + "shot1": 8, + "shot2": 2, + "shot3": 5, + "shot4": 0, + "shot5": 8 + }, + "3": { + "shot1": 4, + "shot2": 1, + "shot3": 8, + "shot4": 8, + "shot5": 10 + }, + "4": { + "shot1": 9, + "shot2": 0, + "shot3": 6, + "shot4": 2, + "shot5": 8 + } + }, + "total_score": 106, + "completed": true + }, + "17": { + "name": "Du\u0161an Onuk", + "targets": { + "1": { + "shot1": 2, + "shot2": 1, + "shot3": 0, + "shot4": 7, + "shot5": 3 + }, + "2": { + "shot1": 4, + "shot2": 2, + "shot3": 7, + "shot4": 6, + "shot5": 6 + }, + "3": { + "shot1": 9, + "shot2": 6, + "shot3": 1, + "shot4": 3, + "shot5": 5 + }, + "4": { + "shot1": 4, + "shot2": 4, + "shot3": 1, + "shot4": 6, + "shot5": 10 + } + }, + "total_score": 87, + "completed": true + }, + "3": { + "name": "Ivan Tandler", + "targets": { + "1": { + "shot1": 10, + "shot2": 3, + "shot3": 7, + "shot4": 10, + "shot5": 6 + }, + "2": { + "shot1": 8, + "shot2": 9, + "shot3": 5, + "shot4": 10, + "shot5": 1 + }, + "3": { + "shot1": 7, + "shot2": 8, + "shot3": 9, + "shot4": 5, + "shot5": 0 + }, + "4": { + "shot1": 6, + "shot2": 3, + "shot3": 10, + "shot4": 0, + "shot5": 0 + } + }, + "total_score": 117, + "completed": true + }, + "38": { + "name": "Bojan Sudar", + "targets": { + "1": { + "shot1": 6, + "shot2": 4, + "shot3": 2, + "shot4": 5, + "shot5": 5 + }, + "2": { + "shot1": 4, + "shot2": 9, + "shot3": 3, + "shot4": 4, + "shot5": 2 + }, + "3": { + "shot1": 5, + "shot2": 10, + "shot3": 8, + "shot4": 10, + "shot5": 7 + }, + "4": { + "shot1": 9, + "shot2": 8, + "shot3": 0, + "shot4": 2, + "shot5": 10 + } + }, + "total_score": 113, + "completed": true + }, + "37": { + "name": "Milan Stramec", + "targets": { + "1": { + "shot1": 5, + "shot2": 5, + "shot3": 7, + "shot4": 9, + "shot5": 3 + }, + "2": { + "shot1": 5, + "shot2": 4, + "shot3": 10, + "shot4": 2, + "shot5": 4 + }, + "3": { + "shot1": 4, + "shot2": 7, + "shot3": 2, + "shot4": 6, + "shot5": 9 + }, + "4": { + "shot1": 7, + "shot2": 7, + "shot3": 7, + "shot4": 0, + "shot5": 7 + } + }, + "total_score": 110, + "completed": true + }, + "41": { + "name": "Tadej \u0160truc", + "targets": { + "1": { + "shot1": 8, + "shot2": 5, + "shot3": 1, + "shot4": 9, + "shot5": 5 + }, + "2": { + "shot1": 9, + "shot2": 2, + "shot3": 10, + "shot4": 7, + "shot5": 3 + }, + "3": { + "shot1": 8, + "shot2": 1, + "shot3": 6, + "shot4": 9, + "shot5": 1 + }, + "4": { + "shot1": 1, + "shot2": 9, + "shot3": 10, + "shot4": 8, + "shot5": 5 + } + }, + "total_score": 117, + "completed": true + }, + "32": { + "name": "David Strni\u0161a", + "targets": { + "1": { + "shot1": 6, + "shot2": 7, + "shot3": 1, + "shot4": 6, + "shot5": 6 + }, + "2": { + "shot1": 9, + "shot2": 7, + "shot3": 6, + "shot4": 9, + "shot5": 8 + }, + "3": { + "shot1": 9, + "shot2": 4, + "shot3": 3, + "shot4": 9, + "shot5": 1 + }, + "4": { + "shot1": 9, + "shot2": 5, + "shot3": 3, + "shot4": 4, + "shot5": 6 + } + }, + "total_score": 118, + "completed": true + }, + "31": { + "name": "Dejan Ku\u010dnik", + "targets": { + "1": { + "shot1": 10, + "shot2": 8, + "shot3": 10, + "shot4": 0, + "shot5": 1 + }, + "2": { + "shot1": 7, + "shot2": 3, + "shot3": 5, + "shot4": 8, + "shot5": 6 + }, + "3": { + "shot1": 5, + "shot2": 6, + "shot3": 8, + "shot4": 0, + "shot5": 6 + }, + "4": { + "shot1": 4, + "shot2": 1, + "shot3": 8, + "shot4": 5, + "shot5": 7 + } + }, + "total_score": 108, + "completed": true + }, + "28": { + "name": "An\u017ee Kolar", + "targets": { + "1": { + "shot1": 8, + "shot2": 2, + "shot3": 5, + "shot4": 9, + "shot5": 6 + }, + "2": { + "shot1": 9, + "shot2": 9, + "shot3": 6, + "shot4": 6, + "shot5": 4 + }, + "3": { + "shot1": 9, + "shot2": 7, + "shot3": 6, + "shot4": 1, + "shot5": 4 + }, + "4": { + "shot1": 6, + "shot2": 10, + "shot3": 8, + "shot4": 3, + "shot5": 1 + } + }, + "total_score": 119, + "completed": true + }, + "40": { + "name": "Jaka Cvar", + "targets": { + "1": { + "shot1": 8, + "shot2": 0, + "shot3": 8, + "shot4": 10, + "shot5": 8 + }, + "2": { + "shot1": 10, + "shot2": 3, + "shot3": 9, + "shot4": 5, + "shot5": 7 + }, + "3": { + "shot1": 0, + "shot2": 5, + "shot3": 2, + "shot4": 4, + "shot5": 9 + }, + "4": { + "shot1": 3, + "shot2": 0, + "shot3": 1, + "shot4": 3, + "shot5": 2 + } + }, + "total_score": 97, + "completed": true + }, + "22": { + "name": "Doris Fesel", + "targets": { + "1": { + "shot1": 6, + "shot2": 3, + "shot3": 9, + "shot4": 3, + "shot5": 9 + }, + "2": { + "shot1": 0, + "shot2": 4, + "shot3": 2, + "shot4": 8, + "shot5": 10 + }, + "3": { + "shot1": 0, + "shot2": 3, + "shot3": 8, + "shot4": 3, + "shot5": 6 + }, + "4": { + "shot1": 5, + "shot2": 8, + "shot3": 1, + "shot4": 4, + "shot5": 0 + } + }, + "total_score": 92, + "completed": true + }, + "15": { + "name": "Jan Pleterski", + "targets": { + "1": { + "shot1": 5, + "shot2": 6, + "shot3": 10, + "shot4": 0, + "shot5": 9 + }, + "2": { + "shot1": 3, + "shot2": 0, + "shot3": 6, + "shot4": 10, + "shot5": 10 + }, + "3": { + "shot1": 2, + "shot2": 3, + "shot3": 2, + "shot4": 8, + "shot5": 1 + }, + "4": { + "shot1": 7, + "shot2": 4, + "shot3": 10, + "shot4": 7, + "shot5": 2 + } + }, + "total_score": 105, + "completed": true + }, + "44": { + "name": "Anka Ka\u010dnik", + "targets": { + "1": { + "shot1": 7, + "shot2": 8, + "shot3": 6, + "shot4": 3, + "shot5": 8 + }, + "2": { + "shot1": 2, + "shot2": 4, + "shot3": 10, + "shot4": 5, + "shot5": 6 + }, + "3": { + "shot1": 1, + "shot2": 10, + "shot3": 7, + "shot4": 8, + "shot5": 8 + }, + "4": { + "shot1": 0, + "shot2": 4, + "shot3": 6, + "shot4": 10, + "shot5": 2 + } + }, + "total_score": 115, + "completed": true + }, + "30": { + "name": "Maja Hirtl", + "targets": { + "1": { + "shot1": 1, + "shot2": 7, + "shot3": 7, + "shot4": 7, + "shot5": 5 + }, + "2": { + "shot1": 4, + "shot2": 0, + "shot3": 5, + "shot4": 5, + "shot5": 0 + }, + "3": { + "shot1": 6, + "shot2": 3, + "shot3": 3, + "shot4": 1, + "shot5": 0 + }, + "4": { + "shot1": 10, + "shot2": 4, + "shot3": 7, + "shot4": 3, + "shot5": 3 + } + }, + "total_score": 81, + "completed": true + }, + "14": { + "name": "Karli Proje", + "targets": { + "1": { + "shot1": 3, + "shot2": 10, + "shot3": 0, + "shot4": 4, + "shot5": 6 + }, + "2": { + "shot1": 8, + "shot2": 2, + "shot3": 9, + "shot4": 8, + "shot5": 0 + }, + "3": { + "shot1": 0, + "shot2": 3, + "shot3": 6, + "shot4": 4, + "shot5": 2 + }, + "4": { + "shot1": 10, + "shot2": 4, + "shot3": 4, + "shot4": 0, + "shot5": 4 + } + }, + "total_score": 87, + "completed": true + }, + "10": { + "name": "Mitja \u010ceh", + "targets": { + "1": { + "shot1": 3, + "shot2": 5, + "shot3": 10, + "shot4": 2, + "shot5": 2 + }, + "2": { + "shot1": 8, + "shot2": 0, + "shot3": 5, + "shot4": 3, + "shot5": 1 + }, + "3": { + "shot1": 0, + "shot2": 4, + "shot3": 4, + "shot4": 6, + "shot5": 2 + }, + "4": { + "shot1": 8, + "shot2": 7, + "shot3": 2, + "shot4": 0, + "shot5": 0 + } + }, + "total_score": 72, + "completed": true + }, + "7": { + "name": "Branko Poker\u017enik", + "targets": { + "1": { + "shot1": 9, + "shot2": 2, + "shot3": 7, + "shot4": 9, + "shot5": 1 + }, + "2": { + "shot1": 6, + "shot2": 5, + "shot3": 4, + "shot4": 2, + "shot5": 10 + }, + "3": { + "shot1": 5, + "shot2": 2, + "shot3": 4, + "shot4": 1, + "shot5": 6 + }, + "4": { + "shot1": 5, + "shot2": 10, + "shot3": 6, + "shot4": 2, + "shot5": 10 + } + }, + "total_score": 106, + "completed": true + }, + "33": { + "name": "Namir Uzunovi\u0107", + "targets": { + "1": { + "shot1": 0, + "shot2": 10, + "shot3": 4, + "shot4": 10, + "shot5": 3 + }, + "2": { + "shot1": 0, + "shot2": 3, + "shot3": 2, + "shot4": 6, + "shot5": 1 + }, + "3": { + "shot1": 4, + "shot2": 3, + "shot3": 3, + "shot4": 5, + "shot5": 7 + }, + "4": { + "shot1": 5, + "shot2": 0, + "shot3": 10, + "shot4": 2, + "shot5": 0 + } + }, + "total_score": 78, + "completed": true + }, + "43": { + "name": "Marko Pokr\u017enik", + "targets": { + "1": { + "shot1": 10, + "shot2": 5, + "shot3": 7, + "shot4": 6, + "shot5": 0 + }, + "2": { + "shot1": 4, + "shot2": 9, + "shot3": 1, + "shot4": 8, + "shot5": 5 + }, + "3": { + "shot1": 10, + "shot2": 5, + "shot3": 7, + "shot4": 3, + "shot5": 9 + }, + "4": { + "shot1": 9, + "shot2": 7, + "shot3": 9, + "shot4": 10, + "shot5": 4 + } + }, + "total_score": 128, + "completed": true + }, + "18": { + "name": "Matja\u017e Pleterski", + "targets": { + "1": { + "shot1": 0, + "shot2": 4, + "shot3": 5, + "shot4": 9, + "shot5": 4 + }, + "2": { + "shot1": 0, + "shot2": 5, + "shot3": 4, + "shot4": 3, + "shot5": 4 + }, + "3": { + "shot1": 0, + "shot2": 5, + "shot3": 1, + "shot4": 0, + "shot5": 2 + }, + "4": { + "shot1": 4, + "shot2": 5, + "shot3": 3, + "shot4": 6, + "shot5": 5 + } + }, + "total_score": 69, + "completed": true + }, + "13": { + "name": "Angelca Mrak", + "targets": { + "1": { + "shot1": 3, + "shot2": 6, + "shot3": 0, + "shot4": 7, + "shot5": 7 + }, + "2": { + "shot1": 5, + "shot2": 5, + "shot3": 2, + "shot4": 1, + "shot5": 4 + }, + "3": { + "shot1": 8, + "shot2": 6, + "shot3": 2, + "shot4": 1, + "shot5": 0 + }, + "4": { + "shot1": 4, + "shot2": 9, + "shot3": 0, + "shot4": 0, + "shot5": 9 + } + }, + "total_score": 79, + "completed": true + }, + "19": { + "name": "Franc Rizmal", + "targets": { + "1": { + "shot1": 1, + "shot2": 8, + "shot3": 10, + "shot4": 5, + "shot5": 1 + }, + "2": { + "shot1": 7, + "shot2": 1, + "shot3": 5, + "shot4": 7, + "shot5": 1 + }, + "3": { + "shot1": 2, + "shot2": 7, + "shot3": 5, + "shot4": 6, + "shot5": 6 + }, + "4": { + "shot1": 5, + "shot2": 4, + "shot3": 5, + "shot4": 8, + "shot5": 10 + } + }, + "total_score": 104, + "completed": true + }, + "36": { + "name": "Klara Wankmuller", + "targets": { + "1": { + "shot1": 4, + "shot2": 9, + "shot3": 0, + "shot4": 0, + "shot5": 10 + }, + "2": { + "shot1": 10, + "shot2": 3, + "shot3": 6, + "shot4": 2, + "shot5": 9 + }, + "3": { + "shot1": 10, + "shot2": 10, + "shot3": 10, + "shot4": 7, + "shot5": 5 + }, + "4": { + "shot1": 9, + "shot2": 1, + "shot3": 9, + "shot4": 5, + "shot5": 2 + } + }, + "total_score": 121, + "completed": true + }, + "26": { + "name": "Jakob Herman", + "targets": { + "1": { + "shot1": 2, + "shot2": 9, + "shot3": 2, + "shot4": 8, + "shot5": 6 + }, + "2": { + "shot1": 1, + "shot2": 5, + "shot3": 5, + "shot4": 3, + "shot5": 4 + }, + "3": { + "shot1": 1, + "shot2": 8, + "shot3": 1, + "shot4": 6, + "shot5": 1 + }, + "4": { + "shot1": 5, + "shot2": 6, + "shot3": 9, + "shot4": 6, + "shot5": 3 + } + }, + "total_score": 91, + "completed": true + }, + "6": { + "name": "Mateja Senica", + "targets": { + "1": { + "shot1": 8, + "shot2": 1, + "shot3": 3, + "shot4": 10, + "shot5": 7 + }, + "2": { + "shot1": 9, + "shot2": 10, + "shot3": 4, + "shot4": 4, + "shot5": 4 + }, + "3": { + "shot1": 9, + "shot2": 0, + "shot3": 4, + "shot4": 9, + "shot5": 0 + }, + "4": { + "shot1": 9, + "shot2": 5, + "shot3": 1, + "shot4": 4, + "shot5": 2 + } + }, + "total_score": 103, + "completed": true + }, + "27": { + "name": "Janez Mrak", + "targets": { + "1": { + "shot1": 4, + "shot2": 0, + "shot3": 7, + "shot4": 5, + "shot5": 5 + }, + "2": { + "shot1": 0, + "shot2": 7, + "shot3": 10, + "shot4": 0, + "shot5": 3 + }, + "3": { + "shot1": 1, + "shot2": 8, + "shot3": 6, + "shot4": 7, + "shot5": 1 + }, + "4": { + "shot1": 4, + "shot2": 6, + "shot3": 6, + "shot4": 2, + "shot5": 2 + } + }, + "total_score": 84, + "completed": true + }, + "45": { + "name": "Lidija Blimen", + "targets": { + "1": { + "shot1": 8, + "shot2": 8, + "shot3": 7, + "shot4": 9, + "shot5": 9 + }, + "2": { + "shot1": 1, + "shot2": 10, + "shot3": 8, + "shot4": 0, + "shot5": 8 + }, + "3": { + "shot1": 8, + "shot2": 0, + "shot3": 8, + "shot4": 3, + "shot5": 6 + }, + "4": { + "shot1": 0, + "shot2": 6, + "shot3": 5, + "shot4": 4, + "shot5": 10 + } + }, + "total_score": 118, + "completed": true + }, + "39": { + "name": "Tia Sudar", + "targets": { + "1": { + "shot1": 6, + "shot2": 4, + "shot3": 7, + "shot4": 3, + "shot5": 5 + }, + "2": { + "shot1": 1, + "shot2": 10, + "shot3": 0, + "shot4": 10, + "shot5": 10 + }, + "3": { + "shot1": 4, + "shot2": 4, + "shot3": 9, + "shot4": 10, + "shot5": 1 + }, + "4": { + "shot1": 2, + "shot2": 0, + "shot3": 10, + "shot4": 4, + "shot5": 5 + } + }, + "total_score": 105, + "completed": true + }, + "4": { + "name": "Mateja Pleterski", + "targets": { + "1": { + "shot1": 5, + "shot2": 7, + "shot3": 2, + "shot4": 9, + "shot5": 0 + }, + "2": { + "shot1": 7, + "shot2": 1, + "shot3": 6, + "shot4": 5, + "shot5": 0 + }, + "3": { + "shot1": 3, + "shot2": 6, + "shot3": 2, + "shot4": 6, + "shot5": 5 + }, + "4": { + "shot1": 9, + "shot2": 5, + "shot3": 2, + "shot4": 2, + "shot5": 8 + } + }, + "total_score": 90, + "completed": true + }, + "20": { + "name": "Jo\u017ee Preglav", + "targets": { + "1": { + "shot1": 10, + "shot2": 7, + "shot3": 3, + "shot4": 9, + "shot5": 1 + }, + "2": { + "shot1": 6, + "shot2": 0, + "shot3": 2, + "shot4": 2, + "shot5": 6 + }, + "3": { + "shot1": 5, + "shot2": 3, + "shot3": 7, + "shot4": 10, + "shot5": 0 + }, + "4": { + "shot1": 8, + "shot2": 8, + "shot3": 4, + "shot4": 4, + "shot5": 7 + } + }, + "total_score": 102, + "completed": true + }, + "23": { + "name": "Robi Krautberger", + "targets": { + "1": { + "shot1": 10, + "shot2": 8, + "shot3": 10, + "shot4": 4, + "shot5": 7 + }, + "2": { + "shot1": 8, + "shot2": 7, + "shot3": 1, + "shot4": 8, + "shot5": 10 + }, + "3": { + "shot1": 4, + "shot2": 6, + "shot3": 6, + "shot4": 0, + "shot5": 8 + }, + "4": { + "shot1": 7, + "shot2": 5, + "shot3": 9, + "shot4": 3, + "shot5": 7 + } + }, + "total_score": 128, + "completed": true + }, + "11": { + "name": "Rado Kefer", + "targets": { + "1": { + "shot1": 3, + "shot2": 4, + "shot3": 3, + "shot4": 8, + "shot5": 9 + }, + "2": { + "shot1": 0, + "shot2": 1, + "shot3": 3, + "shot4": 8, + "shot5": 3 + }, + "3": { + "shot1": 10, + "shot2": 8, + "shot3": 1, + "shot4": 10, + "shot5": 5 + }, + "4": { + "shot1": 5, + "shot2": 6, + "shot3": 0, + "shot4": 10, + "shot5": 1 + } + }, + "total_score": 98, + "completed": true + }, + "2": { + "name": "Nik Pleterski", + "targets": { + "1": { + "shot1": 4, + "shot2": 0, + "shot3": 0, + "shot4": 0, + "shot5": 4 + }, + "2": { + "shot1": 4, + "shot2": 5, + "shot3": 10, + "shot4": 9, + "shot5": 10 + }, + "3": { + "shot1": 10, + "shot2": 1, + "shot3": 5, + "shot4": 0, + "shot5": 3 + }, + "4": { + "shot1": 10, + "shot2": 5, + "shot3": 3, + "shot4": 4, + "shot5": 9 + } + }, + "total_score": 96, + "completed": true + }, + "49": { + "name": "Jolanda Verhnjak", + "targets": { + "1": { + "shot1": 1, + "shot2": 6, + "shot3": 9, + "shot4": 0, + "shot5": 5 + }, + "2": { + "shot1": 5, + "shot2": 5, + "shot3": 2, + "shot4": 8, + "shot5": 5 + }, + "3": { + "shot1": 6, + "shot2": 8, + "shot3": 1, + "shot4": 0, + "shot5": 10 + }, + "4": { + "shot1": 3, + "shot2": 6, + "shot3": 7, + "shot4": 1, + "shot5": 4 + } + }, + "total_score": 92, + "completed": true + }, + "16": { + "name": "Silvo Poro\u010dnik", + "targets": { + "1": { + "shot1": 2, + "shot2": 7, + "shot3": 7, + "shot4": 2, + "shot5": 8 + }, + "2": { + "shot1": 2, + "shot2": 0, + "shot3": 7, + "shot4": 6, + "shot5": 3 + }, + "3": { + "shot1": 10, + "shot2": 2, + "shot3": 2, + "shot4": 10, + "shot5": 9 + }, + "4": { + "shot1": 9, + "shot2": 0, + "shot3": 10, + "shot4": 6, + "shot5": 6 + } + }, + "total_score": 108, + "completed": true + }, + "47": { + "name": "Ljuba Mr\u0161ak", + "targets": { + "1": { + "shot1": 1, + "shot2": 9, + "shot3": 9, + "shot4": 4, + "shot5": 0 + }, + "2": { + "shot1": 5, + "shot2": 3, + "shot3": 4, + "shot4": 7, + "shot5": 10 + }, + "3": { + "shot1": 2, + "shot2": 9, + "shot3": 5, + "shot4": 9, + "shot5": 7 + }, + "4": { + "shot1": 6, + "shot2": 0, + "shot3": 4, + "shot4": 10, + "shot5": 1 + } + }, + "total_score": 105, + "completed": true + }, + "9": { + "name": "Janez Bo\u017ei\u010d", + "targets": { + "1": { + "shot1": 7, + "shot2": 8, + "shot3": 4, + "shot4": 10, + "shot5": 3 + }, + "2": { + "shot1": 6, + "shot2": 4, + "shot3": 8, + "shot4": 5, + "shot5": 2 + }, + "3": { + "shot1": 6, + "shot2": 5, + "shot3": 3, + "shot4": 7, + "shot5": 4 + }, + "4": { + "shot1": 2, + "shot2": 6, + "shot3": 10, + "shot4": 8, + "shot5": 1 + } + }, + "total_score": 109, + "completed": true + }, + "25": { + "name": "Andrej Herman", + "targets": { + "1": { + "shot1": 9, + "shot2": 7, + "shot3": 7, + "shot4": 6, + "shot5": 7 + }, + "2": { + "shot1": 2, + "shot2": 0, + "shot3": 4, + "shot4": 1, + "shot5": 2 + }, + "3": { + "shot1": 4, + "shot2": 6, + "shot3": 8, + "shot4": 9, + "shot5": 1 + }, + "4": { + "shot1": 8, + "shot2": 7, + "shot3": 0, + "shot4": 6, + "shot5": 8 + } + }, + "total_score": 102, + "completed": true + }, + "42": { + "name": "Jure Glaser", + "targets": { + "1": { + "shot1": 8, + "shot2": 9, + "shot3": 8, + "shot4": 1, + "shot5": 7 + }, + "2": { + "shot1": 0, + "shot2": 0, + "shot3": 3, + "shot4": 3, + "shot5": 0 + }, + "3": { + "shot1": 2, + "shot2": 9, + "shot3": 10, + "shot4": 6, + "shot5": 6 + }, + "4": { + "shot1": 8, + "shot2": 5, + "shot3": 7, + "shot4": 0, + "shot5": 2 + } + }, + "total_score": 94, + "completed": true + }, + "34": { + "name": "Jo\u017ee Planin\u0161ec", + "targets": { + "1": { + "shot1": 5, + "shot2": 5, + "shot3": 6, + "shot4": 10, + "shot5": 3 + }, + "2": { + "shot1": 4, + "shot2": 5, + "shot3": 8, + "shot4": 8, + "shot5": 3 + }, + "3": { + "shot1": 9, + "shot2": 0, + "shot3": 6, + "shot4": 3, + "shot5": 1 + }, + "4": { + "shot1": 8, + "shot2": 3, + "shot3": 3, + "shot4": 7, + "shot5": 4 + } + }, + "total_score": 101, + "completed": true + }, + "1": { + "name": "Domen Pleterski", + "targets": { + "1": { + "shot1": 8, + "shot2": 2, + "shot3": 1, + "shot4": 7, + "shot5": 3 + }, + "2": { + "shot1": 10, + "shot2": 9, + "shot3": 9, + "shot4": 1, + "shot5": 6 + }, + "3": { + "shot1": 1, + "shot2": 7, + "shot3": 9, + "shot4": 3, + "shot5": 0 + }, + "4": { + "shot1": 3, + "shot2": 9, + "shot3": 3, + "shot4": 1, + "shot5": 6 + } + }, + "total_score": 98, + "completed": true + }, + "5": { + "name": "Jo\u017ee Verhnjak", + "targets": { + "1": { + "shot1": 1, + "shot2": 7, + "shot3": 9, + "shot4": 7, + "shot5": 9 + }, + "2": { + "shot1": 6, + "shot2": 8, + "shot3": 2, + "shot4": 5, + "shot5": 4 + }, + "3": { + "shot1": 6, + "shot2": 1, + "shot3": 7, + "shot4": 7, + "shot5": 1 + }, + "4": { + "shot1": 9, + "shot2": 1, + "shot3": 10, + "shot4": 5, + "shot5": 3 + } + }, + "total_score": 108, + "completed": true + }, + "46": { + "name": "Tijana \u0160tumpfl", + "targets": { + "1": { + "shot1": 1, + "shot2": 1, + "shot3": 8, + "shot4": 2, + "shot5": 6 + }, + "2": { + "shot1": 4, + "shot2": 1, + "shot3": 5, + "shot4": 3, + "shot5": 6 + }, + "3": { + "shot1": 2, + "shot2": 4, + "shot3": 3, + "shot4": 4, + "shot5": 6 + }, + "4": { + "shot1": 10, + "shot2": 8, + "shot3": 7, + "shot4": 4, + "shot5": 5 + } + }, + "total_score": 90, + "completed": true + } + }, + "tournament_finished": true, + "created_at": "2025-11-09T08:38:38.660998", + "finished_at": "2025-11-09T08:39:52.635351" + }, + "archived_at": "2025-11-09T08:39:52.635380" +} \ No newline at end of file diff --git a/tournament_results.json b/tournament_results.json index 9c6b756..f804839 100644 --- a/tournament_results.json +++ b/tournament_results.json @@ -1,352 +1,212 @@ { - "tournament_id": "2025-10-26T10:02:07.221067", + "tournament_id": "2025-11-09T08:38:38.660721", "tournament_type": "4_targets", "participants": { - "42": { - "name": "Jure Glaser", + "8": { + "name": "Franc \u017digart", "targets": { "1": { - "shot1": 6, - "shot2": 5, - "shot3": 4, - "shot4": 3, + "shot1": 1, + "shot2": 2, + "shot3": 0, + "shot4": 9, "shot5": 3 }, "2": { - "shot1": 9, - "shot2": 9, - "shot3": 6, - "shot4": 5, - "shot5": 6 - }, - "3": { - "shot1": 6, - "shot2": 0, - "shot3": 9, - "shot4": 0, - "shot5": 6 - }, - "4": { - "shot1": 8, - "shot2": 7, - "shot3": 6, - "shot4": 9, - "shot5": 4 - } - }, - "total_score": 111, - "completed": true - }, - "11": { - "name": "Rado Kefer", - "targets": { - "1": { "shot1": 3, - "shot2": 2, - "shot3": 6, - "shot4": 5, - "shot5": 5 - }, - "2": { - "shot1": 5, - "shot2": 3, - "shot3": 3, - "shot4": 7, - "shot5": 6 + "shot2": 0, + "shot3": 1, + "shot4": 8, + "shot5": 10 }, "3": { "shot1": 0, - "shot2": 3, - "shot3": 4, - "shot4": 7, + "shot2": 9, + "shot3": 6, + "shot4": 8, "shot5": 3 }, "4": { - "shot1": 1, - "shot2": 2, - "shot3": 4, - "shot4": 2, - "shot5": 5 + "shot1": 6, + "shot2": 6, + "shot3": 2, + "shot4": 6, + "shot5": 6 } }, - "total_score": 76, + "total_score": 89, "completed": true }, - "44": { - "name": "Anka Ka\u010dnik", + "12": { + "name": "Matej Kvasnik", "targets": { "1": { - "shot1": 4, - "shot2": 9, - "shot3": 8, + "shot1": 2, + "shot2": 4, + "shot3": 7, "shot4": 7, - "shot5": 6 + "shot5": 10 }, "2": { - "shot1": 7, - "shot2": 10, - "shot3": 6, - "shot4": 0, - "shot5": 8 + "shot1": 0, + "shot2": 9, + "shot3": 5, + "shot4": 7, + "shot5": 7 }, "3": { - "shot1": 10, + "shot1": 7, "shot2": 3, - "shot3": 6, + "shot3": 7, "shot4": 4, - "shot5": 8 + "shot5": 5 }, "4": { + "shot1": 8, + "shot2": 0, + "shot3": 1, + "shot4": 5, + "shot5": 2 + } + }, + "total_score": 100, + "completed": true + }, + "29": { + "name": "Alen Kolar", + "targets": { + "1": { + "shot1": 10, + "shot2": 9, + "shot3": 6, + "shot4": 2, + "shot5": 4 + }, + "2": { + "shot1": 1, + "shot2": 4, + "shot3": 9, + "shot4": 9, + "shot5": 3 + }, + "3": { + "shot1": 2, + "shot2": 4, + "shot3": 10, + "shot4": 1, + "shot5": 6 + }, + "4": { + "shot1": 6, + "shot2": 8, + "shot3": 10, + "shot4": 9, + "shot5": 2 + } + }, + "total_score": 115, + "completed": true + }, + "24": { + "name": "Jo\u017ee Verdinek", + "targets": { + "1": { + "shot1": 8, + "shot2": 1, + "shot3": 7, + "shot4": 3, + "shot5": 8 + }, + "2": { + "shot1": 8, + "shot2": 8, + "shot3": 6, + "shot4": 10, + "shot5": 6 + }, + "3": { "shot1": 0, "shot2": 4, - "shot3": 4, - "shot4": 9, - "shot5": 10 - } - }, - "total_score": 123, - "completed": true - }, - "6": { - "name": "Mateja Senica", - "targets": { - "1": { - "shot1": 1, - "shot2": 6, - "shot3": 1, - "shot4": 6, - "shot5": 10 - }, - "2": { - "shot1": 4, - "shot2": 8, - "shot3": 9, - "shot4": 9, - "shot5": 8 - }, - "3": { - "shot1": 7, - "shot2": 2, - "shot3": 7, - "shot4": 10, - "shot5": 4 - }, - "4": { - "shot1": 1, - "shot2": 0, "shot3": 0, - "shot4": 8, + "shot4": 9, "shot5": 5 - } - }, - "total_score": 106, - "completed": true - }, - "47": { - "name": "Ljuba Mr\u0161ak", - "targets": { - "1": { - "shot1": 8, - "shot2": 9, - "shot3": 4, - "shot4": 1, - "shot5": 1 - }, - "2": { - "shot1": 4, - "shot2": 8, - "shot3": 3, - "shot4": 10, - "shot5": 8 - }, - "3": { - "shot1": 7, - "shot2": 0, - "shot3": 1, - "shot4": 10, - "shot5": 3 }, "4": { - "shot1": 4, - "shot2": 8, - "shot3": 6, + "shot1": 3, + "shot2": 2, + "shot3": 0, "shot4": 0, - "shot5": 1 - } - }, - "total_score": 96, - "completed": true - }, - "13": { - "name": "Angelca Mrak", - "targets": { - "1": { - "shot1": 0, - "shot2": 10, - "shot3": 5, - "shot4": 7, - "shot5": 1 - }, - "2": { - "shot1": 4, - "shot2": 6, - "shot3": 1, - "shot4": 7, "shot5": 4 - }, - "3": { - "shot1": 3, - "shot2": 9, - "shot3": 1, - "shot4": 0, - "shot5": 3 - }, - "4": { - "shot1": 8, - "shot2": 7, - "shot3": 5, - "shot4": 2, - "shot5": 10 } }, - "total_score": 93, + "total_score": 92, "completed": true }, - "19": { - "name": "Franc Rizmal", + "21": { + "name": "Marko Blimen", "targets": { "1": { - "shot1": 3, - "shot2": 1, + "shot1": 7, + "shot2": 7, + "shot3": 0, + "shot4": 4, + "shot5": 3 + }, + "2": { + "shot1": 2, + "shot2": 5, + "shot3": 8, + "shot4": 4, + "shot5": 6 + }, + "3": { + "shot1": 6, + "shot2": 9, + "shot3": 6, + "shot4": 10, + "shot5": 5 + }, + "4": { + "shot1": 6, + "shot2": 4, "shot3": 7, "shot4": 4, "shot5": 7 - }, - "2": { - "shot1": 4, - "shot2": 10, - "shot3": 7, - "shot4": 5, - "shot5": 9 - }, - "3": { - "shot1": 4, - "shot2": 9, - "shot3": 4, - "shot4": 4, - "shot5": 6 - }, - "4": { - "shot1": 1, - "shot2": 5, - "shot3": 7, - "shot4": 4, - "shot5": 3 } }, - "total_score": 104, + "total_score": 110, "completed": true }, - "20": { - "name": "Jo\u017ee Preglav", + "48": { + "name": "Janja Salcman", "targets": { "1": { - "shot1": 2, - "shot2": 4, - "shot3": 1, - "shot4": 5, - "shot5": 6 + "shot1": 5, + "shot2": 10, + "shot3": 9, + "shot4": 0, + "shot5": 10 }, "2": { - "shot1": 9, - "shot2": 4, - "shot3": 8, - "shot4": 5, - "shot5": 6 - }, - "3": { "shot1": 1, - "shot2": 4, - "shot3": 0, - "shot4": 5, - "shot5": 5 - }, - "4": { - "shot1": 8, - "shot2": 5, - "shot3": 7, - "shot4": 4, - "shot5": 1 - } - }, - "total_score": 90, - "completed": true - }, - "2": { - "name": "Nik Pleterski", - "targets": { - "1": { - "shot1": 1, - "shot2": 10, - "shot3": 2, - "shot4": 6, - "shot5": 3 - }, - "2": { - "shot1": 4, - "shot2": 10, - "shot3": 3, - "shot4": 0, - "shot5": 1 - }, - "3": { - "shot1": 2, - "shot2": 9, - "shot3": 8, - "shot4": 0, - "shot5": 6 - }, - "4": { - "shot1": 4, "shot2": 3, "shot3": 3, - "shot4": 5, - "shot5": 6 - } - }, - "total_score": 86, - "completed": true - }, - "32": { - "name": "David Strni\u0161a", - "targets": { - "1": { - "shot1": 8, - "shot2": 8, - "shot3": 2, "shot4": 9, - "shot5": 5 - }, - "2": { - "shot1": 9, - "shot2": 2, - "shot3": 5, - "shot4": 10, - "shot5": 5 + "shot5": 2 }, "3": { - "shot1": 8, - "shot2": 6, - "shot3": 1, - "shot4": 10, - "shot5": 0 + "shot1": 7, + "shot2": 5, + "shot3": 7, + "shot4": 8, + "shot5": 10 }, "4": { - "shot1": 3, - "shot2": 8, - "shot3": 7, + "shot1": 6, + "shot2": 4, + "shot3": 0, "shot4": 7, - "shot5": 2 + "shot5": 9 } }, "total_score": 115, @@ -356,1085 +216,350 @@ "name": "Vanja Kolar", "targets": { "1": { - "shot1": 2, - "shot2": 9, - "shot3": 1, - "shot4": 0, - "shot5": 5 - }, - "2": { "shot1": 0, - "shot2": 5, - "shot3": 0, - "shot4": 1, - "shot5": 6 - }, - "3": { - "shot1": 6, - "shot2": 4, - "shot3": 4, - "shot4": 5, - "shot5": 7 - }, - "4": { - "shot1": 9, - "shot2": 7, - "shot3": 5, - "shot4": 5, - "shot5": 5 - } - }, - "total_score": 86, - "completed": true - }, - "45": { - "name": "Lidija Blimen", - "targets": { - "1": { - "shot1": 3, - "shot2": 10, - "shot3": 4, - "shot4": 6, - "shot5": 3 - }, - "2": { - "shot1": 3, - "shot2": 4, - "shot3": 4, - "shot4": 1, - "shot5": 4 - }, - "3": { - "shot1": 4, - "shot2": 1, - "shot3": 3, - "shot4": 3, - "shot5": 6 - }, - "4": { - "shot1": 10, - "shot2": 5, - "shot3": 9, - "shot4": 1, - "shot5": 9 - } - }, - "total_score": 93, - "completed": true - }, - "38": { - "name": "Bojan Sudar", - "targets": { - "1": { - "shot1": 9, - "shot2": 10, - "shot3": 0, - "shot4": 4, - "shot5": 4 - }, - "2": { - "shot1": 3, "shot2": 2, "shot3": 9, - "shot4": 9, - "shot5": 6 - }, - "3": { - "shot1": 10, - "shot2": 8, - "shot3": 2, - "shot4": 3, - "shot5": 9 - }, - "4": { - "shot1": 4, - "shot2": 6, - "shot3": 9, - "shot4": 7, - "shot5": 7 - } - }, - "total_score": 121, - "completed": true - }, - "15": { - "name": "Jan Pleterski", - "targets": { - "1": { - "shot1": 3, - "shot2": 3, - "shot3": 0, - "shot4": 7, - "shot5": 1 - }, - "2": { - "shot1": 1, - "shot2": 6, - "shot3": 5, - "shot4": 8, - "shot5": 9 - }, - "3": { - "shot1": 6, - "shot2": 5, - "shot3": 4, - "shot4": 2, - "shot5": 8 - }, - "4": { - "shot1": 3, - "shot2": 1, - "shot3": 2, "shot4": 6, - "shot5": 1 - } - }, - "total_score": 81, - "completed": true - }, - "25": { - "name": "Andrej Herman", - "targets": { - "1": { - "shot1": 3, - "shot2": 1, - "shot3": 2, - "shot4": 8, - "shot5": 4 + "shot5": 10 }, "2": { - "shot1": 5, - "shot2": 8, + "shot1": 8, + "shot2": 2, "shot3": 5, "shot4": 0, "shot5": 8 }, "3": { - "shot1": 0, - "shot2": 10, - "shot3": 9, - "shot4": 2, - "shot5": 7 - }, - "4": { - "shot1": 6, - "shot2": 10, - "shot3": 8, - "shot4": 5, - "shot5": 9 - } - }, - "total_score": 110, - "completed": true - }, - "3": { - "name": "Ivan Tandler", - "targets": { - "1": { - "shot1": 9, - "shot2": 8, - "shot3": 1, - "shot4": 9, - "shot5": 6 - }, - "2": { - "shot1": 8, - "shot2": 10, - "shot3": 10, - "shot4": 10, - "shot5": 4 - }, - "3": { - "shot1": 6, - "shot2": 7, - "shot3": 2, - "shot4": 3, - "shot5": 0 - }, - "4": { "shot1": 4, - "shot2": 4, - "shot3": 2, - "shot4": 4, - "shot5": 3 - } - }, - "total_score": 110, - "completed": true - }, - "37": { - "name": "Milan Stramec", - "targets": { - "1": { - "shot1": 2, - "shot2": 5, - "shot3": 1, + "shot2": 1, + "shot3": 8, "shot4": 8, - "shot5": 4 - }, - "2": { - "shot1": 3, - "shot2": 10, - "shot3": 5, - "shot4": 4, - "shot5": 4 - }, - "3": { - "shot1": 8, - "shot2": 8, - "shot3": 7, - "shot4": 7, "shot5": 10 }, "4": { - "shot1": 2, - "shot2": 0, - "shot3": 3, - "shot4": 3, - "shot5": 0 - } - }, - "total_score": 94, - "completed": true - }, - "21": { - "name": "Marko Blimen", - "targets": { - "1": { - "shot1": 2, - "shot2": 2, - "shot3": 2, - "shot4": 8, - "shot5": 4 - }, - "2": { - "shot1": 1, - "shot2": 10, - "shot3": 1, - "shot4": 8, - "shot5": 3 - }, - "3": { - "shot1": 1, - "shot2": 3, - "shot3": 10, - "shot4": 3, - "shot5": 6 - }, - "4": { - "shot1": 10, - "shot2": 3, - "shot3": 0, - "shot4": 5, - "shot5": 2 - } - }, - "total_score": 84, - "completed": true - }, - "30": { - "name": "Maja Hirtl", - "targets": { - "1": { - "shot1": 5, - "shot2": 8, - "shot3": 9, - "shot4": 9, - "shot5": 1 - }, - "2": { - "shot1": 10, - "shot2": 10, - "shot3": 8, - "shot4": 9, - "shot5": 2 - }, - "3": { - "shot1": 2, - "shot2": 1, - "shot3": 10, - "shot4": 1, - "shot5": 6 - }, - "4": { - "shot1": 0, - "shot2": 3, - "shot3": 4, - "shot4": 9, - "shot5": 6 - } - }, - "total_score": 113, - "completed": true - }, - "34": { - "name": "Jo\u017ee Planin\u0161ec", - "targets": { - "1": { - "shot1": 0, - "shot2": 5, - "shot3": 5, - "shot4": 9, - "shot5": 9 - }, - "2": { - "shot1": 3, - "shot2": 7, - "shot3": 3, - "shot4": 0, - "shot5": 0 - }, - "3": { - "shot1": 0, - "shot2": 9, - "shot3": 4, - "shot4": 0, - "shot5": 7 - }, - "4": { - "shot1": 10, - "shot2": 4, - "shot3": 9, - "shot4": 2, - "shot5": 5 - } - }, - "total_score": 91, - "completed": true - }, - "23": { - "name": "Robi Krautberger", - "targets": { - "1": { "shot1": 9, - "shot2": 8, - "shot3": 3, - "shot4": 5, - "shot5": 6 - }, - "2": { - "shot1": 7, - "shot2": 1, - "shot3": 8, - "shot4": 4, - "shot5": 1 - }, - "3": { - "shot1": 0, - "shot2": 4, - "shot3": 6, - "shot4": 9, - "shot5": 10 - }, - "4": { - "shot1": 1, - "shot2": 4, - "shot3": 7, - "shot4": 2, - "shot5": 1 - } - }, - "total_score": 96, - "completed": true - }, - "16": { - "name": "Silvo Poro\u010dnik", - "targets": { - "1": { - "shot1": 6, - "shot2": 3, - "shot3": 8, - "shot4": 7, - "shot5": 2 - }, - "2": { - "shot1": 3, - "shot2": 5, - "shot3": 7, - "shot4": 5, - "shot5": 1 - }, - "3": { - "shot1": 1, - "shot2": 2, - "shot3": 3, - "shot4": 2, - "shot5": 9 - }, - "4": { - "shot1": 0, - "shot2": 3, - "shot3": 10, - "shot4": 9, - "shot5": 2 - } - }, - "total_score": 88, - "completed": true - }, - "24": { - "name": "Jo\u017ee Verdinek", - "targets": { - "1": { - "shot1": 6, - "shot2": 0, - "shot3": 2, - "shot4": 1, - "shot5": 1 - }, - "2": { - "shot1": 8, - "shot2": 6, - "shot3": 8, - "shot4": 1, - "shot5": 0 - }, - "3": { - "shot1": 1, - "shot2": 4, - "shot3": 8, - "shot4": 7, - "shot5": 4 - }, - "4": { - "shot1": 1, - "shot2": 10, - "shot3": 9, - "shot4": 6, - "shot5": 5 - } - }, - "total_score": 88, - "completed": true - }, - "43": { - "name": "Marko Pokr\u017enik", - "targets": { - "1": { - "shot1": 6, - "shot2": 5, - "shot3": 0, - "shot4": 6, - "shot5": 7 - }, - "2": { - "shot1": 5, - "shot2": 4, - "shot3": 10, - "shot4": 4, - "shot5": 0 - }, - "3": { - "shot1": 4, - "shot2": 1, - "shot3": 7, - "shot4": 5, - "shot5": 4 - }, - "4": { - "shot1": 7, - "shot2": 10, - "shot3": 10, - "shot4": 1, - "shot5": 1 - } - }, - "total_score": 97, - "completed": true - }, - "28": { - "name": "An\u017ee Kolar", - "targets": { - "1": { - "shot1": 2, "shot2": 0, "shot3": 6, - "shot4": 7, - "shot5": 9 - }, - "2": { - "shot1": 6, - "shot2": 8, - "shot3": 10, - "shot4": 5, - "shot5": 9 - }, - "3": { - "shot1": 1, - "shot2": 2, - "shot3": 7, - "shot4": 8, - "shot5": 10 - }, - "4": { - "shot1": 4, - "shot2": 2, - "shot3": 9, - "shot4": 8, - "shot5": 9 - } - }, - "total_score": 122, - "completed": true - }, - "36": { - "name": "Klara Wankmuller", - "targets": { - "1": { - "shot1": 3, - "shot2": 7, - "shot3": 4, - "shot4": 5, - "shot5": 4 - }, - "2": { - "shot1": 5, - "shot2": 4, - "shot3": 3, - "shot4": 0, - "shot5": 1 - }, - "3": { - "shot1": 7, - "shot2": 8, - "shot3": 1, - "shot4": 4, - "shot5": 10 - }, - "4": { - "shot1": 0, - "shot2": 4, - "shot3": 3, - "shot4": 5, - "shot5": 10 - } - }, - "total_score": 88, - "completed": true - }, - "27": { - "name": "Janez Mrak", - "targets": { - "1": { - "shot1": 0, - "shot2": 0, - "shot3": 5, - "shot4": 4, - "shot5": 6 - }, - "2": { - "shot1": 1, - "shot2": 5, - "shot3": 0, - "shot4": 10, - "shot5": 10 - }, - "3": { - "shot1": 4, - "shot2": 0, - "shot3": 4, - "shot4": 0, - "shot5": 4 - }, - "4": { - "shot1": 1, - "shot2": 5, - "shot3": 1, - "shot4": 7, - "shot5": 0 - } - }, - "total_score": 67, - "completed": true - }, - "40": { - "name": "Jaka Cvar", - "targets": { - "1": { - "shot1": 9, - "shot2": 6, - "shot3": 8, - "shot4": 10, - "shot5": 0 - }, - "2": { - "shot1": 10, - "shot2": 2, - "shot3": 3, - "shot4": 10, - "shot5": 5 - }, - "3": { - "shot1": 5, - "shot2": 5, - "shot3": 3, - "shot4": 6, - "shot5": 7 - }, - "4": { - "shot1": 10, - "shot2": 6, - "shot3": 1, - "shot4": 4, - "shot5": 0 - } - }, - "total_score": 110, - "completed": true - }, - "7": { - "name": "Branko Poker\u017enik", - "targets": { - "1": { - "shot1": 5, - "shot2": 6, - "shot3": 5, - "shot4": 6, - "shot5": 1 - }, - "2": { - "shot1": 7, - "shot2": 3, - "shot3": 7, - "shot4": 1, - "shot5": 6 - }, - "3": { - "shot1": 8, - "shot2": 9, - "shot3": 10, - "shot4": 3, - "shot5": 9 - }, - "4": { - "shot1": 5, - "shot2": 7, - "shot3": 5, - "shot4": 6, - "shot5": 0 - } - }, - "total_score": 109, - "completed": true - }, - "46": { - "name": "Tijana \u0160tumpfl", - "targets": { - "1": { - "shot1": 3, - "shot2": 6, - "shot3": 10, - "shot4": 10, - "shot5": 2 - }, - "2": { - "shot1": 10, - "shot2": 10, - "shot3": 1, - "shot4": 6, - "shot5": 6 - }, - "3": { - "shot1": 0, - "shot2": 3, - "shot3": 5, - "shot4": 10, - "shot5": 5 - }, - "4": { - "shot1": 7, - "shot2": 1, - "shot3": 8, - "shot4": 0, - "shot5": 9 - } - }, - "total_score": 112, - "completed": true - }, - "39": { - "name": "Tia Sudar", - "targets": { - "1": { - "shot1": 5, - "shot2": 10, - "shot3": 0, - "shot4": 10, - "shot5": 1 - }, - "2": { - "shot1": 1, - "shot2": 2, - "shot3": 4, - "shot4": 4, - "shot5": 3 - }, - "3": { - "shot1": 5, - "shot2": 10, - "shot3": 1, - "shot4": 1, - "shot5": 6 - }, - "4": { - "shot1": 9, - "shot2": 4, - "shot3": 4, - "shot4": 8, - "shot5": 0 - } - }, - "total_score": 88, - "completed": true - }, - "33": { - "name": "Namir Uzunovi\u0107", - "targets": { - "1": { - "shot1": 6, - "shot2": 7, - "shot3": 10, - "shot4": 10, - "shot5": 10 - }, - "2": { - "shot1": 4, - "shot2": 6, - "shot3": 7, - "shot4": 1, - "shot5": 1 - }, - "3": { - "shot1": 2, - "shot2": 4, - "shot3": 0, "shot4": 2, - "shot5": 6 - }, - "4": { - "shot1": 9, - "shot2": 1, - "shot3": 8, - "shot4": 6, - "shot5": 9 + "shot5": 8 } }, - "total_score": 109, - "completed": true - }, - "41": { - "name": "Tadej \u0160truc", - "targets": { - "1": { - "shot1": 5, - "shot2": 9, - "shot3": 3, - "shot4": 5, - "shot5": 7 - }, - "2": { - "shot1": 4, - "shot2": 7, - "shot3": 8, - "shot4": 8, - "shot5": 6 - }, - "3": { - "shot1": 2, - "shot2": 9, - "shot3": 6, - "shot4": 0, - "shot5": 4 - }, - "4": { - "shot1": 3, - "shot2": 0, - "shot3": 9, - "shot4": 4, - "shot5": 5 - } - }, - "total_score": 104, - "completed": true - }, - "49": { - "name": "Jolanda Verhnjak", - "targets": { - "1": { - "shot1": 7, - "shot2": 0, - "shot3": 1, - "shot4": 3, - "shot5": 9 - }, - "2": { - "shot1": 3, - "shot2": 4, - "shot3": 3, - "shot4": 1, - "shot5": 5 - }, - "3": { - "shot1": 1, - "shot2": 9, - "shot3": 8, - "shot4": 10, - "shot5": 5 - }, - "4": { - "shot1": 3, - "shot2": 6, - "shot3": 0, - "shot4": 8, - "shot5": 3 - } - }, - "total_score": 89, - "completed": true - }, - "1": { - "name": "Domen Pleterski", - "targets": { - "1": { - "shot1": 6, - "shot2": 8, - "shot3": 7, - "shot4": 9, - "shot5": 2 - }, - "2": { - "shot1": 0, - "shot2": 5, - "shot3": 2, - "shot4": 6, - "shot5": 2 - }, - "3": { - "shot1": 3, - "shot2": 6, - "shot3": 4, - "shot4": 8, - "shot5": 7 - }, - "4": { - "shot1": 6, - "shot2": 8, - "shot3": 10, - "shot4": 10, - "shot5": 6 - } - }, - "total_score": 115, - "completed": true - }, - "31": { - "name": "Dejan Ku\u010dnik", - "targets": { - "1": { - "shot1": 0, - "shot2": 5, - "shot3": 10, - "shot4": 7, - "shot5": 0 - }, - "2": { - "shot1": 4, - "shot2": 1, - "shot3": 0, - "shot4": 6, - "shot5": 2 - }, - "3": { - "shot1": 6, - "shot2": 4, - "shot3": 1, - "shot4": 0, - "shot5": 4 - }, - "4": { - "shot1": 3, - "shot2": 4, - "shot3": 0, - "shot4": 7, - "shot5": 9 - } - }, - "total_score": 73, - "completed": true - }, - "4": { - "name": "Mateja Pleterski", - "targets": { - "1": { - "shot1": 2, - "shot2": 8, - "shot3": 7, - "shot4": 0, - "shot5": 9 - }, - "2": { - "shot1": 8, - "shot2": 6, - "shot3": 2, - "shot4": 0, - "shot5": 1 - }, - "3": { - "shot1": 6, - "shot2": 9, - "shot3": 1, - "shot4": 7, - "shot5": 6 - }, - "4": { - "shot1": 7, - "shot2": 9, - "shot3": 0, - "shot4": 0, - "shot5": 7 - } - }, - "total_score": 95, - "completed": true - }, - "8": { - "name": "Franc \u017digart", - "targets": { - "1": { - "shot1": 4, - "shot2": 2, - "shot3": 0, - "shot4": 6, - "shot5": 7 - }, - "2": { - "shot1": 5, - "shot2": 4, - "shot3": 8, - "shot4": 6, - "shot5": 0 - }, - "3": { - "shot1": 4, - "shot2": 1, - "shot3": 7, - "shot4": 10, - "shot5": 3 - }, - "4": { - "shot1": 5, - "shot2": 0, - "shot3": 1, - "shot4": 4, - "shot5": 10 - } - }, - "total_score": 87, - "completed": true - }, - "5": { - "name": "Jo\u017ee Verhnjak", - "targets": { - "1": { - "shot1": 9, - "shot2": 10, - "shot3": 3, - "shot4": 4, - "shot5": 6 - }, - "2": { - "shot1": 2, - "shot2": 9, - "shot3": 3, - "shot4": 2, - "shot5": 0 - }, - "3": { - "shot1": 7, - "shot2": 6, - "shot3": 3, - "shot4": 2, - "shot5": 2 - }, - "4": { - "shot1": 4, - "shot2": 9, - "shot3": 8, - "shot4": 9, - "shot5": 5 - } - }, - "total_score": 103, + "total_score": 106, "completed": true }, "17": { "name": "Du\u0161an Onuk", "targets": { "1": { - "shot1": 7, - "shot2": 8, - "shot3": 2, - "shot4": 9, + "shot1": 2, + "shot2": 1, + "shot3": 0, + "shot4": 7, + "shot5": 3 + }, + "2": { + "shot1": 4, + "shot2": 2, + "shot3": 7, + "shot4": 6, + "shot5": 6 + }, + "3": { + "shot1": 9, + "shot2": 6, + "shot3": 1, + "shot4": 3, + "shot5": 5 + }, + "4": { + "shot1": 4, + "shot2": 4, + "shot3": 1, + "shot4": 6, + "shot5": 10 + } + }, + "total_score": 87, + "completed": true + }, + "3": { + "name": "Ivan Tandler", + "targets": { + "1": { + "shot1": 10, + "shot2": 3, + "shot3": 7, + "shot4": 10, "shot5": 6 }, "2": { - "shot1": 2, - "shot2": 7, - "shot3": 10, - "shot4": 8, - "shot5": 9 + "shot1": 8, + "shot2": 9, + "shot3": 5, + "shot4": 10, + "shot5": 1 }, "3": { - "shot1": 2, - "shot2": 6, + "shot1": 7, + "shot2": 8, + "shot3": 9, + "shot4": 5, + "shot5": 0 + }, + "4": { + "shot1": 6, + "shot2": 3, + "shot3": 10, + "shot4": 0, + "shot5": 0 + } + }, + "total_score": 117, + "completed": true + }, + "38": { + "name": "Bojan Sudar", + "targets": { + "1": { + "shot1": 6, + "shot2": 4, + "shot3": 2, + "shot4": 5, + "shot5": 5 + }, + "2": { + "shot1": 4, + "shot2": 9, + "shot3": 3, + "shot4": 4, + "shot5": 2 + }, + "3": { + "shot1": 5, + "shot2": 10, "shot3": 8, + "shot4": 10, + "shot5": 7 + }, + "4": { + "shot1": 9, + "shot2": 8, + "shot3": 0, + "shot4": 2, + "shot5": 10 + } + }, + "total_score": 113, + "completed": true + }, + "37": { + "name": "Milan Stramec", + "targets": { + "1": { + "shot1": 5, + "shot2": 5, + "shot3": 7, "shot4": 9, "shot5": 3 }, - "4": { - "shot1": 1, - "shot2": 0, + "2": { + "shot1": 5, + "shot2": 4, "shot3": 10, + "shot4": 2, + "shot5": 4 + }, + "3": { + "shot1": 4, + "shot2": 7, + "shot3": 2, + "shot4": 6, + "shot5": 9 + }, + "4": { + "shot1": 7, + "shot2": 7, + "shot3": 7, "shot4": 0, - "shot5": 2 + "shot5": 7 } }, - "total_score": 109, + "total_score": 110, "completed": true }, - "26": { - "name": "Jakob Herman", + "41": { + "name": "Tadej \u0160truc", "targets": { "1": { - "shot1": 2, - "shot2": 7, - "shot3": 0, - "shot4": 8, - "shot5": 1 + "shot1": 8, + "shot2": 5, + "shot3": 1, + "shot4": 9, + "shot5": 5 }, "2": { "shot1": 9, - "shot2": 5, + "shot2": 2, "shot3": 10, - "shot4": 6, - "shot5": 0 - }, - "3": { - "shot1": 6, - "shot2": 1, - "shot3": 0, - "shot4": 9, + "shot4": 7, "shot5": 3 }, - "4": { + "3": { "shot1": 8, - "shot2": 3, - "shot3": 0, + "shot2": 1, + "shot3": 6, "shot4": 9, + "shot5": 1 + }, + "4": { + "shot1": 1, + "shot2": 9, + "shot3": 10, + "shot4": 8, + "shot5": 5 + } + }, + "total_score": 117, + "completed": true + }, + "32": { + "name": "David Strni\u0161a", + "targets": { + "1": { + "shot1": 6, + "shot2": 7, + "shot3": 1, + "shot4": 6, + "shot5": 6 + }, + "2": { + "shot1": 9, + "shot2": 7, + "shot3": 6, + "shot4": 9, + "shot5": 8 + }, + "3": { + "shot1": 9, + "shot2": 4, + "shot3": 3, + "shot4": 9, + "shot5": 1 + }, + "4": { + "shot1": 9, + "shot2": 5, + "shot3": 3, + "shot4": 4, "shot5": 6 } }, - "total_score": 93, + "total_score": 118, + "completed": true + }, + "31": { + "name": "Dejan Ku\u010dnik", + "targets": { + "1": { + "shot1": 10, + "shot2": 8, + "shot3": 10, + "shot4": 0, + "shot5": 1 + }, + "2": { + "shot1": 7, + "shot2": 3, + "shot3": 5, + "shot4": 8, + "shot5": 6 + }, + "3": { + "shot1": 5, + "shot2": 6, + "shot3": 8, + "shot4": 0, + "shot5": 6 + }, + "4": { + "shot1": 4, + "shot2": 1, + "shot3": 8, + "shot4": 5, + "shot5": 7 + } + }, + "total_score": 108, + "completed": true + }, + "28": { + "name": "An\u017ee Kolar", + "targets": { + "1": { + "shot1": 8, + "shot2": 2, + "shot3": 5, + "shot4": 9, + "shot5": 6 + }, + "2": { + "shot1": 9, + "shot2": 9, + "shot3": 6, + "shot4": 6, + "shot5": 4 + }, + "3": { + "shot1": 9, + "shot2": 7, + "shot3": 6, + "shot4": 1, + "shot5": 4 + }, + "4": { + "shot1": 6, + "shot2": 10, + "shot3": 8, + "shot4": 3, + "shot5": 1 + } + }, + "total_score": 119, + "completed": true + }, + "40": { + "name": "Jaka Cvar", + "targets": { + "1": { + "shot1": 8, + "shot2": 0, + "shot3": 8, + "shot4": 10, + "shot5": 8 + }, + "2": { + "shot1": 10, + "shot2": 3, + "shot3": 9, + "shot4": 5, + "shot5": 7 + }, + "3": { + "shot1": 0, + "shot2": 5, + "shot3": 2, + "shot4": 4, + "shot5": 9 + }, + "4": { + "shot1": 3, + "shot2": 0, + "shot3": 1, + "shot4": 3, + "shot5": 2 + } + }, + "total_score": 97, "completed": true }, "22": { @@ -1442,69 +567,174 @@ "targets": { "1": { "shot1": 6, - "shot2": 2, - "shot3": 6, - "shot4": 0, - "shot5": 10 - }, - "2": { - "shot1": 1, - "shot2": 4, - "shot3": 8, - "shot4": 2, - "shot5": 10 - }, - "3": { - "shot1": 6, - "shot2": 9, - "shot3": 3, - "shot4": 2, - "shot5": 3 - }, - "4": { - "shot1": 2, - "shot2": 6, + "shot2": 3, "shot3": 9, - "shot4": 9, - "shot5": 8 - } - }, - "total_score": 106, - "completed": true - }, - "48": { - "name": "Janja Salcman", - "targets": { - "1": { - "shot1": 6, - "shot2": 0, - "shot3": 0, "shot4": 3, - "shot5": 10 + "shot5": 9 }, "2": { - "shot1": 4, - "shot2": 5, - "shot3": 7, - "shot4": 9, - "shot5": 2 + "shot1": 0, + "shot2": 4, + "shot3": 2, + "shot4": 8, + "shot5": 10 }, "3": { - "shot1": 8, - "shot2": 2, - "shot3": 3, - "shot4": 10, - "shot5": 3 + "shot1": 0, + "shot2": 3, + "shot3": 8, + "shot4": 3, + "shot5": 6 }, "4": { "shot1": 5, "shot2": 8, - "shot3": 8, - "shot4": 3, - "shot5": 5 + "shot3": 1, + "shot4": 4, + "shot5": 0 } }, - "total_score": 101, + "total_score": 92, + "completed": true + }, + "15": { + "name": "Jan Pleterski", + "targets": { + "1": { + "shot1": 5, + "shot2": 6, + "shot3": 10, + "shot4": 0, + "shot5": 9 + }, + "2": { + "shot1": 3, + "shot2": 0, + "shot3": 6, + "shot4": 10, + "shot5": 10 + }, + "3": { + "shot1": 2, + "shot2": 3, + "shot3": 2, + "shot4": 8, + "shot5": 1 + }, + "4": { + "shot1": 7, + "shot2": 4, + "shot3": 10, + "shot4": 7, + "shot5": 2 + } + }, + "total_score": 105, + "completed": true + }, + "44": { + "name": "Anka Ka\u010dnik", + "targets": { + "1": { + "shot1": 7, + "shot2": 8, + "shot3": 6, + "shot4": 3, + "shot5": 8 + }, + "2": { + "shot1": 2, + "shot2": 4, + "shot3": 10, + "shot4": 5, + "shot5": 6 + }, + "3": { + "shot1": 1, + "shot2": 10, + "shot3": 7, + "shot4": 8, + "shot5": 8 + }, + "4": { + "shot1": 0, + "shot2": 4, + "shot3": 6, + "shot4": 10, + "shot5": 2 + } + }, + "total_score": 115, + "completed": true + }, + "30": { + "name": "Maja Hirtl", + "targets": { + "1": { + "shot1": 1, + "shot2": 7, + "shot3": 7, + "shot4": 7, + "shot5": 5 + }, + "2": { + "shot1": 4, + "shot2": 0, + "shot3": 5, + "shot4": 5, + "shot5": 0 + }, + "3": { + "shot1": 6, + "shot2": 3, + "shot3": 3, + "shot4": 1, + "shot5": 0 + }, + "4": { + "shot1": 10, + "shot2": 4, + "shot3": 7, + "shot4": 3, + "shot5": 3 + } + }, + "total_score": 81, + "completed": true + }, + "14": { + "name": "Karli Proje", + "targets": { + "1": { + "shot1": 3, + "shot2": 10, + "shot3": 0, + "shot4": 4, + "shot5": 6 + }, + "2": { + "shot1": 8, + "shot2": 2, + "shot3": 9, + "shot4": 8, + "shot5": 0 + }, + "3": { + "shot1": 0, + "shot2": 3, + "shot3": 6, + "shot4": 4, + "shot5": 2 + }, + "4": { + "shot1": 10, + "shot2": 4, + "shot3": 4, + "shot4": 0, + "shot5": 4 + } + }, + "total_score": 87, "completed": true }, "10": { @@ -1513,177 +743,982 @@ "1": { "shot1": 3, "shot2": 5, - "shot3": 2, - "shot4": 4, - "shot5": 2 - }, - "2": { - "shot1": 9, - "shot2": 8, - "shot3": 8, - "shot4": 4, - "shot5": 3 - }, - "3": { - "shot1": 4, - "shot2": 7, - "shot3": 0, - "shot4": 6, - "shot5": 6 - }, - "4": { - "shot1": 5, - "shot2": 2, "shot3": 10, - "shot4": 4, - "shot5": 1 - } - }, - "total_score": 93, - "completed": true - }, - "14": { - "name": "Karli Proje", - "targets": { - "1": { - "shot1": 9, - "shot2": 3, - "shot3": 1, - "shot4": 3, - "shot5": 9 + "shot4": 2, + "shot5": 2 }, "2": { "shot1": 8, - "shot2": 8, - "shot3": 9, + "shot2": 0, + "shot3": 5, + "shot4": 3, + "shot5": 1 + }, + "3": { + "shot1": 0, + "shot2": 4, + "shot3": 4, + "shot4": 6, + "shot5": 2 + }, + "4": { + "shot1": 8, + "shot2": 7, + "shot3": 2, + "shot4": 0, + "shot5": 0 + } + }, + "total_score": 72, + "completed": true + }, + "7": { + "name": "Branko Poker\u017enik", + "targets": { + "1": { + "shot1": 9, + "shot2": 2, + "shot3": 7, + "shot4": 9, + "shot5": 1 + }, + "2": { + "shot1": 6, + "shot2": 5, + "shot3": 4, "shot4": 2, + "shot5": 10 + }, + "3": { + "shot1": 5, + "shot2": 2, + "shot3": 4, + "shot4": 1, "shot5": 6 }, + "4": { + "shot1": 5, + "shot2": 10, + "shot3": 6, + "shot4": 2, + "shot5": 10 + } + }, + "total_score": 106, + "completed": true + }, + "33": { + "name": "Namir Uzunovi\u0107", + "targets": { + "1": { + "shot1": 0, + "shot2": 10, + "shot3": 4, + "shot4": 10, + "shot5": 3 + }, + "2": { + "shot1": 0, + "shot2": 3, + "shot3": 2, + "shot4": 6, + "shot5": 1 + }, "3": { "shot1": 4, - "shot2": 4, - "shot3": 6, - "shot4": 0, - "shot5": 8 + "shot2": 3, + "shot3": 3, + "shot4": 5, + "shot5": 7 }, "4": { - "shot1": 7, - "shot2": 10, - "shot3": 1, - "shot4": 8, - "shot5": 3 + "shot1": 5, + "shot2": 0, + "shot3": 10, + "shot4": 2, + "shot5": 0 } }, - "total_score": 109, + "total_score": 78, "completed": true }, - "9": { - "name": "Janez Bo\u017ei\u010d", + "43": { + "name": "Marko Pokr\u017enik", "targets": { "1": { - "shot1": 6, - "shot2": 2, - "shot3": 6, - "shot4": 5, - "shot5": 3 - }, - "2": { - "shot1": 6, - "shot2": 6, - "shot3": 9, - "shot4": 7, - "shot5": 2 - }, - "3": { - "shot1": 5, - "shot2": 9, - "shot3": 2, - "shot4": 10, + "shot1": 10, + "shot2": 5, + "shot3": 7, + "shot4": 6, "shot5": 0 }, - "4": { - "shot1": 7, - "shot2": 7, - "shot3": 4, - "shot4": 10, - "shot5": 2 - } - }, - "total_score": 108, - "completed": true - }, - "12": { - "name": "Matej Kvasnik", - "targets": { - "1": { - "shot1": 5, - "shot2": 8, - "shot3": 5, - "shot4": 10, - "shot5": 5 - }, "2": { - "shot1": 7, - "shot2": 5, - "shot3": 10, - "shot4": 0, - "shot5": 1 + "shot1": 4, + "shot2": 9, + "shot3": 1, + "shot4": 8, + "shot5": 5 }, "3": { - "shot1": 1, - "shot2": 8, - "shot3": 1, - "shot4": 2, - "shot5": 5 + "shot1": 10, + "shot2": 5, + "shot3": 7, + "shot4": 3, + "shot5": 9 }, "4": { - "shot1": 1, - "shot2": 1, - "shot3": 10, - "shot4": 7, - "shot5": 1 + "shot1": 9, + "shot2": 7, + "shot3": 9, + "shot4": 10, + "shot5": 4 } }, - "total_score": 93, + "total_score": 128, "completed": true }, "18": { "name": "Matja\u017e Pleterski", "targets": { "1": { - "shot1": 5, + "shot1": 0, + "shot2": 4, + "shot3": 5, + "shot4": 9, + "shot5": 4 + }, + "2": { + "shot1": 0, "shot2": 5, "shot3": 4, - "shot4": 8, + "shot4": 3, + "shot5": 4 + }, + "3": { + "shot1": 0, + "shot2": 5, + "shot3": 1, + "shot4": 0, + "shot5": 2 + }, + "4": { + "shot1": 4, + "shot2": 5, + "shot3": 3, + "shot4": 6, + "shot5": 5 + } + }, + "total_score": 69, + "completed": true + }, + "13": { + "name": "Angelca Mrak", + "targets": { + "1": { + "shot1": 3, + "shot2": 6, + "shot3": 0, + "shot4": 7, + "shot5": 7 + }, + "2": { + "shot1": 5, + "shot2": 5, + "shot3": 2, + "shot4": 1, + "shot5": 4 + }, + "3": { + "shot1": 8, + "shot2": 6, + "shot3": 2, + "shot4": 1, + "shot5": 0 + }, + "4": { + "shot1": 4, + "shot2": 9, + "shot3": 0, + "shot4": 0, + "shot5": 9 + } + }, + "total_score": 79, + "completed": true + }, + "19": { + "name": "Franc Rizmal", + "targets": { + "1": { + "shot1": 1, + "shot2": 8, + "shot3": 10, + "shot4": 5, "shot5": 1 }, "2": { + "shot1": 7, + "shot2": 1, + "shot3": 5, + "shot4": 7, + "shot5": 1 + }, + "3": { + "shot1": 2, + "shot2": 7, + "shot3": 5, + "shot4": 6, + "shot5": 6 + }, + "4": { + "shot1": 5, + "shot2": 4, + "shot3": 5, + "shot4": 8, + "shot5": 10 + } + }, + "total_score": 104, + "completed": true + }, + "36": { + "name": "Klara Wankmuller", + "targets": { + "1": { + "shot1": 4, + "shot2": 9, + "shot3": 0, + "shot4": 0, + "shot5": 10 + }, + "2": { + "shot1": 10, + "shot2": 3, + "shot3": 6, + "shot4": 2, + "shot5": 9 + }, + "3": { + "shot1": 10, + "shot2": 10, + "shot3": 10, + "shot4": 7, + "shot5": 5 + }, + "4": { + "shot1": 9, + "shot2": 1, + "shot3": 9, + "shot4": 5, + "shot5": 2 + } + }, + "total_score": 121, + "completed": true + }, + "26": { + "name": "Jakob Herman", + "targets": { + "1": { + "shot1": 2, + "shot2": 9, + "shot3": 2, + "shot4": 8, + "shot5": 6 + }, + "2": { + "shot1": 1, + "shot2": 5, + "shot3": 5, + "shot4": 3, + "shot5": 4 + }, + "3": { + "shot1": 1, + "shot2": 8, + "shot3": 1, + "shot4": 6, + "shot5": 1 + }, + "4": { + "shot1": 5, + "shot2": 6, + "shot3": 9, + "shot4": 6, + "shot5": 3 + } + }, + "total_score": 91, + "completed": true + }, + "6": { + "name": "Mateja Senica", + "targets": { + "1": { + "shot1": 8, + "shot2": 1, + "shot3": 3, + "shot4": 10, + "shot5": 7 + }, + "2": { + "shot1": 9, + "shot2": 10, + "shot3": 4, + "shot4": 4, + "shot5": 4 + }, + "3": { + "shot1": 9, + "shot2": 0, + "shot3": 4, + "shot4": 9, + "shot5": 0 + }, + "4": { + "shot1": 9, + "shot2": 5, + "shot3": 1, + "shot4": 4, + "shot5": 2 + } + }, + "total_score": 103, + "completed": true + }, + "27": { + "name": "Janez Mrak", + "targets": { + "1": { + "shot1": 4, + "shot2": 0, + "shot3": 7, + "shot4": 5, + "shot5": 5 + }, + "2": { + "shot1": 0, + "shot2": 7, + "shot3": 10, + "shot4": 0, + "shot5": 3 + }, + "3": { + "shot1": 1, + "shot2": 8, + "shot3": 6, + "shot4": 7, + "shot5": 1 + }, + "4": { + "shot1": 4, + "shot2": 6, + "shot3": 6, + "shot4": 2, + "shot5": 2 + } + }, + "total_score": 84, + "completed": true + }, + "45": { + "name": "Lidija Blimen", + "targets": { + "1": { + "shot1": 8, + "shot2": 8, + "shot3": 7, + "shot4": 9, + "shot5": 9 + }, + "2": { + "shot1": 1, + "shot2": 10, + "shot3": 8, + "shot4": 0, + "shot5": 8 + }, + "3": { + "shot1": 8, + "shot2": 0, + "shot3": 8, + "shot4": 3, + "shot5": 6 + }, + "4": { + "shot1": 0, + "shot2": 6, + "shot3": 5, + "shot4": 4, + "shot5": 10 + } + }, + "total_score": 118, + "completed": true + }, + "39": { + "name": "Tia Sudar", + "targets": { + "1": { + "shot1": 6, + "shot2": 4, + "shot3": 7, + "shot4": 3, + "shot5": 5 + }, + "2": { + "shot1": 1, + "shot2": 10, + "shot3": 0, + "shot4": 10, + "shot5": 10 + }, + "3": { + "shot1": 4, + "shot2": 4, + "shot3": 9, + "shot4": 10, + "shot5": 1 + }, + "4": { + "shot1": 2, + "shot2": 0, + "shot3": 10, + "shot4": 4, + "shot5": 5 + } + }, + "total_score": 105, + "completed": true + }, + "4": { + "name": "Mateja Pleterski", + "targets": { + "1": { + "shot1": 5, + "shot2": 7, + "shot3": 2, + "shot4": 9, + "shot5": 0 + }, + "2": { + "shot1": 7, + "shot2": 1, + "shot3": 6, + "shot4": 5, + "shot5": 0 + }, + "3": { + "shot1": 3, + "shot2": 6, + "shot3": 2, + "shot4": 6, + "shot5": 5 + }, + "4": { + "shot1": 9, + "shot2": 5, + "shot3": 2, + "shot4": 2, + "shot5": 8 + } + }, + "total_score": 90, + "completed": true + }, + "20": { + "name": "Jo\u017ee Preglav", + "targets": { + "1": { + "shot1": 10, + "shot2": 7, + "shot3": 3, + "shot4": 9, + "shot5": 1 + }, + "2": { + "shot1": 6, + "shot2": 0, + "shot3": 2, + "shot4": 2, + "shot5": 6 + }, + "3": { + "shot1": 5, + "shot2": 3, + "shot3": 7, + "shot4": 10, + "shot5": 0 + }, + "4": { + "shot1": 8, + "shot2": 8, + "shot3": 4, + "shot4": 4, + "shot5": 7 + } + }, + "total_score": 102, + "completed": true + }, + "23": { + "name": "Robi Krautberger", + "targets": { + "1": { + "shot1": 10, + "shot2": 8, + "shot3": 10, + "shot4": 4, + "shot5": 7 + }, + "2": { + "shot1": 8, + "shot2": 7, + "shot3": 1, + "shot4": 8, + "shot5": 10 + }, + "3": { + "shot1": 4, + "shot2": 6, + "shot3": 6, + "shot4": 0, + "shot5": 8 + }, + "4": { + "shot1": 7, + "shot2": 5, + "shot3": 9, + "shot4": 3, + "shot5": 7 + } + }, + "total_score": 128, + "completed": true + }, + "11": { + "name": "Rado Kefer", + "targets": { + "1": { + "shot1": 3, + "shot2": 4, + "shot3": 3, + "shot4": 8, + "shot5": 9 + }, + "2": { + "shot1": 0, + "shot2": 1, + "shot3": 3, + "shot4": 8, + "shot5": 3 + }, + "3": { + "shot1": 10, + "shot2": 8, + "shot3": 1, + "shot4": 10, + "shot5": 5 + }, + "4": { + "shot1": 5, + "shot2": 6, + "shot3": 0, + "shot4": 10, + "shot5": 1 + } + }, + "total_score": 98, + "completed": true + }, + "2": { + "name": "Nik Pleterski", + "targets": { + "1": { + "shot1": 4, + "shot2": 0, + "shot3": 0, + "shot4": 0, + "shot5": 4 + }, + "2": { + "shot1": 4, + "shot2": 5, + "shot3": 10, + "shot4": 9, + "shot5": 10 + }, + "3": { + "shot1": 10, + "shot2": 1, + "shot3": 5, + "shot4": 0, + "shot5": 3 + }, + "4": { + "shot1": 10, + "shot2": 5, + "shot3": 3, + "shot4": 4, + "shot5": 9 + } + }, + "total_score": 96, + "completed": true + }, + "49": { + "name": "Jolanda Verhnjak", + "targets": { + "1": { "shot1": 1, "shot2": 6, + "shot3": 9, + "shot4": 0, + "shot5": 5 + }, + "2": { + "shot1": 5, + "shot2": 5, + "shot3": 2, + "shot4": 8, + "shot5": 5 + }, + "3": { + "shot1": 6, + "shot2": 8, "shot3": 1, + "shot4": 0, + "shot5": 10 + }, + "4": { + "shot1": 3, + "shot2": 6, + "shot3": 7, + "shot4": 1, + "shot5": 4 + } + }, + "total_score": 92, + "completed": true + }, + "16": { + "name": "Silvo Poro\u010dnik", + "targets": { + "1": { + "shot1": 2, + "shot2": 7, + "shot3": 7, + "shot4": 2, + "shot5": 8 + }, + "2": { + "shot1": 2, + "shot2": 0, + "shot3": 7, + "shot4": 6, + "shot5": 3 + }, + "3": { + "shot1": 10, + "shot2": 2, + "shot3": 2, + "shot4": 10, + "shot5": 9 + }, + "4": { + "shot1": 9, + "shot2": 0, + "shot3": 10, + "shot4": 6, + "shot5": 6 + } + }, + "total_score": 108, + "completed": true + }, + "47": { + "name": "Ljuba Mr\u0161ak", + "targets": { + "1": { + "shot1": 1, + "shot2": 9, + "shot3": 9, + "shot4": 4, + "shot5": 0 + }, + "2": { + "shot1": 5, + "shot2": 3, + "shot3": 4, + "shot4": 7, + "shot5": 10 + }, + "3": { + "shot1": 2, + "shot2": 9, + "shot3": 5, + "shot4": 9, + "shot5": 7 + }, + "4": { + "shot1": 6, + "shot2": 0, + "shot3": 4, + "shot4": 10, + "shot5": 1 + } + }, + "total_score": 105, + "completed": true + }, + "9": { + "name": "Janez Bo\u017ei\u010d", + "targets": { + "1": { + "shot1": 7, + "shot2": 8, + "shot3": 4, + "shot4": 10, + "shot5": 3 + }, + "2": { + "shot1": 6, + "shot2": 4, + "shot3": 8, + "shot4": 5, + "shot5": 2 + }, + "3": { + "shot1": 6, + "shot2": 5, + "shot3": 3, + "shot4": 7, + "shot5": 4 + }, + "4": { + "shot1": 2, + "shot2": 6, + "shot3": 10, + "shot4": 8, + "shot5": 1 + } + }, + "total_score": 109, + "completed": true + }, + "25": { + "name": "Andrej Herman", + "targets": { + "1": { + "shot1": 9, + "shot2": 7, + "shot3": 7, + "shot4": 6, + "shot5": 7 + }, + "2": { + "shot1": 2, + "shot2": 0, + "shot3": 4, + "shot4": 1, + "shot5": 2 + }, + "3": { + "shot1": 4, + "shot2": 6, + "shot3": 8, + "shot4": 9, + "shot5": 1 + }, + "4": { + "shot1": 8, + "shot2": 7, + "shot3": 0, + "shot4": 6, + "shot5": 8 + } + }, + "total_score": 102, + "completed": true + }, + "42": { + "name": "Jure Glaser", + "targets": { + "1": { + "shot1": 8, + "shot2": 9, + "shot3": 8, + "shot4": 1, + "shot5": 7 + }, + "2": { + "shot1": 0, + "shot2": 0, + "shot3": 3, + "shot4": 3, + "shot5": 0 + }, + "3": { + "shot1": 2, + "shot2": 9, + "shot3": 10, + "shot4": 6, + "shot5": 6 + }, + "4": { + "shot1": 8, + "shot2": 5, + "shot3": 7, + "shot4": 0, + "shot5": 2 + } + }, + "total_score": 94, + "completed": true + }, + "34": { + "name": "Jo\u017ee Planin\u0161ec", + "targets": { + "1": { + "shot1": 5, + "shot2": 5, + "shot3": 6, + "shot4": 10, + "shot5": 3 + }, + "2": { + "shot1": 4, + "shot2": 5, + "shot3": 8, + "shot4": 8, + "shot5": 3 + }, + "3": { + "shot1": 9, + "shot2": 0, + "shot3": 6, + "shot4": 3, + "shot5": 1 + }, + "4": { + "shot1": 8, + "shot2": 3, + "shot3": 3, + "shot4": 7, + "shot5": 4 + } + }, + "total_score": 101, + "completed": true + }, + "1": { + "name": "Domen Pleterski", + "targets": { + "1": { + "shot1": 8, + "shot2": 2, + "shot3": 1, + "shot4": 7, + "shot5": 3 + }, + "2": { + "shot1": 10, + "shot2": 9, + "shot3": 9, "shot4": 1, "shot5": 6 }, "3": { - "shot1": 10, + "shot1": 1, "shot2": 7, - "shot3": 2, - "shot4": 0, + "shot3": 9, + "shot4": 3, "shot5": 0 }, "4": { - "shot1": 7, - "shot2": 1, - "shot3": 5, - "shot4": 9, - "shot5": 1 + "shot1": 3, + "shot2": 9, + "shot3": 3, + "shot4": 1, + "shot5": 6 } }, - "total_score": 80, + "total_score": 98, + "completed": true + }, + "5": { + "name": "Jo\u017ee Verhnjak", + "targets": { + "1": { + "shot1": 1, + "shot2": 7, + "shot3": 9, + "shot4": 7, + "shot5": 9 + }, + "2": { + "shot1": 6, + "shot2": 8, + "shot3": 2, + "shot4": 5, + "shot5": 4 + }, + "3": { + "shot1": 6, + "shot2": 1, + "shot3": 7, + "shot4": 7, + "shot5": 1 + }, + "4": { + "shot1": 9, + "shot2": 1, + "shot3": 10, + "shot4": 5, + "shot5": 3 + } + }, + "total_score": 108, + "completed": true + }, + "46": { + "name": "Tijana \u0160tumpfl", + "targets": { + "1": { + "shot1": 1, + "shot2": 1, + "shot3": 8, + "shot4": 2, + "shot5": 6 + }, + "2": { + "shot1": 4, + "shot2": 1, + "shot3": 5, + "shot4": 3, + "shot5": 6 + }, + "3": { + "shot1": 2, + "shot2": 4, + "shot3": 3, + "shot4": 4, + "shot5": 6 + }, + "4": { + "shot1": 10, + "shot2": 8, + "shot3": 7, + "shot4": 4, + "shot5": 5 + } + }, + "total_score": 90, "completed": true } }, "tournament_finished": true, - "created_at": "2025-10-26T10:02:07.221361", - "finished_at": "2025-10-26T10:30:24.622675" + "created_at": "2025-11-09T08:38:38.660998", + "finished_at": "2025-11-09T08:39:52.635351" } \ No newline at end of file