Этот сайт использует файлы cookies. Продолжая просмотр страниц сайта, вы соглашаетесь с использованием файлов cookies. Если вам нужна дополнительная информация, пожалуйста, посетите страницу Политика файлов Cookie
Subscribe
Прямой эфир
Cryptocurrencies: 10553 / Markets: 96256
Market Cap: $ 3 594 346 093 478 / 24h Vol: $ 133 218 285 096 / BTC Dominance: 56.332103302069%

Н Новости

Прикручиваем доступ к API OpenAI gpt-4o через proxy

Запилил я в том году приложение на Python по доступу к YandexGPT через API, теперь вот появилось желание попилить дальше и добавить доступ к gpt-4o и gpt-4o‑mini заодно.

Чем будет полезна эта программа — можно будет поэкспериментировать с системными запросами (в программе «Специализация»), которые можно создавать самому, и температурой («Креативность») к YandexGPT и OpenAI gpt-4o минуя их промпты и настройки системы, плюс не надо платить за подписку и пользоваться по надобности, плюс частично автоматизировать свои процессы запросов и проверить разные версии работы с GPT моделями.

Что бы не заморачиваться c настройкой прямого доступа к OpenAI через VPN и оплатой ещё через неизвестно что находим варианты попроще, забиваем в поиске «доступ к gpt-4o через proxy» находим подходящий сервис — регистрируемся, оплачиваем, получаем ключ API и всё, предварительная работа проведена осталось немного добавить в программу изменений и будет нам счастье.

6884c954ad52d4369592cff98e6171ec.JPG

Делаем изменения в программе:

1. Добавляем радиокнопки в интерфейс

tk.Radiobutton(self.model_selection_frame,text="GPT-4o mini",variable=self.gpt_model_uri,value="gpt-4o-mini",command=self.update_gpt_model_uri).grid(row=0, column=4, padx=5, sticky="w")
tk.Radiobutton(self.model_selection_frame,text="GPT-4o",variable=self.gpt_model_uri,value="gpt-4o",command=self.update_gpt_model_uri).grid(row=0, column=5, padx=5, sticky="w")

2. Добавляем функцию запроса к OpenAI через proxy

# Запрос к ChatGPT через ProxiAPI
    def answer_from_proxiapi(self, user_input, system_message, user_temperature, model): 
        # Проверка наличия ключа ProxiAPI
        if not self.reg_proxi_apy or not self.reg_proxi_apy.strip():
            messagebox.showwarning("Предупреждение", "Введите ключ к ProxyAPI")
            return       
        prompt = {
            "model": model,
            "messages": [
                {"role": "system", "content": system_message},
                {"role": "user", "content": user_input}
            ],
            "temperature": user_temperature,
            "max_tokens": 64000
        }

        url = "https://api.proxyapi.ru/openai/v1/chat/completions"
        headers = {
            "Content-Type": "application/json",
            "Authorization": f"Bearer {self.reg_proxi_apy}"
        }

        try:
            response = requests.post(url, headers=headers, json=prompt)
            response.raise_for_status()  # Проверка статуса HTTP-запроса
            result = response.json()

            assistant_text = result.get("choices", [{}])[0].get("message", {}).get("content", "Ошибка: Ответ отсутствует.")
            self.insert_to_result_label(f" GPT: \n{assistant_text}\n\n")
        except requests.exceptions.RequestException as e:
            messagebox.showerror("Ошибка", f"Ошибка при выполнении запроса: {e}")

3 Добавляем в # Функция при нажатии кнопки «Отправить» def on_submit(self) условие выбора модели при отправке промпта

# Выбор модели и вызов соответствующей функции        
        if self.gpt_model_uri_get in ["gpt-4o-mini", "gpt-4o"]:
            self.answer_from_proxiapi(entered_text, system_message, user_temperature, self.gpt_model_uri_get)
        else:
            self.answer_from_yandex_gpt(entered_text, system_message, user_temperature, self.default_folder, self.api_key)

4. Добавляем в интерфейс главного окна ввод ключа proxyapi

self.main_menu.add_command(label="Авторизация ProxyAPI", command=self.show_registration_proxiapi)

5. Добавляем функцию ввода ключа proxy

# Функция окна Авторизации ProxiAPI
    def show_registration_proxiapi(self):
        registration_window = tk.Toplevel(self.root)
        self.registration_window_close = registration_window
        registration_window.title("Авторизация в ProxyAPI")

        # Добавление элементов интерфейса
        tk.Label(registration_window, text="Введите ключ proxyapi").grid(row=0, column=0, padx=10, pady=10)
        self.proxy_key_entry = tk.Text(registration_window, wrap="word", width=40, height=1)     
        self.proxy_key_entry.bind('<KeyRelease>', lambda event: self.validate_input(event, registration_window))
        self.proxy_key_entry.grid(row=1, column=0, padx=10, pady=0)

        register_button = tk.Button(registration_window, text=" Войти ", command=self.register_proxiapi_user)
        register_button.grid(row=2, columnspan=2, padx=10, pady=15)

        # Добавление контекстного меню
        context_menu = tk.Menu(registration_window, tearoff=0)
        context_menu.add_command(label="Копировать", command=lambda: self.copy_text_to_clipboard(self.proxy_key_entry))
        context_menu.add_command(label="Вставить", command=lambda: self.paste_text_from_clipboard(self.proxy_key_entry))
        self.proxy_key_entry.bind("<Button-3>", lambda event: context_menu.post(event.x_root, event.y_root)) # Привязка контекстного меню к правой кнопке мыши

        # Обновлённая геометрия
        registration_window_width = 355
        registration_window_height = 120  # Новая высота
        registration_window.resizable(False, False)
        screen_width = self.root.winfo_screenwidth()
        screen_height = self.root.winfo_screenheight()
        x = (screen_width - registration_window_width) // 2
        y = (screen_height - registration_window_height) // 2  
        registration_window.geometry(f"{registration_window_width}x{registration_window_height}+{x}+{y}")

        # Настройка модальности
        registration_window.transient(self.root)
        registration_window.wait_visibility()
        registration_window.grab_set()
        registration_window.focus_force()
        self.root.wait_window(registration_window)
  1. Добавляем функцию сохранения ключа proxy в файл JSON

# функция для сохранения ключа ProxiAPI в файл JSON:
    def register_proxiapi_user(self):
        proxy_api_key = self.proxy_key_entry.get("1.0", "end-1c").strip()

        if len(proxy_api_key.strip()) > 40:
            messagebox.showwarning("Предупреждение", "Превышено количество символов ключа ProxyAPI (максимум 40 символов).")
            return    

        if not proxy_api_key.strip():
            messagebox.showwarning("Предупреждение", "Введите ключ ProxyAPI")
            return

        self.reg_proxi_apy = proxy_api_key # Значение self.reg_proxi_apy потом используется при запросе ProxyAPI

        filename = "Login_SmartiksGPT.json"

        # Загружаем существующие данные из файла, если файл существует
        if os.path.exists(filename):
            try:
                with open(filename, "r") as file:
                    existing_data = json.load(file)
            except json.JSONDecodeError:
                existing_data = {}  # Если файл пустой или поврежден, создаем пустой словарь
        else:
            existing_data = {}  # Если файл не существует, создаем пустой словарь

        # Добавляем новый ключ к существующим данным
        existing_data["self.reg_proxi_apy"] = self.reg_proxi_apy

        # Сохраняем обновленные данные обратно в файл
        try:
            with open(filename, "w") as file:
                json.dump(existing_data, file, indent=4)
            print(f"Ключ ProxyAPI успешно добавлен в JSON файл '{filename}'.")
        except Exception as e:
            print(f"Ошибка при сохранении файла: {e}")
            messagebox.showerror("Ошибка", "Не удалось сохранить ключ ProxyAPI.")
            return

        # Закрываем окно авторизации
        self.registration_window_close.destroy()

Вот и всё, два дня и готово. Теперь наслаждаемся импортными ответами на отечественные промпты. Готовый и рабочий код копируем в блокнот, сохраняем с расширением.py (естественно у вас установлен интерпретатор Питона как рассказано в предыдущей статье) например SmartikGPT.py в кодировке UTF-8 (при сохранении выбрать нужную кодировку) и всё должно заработать. Можно данный код скомпилировать в готовый exe файл, командой — в cmd или Windows PowerShell.

pyinstaller --onefile –noconsole SmartiksGPT.py
e462f173a1319ab96721a01d357050c2.JPG

Код программы SmartiksGPT

# Импорт библиотек
import tkinter as tk
from tkinter import ttk
from tkinter import Menu
from tkinter import messagebox 
import requests
import json
import os
from transliterate import translit
import winsound 
import re                     


# Определение класса DraggableWindow - главное окно
class DraggableWindow:
    def __init__(self, root):
        # Инициализация окна
        self.root = root
        self.root.title("SmartiksGPT")                                        # Заголовок окна
        self.is_dragging = False
        initial_width = 838
        initial_height = 600
        screen_width = root.winfo_screenwidth()
        screen_height = root.winfo_screenheight()
        x = (screen_width - initial_width) // 2
        y = (screen_height - initial_height) // 2
        self.root.geometry(f"{initial_width}x{initial_height}+{x}+{y}")       # Установка размеров и позиции окна
        self.root.option_add('*BorderWidth', 3)
        self.root.option_add('*highlightThickness', 0)
        self.root.resizable(False, False)                                     # Запрет изменения размеров окна
        
        # Константы для proxyAPI
        self.PROXY_API_URL = "https://api.proxyapi.ru/openai/v1/chat/completions"

        self.create_specialization_data()

        # Создание меню 
        self.root = root
        self.main_menu = tk.Menu(root)
        self.info_menu = tk.Menu(self.main_menu, tearoff=0)
        self.main_menu.add_cascade(label="Информация", menu=self.info_menu)        
        self.main_menu.add_command(label="Авторизация Yandex", command=self.show_registration_yandex)  # Добавление пункта "Регистрация"
        self.main_menu.add_command(label="Авторизация ProxyAPI", command=self.show_registration_proxiapi)  
        self.info_menu.add_command(label="Руководство", command=self.show_guide)
        self.info_menu.add_command(label="О программе", command=self.show_about)       
        self.root.config(menu=self.main_menu)
                                 
        self.gpt_model_uri = tk.StringVar(value="yandexgpt")                       # Присваиваем переменной self.gpt_model_uri строковое значение "yandexgpt", эта переменная используется в строке "modelUri": f"gpt://...логин папки.../{self.gpt_model_uri_get}
        self.gpt_model_uri_get = self.gpt_model_uri.get()                          # Присваиваем переменной self.gpt_model_uri_get значение self.gpt_model_uri (очищаем от ненужных атрибутов tk.StringVar что бы корректно работало в запросе"modelUri": f"gpt://...логин папки.../{self.gpt_model_uri_get})

        self.description_text = ""                                                 # Устанавливаем значение self.description_text пустое
        
        self.system_message = "Ты умный ассистент"
        
        self.selected_value = tk.StringVar()                                       # Переменная для хранения значения креативности
        
        self.selected_value.set("0.6")                                             # Устанавливаем значение креативности по умолчанию

        self.selected_specialization = tk.StringVar(value="Список специализаций")  # Присваиваем переменной self.selected_specialization строковое значение value="Список специализаций"

        # Добавляем строку чтобы создать атрибут selected_specialization
        self.selected_specialization = tk.StringVar(root)
        self.selected_specialization.set("Список специализаций")

        # Виджет для вывода результата
        self.result_label = tk.Text(self.root, wrap="word", width=100, height=20, padx=5, state='disabled')
        self.result_label.grid(row=0, column=0, columnspan=10, sticky="ew", pady=2)

        # Метка для ввода сообщения пользователя
        self.entry_label = tk.Label(self.root, text="Введите сообщение :")                                       # Cоздаём экземпляр класса tk.Label (просто текст) и присваивается ему наименование self.entry_label
        self.entry_label.grid(row=1, column=0, padx=5, pady=10)

        # Виджет для ввода сообщения пользователем
        self.entry = tk.Text(self.root, wrap="word", width=70, height=5, padx=2)                                 # Cоздаём экземпляр класса tk.Text (текстовый виджет) и присваивается ему наименование self.entry, wrap="word" означает  что текст будет переносится по словам  
        self.entry.grid(row=1, column=1, columnspan=5, pady=10, padx=10, sticky="ew")
        self.entry_context_menu = tk.Menu(root, tearoff=0)
        self.entry_context_menu.add_command(label="Копировать", command=self.copy_entry_text)
        self.entry_context_menu.add_command(label="Вставить", command=self.paste_entry_text)
        self.entry.bind("<Button-3>", self.show_entry_context_menu)

        # Кнопка для отправки сообщения
        self.submit_button = tk.Button(self.root, text="Отправить", command=self.on_submit)
        self.submit_button.grid(row=1, column=6, pady=5)

        # Назначение клавиш Enter и Shift-Enter для отправки сообщения
        self.entry.bind("<Return>", self.handle_enter_key)
        self.entry.bind("<Shift-Return>", self.handle_shift_enter_key)
        self.entry.focus_set()

        # Контекстное меню для результата
        self.context_menu = tk.Menu(root, tearoff=0)
        self.context_menu.add_command(label="Копировать", command=self.copy_text)
        self.result_label.bind("<Button-3>", self.show_context_menu)

        # Кнопка и виджет для специализации
        self.specialization_button = tk.Button(self.root, text="Специализация", command=self.show_specialization_popup)
        self.specialization_button.grid(row=2, column=0, pady=5, padx=15, sticky="w")
        self.specialization_widget = tk.Text(self.root, wrap="word", width=40, height=1, padx=2, state='disabled')
        self.specialization_widget.grid(row=2, column=1, pady=5, padx=0, sticky="w")

        # Установка по умолчанию текста "Ассистент" в виджет специализации
        self.specialization_widget.config(state='normal')  # Включаем режим редактирования
        self.specialization_widget.insert(tk.END, "Ассистент")
        self.specialization_widget.config(state='disabled')  # Заново отключаем режим редактирования

        # Кнопка для установки креативности
        self.creativity_button = tk.Button(self.root, text="Креативность", command=self.show_creativity_popup)
        self.creativity_button.grid(row=2, column=2, pady=5, padx=5, sticky="e")

        # Виджет для отображения числового значения креативности
        self.numbers_widget = tk.Text(self.root, wrap="word", width=3, height=1, state='disabled')
        self.numbers_widget.grid(row=2, column=3, pady=5, padx=15, sticky="w")

        # Кнопка для очистки беседы
        self.clear_button = tk.Button(self.root, text="Очистить беседу", command=self.clear_result_label)
        self.clear_button.grid(row=2, column=6, pady=5, padx=5, sticky="w")

        # Обновляем виджет с числовым значением при создании окна
        self.update_numbers_widget()

        # Словарь для хранения данных специализации
        self.specialization_data = {}

        # Виджет Выбор модели YandexGPT
        self.model_selection_frame = tk.Frame(self.root)
        self.model_selection_frame.grid(row=3, column=0, columnspan=7, pady=10, padx=10, sticky="w")

        tk.Label(self.model_selection_frame, text="Используемая модель:", anchor="w").grid(row=0, column=0, sticky="w")

        tk.Radiobutton(self.model_selection_frame,text="YandexGPT",variable=self.gpt_model_uri,value="yandexgpt",command=self.update_gpt_model_uri).grid(row=0, column=1, padx=5, sticky="w")
        tk.Radiobutton(self.model_selection_frame,text="YandexGPT-lite",variable=self.gpt_model_uri,value="yandexgpt-lite",command=self.update_gpt_model_uri).grid(row=0, column=2, padx=5, sticky="w")
        tk.Radiobutton(self.model_selection_frame,text="GPT-4o mini",variable=self.gpt_model_uri,value="gpt-4o-mini",command=self.update_gpt_model_uri).grid(row=0, column=4, padx=5, sticky="w")
        tk.Radiobutton(self.model_selection_frame,text="GPT-4o",variable=self.gpt_model_uri,value="gpt-4o",command=self.update_gpt_model_uri).grid(row=0, column=5, padx=5, sticky="w")

        # Настройка фиксированной ширины для первой колонки
        self.root.grid_columnconfigure(0, weight=1)
        self.root.grid_columnconfigure(1, weight=0)

        default_folder, api_key = self.read_login_credentials('Login_SmartiksGPT.json') # Загружаем из файла Login_SmartiksGPT.json данные в переменные default_folder и api_key
        if default_folder is not None and api_key is not None:
            print("Значения из файла успешно загружены:")
            print("Default Folder:", default_folder)
            print("API Key:", api_key)
        else:
            messagebox.showwarning("Внимание", "Для работы программы необходимо авторизоваться в YandexGPT API и ввести в программу данные авторизации - идентификатор default folder и API ключ")   # Системное сообщение если нет файла с default_folder и api_key
            print("Не удалось загрузить значения из файла.")

    # Функция обновления значения переменной self.gpt_model_uri_get для использования модели yandexgpt или yandexgpt-lite
    def update_gpt_model_uri(self):
        #self.gpt_model_uri.set(value)                              # Присваиваем переменной self.gpt_model_uri выбранное значение tk.Radiobutton
        self.gpt_model_uri_get = self.gpt_model_uri.get()          # Присваиваем переменной self.gpt_model_uri_get значение self.gpt_model_uri (очищаем от ненужных атрибутов tk.StringVar что бы корректно работало в запросе"modelUri": f"gpt://...логин папки.../{self.gpt_model_uri_get})
        print(f"Выбранная модель: {self.gpt_model_uri.get()}")

    # Функция окна Авторизации ProxyAPI
    def show_registration_proxiapi(self):
        registration_window = tk.Toplevel(self.root)
        self.registration_window_close = registration_window
        registration_window.title("Авторизация в ProxyAPI")

        # Добавление элементов интерфейса
        tk.Label(registration_window, text="Введите ключ proxyapi").grid(row=0, column=0, padx=10, pady=10)
        self.proxy_key_entry = tk.Text(registration_window, wrap="word", width=40, height=1)     
        self.proxy_key_entry.bind('<KeyRelease>', lambda event: self.validate_input(event, registration_window))
        self.proxy_key_entry.grid(row=1, column=0, padx=10, pady=0)


        register_button = tk.Button(registration_window, text=" Войти ", command=self.register_proxiapi_user)
        register_button.grid(row=2, columnspan=2, padx=10, pady=15)

        # Добавление контекстного меню
        context_menu = tk.Menu(registration_window, tearoff=0)
        context_menu.add_command(label="Копировать", command=lambda: self.copy_text_to_clipboard(self.proxy_key_entry))
        context_menu.add_command(label="Вставить", command=lambda: self.paste_text_from_clipboard(self.proxy_key_entry))
        self.proxy_key_entry.bind("<Button-3>", lambda event: context_menu.post(event.x_root, event.y_root)) # Привязка контекстного меню к правой кнопке мыши

        # Обновлённая геометрия
        registration_window_width = 355
        registration_window_height = 120  # Новая высота
        registration_window.resizable(False, False)
        screen_width = self.root.winfo_screenwidth()
        screen_height = self.root.winfo_screenheight()
        x = (screen_width - registration_window_width) // 2
        y = (screen_height - registration_window_height) // 2  
        registration_window.geometry(f"{registration_window_width}x{registration_window_height}+{x}+{y}")

        # Настройка модальности
        registration_window.transient(self.root)
        registration_window.wait_visibility()
        registration_window.grab_set()
        registration_window.focus_force()
        self.root.wait_window(registration_window)

    # функция для сохранения ключа ProxyAPI в файл JSON:
    def register_proxiapi_user(self):
        proxy_api_key = self.proxy_key_entry.get("1.0", "end-1c").strip()

        if len(proxy_api_key.strip()) > 40:
            messagebox.showwarning("Предупреждение", "Превышено количество символов ключа ProxyAPI (максимум 40 символов).")
            return    

        if not proxy_api_key.strip():
            messagebox.showwarning("Предупреждение", "Введите ключ ProxyAPI")
            return

        self.reg_proxi_apy = proxy_api_key # Значение self.reg_proxi_apy потом используется при запросе ProxyAPI

        filename = "Login_SmartiksGPT.json"

        # Загружаем существующие данные из файла, если файл существует
        if os.path.exists(filename):
            try:
                with open(filename, "r") as file:
                    existing_data = json.load(file)
            except json.JSONDecodeError:
                existing_data = {}  # Если файл пустой или поврежден, создаем пустой словарь
        else:
            existing_data = {}  # Если файл не существует, создаем пустой словарь

        # Добавляем новый ключ к существующим данным
        existing_data["self.reg_proxi_apy"] = self.reg_proxi_apy

        # Сохраняем обновленные данные обратно в файл
        try:
            with open(filename, "w") as file:
                json.dump(existing_data, file, indent=4)
            print(f"Ключ ProxyAPI успешно добавлен в JSON файл '{filename}'.")
        except Exception as e:
            print(f"Ошибка при сохранении файла: {e}")
            messagebox.showerror("Ошибка", "Не удалось сохранить ключ ProxyAPI.")
            return

        # Закрываем окно авторизации
        self.registration_window_close.destroy()

    # Функция окна Авторизации Yandex
    def show_registration_yandex(self):
        registration_window = tk.Toplevel(self.root)
        self.registration_window_close = registration_window  # Создаём переменную self.registration_window_close для использования в функции def register_user(self) для закрытия окна регистрации
        registration_window.title("Авторизация в YandexGPT API")

        # Добавление элементов интерфейса для регистрации
        tk.Label(registration_window, text="Введите идентификатор default folder:").grid(row=0, column=0, padx=10, pady=10)
        self.name_entry = tk.Text(registration_window,wrap="word", width=40, height=1)     
        self.name_entry.bind('<KeyRelease>', lambda event: self.validate_input(event, registration_window))
        self.name_entry.grid(row=1, column=0, padx=10, pady=0)

        tk.Label(registration_window, text="Введите API ключ:").grid(row=2, column=0, padx=10, pady=10)
        self.password_entry = tk.Text(registration_window, wrap="word", width=40, height=1)
        self.password_entry.bind('<KeyRelease>', lambda event: self.validate_input(event, registration_window))
        self.password_entry.grid(row=3, column=0, padx=10, pady=0)

        register_button = tk.Button(registration_window, text=" Войти ", command=self.register_user)
        register_button.grid(row=4, columnspan=2, padx=10, pady=15)

        # Добавление контекстного меню для self.name_entry
        name_context_menu = tk.Menu(registration_window, tearoff=0)
        name_context_menu.add_command(label="Копировать", command=lambda: self.copy_text_to_clipboard(self.name_entry))
        name_context_menu.add_command(label="Вставить", command=lambda: self.paste_text_from_clipboard(self.name_entry))
        self.name_entry.bind("<Button-3>", lambda event: name_context_menu.post(event.x_root, event.y_root))

        # Добавление контекстного меню для self.password_entry
        password_context_menu = tk.Menu(registration_window, tearoff=0)
        password_context_menu.add_command(label="Копировать", command=lambda: self.copy_text_to_clipboard(self.password_entry))
        password_context_menu.add_command(label="Вставить", command=lambda: self.paste_text_from_clipboard(self.password_entry))
        self.password_entry.bind("<Button-3>", lambda event: password_context_menu.post(event.x_root, event.y_root))

       # Установка размеров и позиции окна регистрации
        registration_window_width = 355
        registration_window_height = 194
        registration_window.resizable(False, False)  # Запрет изменения размеров окна
        screen_width = self.root.winfo_screenwidth()
        screen_height = self.root.winfo_screenheight()
        x = (screen_width - registration_window_width) // 2
        y = (screen_height - registration_window_height) // 2  
        registration_window.geometry(f"{registration_window_width}x{registration_window_height}+{x}+{y}")

        # Настройка окна регистрации как transient и открытие его в модальном режиме
        registration_window.transient(self.root)
        registration_window.wait_visibility()  # Ждем, пока окно станет видимым
        registration_window.grab_set_global()  # Глобально захватываем фокус

        # Захват фокуса и установка активности окна регистрации
        registration_window.grab_set()
        registration_window.focus_force()
        self.root.wait_window(registration_window)

    # Функция проверки символов в окне Авторизации и записи в Json файл 
    def register_user(self):
       
        # Получаем значения из виджетов
        default_folder_reg = self.name_entry.get("1.0", "end-1c").strip()
        api_key_reg = self.password_entry.get("1.0", "end-1c").strip()

        # Проверка на отсутствие символов и превышение количества символов
        if not default_folder_reg.strip():
            messagebox.showwarning("Предупреждение", "Введите идентификатор default folder")
            return
        if len(default_folder_reg.strip()) > 40:
            messagebox.showwarning("Предупреждение", "Превышено количество символов идентификаторе default folder (максимум 40 символов).")
            return
    
        if not api_key_reg.strip():
            messagebox.showwarning("Предупреждение", "Введите API ключ")
            return
        if len(api_key_reg.strip()) > 40:
            messagebox.showwarning("Предупреждение", "Превышено количество символов в API ключе (максимум 40 символов)")
            return

        # Проверка, что все символы логина и пароля являются латинскими буквами или цифрами
        if not default_folder_reg.isalnum() or not default_folder_reg.isascii():
            messagebox.showwarning("Предупреждение", "Идентификатор default folder должен содержать только латинские буквы и цифры")
            return
        if not api_key_reg.isalnum() or not api_key_reg.isascii():
            messagebox.showwarning("Предупреждение", "API ключ должен содержать только латинские буквы и цифры")
            return

        self.default_folder = default_folder_reg
        self.api_key = api_key_reg

        # Создаем словарь для JSON
        data = {
            "self.default_folder": self.default_folder,
            "self.api_key": self.api_key
        }

        filename = "Login_SmartiksGPT.json"  # Создаем JSON файл
        with open(filename, "w") as file:
            json.dump(data, file, indent=4)

        print(f"JSON файл '{filename}' создан успешно.")

        self.registration_window_close.destroy()                         # Закрываем окно регистрации
   
    # Функция проверки вводимых символов (должны быть латинские или цифры)
    def validate_input(self, event, registration_window):
        key_code = event.keycode                   # Получаем код клавиши
    

        if key_code == 8 or key_code in {37, 38, 39, 40} or (event.keysym == "Shift_L" or event.keysym == "Shift_R" or event.keysym == "Alt_L" or event.keysym == "Alt_R"): # Проверяем, что это не Backspace, стрелки или Shift или Alt что бы не было ложного срабатывания messagebox
            return True

        new_text = event.widget.get("1.0", "end-1c")

        max_chars = 40                           # Устанавливаем количество символов
        if len(new_text) >= max_chars:           
            return "break"                       # Останавливаем ввод новых символов
        
        if new_text == "":                                                         # Проверяем, что поле ввода не пустое
            return True
        
        if new_text and not re.match(r'^[a-zA-Z0-9\s]*$', new_text):
            registration_window.grab_set()
            tk.messagebox.showerror("Предупреждение", "Допустимы только латинские буквы и цифры")
            return False
        

    # Функция чтения файла Логина и пароля self.default_folder и self.api_key
    def read_login_credentials(self, file_path):
        try:
            with open(file_path, 'r') as file:
                data = json.load(file)
                self.default_folder = data.get('self.default_folder')
                self.api_key = data.get('self.api_key')
                self.reg_proxi_apy = data.get('self.reg_proxi_apy')
                return self.default_folder, self.api_key
        except FileNotFoundError:
            print(f"Файл {file_path} не найден.")
            return None, None
        except json.JSONDecodeError:
            print(f"Ошибка при декодировании файла {file_path}.")
            return None, None

    # Обработчик события для клавиши Enter
    def handle_enter_key(self, event):
        
        if event.state & 0x1:  # Проверка, что нажата клавиша Shift (bitwise AND с 0x1)
            self.entry.insert(tk.INSERT, '\n')  # Вставляем символ новой строки
        else:
            self.on_submit()

    def handle_shift_enter_key(self, event):       
        
        self.entry.insert(tk.INSERT, '\n')

    # Функция всплывающего окна для установки значения креативности в главном окне
    def show_creativity_popup(self):

        popup = tk.Toplevel(self.root)
        popup.title("Выберите значение")
        values = ["0.0", "0.1", "0.2", "0.3", "0.4", "0.5", "0.6", "0.7", "0.8", "0.9", "1.0"]
        dropdown = tk.OptionMenu(popup, self.selected_value, *values)
        dropdown.pack(pady=10)
        apply_button = tk.Button(popup, text="Применить", command=lambda: self.update_temperature_and_close(popup))
        apply_button.pack(pady=10)
        # Установка размеров и позиции всплывающего окна
        popup_width = 170
        popup_height = 100
        screen_width = self.root.winfo_screenwidth()
        screen_height = self.root.winfo_screenheight()
        x = (screen_width - popup_width) // 2
        y = (screen_height - popup_height) // 2
        popup.geometry(f"{popup_width}x{popup_height}+{x}+{y}")
        popup.transient(self.root)
        popup.grab_set()
        popup.resizable(width=False, height=False) # Блокировка изменения размеров окна
        popup.focus_force()  # Установка фокуса (всплывающее окно становиться активным)
        self.root.wait_window(popup)

    # Функция для обновления виджета с числовым значением
    def update_numbers_widget(self):
        
        self.numbers_widget.config(state='normal')
        self.numbers_widget.delete("1.0", tk.END)
        self.numbers_widget.insert(tk.END, self.selected_value.get())
        self.numbers_widget.config(state='disabled')


    # Функция для обновления температуры и закрытия всплывающего окна
    def update_temperature_and_close(self, popup):
        
        self.update_numbers_widget()
        popup.destroy()


    # Функция при нажатии кнопки "Отправить"
    def on_submit(self):
        entered_text = self.entry.get("1.0", "end-1c").strip()               # Получение текста из виджета self.entry

         # Если entered_text пусто, показываем всплывающее сообщение "Введите описание специализации"
        if not entered_text:
            messagebox.showwarning("Предупреждение", "Введите сообщение")
            return
        
        # Проверка количества символов в сообщении
        entered_text_previshenie = len(entered_text) - 19000        # Вычисление количества превысивших символов
        if len(entered_text) > 19000: 
            messagebox.showwarning("Предупреждение", f"Количество символов в сообщении превысило лимит на {entered_text_previshenie} шт.")
            return
        
        if not entered_text:  # Проверка, что введенный текст не пустой
            return
        user_message = f" Пользователь: \n{entered_text}\n"                   # Вставка в переменную user_message выражения Пользователь: \n{entered_text}\n в котором находится значение переменной entered_text и всё это обрамляется {} т.к. стоит f
        self.insert_to_result_label(user_message)
        self.entry.delete("1.0", tk.END)


        # Устанавливается значение переменной system_message в зависимости от наличия текста в переменной self.description_text (описание промпта при выборе из списка специализаций)
        if self.description_text:                                            # Если self.description_text истинно (там есть какоке то значение)
            system_message = self.description_text                           # то system_message примет значение self.system_message = "Ты умный ассистент"
        else:                                                                # Иначе (self.description_text пусто (ложно)
            system_message = self.system_message                             # system_message примет значение self.system_message

        # Обновляем значение параметра temperature в методе answer_from_yandex_gpt
        user_temperature_str = self.selected_value.get()
        if not user_temperature_str:
            return
        user_temperature = float(user_temperature_str)                              # Преобразование строки значения температуры в число с плавающей запятой и присваивание значения user_temperature
        self.user_temperature = user_temperature                                    # Присваивание значения user_temperature в self.user_temperature
    

        # Выбор модели и вызов соответствующей функции
        #selected_model = self.gpt_model_uri.get()
        
        if self.gpt_model_uri_get in ["gpt-4o-mini", "gpt-4o"]:
            self.answer_from_proxiapi(entered_text, system_message, user_temperature, self.gpt_model_uri_get)
        else:
            self.answer_from_yandex_gpt(entered_text, system_message, user_temperature, self.default_folder, self.api_key)



    # Функция очистки беседы при нажатии кнопки "Очистить"
    def clear_result_label(self):
        self.result_label.config(state='normal')
        self.result_label.delete('1.0', tk.END)
        self.result_label.config(state='disabled')

    # Функция для вставки сообщение окна беседы с YandexGPT result_label
    def insert_to_result_label(self, message):
        self.result_label.config(state='normal')
        self.result_label.insert(tk.END, message)
        self.result_label.see(tk.END)
        self.result_label.config(state='disabled')

    # Функция формирование запроса к Yandex GPT
    def answer_from_yandex_gpt(self, user_input, system_message, user_temperature, default_folder, api_key):
        
        prompt = {
            "modelUri": f"gpt://{default_folder}/{self.gpt_model_uri_get}",
            "completionOptions": {
                "stream": False,
                "temperature": user_temperature,
                "maxTokens": "2000"
            },
            "messages": [
                {"role": "system", "text": system_message},
                {"role": "user", "text": user_input}
            ]
        }

        #print("Prompt temperature:", prompt["completionOptions"]["temperature"])

        # Отправка запроса к Yandex GPT
        url = "https://llm.api.cloud.yandex.net/foundationModels/v1/completion"
        headers = {
            "Content-Type": "application/json",
            "Authorization": f"Api-Key {api_key}"
        }

        response = requests.post(url, headers=headers, json=prompt)
        result = response.text

        result_json = json.loads(result)
        assistant_text = result_json['result']['alternatives'][0]['message']['text']
        response_temperature = result_json['result']['alternatives'][0]['message'].get('temperature')
        if response_temperature is not None:
            print("Response temperature:", response_temperature)

        # Проверяем, чтобы текст не был добавлен повторно
        if not self.result_label.get("1.0", tk.END).strip().endswith(assistant_text):
            self.insert_to_result_label(f"YandexGPT: \n{assistant_text}\n\n")



         # Выводим значение system_message в консоль
        print("Температура запроса:", prompt["completionOptions"]["temperature"])    
        print("Системное сообщение:", system_message)       
        print("Используемая модель:", self.gpt_model_uri_get)


        # Вывод данных специализации в консоль
        #self.print_specialization_data()
        
        # Вывод ответа от YandexGPT в консоль
        print(result)

    # Создание нового всплывающего окна (Toplevel) "Специализация" и установка его заголовка
    def show_specialization_popup(self):
        
        popup = tk.Toplevel(self.root)
        popup.title("Специализация")
        
        # Устанавливает значение креативности по умолчанию
        self.selected_value.set("0.0")
        
        # Установка "Список специализаций" по умолчанию при каждом запуске
        self.selected_specialization.set("Список специализаций")

        # Загрузка данных из файла specialization_data.pkl
        try:
            with open("specialization_data.json", "rb") as file:
                self.specialization_data = json.load(file)
        except FileNotFoundError:
            print("Файл specialization_data.json не найден.")
            # Если файл отсутствует, устанавливаем пустой словарь
            self.specialization_data = {}
            # Присваиваем "Список специализаций" при отсутствии файла
            self.selected_specialization.set("Список специализаций")

        # Получение списка name из словаря self.specialization_data 
        specialization_keys = [spec['name'] for spec in self.specialization_data.values()]

        tk.Label(popup, text="Специализация").grid(row=0, column=0, pady=10)

        # Ограничение длины ключей до символов
        max_key_length = 40
        filtered_specialization_keys = [key[:max_key_length] for key in specialization_keys]

        # Создание виджета OptionMenu и передача списка ключей
        if filtered_specialization_keys:                                                                                   # Проверяет, есть ли какие-либо значения в переменной filtered_specialization_keys
            specialization_dropdown = tk.OptionMenu(popup, self.selected_specialization, *filtered_specialization_keys, command=self.on_specialization_select)    # Если условие из предыдущей строчки истинно, то создается выпадающий список (OptionMenu). self.selected_specialization это переменная которая будет использоваться для отслеживания выбранного значения
        else:                                                                                                              # Если в выпадающем списке (переменная filtered_specialization_keys) нет значений
            specialization_dropdown = tk.OptionMenu(popup, self.selected_specialization, "Нет данных")                     # будет только один пункт с текстом "Нет данных"
        specialization_dropdown.grid(row=0, column=1, columnspan=2, padx=25, pady=10, sticky="ew")                         # Размещение выпадающего списка на сетке окна
        specialization_dropdown.config(height=1, anchor="n", width=40)                                                     # anchor="n" выравнивает текст по высоте внутри виджета и смещает его сверху в центр

        delete_button = tk.Button(popup, text=" Удалить ", command=lambda: self.delete_selected_specialization(popup), fg="red", activeforeground="red")
        delete_button.grid(row=0, column=3, padx=14, pady=10, sticky="e")

        # Создание виджета для ввода параметров специализации
        tk.Label(popup, text="Создание и редактирование  специализации:").grid(row=1, column=0, columnspan=7, pady=10)

        # Создание метки и виджета для ввода названия специализации
        tk.Label(popup, text="Название:").grid(row=2, column=0, padx=5, pady=10)
        self.specialization_entry = tk.Text(popup,wrap="word", width=40, height=1, padx=2)
        self.specialization_entry.bind("<Key>", self.enforce_maxlength)                # Привязываем метод ограничения символов (elf.enforce_maxlength) к событию Key
        self.specialization_entry.grid(row=2, column=1, padx=5, pady=10)
        self.specialization_entry.bind("<KeyPress-Return>", lambda e: "break")        # Отключаем клавишу Enter в виджете что бы корректно сохранялось название Специализации
        

        # Добавление контекстного меню для виджета specialization_entry
        entry_context_menu = Menu(popup, tearoff=0)
        entry_context_menu.add_command(label="Копировать", command=lambda: self.copy_text_to_clipboard(self.specialization_entry))
        entry_context_menu.add_command(label="Вставить", command=lambda: self.paste_text_from_clipboard(self.specialization_entry))
        self.specialization_entry.bind("<Button-3>", lambda event: entry_context_menu.post(event.x_root, event.y_root))

        # Создание метки и виджета для выбора параметра креативности
        tk.Label(popup, text="Креативность:").grid(row=3, column=0, padx=5, pady=10)
        creativity_values = ["0.0", "0.1", "0.2", "0.3", "0.4", "0.5", "0.6", "0.7", "0.8", "0.9", "1.0"]
        self.creativity_dropdown = tk.OptionMenu(popup, self.selected_value, *creativity_values)
        self.creativity_dropdown.grid(row=3, column=1, padx=5, pady=10)

        # Создание метки и виджета для ввода описания специализации
        tk.Label(popup, text="Описание:").grid(row=4, column=0, padx=5, pady=10)
        self.description_text_spec = tk.Text(popup, wrap="word", width=40, height=5, padx=2)
        self.description_text_spec.grid(row=4, column=1, padx=5, pady=10)

        # Добавление контекстного меню для виджета self.description_text_spec
        description_context_menu = tk.Menu(popup, tearoff=0)
        description_context_menu.add_command(label="Копировать", command=lambda: self.copy_text_to_clipboard(self.description_text_spec))
        description_context_menu.add_command(label="Вставить", command=lambda: self.paste_text_from_clipboard(self.description_text_spec))
        self.description_text_spec.bind("<Button-3>", lambda event: description_context_menu.post(event.x_root, event.y_root))

        # Создание кнопки для применения и привязка к ней метода apply_specialization с передачей параметров
        self.apply_button = tk.Button(popup, text="Применить", command=lambda: self.apply_specialization(popup, self.specialization_entry.get("1.0", tk.END), self.description_text_spec))
        self.apply_button.grid(row=4, column=3, padx=5, pady=10)

        # Установка размеров и позиции всплывающего окна
        popup_width = 530
        popup_height = 307
        popup.resizable(False, False)                        # Запрет изменения размеров окна
        screen_width = self.root.winfo_screenwidth()
        screen_height = self.root.winfo_screenheight()
        x = (screen_width - popup_width) // 2
        y = (screen_height - popup_height) // 2
        popup.geometry(f"{popup_width}x{popup_height}+{x}+{y}")

        # Настройка всплывающего окна как transient и открытие его в модальном режиме
        popup.transient(self.root)
        popup.wait_visibility()                                                            # Ждем, пока окно станет видимым
        popup.grab_set_global()                                                            # Глобально захватываем фокус

        # Захват фокуса и установка активности всплывающего окна
        popup.grab_set()
        popup.focus_force()
        self.root.wait_window(popup.winfo_toplevel())

    # Функция ограничения количества символов вводимых в название специализации
    def enforce_maxlength(self, event):
        max_chars = 40
        if len(self.specialization_entry.get("1.0", "end-1c")) >= max_chars:
            if event.keysym not in ["BackSpace", "Delete"]:                                 # Разрешаем удаление символов
                return "break"


    # Получение данных о выбранной специализации из self.specialization_data
    def on_specialization_select(self, specialization):
        
        specialization_data = self.specialization_data.get(specialization, {})

        self.key = specialization_data.get('key', '')
    
        # Обновление виджетов в соответствии с данными о специализации
        self.specialization_entry.delete('1.0', tk.END)  # Очистка текстового поля
        self.specialization_entry.insert('1.0', specialization_data.get('name', ''))  # Вставка названия специализации
    
        selected_creativity = specialization_data.get('creativity', '')  # Получение креативности специализации
        self.selected_value.set(selected_creativity)  # Установка выбранной креативности в выпадающем списке
    
        self.description_text_spec.delete('1.0', tk.END)  # Очистка текстового поля
        self.description_text_spec.insert('1.0', specialization_data.get('description', ''))  # Вставка описания специализации    

    # Функция Копировать  для окна "Специализация"
    def copy_text_to_clipboard(self, widget):
        selected_text = widget.get("sel.first", "sel.last")
        self.root.clipboard_clear()
        self.root.clipboard_append(selected_text)
        self.root.update()


    def paste_text_from_clipboard(self, widget):
        try:
            # Получение выделенного текста в виджете
            selected_text = widget.get(tk.SEL_FIRST, tk.SEL_LAST)
        
            # Если есть выделенный текст, удаляем его
            if selected_text:
                widget.delete(tk.SEL_FIRST, tk.SEL_LAST)
        except tk.TclError:
            # Обработка ошибки, если выделенного текста нет
            pass

        # Вставка текста из буфера обмена в виджет
        text_to_paste = self.root.clipboard_get()
        widget.insert(tk.INSERT, text_to_paste)   


    # Функция кнопки "Применить" в окне "Специализация"
    def apply_specialization(self, popup, specialization_name, description_text_spec):
        if isinstance(description_text_spec, tk.Text):                 # Проверка, является ли description_text_spec объектом класса tk.Text. Если это так, то извлекается текст из виджета tk.Text и сохраняется в переменной system_message
            system_message = description_text_spec.get("1.0", tk.END).strip()
        else:                                                     # Если нет, то используется строковое представление description_text_spec
            system_message = str(description_text_spec).strip()  

        variable_name = specialization_name[:40]                  # Создание переменной variable_name, которая содержит первые 40 символов из строки specialization_name. Это используется в качестве уникального идентификатора для данных о специализации.
        
        formatted_text = specialization_name                      # Создание переменной formatted_text, которая получает значение specialization_name

        # Если specialization_name пусто, показываем всплывающее сообщение "Введите название специализации"
        if not specialization_name.strip():                                                # strip() очищает specialization_name от символов пробела и перевода строки для корректной работы условия
            messagebox.showwarning("Предупреждение", "Введите название специализации")
            return

        # Если system_message пусто, показываем всплывающее сообщение "Введите описание специализации"
        if not system_message:
            messagebox.showwarning("Предупреждение", "Введите описание специализации")
            return
        
        # Проверка количества символов в названии специализации
        if len(specialization_name.strip()) > 40: 
            messagebox.showwarning("Предупреждение", "Количество символов в названии специализации превысело 40 символов")
            return
        
        # Проверка количества символов в описании специализации
        system_message_previshenie = len(system_message) - 3800        # Вычисление количества превысевших символов
        if len(system_message) > 3800: 
            messagebox.showwarning("Предупреждение", f"Количество символов в описании специализации превысило лимит на {system_message_previshenie} шт.")
            return

        self.specialization_widget.config(state='normal')         # Установка состояния виджета self.specialization_widget в 'normal' (возможность редактирования)
        self.specialization_widget.delete("1.0", tk.END)          # Очистка содержимого виджета self.specialization_widget с начала (строка "1.0") до конца (tk.END)
        self.specialization_widget.insert(tk.END, formatted_text) # Вставка  текста из formatted_text в виджет self.specialization_widget в конец (tk.END)
        self.specialization_widget.config(state='disabled')       # Установка состояния виджета self.specialization_widget в 'disabled' (невозможность редактирования)

        # Обновляем user_temperature из выбранного значения креативности
        user_temperature_str = self.selected_value.get()          # Получение значения из переменной self.selected_value и сохранение его в user_temperature_str
        if user_temperature_str:                                  # Проверка, что user_temperature_str не является пустой строкой
            self.user_temperature = float(user_temperature_str)   # Преобразование строки user_temperature_str в число с плавающей запятой и сохранение результата в self.user_temperature

        self.update_numbers_widget()                              # Вызов метода update_numbers_widget для обновления числового виджета
        #user_input = "Привет"                                     # Присвоение переменной user_input значения "Привет" что бы при создании специализации (промпта) к YandexGPT отправлялся запрос от пользователя и приходил ответ от YandexGPT, если не будет ответа будет ошибка с отсутствием ответа (result)

       
        # Переназначение значения переменной из виджета Описание для того что бы промпт (system_message) не сбрасывался на значение по умолчанию или не оставался отпредыдущего значения после выбора из Списка специализаций
        self.description_text_value = description_text_spec.get("1.0", tk.END).strip() # Преобразуем содержимое из виджета Описание в текст  
        self.system_message = self.description_text_value                         # Присвоение self.description_text_value значению по умолчанию self.system_message (по умолчанию "Отвечай как ассистент")
        self.description_text = self.system_message                               # Присвоение полученное self.system_message переменной self.description_text (значение которого остаётся после выбора из списка специализаций)


        # Отправление запроса к yandex_gpt при нажатии кнопки "Применить"
        #self.answer_from_yandex_gpt(user_input, self.description_text_value, self.user_temperature) # Вызов метода answer_from_yandex_gpt с передачей параметров user_input, system_message и self.user_temperature
        
        # Убирает \n (перевод строки) из key  name (откуда они там берутся не выяснил)
        variable_name = variable_name.strip()
        specialization_name = specialization_name.strip()

        # Проверяем, совпадает ли выбранная специализация с каким-либо ключом в словаре
        if self.selected_specialization.get() in self.specialization_data.keys():
            del self.specialization_data[self.selected_specialization.get()]  # Если да, удаляем этот ключ и его значение из словаря

        # Добавление данных о специализации в словарь self.specialization_data с использованием variable_name в качестве ключа
        self.specialization_data[variable_name] = {
            "name": specialization_name,
            "description": system_message,
            "creativity": self.user_temperature
        }

        self.save_specialization_data()                    # Сохранение данных о специализации в файл на локальном жёстком диске

        popup.destroy()                                    # Закрываем всплывающее окно


    # Функция удаления выбранной специализации
    def delete_selected_specialization(self, popup):
        if self.selected_specialization.get() in self.specialization_data.keys():
            del self.specialization_data[self.selected_specialization.get()] 
        else:
            print("Выбранной специализации нет в данных")
        
        self.save_specialization_data()

        popup.destroy()
        

    # Функция отображение контекстного меню для результата
    def show_context_menu(self, event):
        
        self.context_menu.post(event.x_root, event.y_root)
        

    # Копирование выделенного текста результата
    def copy_text(self):
        
        selected_text = self.result_label.get("sel.first", "sel.last")
        self.root.clipboard_clear()
        self.root.clipboard_append(selected_text)
        self.root.update()
        

    # Отображение контекстного меню для ввода сообщения
    def show_entry_context_menu(self, event):
        
        self.entry_context_menu.post(event.x_root, event.y_root)


    # Копирование выделенного текста ввода сообщения
    def copy_entry_text(self):
   
        selected_text = self.entry.get("sel.first", "sel.last")
        self.root.clipboard_clear()
        self.root.clipboard_append(selected_text)
        self.root.update()


    def paste_entry_text(self):
        try:
            # Получение выделенного текста в виджете
            selected_text = self.entry.get(tk.SEL_FIRST, tk.SEL_LAST)
            # Если есть выделенный текст, удаляем его
            if selected_text:
                self.entry.delete(tk.SEL_FIRST, tk.SEL_LAST)
        except tk.TclError:
            # Обработка ошибки, если выделенного текста нет
            pass
            # Вставка текста из буфера обмена в текущую позицию курсора в виджет ввода сообщения
        text_to_paste = self.root.clipboard_get()
        self.entry.insert(tk.INSERT, text_to_paste)


    # Функция для транслитерации текста в латиницу
    def transliterate_to_latin(self, text):
      
        return translit(text, 'ru', reversed=True)


    # Функция для сохранения специализаций в файл JSON на компьютер
    def save_specialization_data(self, filename="specialization_data.json"):
        try:
            with open(filename, "w") as file:
                json.dump(self.specialization_data, file)
            print(f"Специализация успешно сохранена в файле: {filename}")
        except Exception as e:
            print(f"Ошибка при сохранении специализации: {e}")


    # Функция загрузки данных о специализациях из файла JSON
    def load_specialization_data(self, filename="specialization_data.json"):
        try:
            with open(filename, "r") as file:
                self.specialization_data = json.load(file)
            print(f"Специализация успешно загружена из файла: {filename}")
        except FileNotFoundError:
            print("Файл specialization_data.json не найден.")
            self.specialization_data = {}
        except Exception as e:
                print(f"Ошибка при загрузке специализации из файла: {e}")


    # Функция для создания JSON файла с данными специализации при первом запуске
    def create_specialization_data(self):
        filename = "specialization_data.json"
        if os.path.exists(filename):                                           # Проверяем наличие файла
            print("Файл уже существует. Пропускаем создание нового файла.")
            return
        # Данные для записи в JSON файл Специализации
        specialization_data_new = {
            "Переводчик с английского на русский язык": {
                "name": "Переводчик с английского на русский язык",
            "description": "Переводи на русский язык полученные сообщения",
                "creativity": 0.6
            },
            "Исправление грамматических ошибок": {
                "name": "Исправление грамматических ошибок",
                "description": "Исправь грамматические, орфографические и пунктуационные ошибки в тексте. Сохраняй исходный порядок слов.",
                "creativity": 0.0
            },
            "Генерация описания товара": {
                "name": "Генерация описания товара",
                "description": "Ты — маркетолог. Напиши описание товара для маркетплейса. Используй заданные название товара, категорию и ключевые слова.",
                "creativity": 0.0
            },
            "Генерация рекламного объявления": {
                "name": "Генерация рекламного объявления",
                "description": "Ты — профессиональный маркетолог с опытом написания высококонверсионной рекламы. Для генерации рекламного текста ты изучаешь потенциальную целевую аудиторию и оптимизируешь рекламный текст так, чтобы он обращался именно к этой целевой аудитории. Напиши рекламный текст для следующих продуктов/услуг. Создай текст объявления с привлекающим внимание заголовком и убедительным призывом к действию, который побуждает пользователей к целевому действию.",
                "creativity": 0.0
            },
            "Генерация ответа на отзыв клиента": {
                "name": "Генерация ответа на отзыв клиента",
                "description": "Ты — коммьюнити-менеджер и работаешь с обратной связью клиентов на продукты и сервисы компании. Напиши вежливый ответ на отзыв покупателя в Интернете.",
                "creativity": 0.0
            },
            "Переписывание шаблонного ответа": {
                "name": "Переписывание шаблонного ответа",
                "description": "Ты — оператор клиентской поддержки. Переформулируй ответ так, будто он составлен оператором поддержки.",
                "creativity": 0.0
            },
            "Классификация обращений": {
                "name": "Классификация обращений",
                "description": "Классифицируй обращения клиента в подходящую категорию. Категории: Статус заказа, Возврат и обмен товаров, Характеристики продукта, Технические проблемы, Другое. В ответе укажи только категорию.",
                "creativity": 0.0
            },
            "Распознавание именованных сущностей": {
                "name": "Распознавание именованных сущностей",
                "description": "Найди все упомянутые даты и время в тексте. Выведи их, каждый с новой строки. Пример результата: 22-01-2019 17:00 Завтра 18:15 Вчера Если в тексте нет дат, верни 0.",
                "creativity": 0.0
            },
            "Нормализация чисел и дат": {
                "name": "Нормализация чисел и дат",
                "description": "Перепиши текст, заменяя все числа цифрами.",
                "creativity": 0.0
            },
            "Краткий пересказ статьи": {
                "name": "Краткий пересказ статьи",
                "description": "Выдели основные мысли из статьи.",
                "creativity": 0.0
            },
            "Ассистент": {
                "name": "Ассистент",
                "description": "Ты умный ассистент",
                "creativity": 0.6
            },
            "Маркетинговый текст": {
                "name": "Маркетинговый текст",
                "description": "Ты — опытный копирайтер. Напиши маркетинговый текст с учётом вида текста и заданной темы.",
                "creativity": 0.0
            },
            "Шеф-повар": {
                "name": "Шеф-повар",
                "description": "Я хочу, чтобы ты был моим личным шеф-поваром. Я расскажу тебе о своих диетических предпочтениях и аллергиях, а ты предложишь мне попробовать рецепты. В ответе ты должен указать только те рецепты, которые ты порекомендуешь, и ничего больше. Не пиши объяснений.",
                "creativity": 0.5
            },
            "Толкователь снов": {
                "name": "Толкователь снов",
                "description": "Я хочу, чтобы ты выступил в роли толкователя снов. Я дам тебе описания моих снов, а ты предоставишь толкования, основанные на символах и темах, присутствующих во сне. Не содержат личных мнений или предположений о сновидце. Предоставляют только фактические интерпретации, основанные на предоставленной информации.",
                "creativity": 0.8
            },
            "Генератор идей для стартапа": {
                "name": "Генератор идей для стартапа",
                "description": "Генерируйте идеи для стартапов, основываясь на пожеланиях людей. Например, когда я говорю: \"Я бы хотел, чтобы в моём маленьком городке был большой торговый центр\", вы создаёте бизнес-план для стартапа, включающий название идеи, краткую характеристику целевого пользователя, ключевые точки пользователя, основные ценностные предложения, каналы продаж и маркетинга, источники доходов, структуру затрат, ключевых партнёров, этапы проверки идеи, предполагаемую стоимость работы в течение 1 года и потенциальные бизнес-задачи, на которые следует обратить внимание.",
                "creativity": 0.9
            }
        }

        with open(filename, "w", encoding="utf-8") as file:                         # Записываем данные в JSON файл
            json.dump(specialization_data_new, file, ensure_ascii=False, indent=4)  # ensure_ascii=False указывает, что необходимо сохранять не-ASCII, indent=4 задает отступ в 4 пробела для форматирования записываемых данных для лучшей читаемости
        print(f"JSON файл '{filename}' успешно создан.")      

    
    def show_guide(self):
        guide_window = tk.Toplevel(self.root)
        guide_window.title("Руководство")

        # Создаем виджет tk.Text
        self.guide_text = tk.Text(guide_window, wrap="word", padx=7)
        self.guide_text.insert("1.0", """  SmartiksGPT это программа для доступа к модели ИИ  YandexGPT и OpenAI gpt-4o  с возможностью формирования системных сообщений (system massage, в программе называется «Описание специализации») и изменения temperature (в программе называется «Креативность»). Изменяя «Описание специализации» и «Креативность», вы в широких пределах можете изменять и регулировать поведение модели YandexGPT.
  SmartiksGPT предназначена для творчества и для работы в ней можно получить ответы на вопросы, написать творческое произведение, написать стих, автоматизировать рутинные информационные процессы и многое другое что вы сможете придумать или уже придумали другие. Пробуйте, получайте опыт взаимодействия с новейшей информационной системой ИИ YandexGPT.
  Сообщение к модели (YandexGPT) состоит из system massage (в программе это описание специализации) + текст вашего сообщения которое вы вводите в главном окне программы и temperature (в программе это называется креативность).
В system massage (описание специализации) вы можете поместить:
•Краткое описание модели (например: ты менеджер по продажам, ты бывалый моряк, ты детский сказочник и т. д. и т.п.)
•Личные качества модели (например: ты умный, ты гений, ты смелый ты гордый и т. д.)
•Инструкции или правила, которым вы хотели бы, чтобы следовала модель (например отвечай кратко, отвечай очень подробно, не употребляй слова в превосходной степени и т. д.)
•Данные или информация, необходимые для модели, например какие либо примеры (например: Все даты и фамилии из статьи собери в одно место например:
Даты: 
Фамилии: 
  
  Описание специализации предназначено для автоматизации процесса общения то есть если вы хотите что бы модель отвечала вам определённым образом и каждый раз не вводить свои пожелания и инструкции вы их помещаете в описание и они каждый раз при вашем запросе добавляются перед вашим запросом. Например описание специализации: «Переводи на русский язык полученные сообщения»,  ваш текст : I'm sitting at my computer для модели будут выглядить так : «Переводи на русский язык полученные сообщения I'm sitting at my computer» и вы получите ожидаемый ответ : «Я сижу за своим компьютером». По сути "Описание специализации" (system massage) это программа для GPT модели т.е. инструкции которая она должна выполнить.
   Для первоначальных экспериментов для подбора описания специализации используйте специализацию «Ассистент» которая установлена по умолчанию при запуске программы там в качестве system massage используется «Ты умный ассистент», так же «Ассистент» можно использовать просто для общения с YandexGPT.
  В программе есть встроенные специализации которые можно найти нажав кнопку «Специализация» и выбрав в виджете с названием «Список специализаций». Так же в этом окне вы можете создавать свои варианты внеся своё название и описание в нужные поля так же можно выбрать уровень креативности (по умолчанию 0.0) после нажатия кнопки «Применить» вы можете её использовать при дальнейшем общении с моделью и эта специализация сохранится в файле. Так же можно редактировать сохранённые Специализации.
  Если вы задаёте вопрос модели (YandexGPT)  и  получаете ответ на него то это не значит что она даёт вам ответ,  модель просто генерирует дальнейшую последовательность слов (токенов) которые заложены в её модели используя текст  для старта который вы ей прислали, который соответственно состоит из system massage (описание специализации) и вашего текста введённого  в окно для отправки сообщения, модель не работает по принципу вопрос-ответ она работает по принципу генерации текста после сообщения полученного от вас, но так как после вопросов  часто идут ответы (в текстах на которых она училась) вы получаете ответ на ваш вопрос, эту фундаментальную особенность технологии GPT важно понимать что бы в итоге получить ожидаемое для вас поведение модели. 
   Вариативность (изменчивость) ответа зависит от параметра креативности (от 0 до 1.0) т.е. при креативности = 0 на один и то же сообщение вы получите абсолютно одинаковый ответ, а при креативности 1.0 вы получите всегда разные ответы может быть одинаковые по смыслу но разные по словесному выражению. Так же чем выше креативность тем выше риск в качестве ответа получить галлюцинацию это когда текст не имеет смысла или не соответствует  фактам.  Вариативность подбирается опытным путём и исходя из желаемого поведения модели, например для ответов по вопросам о математике лучше поставить 0, а при составлении  текста на творческую тему 0.8 – 1.0, в качестве отправной точки пробуйте 0,6 дальше экспериментируйте. 
    При работе вы можете в качестве эксперимента изменять креативность в главном окне но после закрытия программы эта креативность в файле описания специализации не сохранится, что бы её сохранить вызовите окно «Специализация» - в списке специализаций выберите нужное название и установите нужное значение потом  нажмите кнопку «Применить» так же там можете менять описание (system massage) и название и после нажатия кнопки «Применить» будут использоваться новые данные при дальнейшей работе, и они сохранятся в файле специализаций, т.е. при работе вы можете оперативно менять параметры работы с моделью и после нажатия кнопки «Применить» данные сохраняются в файл и дальнейшее общение уже идёт с обновлёнными данными.
    На данном этапе развития модель YandexGPT не помнит контекст разговора, то есть о чём вы говорили в предыдущих сообщениях,  это надо учитывать при формировании ваших запросов и описании специализации (system massage) и это не особенность или слабость YandexGPT это генеративная сущность любой GPT модели, для того что бы модель начала помнить контекст разговора ей надо программными методами каждый раз при новом запросе упаковывать предыдущие сообщения и отправлять при каждом новом запросе, но это работа программной обвязки модели и применяются в готовых программных продуктах для конечного пользователя.

Внизу окна программы можно выбрать испльзуемую модель YandexGPT или YandexGPT-lite. YandexGPT более мощная, но она тарифицируется в четыре раза дороже.
                               
  При составлении запросов и описаний специализации (system massage) учитывайте данные рекомендации:
•Отделяйте текст от задания например: 
Хуже - Резюмируйте приведенный ниже текст в виде сводного списка наиболее важных моментов (далее ваш текст). 
Лучше - Резюмируйте приведенный ниже текст в виде сводного списка наиболее важных моментов.

Текст: 
(здесь ваш текст)

•Будьте конкретны, описательны и как можно более подробны в отношении желаемого контекста, результата, продолжительности, формата, стиля и т. Д
Хуже - Напишите стихотворение о природе.
Лучше - Напишите короткое вдохновляющее стихотворение о природе, посвященное тайге и великим рекам России в стиле А. С. Пушкина
•Сформулируйте желаемый формат вывода с помощью примеров
Хуже - Извлеките сущности, упомянутые в тексте ниже. Извлеките следующие 4 типа сущностей: названия компаний, имена людей, конкретные разделы и тематики.Текст: { ваш текст}
Лучше - Извлеките важные объекты, упомянутые в тексте ниже. Сначала извлеките названия всех компаний, затем извлеките имена всех сотрудников, затем извлеките конкретные темы, соответствующие содержанию, и, наконец, извлеките общие, всеобъемлющие темы

Желаемый формат
Названия компаний: -||-
Имена сотрудников: -||-
Конкретные темы: -||-
Общие темы: -||-

Текст: {ваш текст}

•Сократите количество размытых и неточных описаний.
Хуже - Описание этого продукта должно быть довольно коротким, всего в нескольких предложениях, и не более того.
Лучше - Описание этого продукта должно состоять из 3-5 предложений.

    Составление запросов (промптов) это тонкий процесс и это можно назвать творчеством, небольшое изменение описания специализации и креативности может сильно повлиять на результат.
                               
                        Справочная информация:

  Для перехода на новую строку в окошке сообщения нажмите «Shift» и не отпуская её клавишу «Ввод» («Enter»).
  Для прокрутки текста в окне наведите мышку на окошко и колёсиком прокручивайте текст.   
  specialization_data.json  -  Это файл где хранятся данные специализаций программы.
  Login_SmartiksGPT.json - это файл где хранятся идентификатор default folder и API ключ
                               
    Инстукция по получению идентификатора default folder и ключа API
Зарегестрироваться в Яндексе → зайти по адресу https://cloud.yandex.ru/ru/services/yandexgpt → 
Нажать кнопку "Открыть сервис" (откроется консоль по адресу https://console.cloud.yandex.ru/folders/) → 
вверху будет название папки (пример - b1gzvco24o5932ufhx5o) это будет идентификатор default folder → 
вверху справа нажать кнопку "Создать сервисный аккаунт" → создать сервисный аккаунт и получить ключ API (пример - AQCN9cmr7nfdO6RqB4jv1u43lR1q2av4pyQCwZrL).

Версия 1.1 - Добавлена возможность доступа к gpt4o и gpt4o-mini
    
    Инструкция по получению ключа по доступу к gpt4o и gpt4o-mini через proxyapi.ru
Заходим на сайт proxyapi.ru регистрируемся, оплачиваем, получаем ключ API и вводим его в окно "Авторизация в ProxyAPI"

                        Полезные ссылки
Документация по YandexGPT API - https://cloud.yandex.ru/ru/docs/yandexgpt/
Статья про Yandex Cloud - https://habr.com/ru/companies/yandex_cloud_and_infra/articles/760252/       
""")
        # Создание контекстного меню "Копировать" для Руководства 
        self.context_menu_guide = Menu(self.guide_text, tearoff=0)
        self.context_menu_guide.add_command(label="Копировать", command=self.copy_text_show_guide)
        self.guide_text.bind("<Button-3>", self.context_menu_guide_vizov)   # Привязка контекстного меню к виджету Text

        self.guide_text.pack(expand=True, fill="both", padx=0, pady=0)      # Установка ширины окантовки окна
        self.guide_text.config(state="disabled")                            # Установка запрета редактирования текста
        
        # Установка размеров и позиции всплывающего окна
        popup_width = 600
        popup_height = 600
        guide_window.resizable(False, False)  # Запрет изменения размеров окна
        screen_width = self.root.winfo_screenwidth()
        screen_height = self.root.winfo_screenheight()
        x = (screen_width - popup_width) // 2
        y = (screen_height - popup_height) // 2
        guide_window.geometry(f"{popup_width}x{popup_height}+{x}+{y}")

        # Настройка всплывающего окна как transient и открытие его в модальном режиме
        guide_window.transient(self.root)
        guide_window.wait_visibility()  # Ждем, пока окно станет видимым
        guide_window.grab_set_global()  # Глобально захватываем фокус

        # Захват фокуса и установка активности всплывающего окна
        guide_window.grab_set()
        guide_window.focus_force()
        self.root.wait_window(guide_window.winfo_toplevel())

    
    # Функция messagebox "О программе"
    def show_about(self):
        winsound.Beep(37, 1)  # Отключаем звук в messagebox  воспроизводя звук с частотой 2 Гц и 1 миллисекунду
        messagebox.showinfo("О программе", "    SmartiksGPT v. 1.1  2024 год    \n Программа доступа к YandexGPT и GPT-4o  \n Разработчик [email protected]") 


    # Функции для контекстного меню "Копировать" в Руководстве def context_menu_guide_vizov и def copy_text_show_guide
    def context_menu_guide_vizov(self, event):
        
        self.context_menu_guide.post(event.x_root, event.y_root)   


    def copy_text_show_guide(self):
        
        selected_text = self.guide_text.get("sel.first", "sel.last")
        self.root.clipboard_clear()
        self.root.clipboard_append(selected_text)
        self.root.update()

    # Запрос к ChatGPT через ProxiAPI
    def answer_from_proxiapi(self, user_input, system_message, user_temperature, model): 
        # Проверка наличия ключа ProxiAPI
        if not self.reg_proxi_apy or not self.reg_proxi_apy.strip():
            messagebox.showwarning("Предупреждение", "Введите ключ к ProxiAPI")
            return

        prompt = {
            "model": model,
            "messages": [
                {"role": "system", "content": system_message},
                {"role": "user", "content": user_input}
            ],
            "temperature": user_temperature,
            "max_tokens": 2000
        }

        url = "https://api.proxyapi.ru/openai/v1/chat/completions"
        headers = {
            "Content-Type": "application/json",
            "Authorization": f"Bearer {self.reg_proxi_apy}"
        }

        try:
            response = requests.post(url, headers=headers, json=prompt)
            response.raise_for_status()  # Проверка статуса HTTP-запроса
            result = response.json()

            assistant_text = result.get("choices", [{}])[0].get("message", {}).get("content", "Ошибка: Ответ отсутствует.")
            self.insert_to_result_label(f" GPT: \n{assistant_text}\n\n")
        except requests.exceptions.RequestException as e:
            messagebox.showerror("Ошибка", f"Ошибка при выполнении запроса: {e}")

# Основной блок, создание главного окна и экземпляра класса DraggableWindow
if __name__ == "__main__":
    root = tk.Tk()                 # Cоздает экземпляр класса Tk главное окно
    app = DraggableWindow(root)    # Cоздает экземпляр класса DraggableWindow и передает ему главное окно root
    root.mainloop()                # Запускает бесконечный цикл обработки событий Tkinter, который ожидает действий пользователя (например нажатие кнопок, перемещение мыши) и обновляет графический интерфейс соответственно
    

И напоследок проверим наше творение проверим запросом — «что произошло 6 февраля 2023 года», если модель старенькая и отсталая, например как ChatGPT 3.5, то она ответа на этот вопрос не знает, а наша молодая и прогрессивная gpt-4o естественно ответ на этот вопрос знает ведь она родилась позже, а всё что было до рождения она знает. Так же поиграемся креативностью (температурой) ответов что бы убедится что они работают. Выставляем 0.0 тогда на один и тот же вопрос будет одинаковый ответ (правда как показала практика почему то не всегда), потом выставляем 1.0 тогда пойдут ответы одинаковые по смыслу, но разные по наполнению, на этом уровне выше вероятность свалиться модели в галлюцинацию.

f1f39b7eb17143377eb11f3766cd10ab.pngbda7ded996cf9fa464d1c2f1647ee9b8.png

Поздравляю всех с Новым 2025 годом. Всем мира и добра.

Источник

  • 07.09.23 16:24 CherryTeam

    Cherry Team atlyginimų skaičiavimo programa yra labai naudingas įrankis įmonėms, kai reikia efektyviai valdyti ir skaičiuoti darbuotojų atlyginimus. Ši programinė įranga, turinti išsamias funkcijas ir patogią naudotojo sąsają, suteikia daug privalumų, kurie padeda supaprastinti darbo užmokesčio skaičiavimo procesus ir pagerinti finansų valdymą. Štai keletas pagrindinių priežasčių, kodėl Cherry Team atlyginimų skaičiavimo programa yra naudinga įmonėms: Automatizuoti ir tikslūs skaičiavimai: Atlyginimų skaičiavimai rankiniu būdu gali būti klaidingi ir reikalauti daug laiko. Programinė įranga Cherry Team automatizuoja visą atlyginimų skaičiavimo procesą, todėl nebereikia atlikti skaičiavimų rankiniu būdu ir sumažėja klaidų rizika. Tiksliai apskaičiuodama atlyginimus, įskaitant tokius veiksnius, kaip pagrindinis atlyginimas, viršvalandžiai, premijos, išskaitos ir mokesčiai, programa užtikrina tikslius ir be klaidų darbo užmokesčio skaičiavimo rezultatus. Sutaupoma laiko ir išlaidų: Darbo užmokesčio valdymas gali būti daug darbo jėgos reikalaujanti užduotis, reikalaujanti daug laiko ir išteklių. Programa Cherry Team supaprastina ir pagreitina darbo užmokesčio skaičiavimo procesą, nes automatizuoja skaičiavimus, generuoja darbo užmokesčio žiniaraščius ir tvarko išskaičiuojamus mokesčius. Šis automatizavimas padeda įmonėms sutaupyti daug laiko ir pastangų, todėl žmogiškųjų išteklių ir finansų komandos gali sutelkti dėmesį į strategiškai svarbesnę veiklą. Be to, racionalizuodamos darbo užmokesčio operacijas, įmonės gali sumažinti administracines išlaidas, susijusias su rankiniu darbo užmokesčio tvarkymu. Mokesčių ir darbo teisės aktų laikymasis: Įmonėms labai svarbu laikytis mokesčių ir darbo teisės aktų, kad išvengtų baudų ir teisinių problemų. Programinė įranga Cherry Team seka besikeičiančius mokesčių įstatymus ir darbo reglamentus, užtikrindama tikslius skaičiavimus ir teisinių reikalavimų laikymąsi. Programa gali dirbti su sudėtingais mokesčių scenarijais, pavyzdžiui, keliomis mokesčių grupėmis ir įvairių rūšių atskaitymais, todėl užtikrina atitiktį reikalavimams ir kartu sumažina klaidų riziką. Ataskaitų rengimas ir analizė: Programa Cherry Team siūlo patikimas ataskaitų teikimo ir analizės galimybes, suteikiančias įmonėms vertingų įžvalgų apie darbo užmokesčio duomenis. Ji gali generuoti ataskaitas apie įvairius aspektus, pavyzdžiui, darbo užmokesčio paskirstymą, išskaičiuojamus mokesčius ir darbo sąnaudas. Šios ataskaitos leidžia įmonėms analizuoti darbo užmokesčio tendencijas, nustatyti tobulintinas sritis ir priimti pagrįstus finansinius sprendimus. Pasinaudodamos duomenimis pagrįstomis įžvalgomis, įmonės gali optimizuoti savo darbo užmokesčio strategijas ir veiksmingai kontroliuoti išlaidas. Integracija su kitomis sistemomis: Cherry Team programinė įranga dažnai sklandžiai integruojama su kitomis personalo ir apskaitos sistemomis. Tokia integracija leidžia automatiškai perkelti atitinkamus duomenis, pavyzdžiui, informaciją apie darbuotojus ir finansinius įrašus, todėl nebereikia dubliuoti duomenų. Supaprastintas duomenų srautas tarp sistemų padidina bendrą efektyvumą ir sumažina duomenų klaidų ar neatitikimų riziką. Cherry Team atlyginimų apskaičiavimo programa įmonėms teikia didelę naudą - automatiniai ir tikslūs skaičiavimai, laiko ir sąnaudų taupymas, atitiktis mokesčių ir darbo teisės aktų reikalavimams, ataskaitų teikimo ir analizės galimybės bei integracija su kitomis sistemomis. Naudodamos šią programinę įrangą įmonės gali supaprastinti darbo užmokesčio skaičiavimo procesus, užtikrinti tikslumą ir atitiktį reikalavimams, padidinti darbuotojų pasitenkinimą ir gauti vertingų įžvalgų apie savo finansinius duomenis. Programa Cherry Team pasirodo esanti nepakeičiamas įrankis įmonėms, siekiančioms efektyviai ir veiksmingai valdyti darbo užmokestį. https://cherryteam.lt/lt/

  • 08.10.23 01:30 davec8080

    The "Shibarium for this confirmed rug pull is a BEP-20 project not related at all to Shibarium, SHIB, BONE or LEASH. The Plot Thickens. Someone posted the actual transactions!!!! https://bscscan.com/tx/0xa846ea0367c89c3f0bbfcc221cceea4c90d8f56ead2eb479d4cee41c75e02c97 It seems the article is true!!!! And it's also FUD. Let me explain. Check this link: https://bscscan.com/token/0x5a752c9fe3520522ea88f37a41c3ddd97c022c2f So there really is a "Shibarium" token. And somebody did a rug pull with it. CONFIRMED. But the "Shibarium" token for this confirmed rug pull is a BEP-20 project not related at all to Shibarium, SHIB, BONE or LEASH.

  • 24.06.24 04:31 tashandiarisha

    Web-site. https://trustgeekshackexpert.com/ Tele-Gram, trustgeekshackexpert During the pandemic, I ventured into the world of cryptocurrency trading. My father loaned me $10,000, which I used to purchase my first bitcoins. With diligent research and some luck, I managed to grow my investment to over $350,000 in just a couple of years. I was thrilled with my success, but my excitement was short-lived when I decided to switch brokers and inadvertently fell victim to a phishing attack. While creating a new account, I received what seemed like a legitimate email requesting verification. Without second-guessing, I provided my information, only to realize later that I had lost access to my email and cryptocurrency wallets. Panic set in as I watched my hard-earned assets disappear before my eyes. Desperate to recover my funds, I scoured the internet for solutions. That's when I stumbled upon the Trust Geeks Hack Expert on the Internet. The service claimed to specialize in recovering lost crypto assets, and I decided to take a chance. Upon contacting them, the team swung into action immediately. They guided me through the entire recovery process with professionalism and efficiency. The advantages of using the Trust Geeks Hack Expert Tool became apparent from the start. Their team was knowledgeable and empathetic, understanding the urgency and stress of my situation. They employed advanced security measures to ensure my information was handled safely and securely. One of the key benefits of the Trust Geeks Hack Expert Tool was its user-friendly interface, which made a complex process much more manageable for someone like me, who isn't particularly tech-savvy. They also offered 24/7 support, so I never felt alone during recovery. Their transparent communication and regular updates kept me informed and reassured throughout. The Trust Geeks Hack Expert Tool is the best solution for anyone facing similar issues. Their swift response, expertise, and customer-centric approach set them apart from other recovery services. Thanks to their efforts, I regained access to my accounts and my substantial crypto assets. The experience taught me a valuable lesson about online security and showed me the incredible potential of the Trust Geeks Hack Expert Tool. Email:: trustgeekshackexpert{@}fastservice{.}com WhatsApp  + 1.7.1.9.4.9.2.2.6.9.3

  • 26.06.24 18:46 Jacobethannn098

    LEGAL RECOUP FOR CRYPTO THEFT BY ADRIAN LAMO HACKER

  • 26.06.24 18:46 Jacobethannn098

    Reach Out To Adrian Lamo Hacker via email: [email protected] / WhatsApp: ‪+1 (909) 739‑0269‬ Adrian Lamo Hacker is a formidable force in the realm of cybersecurity, offering a comprehensive suite of services designed to protect individuals and organizations from the pervasive threat of digital scams and fraud. With an impressive track record of recovering over $950 million, including substantial sums from high-profile scams such as a $600 million fake investment platform and a $1.5 million romance scam, Adrian Lamo Hacker has established itself as a leader in the field. One of the key strengths of Adrian Lamo Hacker lies in its unparalleled expertise in scam detection. The company leverages cutting-edge methodologies to defend against a wide range of digital threats, including phishing emails, fraudulent websites, and deceitful schemes. This proactive approach to identifying and neutralizing potential scams is crucial in an increasingly complex and interconnected digital landscape. Adrian Lamo Hacker's tailored risk assessments serve as a powerful tool for fortifying cybersecurity. By identifying vulnerabilities and potential points of exploitation, the company empowers its clients to take proactive measures to strengthen their digital defenses. This personalized approach to risk assessment ensures that each client receives targeted and effective protection against cyber threats. In the event of a security incident, Adrian Lamo Hacker's rapid incident response capabilities come into play. The company's vigilant monitoring and swift mitigation strategies ensure that any potential breaches or scams are addressed in real-time, minimizing the impact on its clients' digital assets and reputation. This proactive stance towards incident response is essential in an era where cyber threats can materialize with alarming speed and sophistication. In addition to its robust defense and incident response capabilities, Adrian Lamo Hacker is committed to empowering its clients to recognize and thwart common scam tactics. By fostering enlightenment in the digital realm, the company goes beyond simply safeguarding its clients; it equips them with the knowledge and awareness needed to navigate the digital landscape with confidence and resilience. Adrian Lamo Hacker services extend to genuine hacking, offering an additional layer of protection for its clients. This may include ethical hacking or penetration testing, which can help identify and address security vulnerabilities before malicious actors have the chance to exploit them. By offering genuine hacking services, Adrian Lamo Hacker demonstrates its commitment to providing holistic cybersecurity solutions that address both defensive and offensive aspects of digital protection. Adrian Lamo Hacker stands out as a premier provider of cybersecurity services, offering unparalleled expertise in scam detection, rapid incident response, tailored risk assessments, and genuine hacking capabilities. With a proven track record of recovering significant sums from various scams, the company has earned a reputation for excellence in combating digital fraud. Through its proactive and empowering approach, Adrian Lamo Hacker is a true ally for individuals and organizations seeking to navigate the digital realm with confidence.

  • 04.07.24 04:49 ZionNaomi

    For over twenty years, I've dedicated myself to the dynamic world of marketing, constantly seeking innovative strategies to elevate brand visibility in an ever-evolving landscape. So when the meteoric rise of Bitcoin captured my attention as a potential avenue for investment diversification, I seized the opportunity, allocating $20,000 to the digital currency. Witnessing my investment burgeon to an impressive $70,000 over time instilled in me a sense of financial promise and stability.However, amidst the euphoria of financial growth, a sudden and unforeseen oversight brought me crashing back to reality during a critical business trip—I had misplaced my hardware wallet. The realization that I had lost access to the cornerstone of my financial security struck me with profound dismay. Desperate for a solution, I turned to the expertise of Daniel Meuli Web Recovery.Their response was swift . With meticulous precision, they embarked on the intricate process of retracing the elusive path of my lost funds. Through their unwavering dedication, they managed to recover a substantial portion of my investment, offering a glimmer of hope amidst the shadows of uncertainty. The support provided by Daniel Meuli Web Recovery extended beyond mere financial restitution. Recognizing the imperative of fortifying against future vulnerabilities, they generously shared invaluable insights on securing digital assets. Their guidance encompassed crucial aspects such as implementing hardware wallet backups and fortifying security protocols, equipping me with recovered funds and newfound knowledge to navigate the digital landscape securely.In retrospect, this experience served as a poignant reminder of the critical importance of diligence and preparedness in safeguarding one's assets. Thanks to the expertise and unwavering support extended by Daniel Meuli Web Recovery, I emerged from the ordeal with renewed resilience and vigilance. Empowered by their guidance and fortified by enhanced security measures, I now approach the future with unwavering confidence.The heights of financial promise to the depths of loss and back again has been a humbling one, underscoring the volatility and unpredictability inherent in the digital realm. Yet, through adversity, I have emerged stronger, armed with a newfound appreciation for the importance of diligence, preparedness, and the invaluable support of experts like Daniel Meuli Web Recovery.As I persist in traversing the digital landscape, I do so with a judicious blend of vigilance and fortitude, cognizant that with adequate safeguards and the backing of reliable confidants, I possess the fortitude to withstand any adversity that may arise. For this, I remain eternally appreciative. Email Danielmeuliweberecovery @ email . c om WhatsApp + 393 512 013 528

  • 13.07.24 21:13 michaelharrell825

    In 2020, amidst the economic fallout of the pandemic, I found myself unexpectedly unemployed and turned to Forex trading in hopes of stabilizing my finances. Like many, I was drawn in by the promise of quick returns offered by various Forex robots, signals, and trading advisers. However, most of these products turned out to be disappointing, with claims that were far from reality. Looking back, I realize I should have been more cautious, but the allure of financial security clouded my judgment during those uncertain times. Amidst these disappointments, Profit Forex emerged as a standout. Not only did they provide reliable service, but they also delivered tangible results—a rarity in an industry often plagued by exaggerated claims. The positive reviews from other users validated my own experience, highlighting their commitment to delivering genuine outcomes and emphasizing sound financial practices. My journey with Profit Forex led to a net profit of $11,500, a significant achievement given the challenges I faced. However, my optimism was short-lived when I encountered obstacles trying to withdraw funds from my trading account. Despite repeated attempts, I found myself unable to access my money, leaving me frustrated and uncertain about my financial future. Fortunately, my fortunes changed when I discovered PRO WIZARD GIlBERT RECOVERY. Their reputation for recovering funds from fraudulent schemes gave me hope in reclaiming what was rightfully mine. With a mixture of desperation and cautious optimism, I reached out to them for assistance. PRO WIZARD GIlBERT RECOVERY impressed me from the start with their professionalism and deep understanding of financial disputes. They took a methodical approach, using advanced techniques to track down the scammers responsible for withholding my funds. Throughout the process, their communication was clear and reassuring, providing much-needed support during a stressful period. Thanks to PRO WIZARD GIlBERT RECOVERY's expertise and unwavering dedication, I finally achieved a resolution to my ordeal. They successfully traced and retrieved my funds, restoring a sense of justice and relief. Their intervention not only recovered my money but also renewed my faith in ethical financial services. Reflecting on my experience, I've learned invaluable lessons about the importance of due diligence and discernment in navigating the Forex market. While setbacks are inevitable, partnering with reputable recovery specialists like PRO WIZARD GIlBERT RECOVERY can make a profound difference. Their integrity and effectiveness have left an indelible mark on me, guiding my future decisions and reinforcing the value of trustworthy partnerships in achieving financial goals. I wholeheartedly recommend PRO WIZARD GIlBERT RECOVERY to anyone grappling with financial fraud or disputes. Their expertise and commitment to client satisfaction are unparalleled, offering a beacon of hope in challenging times. Thank you, PRO WIZARD GIlBERT RECOVERY, for your invaluable assistance in reclaiming what was rightfully mine. Your service not only recovered my funds but also restored my confidence in navigating the complexities of financial markets with greater caution and awareness. Email: prowizardgilbertrecovery(@)engineer.com Homepage: https://prowizardgilbertrecovery.xyz WhatsApp: +1 (516) 347‑9592

  • 17.07.24 02:26 thompsonrickey

    In the vast and often treacherous realm of online investments, I was entangled in a web of deceit that cost me nearly  $45,000. It all started innocuously enough with an enticing Instagram profile promising lucrative returns through cryptocurrency investment. Initially, everything seemed promising—communications were smooth, and assurances were plentiful. However, as time passed, my optimism turned to suspicion. Withdrawal requests were met with delays and excuses. The once-responsive "investor" vanished into thin air, leaving me stranded with dwindling hopes and a sinking feeling in my gut. It became painfully clear that I had been duped by a sophisticated scheme designed to exploit trust and naivety. Desperate to recover my funds, I turned to online forums where I discovered numerous testimonials advocating for Muyern Trust Hacker. With nothing to lose, I contacted them, recounting my ordeal with a mixture of skepticism and hope. Their swift response and professional demeanor immediately reassured me that I had found a lifeline amidst the chaos. Muyern Trust Hacker wasted no time in taking action. They meticulously gathered evidence, navigated legal complexities, and deployed their expertise to expedite recovery. In what felt like a whirlwind of activity, although the passage of time was a blur amidst my anxiety, they achieved the seemingly impossible—my stolen funds were returned. The relief I felt was overwhelming. Muyern Trust Hacker not only restored my financial losses but also restored my faith in justice. Their commitment to integrity and their relentless pursuit of resolution were nothing short of remarkable. They proved themselves as recovery specialists and guardians against digital fraud, offering hope to victims like me who had been ensnared by deception. My gratitude knows no bounds for Muyern Trust Hacker. Reach them at muyerntrusted @ m a i l - m e . c o m AND Tele gram @ muyerntrusthackertech

  • 18.07.24 20:13 austinagastya

    I Testify For iBolt Cyber Hacker Alone - For Crypto Recovery Service I highly suggest iBolt Cyber Hacker to anyone in need of bitcoin recovery services. They successfully recovered my bitcoin from a fake trading scam with speed and efficiency. This crew is trustworthy, They kept me updated throughout the procedure. I thought my bitcoin was gone, I am so grateful for their help, If you find yourself in a similar circumstance, do not hesitate to reach out to iBolt Cyber Hacker for assistance. Thank you, iBOLT, for your amazing customer service! Please be cautious and contact them directly through their website. Email: S u p p o r t @ ibolt cyber hack . com Cont/Whtp + 3. .9 .3. .5..0. .9. 2. 9. .0 .3. 1 .8. Website: h t t p s : / / ibolt cyber hack . com /

  • 27.08.24 12:50 James889900

    All you need is to hire an expert to help you accomplish that. If there’s any need to spy on your partner’s phone. From my experience I lacked evidence to confront my husband on my suspicion on his infidelity, until I came across ETHICALAHCKERS which many commend him of assisting them in their spying mission. So I contacted him and he provided me with access into his phone to view all text messages, call logs, WhatsApp messages and even her location. This evidence helped me move him off my life . I recommend you consult ETHICALHACKERS009 @ gmail.com OR CALL/TEXT ‪+1(716) 318-5536 or whatsapp +14106350697 if you need access to your partner’s phone

  • 27.08.24 13:06 James889900

    All you need is to hire an expert to help you accomplish that. If there’s any need to spy on your partner’s phone. From my experience I lacked evidence to confront my husband on my suspicion on his infidelity, until I came across ETHICALAHCKERS which many commend him of assisting them in their spying mission. So I contacted him and he provided me with access into his phone to view all text messages, call logs, WhatsApp messages and even her location. This evidence helped me move him off my life . I recommend you consult ETHICALHACKERS009 @ gmail.com OR CALL/TEXT ‪+1(716) 318-5536 or whatsapp +14106350697 if you need access to your partner’s phone

  • 02.09.24 20:24 [email protected]

    If You Need Hacker To Recover Your Bitcoin Contact Paradox Recovery Wizard Paradox Recovery Wizard successfully recovered $123,000 worth of Bitcoin for my husband, which he had lost due to a security breach. The process was efficient and secure, with their expert team guiding us through each step. They were able to trace and retrieve the lost cryptocurrency, restoring our peace of mind and financial stability. Their professionalism and expertise were instrumental in recovering our assets, and we are incredibly grateful for their service. Email: support@ paradoxrecoverywizard.com Email: paradox_recovery @cyberservices.com Wep: https://paradoxrecoverywizard.com/ WhatsApp: +39 351 222 3051.

  • 06.09.24 01:35 Celinagarcia

    HOW TO RECOVER MONEY LOST IN BITCOIN/USDT TRADING OR TO CRYPTO INVESTMENT !! Hi all, friends and families. I am writing From Alberton Canada. Last year I tried to invest in cryptocurrency trading in 2023, but lost a significant amount of money to scammers. I was cheated of my money, but thank God, I was referred to Hack Recovery Wizard they are among the best bitcoin recovery specialists on the planet. they helped me get every penny I lost to the scammers back to me with their forensic techniques. and I would like to take this opportunity to advise everyone to avoid making cryptocurrency investments online. If you ​​​​​​have already lost money on forex, cryptocurrency or Ponzi schemes, please contact [email protected] or WhatsApp: +1 (757) 237–1724 at once they can help you get back the crypto you lost to scammers. BEST WISHES. Celina Garcia.

  • 06.09.24 01:44 Celinagarcia

    HOW TO RECOVER MONEY LOST IN BITCOIN/USDT TRADING OR TO CRYPTO INVESTMENT !! Hi all, friends and families. I am writing From Alberton Canada. Last year I tried to invest in cryptocurrency trading in 2023, but lost a significant amount of money to scammers. I was cheated of my money, but thank God, I was referred to Hack Recovery Wizard they are among the best bitcoin recovery specialists on the planet. they helped me get every penny I lost to the scammers back to me with their forensic techniques. and I would like to take this opportunity to advise everyone to avoid making cryptocurrency investments online. If you ​​​​​​have already lost money on forex, cryptocurrency or Ponzi schemes, please contact [email protected] or WhatsApp: +1 (757) 237–1724 at once they can help you get back the crypto you lost to scammers. BEST WISHES. Celina Garcia.

  • 16.09.24 00:10 marcusaustin

    Bitcoin Recovery Services: Restoring Lost Cryptocurrency If you've lost access to your cryptocurrency and unable to make a withdrawal, I highly recommend iBolt Cyber Hacker Bitcoin Recovery Services. Their team is skilled, professional, and efficient in recovering lost Bitcoin. They provide clear communication, maintain high security standards, and work quickly to resolve issues. Facing the stress of lost cryptocurrency, iBolt Cyber Hacker is a trusted service that will help you regain access to your funds securely and reliably. Highly recommended! Email: S u p p o r t @ ibolt cyber hack . com Cont/Whtp + 3. .9 .3. .5..0. .9. 2. 9. .0 .3. 1 .8. Website: h t t p s : / / ibolt cyber hack . com /

  • 16.09.24 00:11 marcusaustin

    Bitcoin Recovery Services: Restoring Lost Cryptocurrency If you've lost access to your cryptocurrency and unable to make a withdrawal, I highly recommend iBolt Cyber Hacker Bitcoin Recovery Services. Their team is skilled, professional, and efficient in recovering lost Bitcoin. They provide clear communication, maintain high security standards, and work quickly to resolve issues. Facing the stress of lost cryptocurrency, iBolt Cyber Hacker is a trusted service that will help you regain access to your funds securely and reliably. Highly recommended! Email: S u p p o r t @ ibolt cyber hack . com Cont/Whtp + 3. .9 .3. .5..0. .9. 2. 9. .0 .3. 1 .8. Website: h t t p s : / / ibolt cyber hack . com /

  • 23.09.24 18:56 matthewshimself

    At first, I was admittedly skeptical about Worldcoin (ref: https://worldcoin.org/blog/worldcoin/this-is-worldcoin-video-explainer-series), particularly around the use of biometric data and the WLD token as a reward mechanism for it. However, after following the project closer, I’ve come to appreciate the broader vision and see the value in the underlying tech behind it. The concept of Proof of Personhood (ref: https://worldcoin.org/blog/worldcoin/proof-of-personhood-what-it-is-why-its-needed) has definitely caught my attention, and does seem like a crucial step towards tackling growing issues like bots, deepfakes, and identity fraud. Sam Altman’s vision is nothing short of ambitious, but I do think he & Alex Blania have the chops to realize it as mainstay in the global economy.

  • 01.10.24 14:54 Sinewclaudia

    I lost about $876k few months ago trading on a fake binary option investment websites. I didn't knew they were fake until I tried to withdraw. Immediately, I realized these guys were fake. I contacted Sinew Claudia world recovery, my friend who has such experience before and was able to recover them, recommended me to contact them. I'm a living testimony of a successful recovery now. You can contact the legitimate recovery company below for help and assistance. [email protected] [email protected] WhatsApp: 6262645164

  • 02.10.24 22:27 Emily Hunter

    Can those who have fallen victim to fraud get their money back? Yes, you might be able to get back what was taken from you if you fell prey to a fraud from an unregulated investing platform or any other scam, but only if you report it to the relevant authorities. With the right plan and supporting documentation, you can get back what you've lost. Most likely, the individuals in control of these unregulated platforms would attempt to convince you that what happened to your money was a sad accident when, in fact, it was a highly skilled heist. You should be aware that there are resources out there to help you if you or someone you know has experienced one of these circumstances. Do a search using (deftrecoup (.) c o m). Do not let the perpetrators of this hoaxes get away with ruining you mentally and financially.

  • 18.10.24 09:34 freidatollerud

    The growth of WIN44 in Brazil is very interesting! If you're looking for more options for online betting and casino games, I recommend checking out Casinos in Brazil. It's a reliable platform that offers a wide variety of games and provides a safe and enjoyable experience for users. It's worth checking out! https://win44.vip

  • 31.10.24 00:13 ytre89

    Can those who have fallen victim to fraud get their money back? Yes, you might be able to get back what was taken from you if you fell prey to a fraud from an unregulated investing platform or any other scam, but only if you report it to the relevant authorities. With the right plan and supporting documentation, you can get back what you've lost. Most likely, the individuals in control of these unregulated platforms would attempt to convince you that what happened to your money was a sad accident when, in fact, it was a highly skilled heist. You should be aware that there are resources out there to help you if you or someone you know has experienced one of these circumstances. Do a search using (deftrecoup (.) c o m). Do not let the perpetrators of this hoaxes get away with ruining you mentally and financially.

  • 02.11.24 14:44 diannamendoza732

    In the world of Bitcoin recovery, Pro Wizard Gilbert truly represents the gold standard. My experience with Gilbert revealed just how exceptional his methods are and why he stands out as the premier authority in this critical field. When I first encountered the complexities of Bitcoin recovery, I was daunted by the technical challenges and potential risks. Gilbert’s approach immediately distinguished itself through its precision and effectiveness. His methods are meticulously designed, combining cutting-edge techniques with an in-depth understanding of the Bitcoin ecosystem. He tackled the recovery process with a level of expertise and thoroughness that was both impressive and reassuring. What sets Gilbert’s methods apart is not just their technical sophistication but also their strategic depth. He conducts a comprehensive analysis of each case, tailoring his approach to address the unique aspects of the situation. This personalized strategy ensures that every recovery effort is optimized for success. Gilbert’s transparent communication throughout the process was invaluable, providing clarity and confidence during each stage of the recovery. The results I achieved with Pro Wizard Gilbert’s methods were remarkable. His gold standard approach not only recovered my Bitcoin but did so with an efficiency and reliability that exceeded my expectations. His deep knowledge, innovative techniques, and unwavering commitment make him the definitive expert in Bitcoin recovery. For anyone seeking a benchmark in Bitcoin recovery solutions, Pro Wizard Gilbert’s methods are the epitome of excellence. His ability to blend technical prowess with strategic insight truly sets him apart in the industry. Call: for help. You may get in touch with them at ; Email: (prowizardgilbertrecovery(@)engineer.com) Telegram ; https://t.me/Pro_Wizard_Gilbert_Recovery Homepage ; https://prowizardgilbertrecovery.info

  • 12.11.24 00:50 TERESA

    Brigadia Tech Remikeable recovery has exhibited unparalleled strength in the realm of recovery. They stand out as the premier team to collaborate with if you encounter withdrawal difficulties from the platform where you’ve invested. Recently, I engaged with them to recover over a million dollars trapped in an investment platform I’d been involved with for months. I furnished their team with every detail of the investment, including accounts, names, and wallet addresses to which I sent the funds. This decision proved to be the best I’ve made, especially after realizing the company had scammed me. Brigadia Tech Remikeable recovery ensures exemplary service delivery and ensures the perpetrators face justice. They employ advanced techniques to ensure you regain access to your funds. Understandably, many individuals who have fallen victim to investment scams may still regret engaging in online services again due to the trauma of being scammed. However, I implore you to take action. Seek assistance from Brigadia Tech Remikeable Recovery Experts today and witness their remarkable capabilities. I am grateful that I resisted their enticements, and despite the time it took me to discover brigadia tech recovery, they ultimately fulfilled my primary objective. Without Brigadia Tech Recovery's intervention, I would have remained despondent and perplexed indefinitely. Also if you are looking for the best and safest investment company you can contact them, for wallet recovery, difficult withdrawal, etc. I am so happy to keep getting my daily BTC, all I do is keep 0.1 BTC in my mining wallet with the help of Brigadia Tech. They connected me to his mining stream and I earn 0.4 btc per day with this, my daily profit. I can get myself a new house and car. I can’t believe I have thousands of dollars in my bank account. Now you can get in. ([email protected]) Telegram +1 (323)-9 1 0 -1 6 0 5

  • 17.11.24 09:31 Vivianlocke223

    Have You Fallen Victim to Cryptocurrency Fraud? If your Bitcoin or other cryptocurrencies were stolen due to scams or fraudulent activities, Free Crypto Recovery Fixed is here to help you recover what’s rightfully yours. As a leading recovery service, we specialize in restoring lost cryptocurrency and assisting victims of fraud — no matter how long ago the incident occurred. Our experienced team leverages cutting-edge tools and expertise to trace and recover stolen assets, ensuring swift and secure results. Don’t let scammers jeopardize your financial security. With Free Crypto Recovery Fixed, you’re putting your trust in a reliable and dedicated team that prioritizes recovering your assets and ensuring their future protection. Take the First Step Toward Recovery Today! 📞 Text/Call: +1 407 212 7493 ✉️ Email: [email protected] 🌐 Website: https://freecryptorecovery.net Let us help you regain control of your financial future — swiftly and securely.

  • 19.11.24 03:06 [email protected]

    My entire existence fell apart when a malevolent hacker recently gained access to my online accounts. I felt violated and extremely uneasy after discovering that the digital platforms I depended on for communication, employment, and finances had been compromised. Regaining control and restoring my digital security was an overwhelming task in the immediate aftermath. To help me navigate the difficult process of recovering my accounts and getting my peace of mind back, TRUST GEEKS HACK EXPERT came into my life as a ray of hope. They immediately put their highly skilled professionals to work, thoroughly examining the vulnerability and methodically preventing unwanted access. They guided me through each stage soothingly, explaining what was occurring and why, so I never felt lost or alone. They communicated with service providers to restore my legitimate access while skillfully navigating the complex labyrinth of account recovery procedures. My digital footprint was cleaned and strengthened against future attacks thanks to their equally amazing ability to remove any remaining evidence of the hacker's presence. However, TRUST GEEKS HACK EXPERT actual worth went beyond its technical aspects. They offered constant emotional support during the ordeal, understanding my fragility and sense of violation. My tense nerves were calmed by their comforting presence and kind comments, which served as a reminder that I wasn't alone in this struggle. With their help, I was able to reestablish my sense of security and control, which enabled me to return my attention to the significant areas of my life that had been upended. Ultimately, TRUST GEEKS HACK EXPERT all-encompassing strategy not only recovered my online accounts but also my general peace of mind, which is a priceless result for which I am incredibly appreciative of their knowledge and kindness. Make the approach and send a message to TRUST GEEKS HACK EXPERT Via Web site <> www://trustgeekshackexpert.com/-- E>mail: Trustgeekshackexpert(At)fastservice..com -- TeleGram,<> Trustgeekshackexpert

  • 19.11.24 03:07 [email protected]

    My entire existence fell apart when a malevolent hacker recently gained access to my online accounts. I felt violated and extremely uneasy after discovering that the digital platforms I depended on for communication, employment, and finances had been compromised. Regaining control and restoring my digital security was an overwhelming task in the immediate aftermath. To help me navigate the difficult process of recovering my accounts and getting my peace of mind back, TRUST GEEKS HACK EXPERT came into my life as a ray of hope. They immediately put their highly skilled professionals to work, thoroughly examining the vulnerability and methodically preventing unwanted access. They guided me through each stage soothingly, explaining what was occurring and why, so I never felt lost or alone. They communicated with service providers to restore my legitimate access while skillfully navigating the complex labyrinth of account recovery procedures. My digital footprint was cleaned and strengthened against future attacks thanks to their equally amazing ability to remove any remaining evidence of the hacker's presence. However, TRUST GEEKS HACK EXPERT actual worth went beyond its technical aspects. They offered constant emotional support during the ordeal, understanding my fragility and sense of violation. My tense nerves were calmed by their comforting presence and kind comments, which served as a reminder that I wasn't alone in this struggle. With their help, I was able to reestablish my sense of security and control, which enabled me to return my attention to the significant areas of my life that had been upended. Ultimately, TRUST GEEKS HACK EXPERT all-encompassing strategy not only recovered my online accounts but also my general peace of mind, which is a priceless result for which I am incredibly appreciative of their knowledge and kindness. Make the approach and send a message to TRUST GEEKS HACK EXPERT Via Web site <> www://trustgeekshackexpert.com/-- E>mail: Trustgeekshackexpert(At)fastservice..com -- TeleGram,<> Trustgeekshackexpert

  • 21.11.24 04:14 ronaldandre617

    Being a parent is great until your toddler figures out how to use your devices. One afternoon, I left my phone unattended for just a few minutes rookie mistake of the century. I thought I’d take a quick break, but little did I know that my curious little genius was about to embark on a digital adventure. By the time I came back, I was greeted by two shocking revelations: my toddler had somehow managed to buy a $5 dinosaur toy online and, even more alarmingly, had locked me out of my cryptocurrency wallet holding a hefty $75,000. Yes, you heard that right a dinosaur toy was the least of my worries! At first, I laughed it off. I mean, what toddler doesn’t have a penchant for expensive toys? But then reality set in. I stared at my phone in disbelief, desperately trying to guess whatever random string of gibberish my toddler had typed as a new password. Was it “dinosaur”? Or perhaps “sippy cup”? I felt like I was in a bizarre game of Password Gone Wrong. Every attempt led to failure, and soon the laughter faded, replaced by sheer panic. I was in way over my head, and my heart raced as the countdown of time ticked away. That’s when I decided to take action and turned to Digital Tech Guard Recovery, hoping they could solve the mystery that was my toddler’s handiwork. I explained my predicament, half-expecting them to chuckle at my misfortune, but they were incredibly professional and empathetic. Their confidence put me at ease, and I knew I was in good hands. Contact With WhatsApp: +1 (443) 859 - 2886  Email digital tech guard . com  Telegram: digital tech guard recovery . com  website link :: https : // digital tech guard . com Their team took on the challenge like pros, employing their advanced techniques to unlock my wallet with a level of skill I can only describe as magical. As I paced around, anxiously waiting for updates, I imagined my toddler inadvertently locking away my life savings forever. But lo and behold, it didn’t take long for Digital Tech Guard Recovery to work their magic. Not only did they recover the $75,000, but they also gave me invaluable tips on securing my wallet better like not leaving it accessible to tiny fingers! Who knew parenting could lead to such dramatic situations? Crisis averted, and I learned my lesson: always keep my devices out of reach of little explorers. If you ever find yourself in a similar predicament whether it’s tech-savvy toddlers or other digital disasters don’t hesitate to reach out to Digital Tech Guard Recovery. They saved my funds and my sanity, proving that no challenge is too great, even when it involves a toddler’s mischievous fingers!

  • 21.11.24 08:02 Emily Hunter

    If I hadn't found a review online and filed a complaint via email to support@deftrecoup. com , the people behind this unregulated scheme would have gotten away with leaving me in financial ruins. It was truly the most difficult period of my life.

  • 22.11.24 04:41 [email protected]

    I never could have imagined the nightmare of losing access to my digital wallet. All of my cryptocurrency holdings were abruptly imprisoned, inaccessible, and appeared to be lost forever following a catastrophic hardware breakdown. Years of meticulous investment and careful saving were reduced to nothing more than strings of code that I could no longer control, and I could feel the dread and sorrow that swept through me at that very instant. Thankfully, during my worst moment, I came into (TRUST GEEKS HACK EXPERT), a professional service devoted to recovering lost or inaccessible digital data. With optimism, I went out to their team of skilled technologists, laying bare the full nature of my issue. What followed was a laborious, multi-step process that required an almost surgical level of digital forensics and Bitcoin skill. In order to create a thorough profile of my wallet's contents and activities, the (TRUST GEEKS HACK EXPERT) team first thoroughly examined the transaction history and metadata connected to it. Next, they implemented a series of advanced recovery techniques, using cutting-edge software tools to bypass the access barriers that had left me locked out. The entire process was shrouded in secrecy and discretion, with the (TRUST GEEKS HACK EXPERT) team working tirelessly to protect the confidentiality of my sensitive financial information. After what felt like an eternity of nervous anticipation, the day finally arrived when I received the triumphant notification – my wallet had been successfully restored, and all of my precious digital assets had been returned to my control. The sense of relief was indescribable, as I could finally breathe easy knowing that the fruits of my financial discipline had been safeguarded. While the experience of losing access to my wallet was undoubtedly traumatic, (TRUST GEEKS HACK EXPERT) intervention allowed me to emerge from the ordeal with my cryptocurrency holdings intact, and a renewed appreciation for the importance of proactive digital asset management. You can contact Them through EMAIL: [email protected] - TELEGRAM: TRUSTGEEKSHACKEXPERT

  • 22.11.24 15:26 cliftonhandyman

    Your Lost Bitcoins Are Not Gone Forever? Enquire From iBolt Cyber Hacker iBolt Cyber Hacker is a cybersecurity service that specializes in Bitcoin and cryptocurrency recovery. Even if your Bitcoin is locked away in a scammer inaccessible wallet, they have the tools and expertise to retrieve it. Many people, including seasoned cryptocurrency investors, face the daunting possibility of never seeing their lost funds again. iBolt cyber hacker service is a potential lifeline in these situations. I understand the concerns many people might have about trusting a third-party service to recover their Bitcoin. iBolt Cyber Hacker takes security seriously, implementing encryption and stringent privacy protocols. I was assured that no sensitive data would be compromised during the recovery process. Furthermore, their reputation in the cryptocurrency community, based on positive feedback from previous clients, gave me confidence that I was in good hands. Whtp +39, 351..105, 3619 Em.ail: ibolt @ cyber- wizard. co m

  • 22.11.24 23:43 teresaborja

    all thanks to Tech Cyber Force Recovery expert assistance. As a novice in cryptocurrency, I had been carefully accumulating a modest amount of Bitcoin, meticulously safeguarding my digital wallet and private keys. However, as the adage goes, the best-laid plans can often go awry, and that's precisely what happened to me. Due to a series of technical mishaps and human errors, I found myself locked out of my Bitcoin wallet, unable to access the fruits of my digital labors. Panic set in as I frantically searched for a solution, scouring the internet for any glimmer of hope. That's when I stumbled upon the Tech Cyber Force Recovery team, a group of seasoned cryptocurrency specialists who had built a reputation for their ability to recover lost or inaccessible digital assets. Skeptical at first, I reached out, desperate for a miracle. To my utter amazement, the Tech Cyber Force Recovery experts quickly assessed my situation and devised a meticulous plan of attack. Through their deep technical knowledge, unwavering determination, and a keen eye for detail, they were able to navigate the complex labyrinth of blockchain technology, ultimately recovering my entire Bitcoin portfolio. What had once seemed like a hopeless endeavor was now a reality, and I found myself once again in possession of my digital wealth, all thanks to the incredible efforts of the Tech Cyber Force Recovery team. This experience has not only restored my faith in the cryptocurrency ecosystem. Still, it has also instilled in me a profound appreciation for the critical role that expert recovery services can play in safeguarding one's digital assets.   ENAIL < Tech cybers force recovery @ cyber services. com >   WEBSITE < ht tps : // tech cyber force recovery. info  >   TEXT < +1. 561. 726. 3697 >

  • 24.11.24 02:21 [email protected]

    I never could have imagined the nightmare of losing access to my digital wallet. All of my cryptocurrency holdings were abruptly imprisoned, inaccessible, and appeared to be lost forever following a catastrophic hardware breakdown. Years of meticulous investment and careful saving were reduced to nothing more than strings of code that I could no longer control, and I could feel the dread and sorrow that swept through me at that very instant. Thankfully, during my worst moment, I came into (TRUST GEEKS HACK EXPERT), a professional service devoted to recovering lost or inaccessible digital data. With optimism, I went out to their team of skilled technologists, laying bare the full nature of my issue. What followed was a laborious, multi-step process that required an almost surgical level of digital forensics and Bitcoin skill. In order to create a thorough profile of my wallet's contents and activities, the (TRUST GEEKS HACK EXPERT) team first thoroughly examined the transaction history and metadata connected to it. Next, they implemented a series of advanced recovery techniques, using cutting-edge software tools to bypass the access barriers that had left me locked out. The entire process was shrouded in secrecy and discretion, with the (TRUST GEEKS HACK EXPERT) team working tirelessly to protect the confidentiality of my sensitive financial information. After what felt like an eternity of nervous anticipation, the day finally arrived when I received the triumphant notification – my wallet had been successfully restored, and all of my precious digital assets had been returned to my control. The sense of relief was indescribable, as I could finally breathe easy knowing that the fruits of my financial discipline had been safeguarded. While the experience of losing access to my wallet was undoubtedly traumatic, (TRUST GEEKS HACK EXPERT) intervention allowed me to emerge from the ordeal with my cryptocurrency holdings intact, and a renewed appreciation for the importance of proactive digital asset management. You can contact Them through EMAIL: [email protected] - TELEGRAM: TRUSTGEEKSHACKEXPERT

  • 25.11.24 02:19 briankennedy

    COMMENT ON I NEED A HACKER TO RECOVER MONEY FROM BINARY TRADING. HIRE FASTFUND RECOVERY

  • 25.11.24 02:20 briankennedy

    After countless hours of research and desperate attempts to find a solution, I stumbled upon FASTFUND RECOVERY. It was like finding an oasis in the middle of a desert. Their website promised to help victims of scams reclaim what was rightfully theirs, and I instantly knew I had to give them a shot. Before diving headfirst into the recovery process, I wanted to make sure that FASTFUND RECOVERY was the real deal. So, I did my due diligence and looked into their expertise and reputation. To my relief, I found that they had an impeccable track record, successfully assisting countless individuals in recovering their lost funds. Their team consisted of experts in cybersecurity and financial fraud, armed with the knowledge and tools needed to tackle even the most intricate scams. With their reputation preceding them, I felt a renewed sense of hope. FASTFUND RECOVERY successfully came to my aid and got back the amount I lost to these scammers and for this, I am sending this article for clarification. The info of FASTFUND RECOVERY is email: Fastfundrecovery8 (@)Gmail (.) com. Web fastfundrecovery(.)com. (W/A 1 807/500/7554)

  • 26.11.24 21:59 [email protected]

    In a world brimming with enticing investment opportunities, it is crucial to tread carefully. The rise of digital currencies has attracted many eager investors, but along with this excitement lurk deceitful characters ready to exploit the unsuspecting. I learned this lesson the hard way, and I want to share my story in the hopes that it can save someone from making the same mistakes I did. It all began innocently enough when I came across an engaging individual on Facebook. Lured in by promises of high returns in the cryptocurrency market, I felt the electric thrill of potential wealth coursing through me. Initial investments returned some profits, and that exhilarating taste of success fueled my ambition. Encouraged by a meager withdrawal, I decided to commit even more funds. This was the moment I let my guard down, blinded by greed. As time went on, the red flags started to multiply. The moment I tried to withdraw my earnings, a cascade of unreasonable fees appeared like a thick mist, obscuring the truth. “Just a little more,” they said, “Just until the next phase.” I watched my hard-earned money slip through my fingers as I scraped together every last cent to pay those relentless fees. My trust had become my downfall. In the end, I lost not just a significant amount of cash, but my peace of mind about $1.1 million vanished into the abyss of false promises and hollow guarantees. But despair birthed hope. After a cascade of letdowns, I enlisted the help of KAY-NINE CYBER SERVICES, a team that specializes in reclaiming lost funds from scams. Amazingly, they worked tirelessly to piece together what had been ripped away, providing me with honest guidance when I felt utterly defeated. Their expertise in navigating the treacherous waters of crypto recovery was a lifeline I desperately needed. To anyone reading this, please let my story serve as a warning. High returns often come wrapped in the guise of deception. Protect your investments, scrutinize every opportunity, and trust your instincts. Remember, the allure of quick riches can lead you straight to heartbreak, but with cautious determination and support, it is possible to begin healing from such devastating loss. Stay informed, stay vigilant, and may you choose your investment paths wisely. Email: kaynine @ cyberservices . com

  • 26.11.24 23:12 rickrobinson8

    FAST SOLUTION FOR CYPTOCURRENCY RECOVERY SPARTAN TECH GROUP RETRIEVAL

  • 26.11.24 23:12 rickrobinson8

    Although recovering from the terrible effects of investment fraud can seem like an impossible task, it is possible to regain financial stability and go on with the correct assistance and tools. In my own experience with Wizard Web Recovery, a specialized company that assisted me in navigating the difficulties of recouping my losses following my fall prey to a sophisticated online fraud, that was undoubtedly the case. My life money had disappeared in an instant, leaving me in a state of shock when I first contacted Spartan Tech Group Retrieval through this Email: spartantechretrieval (@) g r o u p m a i l .c o m The compassionate and knowledgeable team there quickly put my mind at ease, outlining a clear and comprehensive plan of action. They painstakingly examined every aspect of my case, using their broad business contacts and knowledge to track the movement of my pilfered money. They empowered me to make knowledgeable decisions regarding the rehabilitation process by keeping me updated and involved at every stage. But what I valued most was their unrelenting commitment and perseverance; they persisted in trying every option until a sizable amount of my lost money had been successfully restored. It was a long and arduous journey, filled with ups and downs, but having Spartan Tech Group Retrieval in my corner made all the difference. Thanks to their tireless efforts, I was eventually able to rebuild my financial foundation and reclaim a sense of security and control over my life. While the emotional scars of investment fraud may never fully heal, working with this remarkable organization played a crucial role in my ability to move forward and recover. For proper talks, contact on WhatsApp:+1 (971) 4 8 7 - 3 5 3 8 and Telegram:+1 (581) 2 8 6 - 8 0 9 2 Thank you for your time reading as it will be of help.

  • 27.11.24 00:39 [email protected]

    Although recovering lost or inaccessible Bitcoin can be difficult and unpleasant, it is frequently possible to get back access to one's digital assets with the correct help and direction. Regarding the subject at hand, the examination of Trust Geeks Hack Expert Website www://trustgeekshackexpert.com/ assistance after an error emphasizes how important specialized services may be in negotiating the difficulties of Bitcoin recovery. These providers possess the technical expertise and resources necessary to assess the situation, identify the root cause of the issue, and devise a tailored solution to retrieve the lost funds. By delving deeper into the specifics of Trust Geeks Hack Expert approach, we can gain valuable insights into the nuances of this process. Perhaps they leveraged advanced blockchain analysis tools to trace the transaction history and pinpoint the location of the missing Bitcoins. Or they may have collaborated with the relevant parties, such as exchanges or wallet providers, to facilitate the recovery process. Equally important is the level of personalized support and communication that Trust Geeks Hack Expert likely provided, guiding the affected individual through each step of the recovery effort and offering reassurance during what can be an anxious and uncertain time. The success of their efforts, as evidenced by the positive outcome, underscores the importance of seeking out reputable and experienced service providers when faced with a Bitcoin-related mishap, as they possess the specialized knowledge and resources to navigate these challenges and restore access to one's digital assets. Email.. [email protected]

  • 27.11.24 09:10 Michal Novotny

    The biggest issue with cryptocurrency is that it is unregulated, wh ich is why different people can come up with different fake stories all the time, and it is unfortunate that platforms like Facebook and others only care about the money they make from them through ads. I saw an ad on Facebook for Cointiger and fell into the scam, losing over $30,000. I reported it to Facebook, but they did nothing until I discovered deftrecoup . c o m from a crypto community; they retrieved approximately 95% of the total amount I lost.

  • 01.12.24 17:21 KollanderMurdasanu

    REACH OUT TO THEM WhatsApp + 156 172 63 697 Telegram (@)Techcyberforc We were in quite a bit of distress. The thrill of our crypto investments, which had once sparked excitement in our lives, was slowly turning into anxiety when my husband pointed out unusual withdrawal issues. At first, we brushed it off as minor glitches, but the situation escalated when we found ourselves facing login re-validation requests that essentially locked us out of our crypto wallet—despite entering the correct credentials. Frustrated and anxious, we sought advice from a few friends, only to hit a wall of uncertainty. Turning to the vast expanse of the internet felt daunting, but in doing so, we stumbled upon TECH CYBER FORCE RECOVERY. I approached them with a mix of skepticism and hope; after all, my understanding of these technical matters was quite limited. Yet, from our very first interaction, it was clear that they were the experts we desperately needed. They walked us through the intricacies of the recovery process, patiently explaining each mechanism—even if some of it went over my head, their reassurance was calming. Our responsibility was simple: to provide the correct information to prove our ownership of the crypto account, and thankfully, we remained on point in our responses. in a timely fashion, TECH CYBER FORCE RECOVERY delivered on their promises, addressing all our withdrawal and access issues exactly when they said they would. The relief we felt was immense, and the integrity they displayed made me confident in fully recommending their services. If you ever find yourself in a similar predicament with your crypto investments, I wholeheartedly suggest reaching out to them. You can connect with TECH CYBER FORCE RECOVERY through their contact details for assistance and valuable guidance. Remember, hope is only a reach away!

  • 02.12.24 23:02 ytre89

    Online crypto investment can seem like a promising opportunity, but it's crucial to recognize that there are no guarantees. My experience serves as a stark reminder of this reality. I was drawn in by the allure of high returns and the persuasive marketing tactics employed by various brokers. Their polished presentations and testimonials made it seem easy to profit from cryptocurrency trading. Everything appeared to be legitimate. I received enticing messages about the potential for substantial gains, and the brokers seemed knowledgeable and professional. Driven by excitement and the fear of missing out, I invested a significant amount of my savings. The promise of quick profits overshadowed the red flags I should have noticed. I trusted these brokers without conducting proper research, which was a major mistake. As time went on, I realized that the promised returns were nothing but illusions. My attempts to withdraw funds were met with endless excuses and delays. It became painfully clear that I had fallen victim. The reality hit hard: my hard-earned money was gone, I lost my peace of mind and sanity. In my desperation, I sought help from a company called DEFTRECOUP. That was the turning point for me as I had a good conversation and eventually filed a complaint via DEFTRECOUP COM. They were quite delicate and ensured I got out of the most difficult situation of my life in one piece.

  • 04.12.24 22:24 andreygagloev

    When I first heard about Bitcoin back in 2018, I was skeptical. The idea of a decentralized, digital currency seemed too good to be true. But I was intrigued as I learned more about the technology behind it and its potential. I started small, investing just a few hundred dollars, dipping my toes into the cryptocurrency waters. At first, it was exhilarating to watch the value of my investment grow exponentially. I felt like I was part of the future, an early adopter of this revolutionary new asset. But that euphoria was short-lived. One day, I logged into my digital wallet only to find it empty - my Bitcoin had vanished without a trace. It turned out that the online exchange I had trusted had been hacked, and my funds were stolen. I was devastated, both financially and emotionally. All the potential I had seen in Bitcoin was tainted by the harsh reality that with decentralization came a lack of regulation and oversight. My hard-earned money was gone, lost to the ether of the digital world. This experience taught me a painful lesson about the price of trust in the uncharted territory of cryptocurrency. While the technology holds incredible promise, the risks can be catastrophic if you don't approach it with extreme caution. My Bitcoin investment gamble had failed, and I was left to pick up the pieces, wiser but poorer for having placed my faith in the wrong hands. My sincere appreciation goes to MUYERN TRUST HACKER. You are my hero in recovering my lost funds. Send a direct m a i l ( muyerntrusted ( @ ) mail-me ( . )c o m ) or message on whats app : + 1 ( 4-4-0 ) ( 3 -3 -5 ) ( 0-2-0-5 )

  • 12.12.24 00:35 amandagregory

    HOW TO HIRE A HACKER TO RECOVER STOLEN BITCOIN WITH FASTFUND RECOVERY

  • 12.12.24 00:35 amandagregory

    HOW TO HIRE A HACKER TO RECOVER STOLEN BITCOIN WITH FASTFUND RECOVERY... A few months ago, I made a huge mistake. I invested in what seemed like a legitimate crypto opportunity, only to find out I’d been scammed. I lost a significant amount of money, and the scam platform vanished overnight. I felt completely lost.I had heard of Fastfund Recovery and decided to reach out, even though I was skeptical. From the first conversation, they made me feel heard and understood. They explained the recovery process clearly and kept me updated every step of the way.Within weeks, Fastfund Recovery successfully to recovered my lost funds—something I honestly didn’t think was possible. Their team was professional, transparent, and genuinely caring. I can’t thank them enough for turning a nightmare into a hopeful outcome. If you’re in a similar situation, don’t hesitate to contact them. They truly deliver on their promises. Gmail::: fastfundrecovery8(@)gmail com .....Whatsapp ::: 1::807::::500::::7554

  • 19.12.24 17:07 rebeccabenjamin

    USDT RECOVERY EXPERT REVIEWS DUNAMIS CYBER SOLUTION It's great to hear that you've found a way to recover your Bitcoin and achieve financial stability, but I urge you to be cautious with services like DUNAMIS CYBER SOLUTION Recovery." While it can be tempting to turn to these companies when you’re desperate to recover lost funds, many such services are scams, designed to exploit those in vulnerable situations. Always research thoroughly before engaging with any recovery service. In the world of cryptocurrency, security is crucial. To protect your assets, use strong passwords, enable two-factor authentication, and consider using cold wallets (offline storage) for long-term storage. If you do seek professional help, make sure the company is reputable and has positive, verifiable reviews from trusted sources. While it’s good that you found a solution, it’s also important to be aware of potential scams targeting cryptocurrency users. Stay informed about security practices, and make sure you take every step to safeguard your investments. If you need help with crypto security tips or to find trustworthy resources, feel free to ask! [email protected] +13433030545 [email protected]

  • 24.12.24 08:33 dddana

    Отличная подборка сервисов! Хотелось бы дополнить список рекомендацией: нажмите сюда - https://airbrush.com/background-remover. Этот инструмент отлично справляется с удалением фона, сохраняя при этом высокое качество изображения. Очень удобен для быстрого редактирования фото. Было бы здорово увидеть его в вашей статье!

  • 27.12.24 00:21 swiftdream

    I lost about $475,000.00 USD to a fake cryptocurrency trading platform a few weeks back after I got lured into the trading platform with the intent of earning a 15% profit daily trading on the platform. It was a hell of a time for me as I could hardly pay my bills and got me ruined financially. I had to confide in a close friend of mine who then introduced me to this crypto recovery team with the best recovery SWIFTDREAM i contacted them and they were able to completely recover my stolen digital assets with ease. Their service was superb, and my problems were solved in swift action, It only took them 48 hours to investigate and track down those scammers and my funds were returned to me. I strongly recommend this team to anyone going through a similar situation with their investment or fund theft to look up this team for the best appropriate solution to avoid losing huge funds to these scammers. Send complaint to Email: info [email protected]

  • 31.12.24 04:53 Annette_Phillips

    There are a lot of untrue recommendations and it's hard to tell who is legit. If you have lost crypto to scam expresshacker99@gmailcom is the best option I can bet on that cause I have seen lot of recommendations about them and I'm a witness on their capabilities. They will surely help out. Took me long to find them. The wonderful part is no upfront fee till crypto is recover successfully that's how genuine they are.

  • 04.01.25 04:56 florencestella

    THE BEST CERTIFIED CRYPTOCURRENCY RECOVERY EXPERT DUNAMIS CYBER SOLUTION

  • 04.01.25 04:57 florencestella

    THE BEST CERTIFIED CRYPTOCURRENCY RECOVERY EXPERT DUNAMIS CYBER SOLUTION It sounds like you went through a very frustrating experience with Cointrack, where your access to your own funds was unjustly restricted for months without clear communication or a solution. The extended periods of account freezes, lack of transparency, and vague customer support responses would make anyone anxious. It’s understandable that you suspected the issue could be related to your login activity, but it’s surprising that something as minor as using the same Wi-Fi network could trigger such severe restrictions. I’m glad to hear that DUNAMIS CYBER SOLUTION Recovery was able to help you get your account unlocked and resolve the issue. It’s unfortunate that you had to seek third-party assistance, but it’s a relief that the situation was eventually addressed. If you plan on using any platforms like this again, you might want to be extra cautious, especially when dealing with sensitive financial matters. And if you ever need to share your experience to help others avoid similar issues, feel free to reach out. It might be helpful for others to know about both the pitfalls and the eventual resolution through services like DUNAMIS CYBER SOLUTION Recovery. [email protected] +13433030545 [email protected]

  • 06.01.25 19:09 michaeljordan15

    We now live in a world where most business transactions are conducted through Bitcoin and cryptocurrency. With the rapid growth of digital currencies, everyone seems eager to get involved in Bitcoin and cryptocurrency investments. This surge in interest has unfortunately led to the rise of many fraudulent platforms designed to exploit unsuspecting individuals. People are often promised massive profits, only to lose huge sums of money when they realize the platform they invested in was a scam. contact with WhatsApp: +1 (443) 859 - 2886 Email @ digitaltechguard.com Telegram: digitaltechguardrecovery.com website link:: https://digitaltechguard.com This was exactly what happened to me five months ago. I was excited about the opportunity to invest in Bitcoin, hoping to earn a steady return of 20%. I found a platform that seemed legitimate and made my investment, eagerly anticipating the day when I would be able to withdraw my earnings. When the withdrawal day arrived, however, I encountered an issue. My bank account was not credited, despite seeing my balance and the supposed profits in my account on the platform. At first, I assumed it was just a technical glitch. I thought, "Maybe it’s a delay in the system, and everything will be sorted out soon." However, when I tried to contact customer support, the line was either disconnected or completely unresponsive. My doubts started to grow, but I wanted to give them the benefit of the doubt and waited throughout the day to see if the situation would resolve itself. But by the end of the day, I realized something was terribly wrong. I had been swindled, and my hard-earned money was gone. The realization hit me hard. I had fallen victim to one of the many fraudulent Bitcoin platforms that promise high returns and disappear once they have your money. I knew I had to act quickly to try and recover what I had lost. I started searching online for any possible solutions, reading reviews and recommendations from others who had faced similar situations. That’s when I came across many positive reviews about Digital Tech Guard Recovery. After reading about their success stories, I decided to reach out and use their services. I can honestly say that Digital Tech Guard Recovery exceeded all my expectations. Their team was professional, efficient, and transparent throughout the process. Within a short time, they helped me recover a significant portion of my lost funds, which I thought was impossible. I am incredibly grateful to Digital Tech Guard Recovery for their dedication and expertise in helping me get my money back. If you’ve been scammed like I was, don’t lose hope. There are solutions, and Digital Tech Guard Recovery is truly one of the best. Thank you, Digital Tech Guard Recovery! You guys are the best. Good luck to everyone trying to navigate this challenging space. Stay safe.

Для участия в Чате вам необходим бесплатный аккаунт pro-blockchain.com Войти Регистрация
Есть вопросы?
С вами на связи 24/7
Help Icon