Этот сайт использует файлы cookies. Продолжая просмотр страниц сайта, вы соглашаетесь с использованием файлов cookies. Если вам нужна дополнительная информация, пожалуйста, посетите страницу Политика файлов Cookie
Subscribe
Прямой эфир
Cryptocurrencies: 9377 / Markets: 114993
Market Cap: $ 3 712 720 371 656 / 24h Vol: $ 187 913 305 328 / BTC Dominance: 58.97760273029%

Н Новости

Использование ChatGPT o3-mini и DeepSeek при создании iOS приложения Countries “Страны Мира”

Что делает “животворящая” конкуренция?

Появление “думающей” DeepSeek, позволило бесплатным подписчикам ChatGPT получить доступ к “рассуждающей” ChatGPT o3-mini.

Сразу же появилось желание испытать этот ИИ, тем более что у меня уже есть “Опыт создания iOS приложения Countries с помощью Claude 3.5 Sonnet, ChatGPT 4.o1, ChatGPT 4.o-preview и Gemini 2.0 Flash”.

В приведенном выше посте я предложила всем ИИ создать довольно простое на первый взгляд тестовое iOS приложение Countries, которое показывает все страны Мира по регионам (Европа, Азия, Латинская Америка и т.д.) и для каждой страны её название и флаг, a также численность населения population, размер ВВП (валового внутреннего продукта) gdp и расположение страны на карте Мира.

Использовались данные Всемирного банка (World Bank), но мы не сообщали ИИ ни сайты, ни структуры данных, всё это ИИ должен найти сам и использовать их при создании iOS приложения.

Раньше я отдавала предпочтение Clause 3.5 Sonnet при создании iOS приложений, прибегая к ChatGPT 4.o1 для решения отдельных проблем.

Но при разработке этого конкретного iOS приложения Clause 3.5 Sonnet оказался совершенно беспомощным при декодировании нестандартных JSON данных API Всемирного Банка, поставляющих информацию о странах, и пришлось обратиться за помощью к ChatGPT 4.o1, Gemini 2.0 Flash и ChatGPT 4.o-preview.

Они решили эту проблему по-разному:

  • ChatGPT 4.o1 - с первого захода,

  • Gemini 1.5 Flash, также, как и Clause 3.5 Sonnet, не справилась с этой задачей,

  • Gemini 2.0 Flash - со второго захода,

  • ChatGPT 4.o-preview сразу предложил блестящее оригинальное решение.

Кроме того, все 3 ИИ: ChatGPT 4.o1, Gemini 2.0 Flash и ChatGPT 4.o-preview предлагали для многопоточной выборки данных из сети старый CGD (Central Grand Dispatch), так что приходилось дополнительно рефакторить код до современного async / await.

Так что опыт создания такого тестового iOS приложения с помощью Clause 3.5 Sonnet + ChatGPT 4.o1 у меня уже был.

Но появление “рассуждающих” DeepSeek и ChatGPT o3-mini (даже в бесплатном варианте) изменили всё. Они реально выводят разработку iOS приложений на более высокий уровень.

Вот решение, которое предложил ChatGPT o3-mini:

22d80c1744cff75a35cfd2ef4e357048.gif

A вот что предложил DeepSeek:

7f28bc0bcc3267f950bdf1d9a4585be2.gif

Забегая вперед скажу, что это тестовое приложение интересно тем, что API Всемирного банка предоставляет “странную” нестандартную структуру JSON данных на верхнем уровне, a также есть логические ошибки несоответствия при проектировании этого API, когда одинаковые параметры в JSON данных имею различные ТИПЫ, что может затруднить их декодирование. Было интересно посмотреть, как ИИ справится с этой “человеческой” нелогичностью.

Кроме того, в современном Swift сейчас действуют 3 способа работы с многопоточной выборкой данных:

  1. Старый GCD (Grand Central Dispatch) c callbacks

  2. Новый async / await

  3. Продвинутый Swift 6 strict concurrency, который предотвращает “гонку данных” (data races) на этапе компиляции за счет использования акторов actor и изоляции isolation.

Будет интересно понять, какой из них выберет ИИ и сможет ли перейти на самый продвинутый.

Появление задания по отображению страны Мира на карте также было предложено не случайно. Разработка приложения велась для iOS 17, a на WWDC 2023 был представлен новый MapKit APIs для SwiftUI Map. С появлением новых API интеграция карт Map в приложение SwiftUI стала еще проще в iOS 17. Недостатком является то, что вам, возможно, придется переписать некоторые части интеграции карт в существующем приложении SwiftUI. Будет интересно, смогут ли наши ИИ внедрить в приложение Countries совершенно новый Map API для iOS 17.

Примечание. Если хотите больше знать о Swift 6 strict concurrency прочтите статью Concurrency Step-by-Step: A Network Request или её перевод на русский язык “Многопоточность по шагам: Сетевой запрос”.

По итогам ChatGPT o3-mini:

  1. Без каких либо проблем справился с декодированием JSON данных, удивив некоторыми изобретательными решениями.

  2. Использовал современную async / await систему работы с многопоточностью

  3. Предложил несколько вариантов перехода на Swift 6 strict concurrency с помощью @MainActor и маркировки функций выборки как nonisolated или использования Task.detached.

  4. Сначала предложил для карты старый API с Map (coordinateRegion: $region, annotationItems: [country]) и MapMaker, но после получения соответствующих предупреждений перешел на новый API c Map (position: $position) и Maker.

  5. Использовал CLGeocoder() для получения более точных географических координат столицы страны и Task.detached для запуска в фоновом режиме.

  6. Рассуждения краткие, по делу и длятся от 1 до 25 секунд, среднее время 8 секунд.

  7. Могу рекомендовать в качестве превосходного обучающего материала для iOS разработчиков.

По итогам DeepSeek:

  1. Без каких либо проблем справился с декодированием JSON данных, но застрял при установлении соответствия страны country и дополнительной информации о численности населения population и ВВП gdp, что объясняется “логическими ошибками” проектирования API Всемирного Банка

  2. Использовал современную async / await систему работы с многопоточностью

  3. Предложил для Swift 6 strict concurrency использовать @MainActor для View Model, a после замечаний добавил маркировку функций выборки fetch как nonisolated.

  4. Сначала предложил старый Map API с Map (coordinateRegion: $region, annotationItems: [country]) и MapMaker, но после получения соответствующих предупреждений довольно успешно перешел на новый API c Map (position: $position) и Maker.

  5. Использовал CLGeocoder() для получения более точных географических координат столицы страны и Task.detached для запуска в фоновом режиме.

  6. Плохо держит контекст: иногда для отработанных уже кусков кода предлагает код с предыдущими ошибками, так что результирующий код приложения на каждом этапе приходится собирать по кусочкам.

  7. Рассуждения очень пространные и длинные, но очень "живые" и любопытные, иногда правда сомнительные. Рассуждения длятся от 184 до 18 секунд, среднее время 50 секунд. A кроме того, последнее время часто можно видеть сообщение “Сервер занят. Пожалуйста, попробуйте позже.”:

f44dbb2fbe04d4e9f9eebefc44e1deda.png

Начинающим iOS программистам рекомендую использовать с крайней осторожностью в качестве обучающего материала - слишком много неоднозначных рассуждений относительно архитектуры iOS приложений.

Хотя по функциональным возможностям полученные ChatGPT o3-mini и DeepSeek iOS приложения приблизительно равны, код их абсолютно разный. Оба ИИ способны удивить не тривиальным изобретательным кодом. Качество кода можно оценить на Github CountryChatGPTo3 и CoutryDeepSeek.

Но использование DeepSeek потребовало больше времени и усилий программиста, работа ChatGPT o3-mini при меньших усилиях просто филигранна.

Так что приоритетным ИИ при разработке iOS приложений для меня на настоящий момент будет ChatGPT o3-mini.

Создание iOS приложения Countries для отображения стран Мира с помощью ChatGPT 03-mini

Итак, давайте попросим ChatGPT 03-mini создать полноценного iOS приложения Countries для отображения стран Мира по категориям с использованием SwiftUI и данных Всемирного Банка. При этом мы не будем сообщать ни сайты, ни структуры данных, всё это ИИ должен найти сам и использовать при создании приложения.

Создай iOS приложение, которое показывает страны Мира по категориям. Используй информацию Всемирного Банка.

Мы использовали режим “Reason”, который обещает применять логические выводы для получения результата, и “Search”, который позволит ИИ искать ответы в интернете:

fc090d3b955538d00a15592b24688a59.png

В результате мы получаем рассуждения, которые длятся 1 секунду:

204fdcf989cb9b74219dd89c2c1612bf.pngИ вот их перевод

Создание приложения

Я думаю о создании SwiftUI iOS приложения для демонстрации стран Мира по категориям, используя API Всемирного банка для таких данных, как название страны, регион и уровень дохода.

Формулирование структуры

Я пишу код SwiftUI приложения с моделью Country: Codable и ViewModel, использующей async/await для выборки списков стран из API Всемирного банка, классифицируя их по уровню дохода или региону.

Собираем всё вместе

Я работаю над декодированием второго элемента JSON, в котором перечислены страны countries с такими полями, как id, iso2Code, region, incomeLevel, capitalCity, longitude и latitude. Это включает определение структуры struct Country: Codable.

Преобразование данных

Я собираю по кусочкам структуру struct Country: Codable с такими полями, как id, iso2Code, name, region, incomeLevel, capitalCity, longitude и latitude. Также рассматриваю модель API ответа Response для декодирования JSON.

Создание моделей ответов Response

Я разрабатываю собственный декодер decoder для обработки массива JSON API Всемирного банка, сосредоточившись на втором элементе, содержащем данные о странах, и включив метаданные для управления страницами.

Компиляция данных о стране

Я собираю View Model в SwiftUI для выборки данных из API Всемирного банка, группирую страны по уровню дохода и готовлю View для их представления в категоризированных разделах.

Запуск приложения

Я создаю Swift приложение для отображения стран Мира по уровню дохода, используя разделы Section и категории, при этом предоставляя в распоряжение пользователя DetailView для более полной информации о стране.

Ниже приведен пример того, как можно создать приложение SwiftUI iOS, которое выбирает список стран Мира из API Всемирного банка, а затем отображает их, организованных по «категории» (в этом примере мы группируем их по уровню дохода incomeLevel).

URL для выборки стран Мира - это country endpoint API Всемирного банка (по адресу https://api.worldbank.org/v2/country?format=json), который возвращает двухэлементный разнородный массив JSON:

  • Первый элемент — это метаданные (например, количество страниц), а

  • Второй элемент — массив записей о странах.

    Мы можем создать пользовательский декодер decoder для «декодирования» этого массива верхнего уровня.

Ниже приведен полный код примера со следующими частями:

1. Модели данных (Data Model)

Создайте модель для страны. API возвращает такие поля, как id, name, region, incomeLevel и т. д. Мы также создаем вспомогательную модель для декодирования «странного» JSON массива верхнего уровня:

код Data Model
import Foundation

// MARK: - Models

// This struct is used to decode the top-level array.
// We ignore the first element (metadata) and then decode the second element as an array of Country.
struct CountryResponse: Codable {
    let countries: [Country]
    
    // Custom initializer to decode the top-level array.
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        // Decode (and ignore) the metadata.
        _ = try container.decode(Meta.self)
        // Now decode the countries array.
        countries = try container.decode([Country].self)
    }
}

// Metadata about the response (we don't use it in this sample).
struct Meta: Codable {
    let page: Int
    let pages: Int
    let per_page: String
    let total: Int
}

// The Country model - note that we use the "id" field from the API as the unique identifier.
struct Country: Codable, Identifiable {
    // The API's "id" is the country code.
    let id: String
    let iso2Code: String
    let name: String
    let region: Category
    let incomeLevel: Category
    let lendingType: Category
    let capitalCity: String
    let longitude: String
    let latitude: String
}

// A helper type for nested category fields (like region, incomeLevel, etc.)
struct Category: Codable {
    let id: String
    let value: String
}

2. View Model

View Model отвечает за выборку данных из API Всемирного банка, а затем за группировку стран по (в данном случае) уровню дохода incomeLevel. Вы можете выбрать любую понравившуюся вам категоризацию (например, по региону region).

код View Miodel
import Foundation
import SwiftUI

class CountriesViewModel: ObservableObject {
    @Published var countries: [Country] = []
    // Group countries by income level (or any category)
    @Published var groupedCountries: [String: [Country]] = [:]
    
    // Using async/await (requires iOS 15+)
    @MainActor
    func fetchCountries() async {
        // Request more than the default per_page (here 300) to get most of the countries.
        guard let url = URL(string: "https://api.worldbank.org/v2/country?format=json&per_page=300") else {
            print("Invalid URL")
            return
        }
        
        do {
            let (data, _) = try await URLSession.shared.data(from: url)
            let response = try JSONDecoder().decode(CountryResponse.self, from: data)
            countries = response.countries
            // Group by income level (for example, "High income", "Low income", etc.)
            groupedCountries = Dictionary(grouping: countries, by: { $0.incomeLevel.value })
        } catch {
            print("Error fetching countries: \(error)")
        }
    }
}

3. SwiftUI Views

Основной ContentView: список List, отображающий разделы Section (уровни дохода incomeLevel) с названиями стран. Нажатие на страну открывает подробный CountryDetailView.

код Views
import SwiftUI

struct ContentView: View {
    @StateObject var viewModel = CountriesViewModel()
    
    var body: some View {
        NavigationView {
          List {
              // Sort the keys (income levels) alphabetically
              ForEach(viewModel.groupedCountries.keys.sorted(), id: \.self) { incomeLevel in
                 Section(header: Text(incomeLevel)) {
                     if let countries = viewModel.groupedCountries[incomeLevel] {
                       ForEach(countries) { country in
                          NavigationLink(destination: CountryDetailView(country: country)) {
                                    Text(country.name)
                          }
                       }
                     }
                 }
              }
          }
          .navigationTitle("World Countries")
          // Use the .task modifier to call our async fetch function on appear.
          .task {
              await viewModel.fetchCountries()
          }
        }
    }
}

Подробный CountryDetailView показывает дополнительную информацию о выбранной стране.

struct CountryDetailView: View {
    let country: Country
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
                HStack {
                    Text("Region:")
                    Spacer()
                    Text(country.region.value)
                }
                HStack {
                    Text("Income Level:")
                    Spacer()
                    Text(country.incomeLevel.value)
                }
                HStack {
                    Text("ISO Code:")
                    Spacer()
                    Text(country.iso2Code)
                }
            }
            
            Section(header: Text("Location")) {
                HStack {
                    Text("Latitude:")
                    Spacer()
                    Text(country.latitude)
                }
                HStack {
                    Text("Longitude:")
                    Spacer()
                    Text(country.longitude)
                }
            }
        }
        .navigationTitle(country.name)
    }
}

Собираем все вместе

В главном файле вашего проекта Xcode (обычно помеченном @main) вы можете установить ContentView в качестве стартовой точки:

@main
struct WorldBankCountriesApp: App {
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}

Примечание: в этом примере используется синтаксис iOS 15+ async/await. Если вам нужна поддержка более ранних версий, вы можете использовать Combine или URLSession callbacks..

(См. также руководство Hacking with Swift по посылке и получению Codable данных с помощью URLSession для похожего шаблона. HACKINGWITHSWIFT.COM)

Объяснение

  1. Выборка и декодирование данных:

View Model выбирает данные из API endpoint Всемирного банка. Поскольку ответ response JSON представляет собой массив (сначала метаданные, затем фактический массив стран), для декодирования стран используется пользовательский init(from decoder: Decoder) в структуре CountryResponse.

(Подробнее о структурах, полученных в результате выборки см. в документации API Всемирного банка DATAHELPDESK.WORLDBANK.ORG.)

  1. Группировка и отображение данных:

После выборки страны countries группируются по уровню дохода incomeLevel с помощью Swift метода Dictionary(grouping:by:). В View каждая группа отображается как отдельный раздел Section. Это дает категориальное представление стран мира. (Для аналогичного подхода к группировке и отображению данных API в SwiftUI см. примеры выборки данных SwiftUI DEV.TO.)

  1. Async/Await:

Использование async/await обеспечивает отзывчивость UI во время выполнения сетевого запроса.

Этот пример дает отправную точку. Вы можете изменить логику группировки (например, по региону region или уровню дохода incomeLevel) или добавить больше деталей в CountryDetailView по мере необходимости.

Ссылки

HACKINGWITHSWIFT.COM – Статья на Hacking with Swift “Sending/receiving Codable data with URLSession and SwiftUI”) (“Посылка /получение Codable данных с помощью URLSession и SwiftUI”)

DATAHELPDESK.WORLDBANK.ORG – Базовые структуры вызовов API Всемирного банка

Этот пример должен помочь вам начать создавать iOS SwiftUI приложение, которое отображает страны Мира, организованные по категориям, с использованием данных API Всемирного банка. Удачного кодирования!

Версия 1. Запускаем приложение. Получаем результат:

5f25d90f646805abb6ea84820b5654ea.png

В списке стран мы получили НЕ только реальные страны Мира, но и агрегаты AGGREGATES, что для нас не желательно. Кроме того, мы хотим заносить страны в ту или иную категорию НЕ по уровню дохода incomeLevel, a по географическим регионам region.

Что касается кода, то ChatGPT o3-mini справился прекрасно. Несмотря на “странную” нестандартную структуру JSON данных на верхнем уровне, представляющую собой массив из 2-х разнородных элементов, ChatGPT o3-mini, используя пользовательский init (from decoder: Decoder) в структуре CountryResponse, получил правильные данные о странах countries. Выборка данных из сети выполнена с помощью современной async / await системы работы с многопоточностью.

Показ реальных стран (НЕ агрегатов) и группировка по регионам region

Давайте попросим ChatGPT o3-mini показать нам только реальные страны и сгруппировать их по регионам.

13b52eded3fb7c526e66e74e5a52116b.png

Покажи только реальные страны в списке стран и сгруппируйте их по регионам region

В результате мы получаем рассуждения, которые длятся 19 секунд:

4d5e0cd43a9c0767ae15a8f42b4e9884.pngИ вот их перевод:

Уточнение списка

Я размышляю над тем, что представляет собой «реальная страна», фильтруя агрегированные сущности, такие как «Арабский мир» ("Arab World") или «Европа и Центральная Азия» ("Europe & Central Asia" ) из API Всемирного банка, сосредоточившись исключительно на суверенных государствах.

Определение агрегатов

Я изучаю структуру JSON API Всемирного банка, чтобы определить поля, которые различают агрегированные сущности. Например, регионы, такие как «NA» или «Aggregates», вероятно, указывают на несуверенные сущности, которые можно отфильтровать, чтобы сосредоточиться на реальных суверенных государствах.

Определение агрегатов

Хорошо, дайте подумать. Агрегаты в API Всемирного банка обычно имеют значение region «Aggregates». Фильтрация их и сущностей с «NA» в качестве region.id кажется многообещающим. Код Swift может эффективно с этим справиться.

Уточнение модели

Хорошо, дайте подумать. Я дорабатываю View Model, чтобы отфильтровать агрегаты, гарантируя, что после декодирования страны не будут их содержать

countries = response.countries.filter { $0.region.value != "Aggregates" }.

Организация по региону

Я группирую реальные страны по регионам, используя словарь Dictionary в View Model. Обновляю ContentView заголовками header разделов Sections для регионов region и размещаю список соответствующих стран под каждым заголовком. Прогресс стабильный и продуманный.

Ниже приведен обновленный пример, который выбирает данные по странам Всемирного банка, отфильтровывает несуверенные "агрегаты" (т. е. оставляет только "реальные" страны Мира), а затем группирует их по регионам region. В этом примере мы предполагаем, что любая страна, значение региона region которой равно "Aggregates", должна быть исключена.

Код разделен на три части:

1. Модели данных(Data Model)

Определите свои модели, как и прежде. Ответ response верхнего уровня — это массив unkeyedContainer, который мы декодируем, игнорируя первый элемент (метаданные), а затем декодируем список стран:

код Data Model
import Foundation

// MARK: - Models

struct CountryResponse: Codable {
    let countries: [Country]
    
    // Custom initializer to decode the top-level array.
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        // Decode and ignore metadata.
        _ = try container.decode(Meta.self)
        // Decode the countries array.
        countries = try container.decode([Country].self)
    }
}

struct Meta: Codable {
    let page: Int
    let pages: Int
    let per_page: String
    let total: Int
}

struct Country: Codable, Identifiable {
    let id: String            // This is the country code.
    let iso2Code: String
    let name: String
    let region: Category
    let incomeLevel: Category
    let lendingType: Category
    let capitalCity: String
    let longitude: String
    let latitude: String
}

struct Category: Codable {
    let id: String
    let value: String
}

2. View Model

Теперь View Model выбирает данные, отфильтровывает все страны со значением region.value равным “Aggregates” (которые Всемирный банк использует для нереальных групп стран), а затем группирует оставшиеся страны по регионам region.

код View Model
import Foundation
import SwiftUI

class CountriesViewModel: ObservableObject {
    @Published var countries: [Country] = []
    // Group real countries by region.
    @Published var groupedCountries: [String: [Country]] = [:]
    
    @MainActor
    func fetchCountries() async {
        // Use a per_page parameter high enough to include most countries.
        guard let url = URL(string: "https://api.worldbank.org/v2/country?format=json&per_page=300") else {
            print("Invalid URL")
            return
        }
        
        do {
            let (data, _) = try await URLSession.shared.data(from: url)
            let response = try JSONDecoder().decode(CountryResponse.self, from: data)
            
            // Filter out aggregates - only include countries whose region value is not "Aggregates"
            let realCountries = response.countries.filter { $0.region.value != "Aggregates" }
            self.countries = realCountries
            
            // Group the filtered countries by region.
            groupedCountries = Dictionary(grouping: realCountries, by: { $0.region.value })
        } catch {
            print("Error fetching countries: \(error)")
        }
    }
}

3. SwiftUI Views

Основной List View:

Список стран сгруппирован в разделы Section по регионам (с названием региона в качестве заголовка). Нажатие на конкретную страну покажет подробную дополнительную информацию о стране в CountryDetailView.

код ContentView и CountryDetailView :
import SwiftUI

struct ContentView: View {
    @StateObject var viewModel = CountriesViewModel()
    
    var body: some View {
        NavigationView {
            List {
                // Sort region names alphabetically.
                ForEach(viewModel.groupedCountries.keys.sorted(), id: \.self) { region in
                   Section(header: Text(region)) {
                      if let countriesInRegion = viewModel.groupedCountries[region] {
                        ForEach(countriesInRegion) { country in
                          NavigationLink(destination: CountryDetailView(country: country)) {
                                    Text(country.name)
                          }
                        }
                      }
                   }
                }
            }
            .navigationTitle("World Countries")
            .task {
                await viewModel.fetchCountries()
            }
        }
    }
}

Подробный CountryDetailView: показывает дополнительную информацию о выбранной стране.

struct CountryDetailView: View {
    let country: Country
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
                HStack {
                    Text("Region:")
                    Spacer()
                    Text(country.region.value)
                }
                HStack {
                    Text("Income Level:")
                    Spacer()
                    Text(country.incomeLevel.value)
                }
                HStack {
                    Text("ISO Code:")
                    Spacer()
                    Text(country.iso2Code)
                }
            }
            
            Section(header: Text("Location")) {
                HStack {
                    Text("Latitude:")
                    Spacer()
                    Text(country.latitude)
                }
                HStack {
                    Text("Longitude:")
                    Spacer()
                    Text(country.longitude)
                }
            }
        }
        .navigationTitle(country.name)
    }
}

Объяснение

  1. Фильтрация реальных стран:

В методе View Model fetchCountries() после декодирования JSON мы отфильтровываем все страны, значение value региона region которых равно «Aggregates». Этот шаг гарантирует, что в вашем списке появятся только суверенные государства.

  1. Группировка по региону:

Оставшиеся страны затем группируются в словарь с помощью Dictionary(grouping:by:) с ключом region.value.

  1. Отображение данных:

SwiftUI список List использует раздел Section для каждого региона region, а нажатие на строку показывает подробное CountryDetailView c дополнительной информацией о стране.

В этом примере показано, как отображать только «реальные» страны, сгруппированные по региону. При необходимости вы можете дополнительно настроить критерии фильтрации. Удачного кодирования!

Версия 2. Запускаем приложение. Получаем результат:

18dc1e6e000bd0151825064033eee917.png

Сейчас в списке стран только реальные страны Мира, нет никаких агрегатов AGGREGATES. Кроме того, страны сгруппированы по географическим регионам region.

Что касается кода, то ChatGPT o3-mini справился прекрасно.

Добавляем численность населения population и ВВП gdp

Теперь мы хотим добавить численность населения population и ВВП gdp для каждой страны:

7b1ebc7916ca515a1d5e5b09830c5906.png

добавь численность населения population и ВВП gdp и флаг к каждой стране. Используй эмодзи для флага.

В результате мы получаем рассуждения, которые длятся 25 секунд:

8ed3b7c707064556ca29c0d638225830.pngИ вот их перевод:

Обогащение данных

Чтобы обогатить набор данных по странам данными о населении, ВВП и флаге, я использую API Всемирного банка. Население и ВВП берутся из определенных endpoints, а эмодзи флага выводится из кода страны.

Оценка эффективности API

Я рассматриваю либо отдельные вызовы для данных каждой страны, что требует больших затрат, либо массовый вызов indicator endpoint для оптимизации обработки путем объединения результатов.

Расширение модели

Я интегрирую поля population и gdp для населения и ВВП в модель страны Country, одновременно выводя эмодзи флага из ISO2 кода с помощью расширения extension Swift. Этот подход прост и эффективен.

Преобразование выбранных данных

Я думаю о получении данных о населении population и ВВП gdp путем выполнения раздельных API вызовов для множества стран, а затем анализа выбранных JSON данных с целью создания словаря для эффективного преобразования данных.

Реализация многопоточных вызовов

Объединение многопоточных выборок данных для населения population и ВВП gdp в View Model. Эти значения пока отсутствуют в модели страны Country, поэтому их можно передать непосредственно в View для интеграции.

Улучшение модели

Я думаю о добавлении дополнительных свойств для населения population и ВВП gdp в модель страны Country. Эти значения, извлеченные из разных endpoints, можно было бы предоставить отдельно или интегрировать с помощью вычисляемых свойств для ясности.

Улучшение обработки данных

Я думаю о том, следует ли добавлять дополнительные Optional переменные var для населения population и ВВП gdp в структуру страны Country, хранящуюся отдельно в View Model. Этот подход поддерживает четкую, управляемую структуру данных.

Настройка View Model

Я помещаю данные о населении population и ВВП gdp в словари внутри View Model, которые обновляются сразу же после выборки стран. Это обеспечивает организованное и актуальное управление данными.

Управление данными

Я настраиваю View Model для хранения данных о населении population и ВВП gdp в словарях. Это включает многопоточную выборку этих значений после выборки данных о странах, что обеспечивает плавный и организованный процесс выборки.

Улучшение обработки данных

Я настраиваю View Model для управления данными о населении population и ВВП gdp в словарях Dictionary, синхронизированных с идентификаторами соответствующих им стран, что обеспечивает эффективный и организованный поиск данных.

Обеспечение согласованности

Использование id с трехбуквенным ISO кодом для стран countries упрощает точную “привязку” данных о населении population и ВВП gdp из API Всемирного банка.

Точное сопоставление данных

Обеспечение того, чтобы трехбуквенные ISO коды в структуре страны Country правильно соответствовали countryiso3code API Всемирного банка для точной “привязки” данных о населении population и ВВП gdp.

Эффективная организация данных

Создание новых структур для данных о населении population и ВВП gdp для упрощения сопоставления по коду страны, что обеспечивает согласованность с API ответами response. Такой подход приведет к более четкой обработке и анализу данных.

Точная “привязка” данных

Я работаю над структурами для обработки данных о населении population и ВВП gdp, обеспечивая точную “привязку” данных по коду страны. Такой подход оптимизирует ясность и анализ данных.

Обновление модели

Я добавляю асинхронные async запросы для выборки данных о населении population и ВВП gdp, “привязывая” результаты выборки по коду страны с соответствующими словарями для эффективного управления данными и анализа.

Создание асинхронных функций

Я совершенствую асинхронные async функции для выборки данных о населении population и ВВП gdp по странам, декодирую их в словари и обрабатываю ошибки для обеспечения точности данных.

Улучшение UI

Я работаю над отображением населения population, ВВП gdp и эмодзи флага для каждой страны в View. Использование расширения String для эмодзи флага обеспечивает безупречное, интуитивно понятное представление данных.

Форматирование значений ВВП

Я создаю основной View со списком List для четкого отображения отформатированных данных о ВВП gdp и населении population, включая отсутствующие данные как «N/A», используя number formatters и условный рендеринг.

Ниже приведен обновленный полный пример. В этой версии мы:

  • Получаем список «реальных» стран (фильтруя агрегаты “Aggregates”)

  • В многопоточном режиме получаем последние данные о населении (индикатор «SP.POP.TOTL») и ВВП (индикатор «NY.GDP.MKTP.CD») для каждой страны (используя данные за последний год, например, 2022)

  • Вычисляем эмодзи флага из двухбуквенного ISO кода страны

  • Отображаем флаг, название, население и ВВП каждой страны в списке (сгруппированном по регионам)

1. Модели данных Data Model

Мы используем ту же модель Country (декодирование из массива верхнего уровня) и добавляем расширение extension для преобразования флагов в эмодзи. Мы также определяем простые модели для ответов response индикаторов Indicator.

код Data Model
import Foundation

// MARK: - Models
// This struct is used to decode the top-level array.
// We ignore the first element (metadata) and then decode the second element as an array of Country.
struct CountryResponse: Codable {
    let countries: [Country]
    
    // Custom initializer to decode the top-level array.
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        // Decode (and ignore) the metadata.
        _ = try container.decode(Meta.self)
        // Now decode the countries array.
        countries = try container.decode([Country].self)
    }
}
// Metadata about the response (we don't use it in this sample).
struct Meta: Codable {
    let page: Int
    let pages: Int
    let per_page: String
    let total: Int
}
// The Country model - note that we use the "id" field from the API as the unique identifier.
struct Country: Codable, Identifiable {
    // The API's "id" is the country code.
    let id: String
    let iso2Code: String
    let name: String
    let region: Category
    let incomeLevel: Category
    let lendingType: Category
    let capitalCity: String
    let longitude: String
    let latitude: String
}
// A helper type for nested category fields (like region, incomeLevel, etc.)
struct Category: Codable {
    let id: String
    let value: String
}
//------
// MARK: - Indicator API Models
// Response to decode indicator data
struct IndicatorResponse: Codable {
    let data: [IndicatorData]
    
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        _ = try container.decode(Meta.self)
        data = try container.decode([IndicatorData].self)
    }
}
struct IndicatorData: Codable {
    let indicator: Indicator?
    let country: IndicatorCountry?
    let countryiso3code: String?
    let date: String?
    let value: Double?
    let unit: String?
    let obs_status: String?
    let decimal: Int?
}
struct Indicator: Codable {
    let id: String?
    let value: String?
}
struct IndicatorCountry: Codable {
    let id: String?
    let value: String?
}
// MARK: - Flag Emoji Extension
extension String {
    /// Converts a 2-letter country code into its corresponding flag emoji.
    var flagEmoji: String {
        self.uppercased().unicodeScalars.compactMap { scalar -> String? in
            guard let flagScalar = UnicodeScalar(127397 + scalar.value) else { return nil }
            return String(flagScalar)
        }.joined()
    }
}

2. View Model

View Model теперь выбирает список стран countries, фильтрует агрегаты “Aggregates”,, а затем — используя async let — выбирает последние данные о населении population и ВВП gdp для всех стран из endpoint индикатора. Мы сохраняем эти значения в словарях (ключом к которым служит трехбуквенный код страны), чтобы View могло их найти.

код View Model:
import SwiftUI
class CountriesViewModel: ObservableObject {
    @Published var countries: [Country] = []
    // Group real countries by region.
    @Published var groupedCountries: [String: [Country]] = [:]
    
    // Indicator dictionaries: country id -> value
    @Published var populationData: [String: Int] = [:]
    @Published var gdpData: [String: Double] = [:]
    
    @MainActor
    func fetchCountries() async {
        guard let url = URL(string: "https://api.worldbank.org/v2/country?format=json&per_page=300") else {
            print("Invalid URL")
            return
        }
        
        do {
            let (data, _) = try await URLSession.shared.data(from: url)
            let response = try JSONDecoder().decode(CountryResponse.self, from: data)
            
            // Filter out non‑sovereign aggregates (assume region value "Aggregates" means not a real country)
            let realCountries = response.countries.filter { $0.region.value != "Aggregates" }
            self.countries = realCountries
            groupedCountries = Dictionary(grouping: realCountries, by: { $0.region.value })
            
            // Fetch population and GDP concurrently.
            async let popResult = fetchPopulation()
            async let gdpResult = fetchGDP()
            _ = try await (popResult, gdpResult)
            
        } catch {
            print("Error fetching countries: \(error)")
        }
    }
    
    // Fetch population (indicator "SP.POP.TOTL") for year 2022.
    func fetchPopulation() async throws {
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/SP.POP.TOTL?format=json&per_page=500&date=2022") else { return }
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(IndicatorResponse.self, from: data)
        var dict: [String: Int] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = Int(value)
            }
        }
        await MainActor.run { self.populationData = dict }
    }
    
    // Fetch GDP (indicator "NY.GDP.MKTP.CD") for year 2022.
    func fetchGDP() async throws {
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/NY.GDP.MKTP.CD?format=json&per_page=500&date=2022") else { return }
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(IndicatorResponse.self, from: data)
        var dict: [String: Double] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = value
            }
        }
        await MainActor.run { self.gdpData = dict }
    }
}

3. SwiftUI Views

В списке List теперь отображаются эмодзи флага каждой страны (вычисляется на основе двухбуквенного ISO кода), название, население population и ВВП gdp. Если значение недоступно, то отображается «N/A».

Основной View со списком List (сгруппирован по регионам):

Код ContentView и CountryDetailView
import SwiftUI

struct ContentView: View {
    @StateObject var viewModel = CountriesViewModel()
    
    var body: some View {
        NavigationView {
            List {
                ForEach(viewModel.groupedCountries.keys.sorted(), id: \.self) { region in
                    Section(header: Text(region)) {
                        if let countries = viewModel.groupedCountries[region] {
                            ForEach(countries) { country in
                                NavigationLink(destination: CountryDetailView(
                                     country: country,
                                     population: viewModel.populationData[country.id],
                                                                              
                                     gdp: viewModel.gdpData[country.id])) {
                                    HStack {
                                        // Flag emoji from iso2Code
                                        Text(country.iso2Code.flagEmoji)
                                            .font(.largeTitle)
                                        VStack(alignment: .leading) {
                                            Text(country.name)
                                                .font(.headline)
                                            HStack {
                                                if let 
                                               pop = viewModel.populationData[country.id] {
                                                    Text("Population: \(pop)")
                                                } else {
                                                    Text("Population: N/A")
                                                }
                                                Spacer()
                                                if let gdp = viewModel.gdpData[country.id] {
                                                    Text("GDP: \(gdp, specifier: "%.0f")")
                                                } else {
                                                    Text("GDP: N/A")
                                                }
                                            }
                                            .font(.subheadline)
                                            .foregroundColor(.secondary)
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .navigationTitle("World Countries")
            .task {
                await viewModel.fetchCountries()
            }
        }
    }
}

Detail View (с дополнительной информацией):

struct CountryDetailView: View {
    let country: Country
    let population: Int?
    let gdp: Double?
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Flag:")
                    Spacer()
                    Text(country.iso2Code.flagEmoji)
                        .font(.largeTitle)
                }
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
                HStack {
                    Text("Region:")
                    Spacer()
                    Text(country.region.value)
                }
                HStack {
                    Text("Income Level:")
                    Spacer()
                    Text(country.incomeLevel.value)
                }
                HStack {
                    Text("ISO Code:")
                    Spacer()
                    Text(country.iso2Code)
                }
            }
            
            Section(header: Text("Indicators")) {
                HStack {
                    Text("Population:")
                    Spacer()
                    if let pop = population {
                        Text("\(pop)")
                    } else {
                        Text("N/A")
                    }
                }
                HStack {
                    Text("GDP (USD):")
                    Spacer()
                    if let gdp = gdp {
                        Text("\(gdp, specifier: "%.0f")")
                    } else {
                        Text("N/A")
                    }
                }
            }
            
            Section(header: Text("Location")) {
                HStack {
                    Text("Latitude:")
                    Spacer()
                    Text(country.latitude)
                }
                HStack {
                    Text("Longitude:")
                    Spacer()
                    Text(country.longitude)
                }
            }
        }
        .navigationTitle(country.name)
    }
}

Объяснение

Эмодзи флаг:

Расширение extension строки String преобразует двухбуквенный ISO код (например, «US») в соответствующий эмодзи флаг. Это используется как в списке List, так и в подробном CountryDetailView.

Население и ВВП:

Отдельные асинхронные async функции вызывают endpoints индикатора Всемирного банка для населения population и ВВП gdp за указанный год (в данном примере 2022). Результаты сохраняются в словарях, имеющих ключи по трехбуквенному коду страны.

(Этот подход по стилю похож на примеры использования URLSession с async/await

HACKINGWITHSWIFT.COM.)

Отображение данных:

В главном списке List для каждой страны отображаются флаг, название, население и ВВП (если доступно). В подробном CountryDetailView отображаются те же данные вместе с дополнительными полями.

В этом примере показано, как обогатить список стран реальными данными о населении и ВВП вместе с флаговым эмодзи в виде флага. Удачного кодирования!

Версия 3. Запускаем приложение. Получаем результат:

Выдается ошибка:

Error fetching countries: typeMismatch(Swift.String, Swift.DecodingError.Context(codingPath: [_CodingKey(stringValue: "Index 0", intValue: 0), CodingKeys(stringValue: "per_page", intValue: nil)], debugDescription: "Expected to decode String but found number instead.", underlyingError: nil))

(Ошибка при выборке стран: typeMismatch(Swift.String, Swift.DecodingError.Context(codingPath: [_CodingKey(stringValue: "Index 0", intValue: 0), CodingKeys(stringValue: "per_page", intValue: nil)], debugDescription: "Ожидается декодирование строки String, но вместо этого найдено число.", underlyingError: nil))

Поэтому информация о численности населения Population и ВВП GDP показывается как N/A как в основном списке стран, так и в дополнительной информации о стране.

6d422e0a486ac79313998407873859f2.png

Это опять связано с декодированием метаданных индикатора endpoint Indicator.

У нас используется одна и та же Модель Meta для метаданных:

// Metadata about the response (we don't use it in this sample).
struct Meta: Codable {
    let page: Int
    let pages: Int
    let per_page: String
    let total: Int

Как для endpoint country при выборке стран:

 struct CountryResponse: Codable {
    let countries: [Country]
    
    // Custom initializer to decode the top-level array.
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        // Decode (and ignore) the metadata.
        _ = try container.decode(Meta.self)
        // Now decode the countries array.
        countries = try container.decode([Country].self)
    }
}

… так и для endpoint Indicator при выборке численности населения и ВВП:

// MARK: - Indicator API Models
// Response to decode indicator data
struct IndicatorResponse: Codable {
    let data: [IndicatorData]
    
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        _ = try container.decode(Meta.self)
        data = try container.decode([IndicatorData].self)
    }
}

Но судя по ошибке и просмотру “живых” JSON данных для численности населения, мы видим, что per_page в метаданных indicator является НЕ String, a число Int ):

69ca81b5fc5f8f5dce266aaaa9dac9ce.png

Все ИИ плохо работают с неаккуратно спроектированными человеком структурами.

И в этой ситуации ChatGPT удивила очень интересным решением.

Корректируем полe “per_page” в Индикаторе

Давайте сообщим об этом ChatGPT o3-mini:

30b8d95e7d6ad78670a41e210d518e24.png

В Meta для CountryResponse поле “per_page” является строкой String, a Meta для IndicatorResponse поле “per_page” является целым числом Int

В результате мы получаем рассуждения, которые длятся 10 секунд:

af78f60a42382a16c721ff79242883a1.pngВот их перевод:

Устранение несоответствий ТИПов

Я работаю над несоответствиями между 'per_page' как String в CountryResponse и Int в IndicatorDataResponse. Решение: пользовательский Decodable для унификации этих ТИПов.

Создание универсального ТИПа

Я разрабатываю IntOrString ТИП, который может управлять декодированием как Int, так и String. Этот подход может устранить несоответствие ТИПов 'per_page'. Теперь следующим шагом будет интеграция с ТИПом Meta.

Разработка решений

Я собираю воедино пользовательский ТИП IntOrString для декодирования per_page, специфичного для каждой endpoint. Этот адаптивный метод обеспечивает эффективное управление ТИПом Meta, поддерживая код оптимизированным и актуальным.

Повышение гибкости данных

Я создаю сообщение для устранения несоответствия в "per_page" в разных API. Реализация гибкого ТИПа для декодирования обеспечивает плавную интеграцию и согласованность данных.

Разработка решения

Я разрабатываю ТИП FlexibleInt для искусной обработки декодирования из Int или String, гарантируя, что поле Meta "per_page" останется согласованным, будь то целое число Int или строка String.

Когда API возвращает одно и то же поле, используя разные ТИПы (например, «per_page» как String в одном ответе response и как Int в другом), хорошим подходом является создание пользовательского ТИПа, который может декодировать любой из них. Например, вы можете определить ТИП (здесь он называется FlexibleInt), который пытается декодировать Int напрямую, а если это не удается, пытается декодировать String, а затем преобразовать его в Int. Затем вы используете этот ТИП в своей модели Meta.

Ниже приведен пример:

import Foundation

// A type that decodes either an Int or a String convertible to an Int.
struct FlexibleInt: Codable {
    let value: Int

    init(from decoder: Decoder) throws {
        let container = try decoder.singleValueContainer()
        if let intValue = try? container.decode(Int.self) {
            self.value = intValue
        } else if let stringValue = try? container.decode(String.self),
                  let intValue = Int(stringValue) {
            self.value = intValue
        } else {
            throw DecodingError.dataCorruptedError(
                in: container,
                debugDescription: "Expected Int or String convertible to Int"
            )
        }
    }
    
    func encode(to encoder: Encoder) throws {
        var container = encoder.singleValueContainer()
        try container.encode(value)
    }
}

// Update the Meta model to use FlexibleInt for per_page.
struct Meta: Codable {
    let page: Int
    let pages: Int
    let per_page: FlexibleInt  // now flexible
    let total: Int
}

Теперь, как в CountryResponse, так и в IndicatorDataResponse (или любом другом ответе response, который использует объект Meta), вы можете использовать этот же ТИП Meta. Такой подход гарантирует, что независимо от того, возвращает ли API «per_page» как строку String или как целое число Int, ваш код сможет декодировать его согласованно.

Объяснение

FlexibleInt:

Пользовательский ТИП сначала пытается декодировать как Int. Если это не удается, он декодирует String и преобразует его в Int. Если ни то, ни другое не работает, он выдает ошибку.

Модель Мeta:

Вместо того, чтобы определять "per_page" как фиксированный ТИП (Int или String), мы определяем его как FlexibleInt. Это позволяет использовать одну и ту же модель для обеих endpoints, где API возвращает другой ТИП для этого поля.

Это решение позволяет вашим моделям быть устойчивыми к небольшим несоответствиям API.

Версия 4. Запускаем приложение. Получаем результат:

15e34751913a2f3baa5b72bd7153651b.png

Приложение отлично работает - ошибок нет, но есть предупреждения:

266be672c8b652bc66b0e30d1c56f1dd.png

Избавляемся от предупреждений

Давайте попросим ChatGPT o3-mini разобраться с этими предупреждениями:

33c8a10a870137f45ff15e0dbea50499.png

ТИП, который “выводится из контекста” для константы ‘popResult’, это ‘()’, что может быть неожиданным. ТИП, который “выводится из контекста” для константы ‘gdpResult’, это ‘()’, что может быть неожиданным.

В результате мы получаем рассуждения, которые длятся 13 секунд:

c2ada3af7c40a5d99e449b36b8eec22b.pngВот их перевод:

Оценка выходных данных функций

Я собираю информацию о том, что fetchPopulation() и fetchGDP() возвращают Void. Это, в свою очередь, приводит к тому, что popResult и gdpResult имеют ТИП (), что неожиданно. Пришло время переосмыслить подход.

Возвращаясь к многопоточности

Я уточняю, как обрабатывать асинхронные async функции, сравнивая последовательные вызовы с try await против async let. Последовательные вызовы могут упростить обработку ТИПов и сократить количество ошибок.

Оценка вариантов

Я планирую различные способы одновременного вызова асинхронных async функций. Использование try await с ThrowingTaskGroup(of:) кажется самым простым и эффективным решением.

Управление многопоточностью

Я выясняю, как использовать асинхронные async функции и одновременно await их с помощью try await. Такой подход управляет ожидаемыми ТИПами и поддерживает эффективность обработки.

Баланс многопоточности

Я работаю над вариантами многопоточных асинхронных async вызовов функций, рассматривая передовой опыт для обеспечения эффективности и соответствия ожидаемым ТИПам. Хм, дайте подумать: эффективная многопоточность — это ключ.

Выбор решения

Я рассматриваю возможность удаления назначений для асинхронных функций, чтобы избежать предупреждений. Явные аннотации ТИПов или подчеркивания _ могут помочь. Такой подход может упростить процесс.

Разбор многопоточности

Я работаю над асинхронными вызовами функций, чтобы оптимизировать многопоточность. Явные аннотации ТИПов или подчеркивания _ могут помочь избежать предупреждений и обеспечить плавную обработку возвращаемых типов Void.

Выравнивание возвращаемых значений функций

Я гарантирую, что асинхронные вызовы функций соответствуют ожиданиям ТИПа Void. Явные аннотации ТИПов или подчеркивания _ помогают избежать предупреждений, улучшая процесс кодирования.

Предупреждение появляется, потому что ваши асинхронные async функции возвращают Void, поэтому привязка async let выводит из контекста” ТИП () (Void). Чтобы убрать предупреждение, вы можете явно аннотировать ТИП как Void или просто await их, не пытаясь захватить значение, которое вам не нужно. Например, обновите свой код следующим образом:

// In your fetchCountries() method
async let popResult: Void = fetchPopulation()
async let gdpResult: Void = fetchGDP()

try await popResult
try await gdpResult

В качестве альтернативы, если результаты вас вообще не интересуют, вы можете просто вызывать их последовательно:

try await fetchPopulation()
try await fetchGDP()

Использование явных аннотаций ТИПов (как в первом примере) дает понять, что вы ожидаете Void, и устраняет предупреждение “inferred type ()” («выведенный из контекста ТИП - ()»).

Используем второй альтернативный способ.

// Fetch population and GDP concurrently.
         //   async let popResult = fetchPopulation()
         //   async let gdpResult = fetchGDP()
             try await  fetchPopulation()
             try await fetchGDP()

У нас есть еще предупреждения:

75652e66221ec5a4694e88d0f353c4b7.png

Давайте попросим ChatGPT o3-mini разобраться с этими предупреждениями:

184f96d906ab1b7ad1668db869a607b7.png

ссылка на захваченную переменную var 'dict' в многопоточном коде, это ошибка в режиме Swift 6

В результате мы получаем рассуждения, которые длятся 17 секунд:

1eeabb080b3c77ee1b8f86a4a82b6c52.pngВот их перевод:

Устранение ошибки многопоточности

Довольно интересно, что Swift 6 отмечает проблемы с изменяемыми переменными в многопоточном коде. Чтобы исправить это,сделайте назначение локальным переменным в асинхронных замыканиях, обеспечивая неизменяемость.

Исследование проблем многопоточности

Я проверяю, является ли предупреждение Swift 6 о захвате переменной var 'dict' в многопоточном замыкании действительным. Проблема возникает во время выполнения блока MainActor.run, который захватывает изменяемую переменную 'dict'.

Смягчение изменяемости

Хм, я думаю сделать 'dict' неизменяемой переменной или скопировать её перед замыканием. Мы выполним назначение переменной за пределами замыкания, что безопасно и безошибочно. Swift 6 заставляет применять эти передовые практики.

Эта ошибка обычно возникает, когда изменяемая переменная (например, ваш локальный словарь 'dict') захватывается многопоточное замыкание. Один из способов исправить это — создать неизменяемую копию (константу let) словаря после того, как вы закончите его сборку, а затем использовать ее в замыкании MainActor. Например, обновите свои функции следующим образом:

код fetchPopulation() и fetchGDP()
func fetchPopulation() async throws {
    guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/SP.POP.TOTL?format=json&per_page=500&date=2022") else { return }
    let (data, _) = try await URLSession.shared.data(from: url)
    let decoded = try JSONDecoder().decode(PopulationDataResponse.self, from: data)
    var dict: [String: Int] = [:]
    for item in decoded.data {
        if let code = item.countryiso3code, let value = item.value {
            dict[code] = Int(value)
        }
    }
    // Create an immutable copy before passing it to MainActor
    let result = dict
    await MainActor.run {
        self.populationData = result
    }
}

func fetchGDP() async throws {
    guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/NY.GDP.MKTP.CD?format=json&per_page=500&date=2022") else { return }
    let (data, _) = try await URLSession.shared.data(from: url)
    let decoded = try JSONDecoder().decode(GDPDataResponse.self, from: data)
    var dict: [String: Double] = [:]
    for item in decoded.data {
        if let code = item.countryiso3code, let value = item.value {
            dict[code] = value
        }
    }
    let result = dict
    await MainActor.run {
        self.gdpData = result
    }
}

Объяснение

  • Неизменяемая копия: после создания вашего изменяемого словаря (dict) назначьте его константе (let result = dict). Это гарантирует, что замыкание, переданное в MainActor.run, захватит неизменяемое значение, что безопасно в многопоточных контекстах.

  • Замыкание MainActor.run: теперь замыкание использует result (константу let) для обновления вашего @Published свойства, избегая ошибки многопоточности.

Это должно устранить ошибку «reference to capture var 'dict'» в Swift 6 режиме.

Если я нахожусь в режиме Swift 5:

f1b736accff90af99b9271f8af76c1e7.png

… то предупреждения исчезли:


6a0f4a88915ace52306a59c8dd8b826b.png56059fdf8edd757d7742af29bef99855.png

Swift 6 concurrency

Но если я переключусь в Swift 6 режим:

79235ed0656337476c5604f35f0c0ea5.png

То вернутся не просто предупреждения, a ошибки, поскольку в режиме Swift 6 strict concurrency на уровне компиляции обнаруживаются ошибки, связанные с “гонкой данных” (data races):

cdb3a3473a0fc21a8e941a04faf92639.png22111d702da3a6d0c7a0655282ed05a1.png

Давайте сообщим об этих ошибках ChatGPT o3-mini:

cdbd80fec898247b22991c27fd28d36f.png

Посылка «self» рискует вызвать гонку данных в коде await MainActor.run {

self.populationData = result } в режиме Swift 6

В результате мы получаем рассуждения, которые длятся 6 секунд:

e76fa939142514aa52de6843e646325e.pngВот их перевод:

Управление гонками данных

Я изучаю обработку «self» в actor-изолированных замыканиях, чтобы избежать “гонок данных” (data races). Обеспечение надлежащей изоляции «self», особенно в fetchCountries, является ключевым фактором.

Определение лучшей настройки

Чтобы обеспечить безопасное назначение «self» в fetchCountries, маркировка всей View Model как @MainActor является многообещающим вариантом. Это эффективно предотвращает “гонки данных” (data races).

Обеспечение безопасности данных

Чтобы избежать “гонок данных” (data races), я рекомендую маркировать весь View Model класс class как @MainActor. Этот метод сохраняет «self» изолированным как MainActor, гарантируя безопасность обновлений свойств.

Сделаем акцент на изоляции

Хорошо, дайте-ка подумать. Маркировка всей View Model как @MainActor гарантирует, что свойства изолированы как MainActor, избегая “гонок данных” (data races) без необходимости захватывать «self» внутри MainActor.run.

Распространенное решение — убедиться, что ваша View Model уже изолирована как MainActor, чтобы вам не пришлось захватывать self внутри блока MainActor.run. Другими словами, пометьте свою View Model с помощью @MainActor. Например:

код View Model
import SwiftUI

@MainActor
class CountriesViewModel: ObservableObject {
    @Published var countries: [Country] = []
    @Published var groupedCountries: [String: [Country]] = [:]
    @Published var populationData: [String: Int] = [:]
    @Published var gdpData: [String: Double] = [:]
    
    func fetchCountries() async {
        guard let url = URL(string: "https://api.worldbank.org/v2/country?format=json&per_page=300") else {
            print("Invalid URL")
            return
        }
        
        do {
            let (data, _) = try await URLSession.shared.data(from: url)
            let response = try JSONDecoder().decode(CountryResponse.self, from: data)
            
            // Filter out aggregates
            let realCountries = response.countries.filter { $0.region.value != "Aggregates" }
            self.countries = realCountries
            self.groupedCountries = Dictionary(grouping: realCountries, by: { $0.region.value })
            
            // Fetch population and GDP concurrently.
            try await  fetchPopulation()
            try await fetchGDP()            
        } catch {
            print("Error fetching countries: \(error)")
        }
    }
    
    // Fetch Population (indicator "SP.POP.TOTL")
    func fetchPopulation() async throws {
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/SP.POP.TOTL?format=json&per_page=500&date=2022") else { return }
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(PopulationDataResponse.self, from: data)
        var dict: [String: Int] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = Int(value)
            }
        }
        // Since self is already isolated to the main actor, assign directly.
        self.populationData = dict
    }
    
    // Fetch GDP (indicator "NY.GDP.MKTP.CD")
    func fetchGDP() async throws {
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/NY.GDP.MKTP.CD?format=json&per_page=500&date=2022") else { return }
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(GDPDataResponse.self, from: data)
        var dict: [String: Double] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = value
            }
        }
        self.gdpData = dict
    }
}

Зачем использовать @MainActor?

Отмечая свою View Model с помощью @MainActor, вы гарантируете, что все свойства и функции в ней будут выполняться на MainActor. Таким образом, когда вы обновляете свои @Published свойства (например, populationData или gdpData), вы уже находитесь в основном потоке (main thread) и вам не нужно беспокоиться о захвате self в замыкании MainActor.run, что в Swift 6 может привести к “гонкам данных”(data races), если self НЕ изолирован.

Такой подход должен устранить предупреждение или сообщение об ошибке о “гонке данных” (data races), одновременно гарантируя безопасное обновление self на MainActor.

Версия 5. Запускаем приложение. Получаем результат:

f6f926d9e655fa099266aca06f228246.gif

Есть небольшая задержка в появлении данных на экране, которая, возможно, связана с @MainActor.

Все fetch функции выполняем на background

Давайте попробуем все fetch функции выполнить на background.

b5b181f4dda553f7b40dd4bb023fa105.png

Как запустить функцию fetch в фоновом режиме, а не в основном потоке?

В результате мы получаем рассуждения, которые длятся 6 секунд:

c72d809e17d8adbd1e5b36fb2e82576c.pngВот их перевод:

Обработка сетевых вызовов

Хорошо, дайте подумать. Задача заключается в управлении функцией fetch в View Model, которая является @MainActor, гарантируя, что обновления UI находятся в основном потоке, а сетевые вызовы — в фоновом потоке.

Размышляя о фоновом выполнении

Мне интересно, как nonisolated методы в классе @MainActor могут работать в фоновом режиме. Интересно, что маркировка их как nonisolated позволяет это сделать.

Управление nonisolated методами

Я рассматриваю возможность использования nonisolated методов для таких задач, как выборка данных и их декодирование. Просто предостерегаю от доступа к состоянию или обновлению UI из этих методов, чтобы сохранить actor изоляцию.

Навигация по nonisolated функции

Я думаю о том, чтобы маркировать функции как nonisolated в классе @MainActor, гарантируя, что обновления self будут на MainActor, избегая при этом прямого доступа к MainActor изолированным состояниям.

Балансировка выполнения

Я разбираюсь, как маркировка методов как nonisolated в классе @MainActor позволяет выполнять фоновое выполнение без прямого доступа к свойствам, MainActor изолированным.

Обеспечение безопасного потока данных

Отмечая fetch функции как nonisolated в классе @MainActor, я гарантирую, что они будут работать в фоновых потоках. Прямой доступ к MainActor свойствам не допускается; должны возвращаться только вычисленные значения.

Обеспечение безопасных обновлений

Я отмечаю, что nonisolated функции в классе @MainActor должны возвращать только вычисленные значения, а обновления должны выполняться безопасно на MainActor для поддержания принципов потокобезопасности и изоляции.

Ниже приведен пример View Model, которая помечена @MainActor (чтобы ее @Published свойства безопасно обновлялись в основном потоке), но использует nonisolated фоновые функции для выполнения выборки из сети и декодирования. Эти nonisolated функции возвращают выбранные данные, а не обновляют состояние напрямую. Затем MainActor функция loadCountries ожидает await эти результаты и обновляет состояние UI.

код view Model
@MainActor
class CountriesViewModel: ObservableObject {
    @Published var countries: [Country] = []
    // Group real countries by region.
    @Published var groupedCountries: [String: [Country]] = [:]
    
    // Indicator dictionaries: country id -> value
    @Published var populationData: [String: Int] = [:]
    @Published var gdpData: [String: Double] = [:]
    
    func loadCountries() async {
        do {
            // This network call runs off the background thread.
            let fetchedCountries = try await fetchCountriesInBackground()
            // Now update the UI on the main actor
            countries = fetchedCountries
            groupedCountries = Dictionary(grouping: fetchedCountries, 
                                                by: { $0.region.value })
            
            // Fetch population and GDP concurrently.
            // This network call runs off the background thread.
            async let popResult = fetchPopulation()
            async let gdpResult = fetchGDP()
            let (pop, gdp) = try await (popResult, gdpResult)
            // Now update the UI on the main actor
            self.populationData = pop
            self.gdpData = gdp
            
        } catch {
            print("Error fetching countries: \(error)")
        }
    }
    
    nonisolated private func fetchCountriesInBackground() async throws -> [Country] {
        guard let url = URL(string: "https://api.worldbank.org/v2/country?format=json&per_page=300") else {
            throw URLError(.badURL)
        }
        let (data, _) = try await URLSession.shared.data(from: url)
        let response = try JSONDecoder().decode(CountryResponse.self, from: data)
        // Filter out aggregates here if desired.
        return response.countries.filter { $0.region.value != "Aggregates" }
    }
    
    // Fetch population (indicator "SP.POP.TOTL") for year 2022.
    nonisolated private func fetchPopulation() async throws -> [String: Int] {
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/SP.POP.TOTL?format=json&per_page=500&date=2022") else { return [:]}
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(IndicatorResponse.self, from: data)
        var dict: [String: Int] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = Int(value)
            }
        }
              return dict
    }
    
    // Fetch GDP (indicator "NY.GDP.MKTP.CD") for year 2022.
    nonisolated private func fetchGDP() async throws ->  [String: Double]{
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/NY.GDP.MKTP.CD?format=json&per_page=500&date=2022") else { return   [:]}
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(IndicatorResponse.self, from: data)
        var dict: [String: Double] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = value
            }
        }
        return dict
    }
}

Как это работает:

  1. nonisolated функции:

  • Функции fetchCountriesInBackground(), fetchPopulation() и fetchGDP() помечены как nonisolated, поэтому они могут работать в фоновом потоке. Они выполняют сетевые вызовы и декодирование JSON без доступа к какому-либо изолированному состоянию @MainActor.

  1. loadCountries() на MainActor:

  • Функция loadCountries() — это функция @MainActor, которая вызывает эти nonisolated функции (используя await). После завершения фоновой работы она обновляет @Published свойства (например, страны countries, groupedCountries и т. д.) на MainActor.

  1. Многопоточная выборка:

  • Данные о населении и ВВП выбираются одновременно с помощью синтаксиса async let, а их результаты ожидаются await вместе.

Этот шаблон четко отделяет тяжелую работу по выборке из сети/декодированию (выполняемую вне основного потока) от обновлений UI (которые должны выполняться на MainActor). Удачного кодирования!

Версия 6. Запускаем приложение.

Получаем результат:

9a3c7bca444e24ef9b7453f20acd33af.gif

Это все, что мы можем сделать с многопоточностью.

Добавляет карту страны

6640a2f46d3969529083d6111097bf2d.png

Покажи страну на карте в CountryDetailView

В результате мы получаем рассуждения, которые длятся 8 секунд:

0d38e9e185c034dbc18b2032b60b56e5.pngВот их перевод:

Обновление View

Я интегрирую MapKit View в CountryDetailView с помощью SwiftUI. Это включает import MapKit, преобразование широты latitude и долготы longitude страны в Doubles и настройку координат региона.

Улучшение отображения

Я добавляю новый раздел Section в CountryDetailView для отображения карты. Это включает инициализацию координат региона с широтой latitude и долготой longitude страны country и включение маркера MapMarker для подсвечивания местоположения столицы страны на карте.

Обеспечение географической точности

Я убеждаюсь, что широта latitude и долгота longitude правильно преобразованы в Double для MapKit. Затем я проверяю модель данных на предмет правильной обработки ТИПов данных и создания аннотаций на карты.

Установка границ территории

Я определяю View Map(coordinateRegion: $region, annotationItems: [country]) с координатами региона, центрированного на широте latitude и долготе longitude страны, обеспечивая точность представления географических данных.

Ниже приведена обновленная версия CountryDetailView, которая добавляет View Map, показывающее местоположение страны. В этом примере мы создаем MKCoordinateRegion (используя широту и долготу из модели Country, которые хранятся в виде строк String), а затем отображаем карту с маркером в этом месте. Мы добавляем этот новый раздел Section “Map” (“Карта”) в форму Form под другими разделами Section.

Обязательно импортируйте import MapKit в свой файл.

Код CountryDetailView:
import SwiftUI
import MapKit

struct CountryDetailView: View {
    let country: Country
    let population: Int?
    let gdp: Double?
    
    // Create a region state from the country's latitude/longitude.
    @State private var region: MKCoordinateRegion
    
    init(country: Country, population: Int?, gdp: Double?) {
        self.country = country
        self.population = population
        self.gdp = gdp
        
        // Convert latitude/longitude strings to Double.
        let lat = Double(country.latitude) ?? 0.0
        let lon = Double(country.longitude) ?? 0.0
        _region = State(initialValue: MKCoordinateRegion(
            center: CLLocationCoordinate2D(latitude: lat, longitude: lon),
            span: MKCoordinateSpan(latitudeDelta: 10, longitudeDelta: 10)
        ))
    }
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Flag:")
                    Spacer()
                    Text(country.iso2Code.flagEmoji)
                        .font(.largeTitle)
                }
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
             }
            
            Section(header: Text("Map")) {
                // Display the map with a marker for the country.
                Map(coordinateRegion: $region, annotationItems: [country]) { country in
                    // For annotation, convert the coordinate strings to Double.
                    let lat = Double(country.latitude) ?? 0.0
                    let lon = Double(country.longitude) ?? 0.0
                    return MapMarker(coordinate: 
                                    CLLocationCoordinate2D(latitude: lat, longitude: lon))
                }
                .frame(height: 300)
                .clipShape(RoundedRectangle(cornerRadius: 10))
            }
            
            Section(header: Text("Indicators")) {
                HStack {
                    Text("Population:")
                    Spacer()
                    if let pop = population {
                        Text("\(pop)")
                    } else {
                        Text("N/A")
                    }
                }
                HStack {
                    Text("GDP (USD):")
                    Spacer()
                    if let gdp = gdp {
                        Text("\(gdp, specifier: "%.0f")")
                    } else {
                        Text("N/A")
                    }
                }
            }
        }
        .navigationTitle(country.name)
    }
}

Объяснение

  1. Импорт import MapKit:

Мы импортируем import MapKit для использования SwiftUI View карты Map и соответствующих ТИПов.

  1. Координаты региона:

В инициализаторе init мы преобразуем широту latitude и долготу longitude страны country (которые хранятся в виде строк String) в значения Double. Они используются для создания начального MKCoordinateRegion с диапазоном (latitudeDelta и longitudeDelta), который определяет уровень масштабирования на карте.

Раздел карты Map Section:

Добавлен новый раздел Section с заголовком «Map». Map View ограничено состоянием region. Мы предоставляем массив [country], содержащий одну страну country, в качестве annotationItems, чтобы MapMarker отображался в координатах этой страны.

Это обновление отображает местоположение страны на карте в подробном View.

Версия 7. Запускаем приложение - получаем результат:

97025734b1ac9846d313735d3da6cd07.gif

Всё прекрасно работает, но у нас есть предупреждения:

7e8d88019b23bd4e9c95de216ab98b86.png

init(coordinateRegion:, interactionModes: ) was deprecated in iOS 17.0, use Map initializers that use MapContentBuilder instead.

(init(coordinateRegion:, interactionModes: ) устарел в iOS 17.0, вместо этого используйте инициализаторы Map с MapContentBuilder.)

eb95c68c987f3ff5d1ffd84ef91be916.png

MapMarker was deprecated in iOS 17.0, use Marker along with Map initializers that use MapContentBuilder instead.

(MapMarker устарел в iOS 17.0, вместо него используйте Marker вместе с Map инициализаторами c MapContentBuilder.)

Обновление SwiftUI Map для iOS 17

0af6641ae4599b9e3493b61e7bc329a4.png

init(coordinateRegion:, interactionModes: ) устарел в iOS 17.0, вместо этого используйте инициализаторы Map с MapContentBuilder. MapMarker устарел в iOS 17.0, вместо него используйте Marker вместе с Map инициализаторами c MapContentBuilder.

В результате мы получаем рассуждения, которые длятся 8 секунд:

fc0f2f8f3175bf5c547ff437a906d0ec.pngВот их перевод:

Рассмотрение MapCameraPosition

С новыми изменениями API в iOS 17 вместо старого MapPosition теперь используется новый MapCameraPosition. Это предполагает переход к более ориентированной на камеру обработке Map Views. Я припоминаю, что MapCameraPosition конкретно описывает положение камеры, что, по-видимому, является альтернативой устаревшим методам. Я должен подтвердить детали, но это определенно новый подход API, представленный в iOS 17.

Обновление до MapCameraPosition

В iOS 17 новый API карт Map в SwiftUI включает MapCameraPosition, заменяя старый MapPosition. Для этого требуются обновления кода. Мне нужно обеспечить использование инициализатора Map(cameraPosition: Binding<MapCameraPosition>). Новая структура MapCameraPosition включает такие свойства, как центр камеры, наклон, направление, высота и т. д.

Я думаю, что обновленный код должен правильно использовать MapCameraPosition, инициализируя его с координатами coordinates и другими параметрами. После установки мы можем привязать его к карте и включить маркеры. Позвольте мне еще раз проверить детали.

Ниже представлена ​​обновленная версия CountryDetailView, которая использует новый MapCameraPosition iOS 17. В этом примере мы используем новую @State переменную var position: MapCameraPosition. Затем мы передаем эту позицию position в новый инициализатор карты Map (position: $position). Маркер Marker также используется с его обязательными параметрами.

Убедитесь, что вы компилируете с помощью Xcode 15 (или более поздней версии), а ваш deployment target установлен ​​на iOS 17 или более позднюю версию.

код CountryDetailView:
import MapKit

struct CountryDetailView: View {
    let country: Country
    let population: Int?
    let gdp: Double?
    
    // Use the new state property for the map's position.
        @State private var position: MapCameraPosition
   
    
    init(country: Country, population: Int?, gdp: Double?) {
        self.country = country
        self.population = population
        self.gdp = gdp
        
        // Convert latitude/longitude strings to Double.
        let lat = Double(country.latitude) ?? 0.0
        let lon = Double(country.longitude) ?? 0.0
        
        // Initialize the MapPCameraPosition
                _position = State(initialValue:.region(MKCoordinateRegion(
                    center: CLLocationCoordinate2D(latitude: lat, longitude: lon), span: MKCoordinateSpan(latitudeDelta: 10, longitudeDelta: 10)
                )))
    }
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Flag:")
                    Spacer()
                    Text(country.iso2Code.flagEmoji)
                        .font(.largeTitle)
                }
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
            }
            
            Section(header: Text("Map")) {
              
                // Use the new iOS 17 Map initializer with a MapContentBuilder.
               Map (position: $position){
                   // For annotation, convert the coordinate strings to Double.
                   let lat = Double(country.latitude) ?? 0.0
                   let lon = Double(country.longitude) ?? 0.0
                   Marker ("",coordinate: CLLocationCoordinate2D(latitude: lat, longitude: lon))
                                }
                .frame(height: 300)
                .clipShape(RoundedRectangle(cornerRadius: 10))
            }
            
            Section(header: Text("Indicators")) {
                HStack {
                    Text("Population:")
                    Spacer()
                    if let pop = population {
                        Text("\(pop)")
                    } else {
                        Text("N/A")
                    }
                }
                HStack {
                    Text("GDP (USD):")
                    Spacer()
                    if let gdp = gdp {
                        Text("\(gdp, specifier: "%.0f")")
                    } else {
                        Text("N/A")
                    }
                }
            }
        }
        .navigationTitle(country.name)
    }
}

Объяснение

  • MapCameraPosition:

Мы создаем @State свойство с именем cameraPosition ТИПа MapCameraPosition. В инициализаторе мы преобразуем широту и долготу страны (представленные как строки String) в CLLocationCoordinate2D. Затем мы инициализируем камеру с этим центром, а также высотой (уровнем масштабирования), углом наклона и направлением.

  • Инициализатор карты Map:

Новый инициализатор iOS 17 Map(cameraPosition: $cameraPosition) { … } принимает привязку к MapCameraPosition и использует хвостовое замыкание для определения содержимого карты. В этом случае мы размещаем Marker в нужном месте.

  • Маркер Marker:

Инициализатору Marker теперь требуются координаты coordinate и параметр положения position (мы используем .automatic).

Это переработанное View использует MapCameraPosition, чтобы камерой вашей карты Map можно было управлять с помощью нового API iOS 17. Удачного кодирования!

У нас нет предупреждений и ошибок компиляции.

Версия 8. Запускаем приложение - Получаем результат:

2998d1204cbcf29182b27eded9915b76.gif

Местоположение столицы страны на карте

Но надо сказать, что географические координаты широта latitude и долгота longitude в структуре struct Country, полученные с помощью API Всемирного Банка и соответствующие стране Country, соответствуют местоположению, близкому к расположению столицы страны capitalCity, но не точному её местоположению:

// The Country model - note that we use the "id" field from the API as the unique identifier.
struct Country: Codable, Identifiable {
    // The API's "id" is the country code.
    let id: String
    let iso2Code: String
    let name: String
    let region: Category
    let incomeLevel: Category
    let lendingType: Category
    let capitalCity: String
    let longitude: String  // широта
    let latitude: String   // долгота
}

Давайте получим координаты точного местоположения столицы и покажем столицу на карте:

c2b82022da81a93ce57866d28dde9835.png

Добавь на карту маркер Marker столицы страны

В результате мы получаем рассуждения, которые длятся 10 секунд:

116980a3bd29aca977fc9aeec684314f.pngВот их перевод:

Уточнение информации о маркере Marker столицы

Итак, пользователь хочет добавить маркер Marker на карту Map для столицы страны. CountryDetailView уже имеет маркер Marker в центре страны с использованием положения камеры, но теперь нам нужен еще один маркер Marker для столицы. Проблема в том, что модель Country содержит только строку String для столицы «capitalCity» (название города), а не координаты coordinates (широта latitude и долгота longitude), необходимые для маркера Marker. Я думаю, нам нужно будет уточнить, где получить эти координаты coordinates — предоставляет ли их API Всемирного банка или нам нужен другой источник?

Рассматриваем маркер Marker для столицы на карте Map

Модель Country имеет координату (широта latitude и долгота longitude) для центра страны, а свойство «capitalCity» — это просто строка String с названием города, а не координаты. Это означает, что мне нужно получить координаты для столицы, но API их не предоставляет. Вариант первый: я мог бы использовать geocode для названия столицы, хотя это асинхронно и требует вызова геокодирования geocode. Вариант второй: предположим, что столица является центром страны, но это может быть неточно. Последнее может потребовать добавления решения геокодирования, например CLGeocoder.

Геокодирование маркера Marker столицы

API Всемирного банка предоставляет название столицы capitalCity, но не ее координаты, поэтому геокодирование необходимо для получения ее положения, которое будет выполнено асинхронно. Если данные недоступны, я мог бы предположить, что столица находится в центре страны, хотя это не всегда точно. Для реализации я мог бы показать, как использовать CLGeocoder для получения координат столицы. В примере я предлагаю добавить переменную состояния capitalCoordinate и использовать .task для вызова геокодирования внутри View с резервным вариантом отображения маркера Marker центра страны , если геокодирование не удается или столица для данной страны отсутствует.

Ниже приведена обновленная версия CountryDetailView, которая добавляет второй маркер Marker для столицы страны country. В этом примере мы используем новый API карт Map iOS 17 с MapCameraPosition для управления камерой карты и добавляем два маркера:

  1. Маркер в центре страны (с широтой latitude /долготы longitude страны country) и

  2. Маркер для столицы. Поскольку API Всемирного банка предоставляет только название столицы capitalCity, мы используем CLGeocoder для асинхронного получения ее координат. (Обязательно импортируйте import CoreLocation.)

Если геокодирование столицы прошло успешно, маркер добавляется с меткой Label, указывающей название столицы.

Ниже приведен полный код:
import SwiftUI
import MapKit
import CoreLocation

struct CountryDetailView: View {
    let country: Country
    let population: Int?
    let gdp: Double?
    
    // Use MapCameraPosition to control the camera.
    @State private var position: MapCameraPosition
    // Will hold the capital city coordinate after geocoding.
    @State private var capitalCoordinate: CLLocationCoordinate2D? = nil
    
    init(country: Country, population: Int?, gdp: Double?) {
        self.country = country
        self.population = population
        self.gdp = gdp
        
        // Convert the country's latitude/longitude (as Strings) to a coordinate.
        let lat = Double(country.latitude) ?? 0.0
        let lon = Double(country.longitude) ?? 0.0
        let center = CLLocationCoordinate2D(latitude: lat, longitude: lon)
        _position = State(initialValue:.region(MKCoordinateRegion( center: center, 
                    span: MKCoordinateSpan(latitudeDelta: 10, longitudeDelta: 10)
                )))
    }
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Flag:")
                    Spacer()
                    Text(country.iso2Code.flagEmoji)
                        .font(.largeTitle)
                }
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
            }
            
            Section(header: Text("Indicators")) {
                HStack {
                    Text("Population:")
                    Spacer()
                    if let pop = population {
                        Text("\(pop)")
                    } else {
                        Text("N/A")
                    }
                }
                HStack {
                    Text("GDP (USD):")
                    Spacer()
                    if let gdp = gdp {
                        Text("\(gdp, specifier: "%.0f")")
                    } else {
                        Text("N/A")
                    }
                }
            }
            
            Section(header: Text("Map")) {
                // Use the new initializer that accepts a binding to MapCameraPosition.
                Map(position: $cameraPosition) {
                    // Marker for the country's center.
                   let lat = Double(country.latitude) ?? 0.0
                   let lon = Double(country.longitude) ?? 0.0
                  
                   // Marker for the country's center.
                   if country.capitalCity == "" {
                       Marker("\(country.name)", coordinate: 
                              CLLocationCoordinate2D(latitude: lat, longitude: lon))
                   }
                    
                    // If the capital city's coordinate is available, add a marker.
                    if let capitalCoordinate = capitalCoordinate {
                        Marker(coordinate: capitalCoordinate, position: .automatic) {
                            // Use a Label to indicate the capital city.
                            Label("Capital: \(country.capitalCity)", 
                                                       systemImage: "building.columns")
                        }
                    }
                }
                .frame(height: 300)
                .task {
                    await geocodeCapital()
                }
            }
        }
        .navigationTitle(country.name)
    }
    
    // Geocode the capital city name to obtain its coordinates.
     nonisolated func geocodeCapital() async {
        let geocoder = CLGeocoder()
        do {
            let placemarks = try await geocoder.geocodeAddressString(country.capitalCity)
            if let location = placemarks.first?.location {
               await MainActor.run {
                    capitalCoordinate = location.coordinate
               }
            }
        } catch {
            print("Error geocoding capital city: \(error)")
        }
    }
}

Объяснение

  • Map и Camera:

Мы инициализируем MapCameraPosition, используя широту latitude и долготу longitude страны country. Этот новый API iOS 17 позволяет нам управлять камерой через эту привязку.

  • Два маркера:

• Первый маркер Marker размещается в центре камеры (представляя координаты страны).

• Второй маркер Marker добавляется только в том случае, если координаты столицы coordinates получены с помощью геокодирования. Мы используем новый инициализатор маркера Marker, который принимает метку Label с параметром position: .automatic, чтобы позволить SwiftUI автоматически позиционировать маркер.

  • Геокодирование столицы:

В модификаторе .task в разделе Section карты Map мы вызываем geocodeCapital(). Эта функция использует CLGeocoder для асинхронного геокодирования названия столицы. В случае успеха она обновляет переменную состояния capitalCoordinate, что, в свою очередь, заставляет View добавлять маркер Marker.

Это решение использует новый API карт из iOS 17 (включая MapCameraPosition и Marker) и добавляет дополнительный маркер Marker для столицы. Удачного кодирования!

ad14d04c72ecaf1e594b4fcf953a14b4.png

запускай geocodeCapital() в фоновом режиме.

В результате мы получаем рассуждения, которые длятся 7 секунд:

Вот их перевод:

Запуск geocodeCapital() в фоновом режиме

Пользователь хочет запустить geocodeCapital() в фоновом потоке. Сейчас мы используем CLGeocoder с асинхронным API и начиная с iOS 16 доступен асинхронный метод geocodeAddressString.

Чтобы запустить geocodeCapital() в фоновом режиме, я мог бы обернуть его в Task.detached или пометить как nonisolated и вызвать его оттуда. Поскольку мы находимся в SwiftUI View, оно по умолчанию запускается на MainActor.

Запуск geocodeCapital() в фоновом режиме

Чтобы запустить geocodeCapital() в фоновом потоке, я хочу использовать Task.detached для асинхронной обработки работы геокодирования. Однако, поскольку мне нужно обновить capitalCoordinate, который является свойством @State, я должен убедиться, что обновление UI происходит на MainActor.

Итак, мой план — создать Task.detached для выполнения логики геокодирования, а затем использовать MainActor.run для обновления координат coordinate после получения результата. Но я буду осторожен с захватом self в Task.detached.

Ниже представлена ​​обновленная реализация вашей функции geocodeCapital(), которая запускает геокодирование в фоновом потоке с помощью Task.detached. В этой версии мы захватываем только необходимое значение (строку String capitalCity), чтобы Task.detached не захватывала self без необходимости. После завершения фоновой работы мы обновляем capitalCoordinate на MainActor.

код geocodeCapital():
func geocodeCapital() async {
    // Capture the capital city string so that the detached task doesn't capture self.
    let capitalCity = country.capitalCity
    
    let coordinate: CLLocationCoordinate2D? = await Task.detached { [capitalCity] in
        let geocoder = CLGeocoder()
        do {
            let placemarks = try await geocoder.geocodeAddressString(capitalCity)
            return placemarks.first?.location?.coordinate
        } catch {
            print("Error geocoding capital city: \(error)")
            return nil
        }
    }.value

    if let coordinate = coordinate {
        await MainActor.run {
            self.capitalCoordinate = coordinate
        }
    }
}

Версия 9. Запускаем приложение - Получаем результат:

d645539d63b8a9fe00043769d7dcd49c.gif

Заключение

ChatGPT o3-mini на настоящий момент является лучшим ИИ для iOS разработки.

В предложенной задаче разработки iOS приложения Countries он:

  1. Без каких либо проблем справился с декодированием JSON данных

  2. Использовал современную async / await систему работы с многопоточностью

  3. Предложил несколько вариантов перехода на Swift 6 strict concurrency с помощью @MainActor и маркировки функций выборки как nonisolated или использования Task.detached.

  4. Сначала предложил старый Map API с Map (coordinateRegion: $region, annotationItems: [country]) и MapMaker, но после получения соответствующих предупреждений перешел на новый API c Map (position: $position) и Maker.

  5. Использовал CLGeocoder() для получения более точных географических координат столицы страны и Task.detached для запуска в фоновом режиме.

  6. Рассуждения краткие, по делу и длятся от 1 до 25 секунд, среднее время 8 секунд.

  7. Могу рекомендовать в качестве обучающего материала для iOS разработчиков.

Источник

  • 09.10.25 08:23 pHqghUme

    (select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/

  • 09.10.25 08:24 pHqghUme

    is it ok if I upload an image?

  • 09.10.25 08:24 pHqghUme

    e

  • 09.10.25 08:24 pHqghUme

    can I ask you a question please?-1 waitfor delay '0:0:15' --

  • 09.10.25 08:25 pHqghUme

    is it ok if I upload an image?

  • 09.10.25 08:25 pHqghUme

    e

  • 09.10.25 08:25 pHqghUme

    e

  • 09.10.25 08:25 pHqghUme

    e

  • 09.10.25 08:25 pHqghUme

    can I ask you a question please?9IDOn7ik'; waitfor delay '0:0:15' --

  • 09.10.25 08:26 pHqghUme

    can I ask you a question please?MQOVJH7P' OR 921=(SELECT 921 FROM PG_SLEEP(15))--

  • 09.10.25 08:26 pHqghUme

    e

  • 09.10.25 08:27 pHqghUme

    can I ask you a question please?64e1xqge') OR 107=(SELECT 107 FROM PG_SLEEP(15))--

  • 09.10.25 08:27 pHqghUme

    can I ask you a question please?ODDe7Ze5')) OR 82=(SELECT 82 FROM PG_SLEEP(15))--

  • 09.10.25 08:28 pHqghUme

    can I ask you a question please?'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

  • 09.10.25 08:28 pHqghUme

    can I ask you a question please?

  • 09.10.25 08:28 pHqghUme

    can I ask you a question please?'"

  • 09.10.25 08:28 pHqghUme

    @@olQP6

  • 09.10.25 08:28 pHqghUme

    (select 198766*667891)

  • 09.10.25 08:28 pHqghUme

    (select 198766*667891 from DUAL)

  • 09.10.25 08:30 pHqghUme

    is it ok if I upload an image?

  • 09.10.25 08:33 pHqghUme

    can I ask you a question please?

  • 09.10.25 08:34 pHqghUme

    can I ask you a question please?

  • 09.10.25 08:34 pHqghUme

    if(now()=sysdate(),sleep(15),0)

  • 09.10.25 08:35 pHqghUme

    e

  • 09.10.25 08:36 pHqghUme

    is it ok if I upload an image?

  • 09.10.25 08:36 pHqghUme

    is it ok if I upload an image?

  • 09.10.25 08:37 pHqghUme

    is it ok if I upload an image?

  • 09.10.25 08:37 pHqghUme

    is it ok if I upload an image?

  • 09.10.25 08:37 pHqghUme

    e

  • 09.10.25 08:37 pHqghUme

    e

  • 09.10.25 08:40 pHqghUme

    can I ask you a question please?

  • 09.10.25 08:40 pHqghUme

    is it ok if I upload an image?

  • 09.10.25 08:41 pHqghUme

    e

  • 09.10.25 08:41 pHqghUme

    can I ask you a question please?

  • 09.10.25 08:42 pHqghUme

    can I ask you a question please?

  • 09.10.25 08:42 pHqghUme

    is it ok if I upload an image?

  • 09.10.25 08:42 pHqghUme

    e

  • 09.10.25 11:05 marcushenderson624

    Bitcoin Recovery Testimonial After falling victim to a cryptocurrency scam group, I lost $354,000 worth of USDT. I thought all hope was lost from the experience of losing my hard-earned money to scammers. I was devastated and believed there was no way to recover my funds. Fortunately, I started searching for help to recover my stolen funds and I came across a lot of testimonials online about Capital Crypto Recovery, an agent who helps in recovery of lost bitcoin funds, I contacted Capital Crypto Recover Service, and with their expertise, they successfully traced and recovered my stolen assets. Their team was professional, kept me updated throughout the process, and demonstrated a deep understanding of blockchain transactions and recovery protocols. They are trusted and very reliable with a 100% successful rate record Recovery bitcoin, I’m grateful for their help and highly recommend their services to anyone seeking assistance with lost crypto. Contact: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 09.10.25 11:05 marcushenderson624

    Bitcoin Recovery Testimonial After falling victim to a cryptocurrency scam group, I lost $354,000 worth of USDT. I thought all hope was lost from the experience of losing my hard-earned money to scammers. I was devastated and believed there was no way to recover my funds. Fortunately, I started searching for help to recover my stolen funds and I came across a lot of testimonials online about Capital Crypto Recovery, an agent who helps in recovery of lost bitcoin funds, I contacted Capital Crypto Recover Service, and with their expertise, they successfully traced and recovered my stolen assets. Their team was professional, kept me updated throughout the process, and demonstrated a deep understanding of blockchain transactions and recovery protocols. They are trusted and very reliable with a 100% successful rate record Recovery bitcoin, I’m grateful for their help and highly recommend their services to anyone seeking assistance with lost crypto. Contact: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 09.10.25 11:05 marcushenderson624

    Bitcoin Recovery Testimonial After falling victim to a cryptocurrency scam group, I lost $354,000 worth of USDT. I thought all hope was lost from the experience of losing my hard-earned money to scammers. I was devastated and believed there was no way to recover my funds. Fortunately, I started searching for help to recover my stolen funds and I came across a lot of testimonials online about Capital Crypto Recovery, an agent who helps in recovery of lost bitcoin funds, I contacted Capital Crypto Recover Service, and with their expertise, they successfully traced and recovered my stolen assets. Their team was professional, kept me updated throughout the process, and demonstrated a deep understanding of blockchain transactions and recovery protocols. They are trusted and very reliable with a 100% successful rate record Recovery bitcoin, I’m grateful for their help and highly recommend their services to anyone seeking assistance with lost crypto. Contact: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 09.10.25 11:05 marcushenderson624

    Bitcoin Recovery Testimonial After falling victim to a cryptocurrency scam group, I lost $354,000 worth of USDT. I thought all hope was lost from the experience of losing my hard-earned money to scammers. I was devastated and believed there was no way to recover my funds. Fortunately, I started searching for help to recover my stolen funds and I came across a lot of testimonials online about Capital Crypto Recovery, an agent who helps in recovery of lost bitcoin funds, I contacted Capital Crypto Recover Service, and with their expertise, they successfully traced and recovered my stolen assets. Their team was professional, kept me updated throughout the process, and demonstrated a deep understanding of blockchain transactions and recovery protocols. They are trusted and very reliable with a 100% successful rate record Recovery bitcoin, I’m grateful for their help and highly recommend their services to anyone seeking assistance with lost crypto. Contact: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 11.10.25 04:41 luciajessy3

    Don’t be deceived by different testimonies online that is most likely wrong. I have made use of several recovery options that got me disappointed at the end of the day but I must confess that the tech genius I eventually found is the best out here. It’s better you devise your time to find the valid professional that can help you recover your stolen or lost crypto such as bitcoins rather than falling victim of other amateur hackers that cannot get the job done. ADAMWILSON . TRADING @ CONSULTANT COM / WHATSAPP ; +1 (603) 702 ( 4335 ) is the most reliable and authentic blockchain tech expert you can work with to recover what you lost to scammers. They helped me get back on my feet and I’m very grateful for that. Contact their email today to recover your lost coins ASAP…

  • 11.10.25 10:44 Tonerdomark

    A thief took my Dogecoin and wrecked my life. Then Mr. Sylvester stepped in and changed everything. He got back €211,000 for me, every single cent of my gains. His calm confidence and strong tech skills rebuilt my trust. Thanks to him, I recovered my cash with no issues. After months of stress, I felt huge relief. I had full faith in him. If a scam stole your money, reach out to him today at { yt7cracker@gmail . com } His help sparked my full turnaround.

  • 12.10.25 01:12 harristhomas7376

    "In the crypto world, this is great news I want to share. Last year, I fell victim to a scam disguised as a safe investment option. I have invested in crypto trading platforms for about 10yrs thinking I was ensuring myself a retirement income, only to find that all my assets were either frozen, I believed my assets were secure — until I discovered that my BTC funds had been frozen and withdrawals were impossible. It was a devastating moment when I realized I had been scammed, and I thought my Bitcoin was gone forever, Everything changed when a close friend recommended the Capital Crypto Recover Service. Their professionalism, expertise, and dedication enabled me to recover my lost Bitcoin funds back — more than €560.000 DEM to my BTC wallet. What once felt impossible became a reality thanks to their support. If you have lost Bitcoin through scams, hacking, failed withdrawals, or similar challenges, don’t lose hope. I strongly recommend Capital Crypto Recover Service to anyone seeking a reliable and effective solution for recovering any wallet assets. They have a proven track record of successful reputation in recovering lost password assets for their clients and can help you navigate the process of recovering your funds. Don’t let scammers get away with your hard-earned money – contact Email: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 12.10.25 01:12 harristhomas7376

    "In the crypto world, this is great news I want to share. Last year, I fell victim to a scam disguised as a safe investment option. I have invested in crypto trading platforms for about 10yrs thinking I was ensuring myself a retirement income, only to find that all my assets were either frozen, I believed my assets were secure — until I discovered that my BTC funds had been frozen and withdrawals were impossible. It was a devastating moment when I realized I had been scammed, and I thought my Bitcoin was gone forever, Everything changed when a close friend recommended the Capital Crypto Recover Service. Their professionalism, expertise, and dedication enabled me to recover my lost Bitcoin funds back — more than €560.000 DEM to my BTC wallet. What once felt impossible became a reality thanks to their support. If you have lost Bitcoin through scams, hacking, failed withdrawals, or similar challenges, don’t lose hope. I strongly recommend Capital Crypto Recover Service to anyone seeking a reliable and effective solution for recovering any wallet assets. They have a proven track record of successful reputation in recovering lost password assets for their clients and can help you navigate the process of recovering your funds. Don’t let scammers get away with your hard-earned money – contact Email: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 12.10.25 19:53 Tonerdomark

    A crook swiped my Dogecoin. It ruined my whole world. Then Mr. Sylvester showed up. He fixed it all. He pulled back €211,000 for me. Not one cent missing from my profits. His steady cool and sharp tech know-how won back my trust. I got my money smooth and sound. After endless worry, relief hit me hard. I trusted him completely. Lost cash to a scam? Hit him up now at { yt7cracker@gmail . com }. His aid turned my life around. WhatsApp at +1 512 577 7957.

  • 12.10.25 21:36 blessing

    Writing this review is a joy. Marie has provided excellent service ever since I started working with her in early 2018. I was worried I wouldn't be able to get my coins back after they were stolen by hackers. I had no idea where to begin, therefore it was a nightmare for me. However, things became easier for me after my friend sent me to [email protected] and +1 7127594675 on WhatsApp. I'm happy that she was able to retrieve my bitcoin so that I could resume trading.

  • 13.10.25 01:11 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 13.10.25 01:11 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 14.10.25 01:15 tyleradams

    Hi. Please be wise, do not make the same mistake I had made in the past, I was a victim of bitcoin scam, I saw a glamorous review showering praises and marketing an investment firm, I reached out to them on what their contracts are, and I invested $28,000, which I was promised to get my first 15% profit in weeks, when it’s time to get my profits, I got to know the company was bogus, they kept asking me to invest more and I ran out of patience then requested to have my money back, they refused to answer nor refund my funds, not until a friend of mine introduced me to the NVIDIA TECH HACKERS, so I reached out and after tabling my complaints, they were swift to action and within 36 hours I got back my funds with the due profit. I couldn’t contain the joy in me. I urge you guys to reach out to NVIDIA TECH HACKERS on their email: [email protected]

  • 14.10.25 08:46 robertalfred175

    CRYPTO SCAM RECOVERY SUCCESSFUL – A TESTIMONIAL OF LOST PASSWORD TO YOUR DIGITAL WALLET BACK. My name is Robert Alfred, Am from Australia. I’m sharing my experience in the hope that it helps others who have been victims of crypto scams. A few months ago, I fell victim to a fraudulent crypto investment scheme linked to a broker company. I had invested heavily during a time when Bitcoin prices were rising, thinking it was a good opportunity. Unfortunately, I was scammed out of $120,000 AUD and the broker denied me access to my digital wallet and assets. It was a devastating experience that caused many sleepless nights. Crypto scams are increasingly common and often involve fake trading platforms, phishing attacks, and misleading investment opportunities. In my desperation, a friend from the crypto community recommended Capital Crypto Recovery Service, known for helping victims recover lost or stolen funds. After doing some research and reading multiple positive reviews, I reached out to Capital Crypto Recovery. I provided all the necessary information—wallet addresses, transaction history, and communication logs. Their expert team responded immediately and began investigating. Using advanced blockchain tracking techniques, they were able to trace the stolen Dogecoin, identify the scammer’s wallet, and coordinate with relevant authorities to freeze the funds before they could be moved. Incredibly, within 24 hours, Capital Crypto Recovery successfully recovered the majority of my stolen crypto assets. I was beyond relieved and truly grateful. Their professionalism, transparency, and constant communication throughout the process gave me hope during a very difficult time. If you’ve been a victim of a crypto scam, I highly recommend them with full confidence contacting: 📧 Email: [email protected] 📱 Telegram: @Capitalcryptorecover Contact: [email protected] 📞 Call/Text: +1 (336) 390-6684 🌐 Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 14.10.25 08:46 robertalfred175

    CRYPTO SCAM RECOVERY SUCCESSFUL – A TESTIMONIAL OF LOST PASSWORD TO YOUR DIGITAL WALLET BACK. My name is Robert Alfred, Am from Australia. I’m sharing my experience in the hope that it helps others who have been victims of crypto scams. A few months ago, I fell victim to a fraudulent crypto investment scheme linked to a broker company. I had invested heavily during a time when Bitcoin prices were rising, thinking it was a good opportunity. Unfortunately, I was scammed out of $120,000 AUD and the broker denied me access to my digital wallet and assets. It was a devastating experience that caused many sleepless nights. Crypto scams are increasingly common and often involve fake trading platforms, phishing attacks, and misleading investment opportunities. In my desperation, a friend from the crypto community recommended Capital Crypto Recovery Service, known for helping victims recover lost or stolen funds. After doing some research and reading multiple positive reviews, I reached out to Capital Crypto Recovery. I provided all the necessary information—wallet addresses, transaction history, and communication logs. Their expert team responded immediately and began investigating. Using advanced blockchain tracking techniques, they were able to trace the stolen Dogecoin, identify the scammer’s wallet, and coordinate with relevant authorities to freeze the funds before they could be moved. Incredibly, within 24 hours, Capital Crypto Recovery successfully recovered the majority of my stolen crypto assets. I was beyond relieved and truly grateful. Their professionalism, transparency, and constant communication throughout the process gave me hope during a very difficult time. If you’ve been a victim of a crypto scam, I highly recommend them with full confidence contacting: 📧 Email: [email protected] 📱 Telegram: @Capitalcryptorecover Contact: [email protected] 📞 Call/Text: +1 (336) 390-6684 🌐 Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 14.10.25 08:46 robertalfred175

    CRYPTO SCAM RECOVERY SUCCESSFUL – A TESTIMONIAL OF LOST PASSWORD TO YOUR DIGITAL WALLET BACK. My name is Robert Alfred, Am from Australia. I’m sharing my experience in the hope that it helps others who have been victims of crypto scams. A few months ago, I fell victim to a fraudulent crypto investment scheme linked to a broker company. I had invested heavily during a time when Bitcoin prices were rising, thinking it was a good opportunity. Unfortunately, I was scammed out of $120,000 AUD and the broker denied me access to my digital wallet and assets. It was a devastating experience that caused many sleepless nights. Crypto scams are increasingly common and often involve fake trading platforms, phishing attacks, and misleading investment opportunities. In my desperation, a friend from the crypto community recommended Capital Crypto Recovery Service, known for helping victims recover lost or stolen funds. After doing some research and reading multiple positive reviews, I reached out to Capital Crypto Recovery. I provided all the necessary information—wallet addresses, transaction history, and communication logs. Their expert team responded immediately and began investigating. Using advanced blockchain tracking techniques, they were able to trace the stolen Dogecoin, identify the scammer’s wallet, and coordinate with relevant authorities to freeze the funds before they could be moved. Incredibly, within 24 hours, Capital Crypto Recovery successfully recovered the majority of my stolen crypto assets. I was beyond relieved and truly grateful. Their professionalism, transparency, and constant communication throughout the process gave me hope during a very difficult time. If you’ve been a victim of a crypto scam, I highly recommend them with full confidence contacting: 📧 Email: [email protected] 📱 Telegram: @Capitalcryptorecover Contact: [email protected] 📞 Call/Text: +1 (336) 390-6684 🌐 Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 15.10.25 18:07 crypto

    Cryptocurrency's digital realm presents many opportunities, but it also conceals complex frauds. It is quite painful to lose your cryptocurrency to scam. You can feel harassed and lost as a result. If you have been the victim of a cryptocurrency scam, this guide explains what to do ASAP. Following these procedures will help you avoid further issues or get your money back. Communication with Marie ([email protected] and WhatsApp: +1 7127594675) can make all the difference.

  • 15.10.25 21:52 harristhomas7376

    "In the crypto world, this is great news I want to share. Last year, I fell victim to a scam disguised as a safe investment option. I have invested in crypto trading platforms for about 10yrs thinking I was ensuring myself a retirement income, only to find that all my assets were either frozen, I believed my assets were secure — until I discovered that my BTC funds had been frozen and withdrawals were impossible. It was a devastating moment when I realized I had been scammed, and I thought my Bitcoin was gone forever, Everything changed when a close friend recommended the Capital Crypto Recover Service. Their professionalism, expertise, and dedication enabled me to recover my lost Bitcoin funds back — more than €560.000 DEM to my BTC wallet. What once felt impossible became a reality thanks to their support. If you have lost Bitcoin through scams, hacking, failed withdrawals, or similar challenges, don’t lose hope. I strongly recommend Capital Crypto Recover Service to anyone seeking a reliable and effective solution for recovering any wallet assets. They have a proven track record of successful reputation in recovering lost password assets for their clients and can help you navigate the process of recovering your funds. Don’t let scammers get away with your hard-earned money – contact Email: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 15.10.25 21:52 harristhomas7376

    "In the crypto world, this is great news I want to share. Last year, I fell victim to a scam disguised as a safe investment option. I have invested in crypto trading platforms for about 10yrs thinking I was ensuring myself a retirement income, only to find that all my assets were either frozen, I believed my assets were secure — until I discovered that my BTC funds had been frozen and withdrawals were impossible. It was a devastating moment when I realized I had been scammed, and I thought my Bitcoin was gone forever, Everything changed when a close friend recommended the Capital Crypto Recover Service. Their professionalism, expertise, and dedication enabled me to recover my lost Bitcoin funds back — more than €560.000 DEM to my BTC wallet. What once felt impossible became a reality thanks to their support. If you have lost Bitcoin through scams, hacking, failed withdrawals, or similar challenges, don’t lose hope. I strongly recommend Capital Crypto Recover Service to anyone seeking a reliable and effective solution for recovering any wallet assets. They have a proven track record of successful reputation in recovering lost password assets for their clients and can help you navigate the process of recovering your funds. Don’t let scammers get away with your hard-earned money – contact Email: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 17.10.25 20:17 tyleradams

    As time passes, there are an increasing number of frauds involving Bitcoin and other cryptocurrencies. Although there are many individuals who advertise recovering money online, people should use caution in dealing, especially when money is involved. You can trust NVIDIA TECH HACKERS [[email protected]], I promise. They are the top internet recovery company, and as their names indicate, your money is reclaimed as soon as feasible. My bitcoin was successfully retrieved in large part thanks to NVIDIA TECH HACKERS. Ensure that you get top-notch service; NVIDIA TECH HACKERS provides evidence of its work; and payment is only made when the service has been completed to your satisfaction. Reach them via email: [email protected] on google mail

  • 17.10.25 20:20 lindseyvonn

    Have you gotten yourself involved in a cryptocurrency scam or any scam at all? If yes, know that you are not alone, there are a lot of people in this same situation. I'm a Health Worker and was a victim of a cryptocurrency scam that cost me a lot of money. This happened a few weeks ago, there’s only one solution which is to talk to the right people, if you don’t do this you will end up being really depressed. I was really devastated until went on LinkedIn one evening after my work hours and i saw lots of reviews popped up on my feed about [email protected], I sent an email to the team who came highly recommended - [email protected] I started seeing some hope for myself from the moment I sent them an email. The good part is they made the entire process stress free for me, i literally sat and waited for them to finish and I received what I lost in my wallet

  • 17.10.25 20:22 richardcharles

    I would recommend NVIDIA TECH HACKERS to anyone that needs this service. I decided to get into crypto investment and I ended up getting my crypto lost to an investor late last year. The guy who was supposed to be managing my account turned out to be a scammer all along. I invested 56,000 USD and at first, my reading and profit margins were looking good. I started getting worried when I couldn’t make withdrawals and realized that I’ve been scammed. I came across some of the testimonials that people said about NVIDIA TECH HACKERS and how helpful he has been in recovering their funds. I immediately contacted him in his mail at [email protected] so I can get his assistance. One week into the recovery process the funds were traced and recovered back from the scammer. I can't appreciate him enough for his professionalism.

  • 17.10.25 20:23 stevekalfman

    If you need a hacker for scam crypto recovery or mobile spy access remotely kindly reach out to [email protected] for quick response, I hired this hacker and he did a nice job. before NVIDIA TECH HACKERS, I met with different hacker's online which turns out to be scam, this NVIDIA TECH HACKERS case was different and he is the trusted hacker I can vote and refer.

  • 17.10.25 21:42 marcushenderson624

    Bitcoin Recovery Testimonial After falling victim to a cryptocurrency scam group, I lost $354,000 worth of USDT. I thought all hope was lost from the experience of losing my hard-earned money to scammers. I was devastated and believed there was no way to recover my funds. Fortunately, I started searching for help to recover my stolen funds and I came across a lot of testimonials online about Capital Crypto Recovery, an agent who helps in recovery of lost bitcoin funds, I contacted Capital Crypto Recover Service, and with their expertise, they successfully traced and recovered my stolen assets. Their team was professional, kept me updated throughout the process, and demonstrated a deep understanding of blockchain transactions and recovery protocols. They are trusted and very reliable with a 100% successful rate record Recovery bitcoin, I’m grateful for their help and highly recommend their services to anyone seeking assistance with lost crypto. Contact: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 17.10.25 21:42 marcushenderson624

    Bitcoin Recovery Testimonial After falling victim to a cryptocurrency scam group, I lost $354,000 worth of USDT. I thought all hope was lost from the experience of losing my hard-earned money to scammers. I was devastated and believed there was no way to recover my funds. Fortunately, I started searching for help to recover my stolen funds and I came across a lot of testimonials online about Capital Crypto Recovery, an agent who helps in recovery of lost bitcoin funds, I contacted Capital Crypto Recover Service, and with their expertise, they successfully traced and recovered my stolen assets. Their team was professional, kept me updated throughout the process, and demonstrated a deep understanding of blockchain transactions and recovery protocols. They are trusted and very reliable with a 100% successful rate record Recovery bitcoin, I’m grateful for their help and highly recommend their services to anyone seeking assistance with lost crypto. Contact: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 17.10.25 21:42 marcushenderson624

    Bitcoin Recovery Testimonial After falling victim to a cryptocurrency scam group, I lost $354,000 worth of USDT. I thought all hope was lost from the experience of losing my hard-earned money to scammers. I was devastated and believed there was no way to recover my funds. Fortunately, I started searching for help to recover my stolen funds and I came across a lot of testimonials online about Capital Crypto Recovery, an agent who helps in recovery of lost bitcoin funds, I contacted Capital Crypto Recover Service, and with their expertise, they successfully traced and recovered my stolen assets. Their team was professional, kept me updated throughout the process, and demonstrated a deep understanding of blockchain transactions and recovery protocols. They are trusted and very reliable with a 100% successful rate record Recovery bitcoin, I’m grateful for their help and highly recommend their services to anyone seeking assistance with lost crypto. Contact: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 21.10.25 08:39 debby131

    Given how swiftly the cryptocurrency market moves, losing USDT may be a terrifying and upsetting experience. Whether you experienced a technical problem, a transaction error, or were the victim of fraud, it is important to understand the potential recovery routes. Marie can assist you in determining the specific actions you can take to attempt to regain your lost USDT when you need guidance and clarification. You can reach her via email at [email protected] and WhatsApp at +1 7127594675.

  • 21.10.25 11:45 harristhomas7376

    "In the crypto world, this is great news I want to share. Last year, I fell victim to a scam disguised as a safe investment option. I have invested in crypto trading platforms for about 10yrs thinking I was ensuring myself a retirement income, only to find that all my assets were either frozen, I believed my assets were secure — until I discovered that my BTC funds had been frozen and withdrawals were impossible. It was a devastating moment when I realized I had been scammed, and I thought my Bitcoin was gone forever, Everything changed when a close friend recommended the Capital Crypto Recover Service. Their professionalism, expertise, and dedication enabled me to recover my lost Bitcoin funds back — more than €560.000 DEM to my BTC wallet. What once felt impossible became a reality thanks to their support. If you have lost Bitcoin through scams, hacking, failed withdrawals, or similar challenges, don’t lose hope. I strongly recommend Capital Crypto Recover Service to anyone seeking a reliable and effective solution for recovering any wallet assets. They have a proven track record of successful reputation in recovering lost password assets for their clients and can help you navigate the process of recovering your funds. Don’t let scammers get away with your hard-earned money – contact Email: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 21.10.25 11:45 harristhomas7376

    "In the crypto world, this is great news I want to share. Last year, I fell victim to a scam disguised as a safe investment option. I have invested in crypto trading platforms for about 10yrs thinking I was ensuring myself a retirement income, only to find that all my assets were either frozen, I believed my assets were secure — until I discovered that my BTC funds had been frozen and withdrawals were impossible. It was a devastating moment when I realized I had been scammed, and I thought my Bitcoin was gone forever, Everything changed when a close friend recommended the Capital Crypto Recover Service. Their professionalism, expertise, and dedication enabled me to recover my lost Bitcoin funds back — more than €560.000 DEM to my BTC wallet. What once felt impossible became a reality thanks to their support. If you have lost Bitcoin through scams, hacking, failed withdrawals, or similar challenges, don’t lose hope. I strongly recommend Capital Crypto Recover Service to anyone seeking a reliable and effective solution for recovering any wallet assets. They have a proven track record of successful reputation in recovering lost password assets for their clients and can help you navigate the process of recovering your funds. Don’t let scammers get away with your hard-earned money – contact Email: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 22.10.25 04:48 MATT PHILLIP

    I never imagined I’d fall for a crypto romance scam but it happened. Over the course of a few months, I sent nearly $150,000 worth of Bitcoin to someone I genuinely believed I was building a future with. When they disappeared without a trace, I was left heartbroken, humiliated, and financially devastated. For a long time, I didn’t tell anyone. I felt ashamed. But eventually, while searching for answers, I came across a Reddit thread that mentioned Agent Jasmine Lopez. I reached out, not expecting much. To my surprise, she treated me with kindness, not judgment. She used advanced tools like blockchain forensics, IP tracing, and smart contract analysis and with persistence and legal support, she was able to recover nearly 85% of what I lost. I know not everyone gets that kind of outcome, but thanks to [email protected] WhatsApp at +44 736-644-5035, I’ve started to reclaim not just my assets, but my confidence and peace of mind. If you’re going through something similar, you’re not alone and there is hope.

  • 22.10.25 07:36 donnacollier

    HOW I RECOVERED MY BITCOIN FROM CRYPTO INVESTMENT SCAM HOW I RECOVERED MY BITCOIN FROM CRYPTO INVESTMENT SCAM Hello everyone l’m by name Donna collier I live in urbandale 3 weeks ago was the darkest days of my life, i invested my hard earned money the sum of $123,000 into a crypto currency platform I was introduced to by a friend I met online everything happen so fast I was promised 300% of return of investment when it was time for me to cash out my investment and profit the platform was down I was so diversitated confused and tried to end it all then I came across upswing Ai a renowned expert in crypto currency and digital assets recovery at first it seem impossible after taking up my case within the the next 48 hours they where able to track down those fraud stars and recover my money I can’t recommend them enough to any one facing likewise change I will recommend you contact upswing Ai on Contact Details: WhatsApp +,1,2,0,2,8,1,0,1,4,0,7 E m a i l @Upswing-ai.com Website https: // u psw ing-ai. com/ platform /

  • 22.10.25 11:59 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 22.10.25 11:59 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 22.10.25 16:31 MATT PHILLIP

    I never imagined I’d fall for a crypto romance scam but it happened. Over the course of a few months, I sent nearly $150,000 worth of Bitcoin to someone I genuinely believed I was building a future with. When they disappeared without a trace, I was left heartbroken, humiliated, and financially devastated. For a long time, I didn’t tell anyone. I felt ashamed. But eventually, while searching for answers, I came across a Reddit thread that mentioned Agent Jasmine Lopez. I reached out, not expecting much. To my surprise, she treated me with kindness, not judgment. She used advanced tools like blockchain forensics, IP tracing, and smart contract analysis and with persistence and legal support, she was able to recover nearly 85% of what I lost. I know not everyone gets that kind of outcome, but thanks to [email protected] WhatsApp at +44 736-644-5035, I’ve started to reclaim not just my assets, but my confidence and peace of mind. If you’re going through something similar, you’re not alone and there is hope.

  • 23.10.25 01:52 marcushenderson624

    Bitcoin Recovery Testimonial After falling victim to a cryptocurrency scam group, I lost $354,000 worth of USDT. I thought all hope was lost from the experience of losing my hard-earned money to scammers. I was devastated and believed there was no way to recover my funds. Fortunately, I started searching for help to recover my stolen funds and I came across a lot of testimonials online about Capital Crypto Recovery, an agent who helps in recovery of lost bitcoin funds, I contacted Capital Crypto Recover Service, and with their expertise, they successfully traced and recovered my stolen assets. Their team was professional, kept me updated throughout the process, and demonstrated a deep understanding of blockchain transactions and recovery protocols. They are trusted and very reliable with a 100% successful rate record Recovery bitcoin, I’m grateful for their help and highly recommend their services to anyone seeking assistance with lost crypto. Contact: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 23.10.25 01:52 marcushenderson624

    Bitcoin Recovery Testimonial After falling victim to a cryptocurrency scam group, I lost $354,000 worth of USDT. I thought all hope was lost from the experience of losing my hard-earned money to scammers. I was devastated and believed there was no way to recover my funds. Fortunately, I started searching for help to recover my stolen funds and I came across a lot of testimonials online about Capital Crypto Recovery, an agent who helps in recovery of lost bitcoin funds, I contacted Capital Crypto Recover Service, and with their expertise, they successfully traced and recovered my stolen assets. Their team was professional, kept me updated throughout the process, and demonstrated a deep understanding of blockchain transactions and recovery protocols. They are trusted and very reliable with a 100% successful rate record Recovery bitcoin, I’m grateful for their help and highly recommend their services to anyone seeking assistance with lost crypto. Contact: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 23.10.25 15:47 MATT PHILLIP

    I never imagined I’d fall for a crypto romance scam but it happened. Over the course of a few months, I sent nearly $150,000 worth of Bitcoin to someone I genuinely believed I was building a future with. When they disappeared without a trace, I was left heartbroken, humiliated, and financially devastated. For a long time, I didn’t tell anyone. I felt ashamed. But eventually, while searching for answers, I came across a Reddit thread that mentioned Agent Jasmine Lopez. I reached out, not expecting much. To my surprise, she treated me with kindness, not judgment. She used advanced tools like blockchain forensics, IP tracing, and smart contract analysis and with persistence and legal support, she was able to recover nearly 85% of what I lost. I know not everyone gets that kind of outcome, but thanks to [email protected] WhatsApp at +44 736-644-5035, I’ve started to reclaim not just my assets, but my confidence and peace of mind. If you’re going through something similar, you’re not alone and there is hope.

  • 23.10.25 21:43 patricialovick86

    How To Recover Your Bitcoin Without Falling Victim To Scams: A  Testimony Experience With Capital Crypto Recover Services, Contact Telegram: @Capitalcryptorecover Dear Everyone, I would like to take a moment to share my positive experience with Capital Crypto Recover Services. Initially, I was unsure if it would be possible to recover my stolen bitcoins. However, with their expertise and professionalism, I was able to fully recover my funds. Unfortunately, many individuals fall victim to scams in the cryptocurrency space, especially those involving fraudulent investment platforms. However, I advise caution, as not all recovery services are legitimate. I personally lost $273,000 worth of Bitcoin from my Binance account due to a deceptive platform. If you have suffered a similar loss, you may be considering crypto recovery, The Capital Crypto Recover is the most knowledgeable and effective Capital Crypto Recovery Services assisted me in recovering my stolen funds within 24 hours, after getting access to my wallet. Their service was not only prompt but also highly professional and effective, and many recovery services may not be trustworthy. Therefore, I highly recommend Capital Crypto Recover to you. i do always research and see reviews about their service, For assistance finding your misplaced cryptocurrency, get in touch with them, They do their jobs quickly and excellently, Stay safe and vigilant in the crypto world. Contact: [email protected]  You can reach them via email at [email protected] OR Call/Text Number +1 (336)390-6684 his contact website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 23.10.25 21:43 patricialovick86

    How To Recover Your Bitcoin Without Falling Victim To Scams: A  Testimony Experience With Capital Crypto Recover Services, Contact Telegram: @Capitalcryptorecover Dear Everyone, I would like to take a moment to share my positive experience with Capital Crypto Recover Services. Initially, I was unsure if it would be possible to recover my stolen bitcoins. However, with their expertise and professionalism, I was able to fully recover my funds. Unfortunately, many individuals fall victim to scams in the cryptocurrency space, especially those involving fraudulent investment platforms. However, I advise caution, as not all recovery services are legitimate. I personally lost $273,000 worth of Bitcoin from my Binance account due to a deceptive platform. If you have suffered a similar loss, you may be considering crypto recovery, The Capital Crypto Recover is the most knowledgeable and effective Capital Crypto Recovery Services assisted me in recovering my stolen funds within 24 hours, after getting access to my wallet. Their service was not only prompt but also highly professional and effective, and many recovery services may not be trustworthy. Therefore, I highly recommend Capital Crypto Recover to you. i do always research and see reviews about their service, For assistance finding your misplaced cryptocurrency, get in touch with them, They do their jobs quickly and excellently, Stay safe and vigilant in the crypto world. Contact: [email protected]  You can reach them via email at [email protected] OR Call/Text Number +1 (336)390-6684 his contact website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 24.10.25 06:08 MATT PHILLIP

    I never imagined I’d fall for a crypto romance scam but it happened. Over the course of a few months, I sent nearly $150,000 worth of Bitcoin to someone I genuinely believed I was building a future with. When they disappeared without a trace, I was left heartbroken, humiliated, and financially devastated. For a long time, I didn’t tell anyone. I felt ashamed. But eventually, while searching for answers, I came across a Reddit thread that mentioned Agent Jasmine Lopez. I reached out, not expecting much. To my surprise, she treated me with kindness, not judgment. She used advanced tools like blockchain forensics, IP tracing, and smart contract analysis and with persistence and legal support, she was able to recover nearly 85% of what I lost. I know not everyone gets that kind of outcome, but thanks to [email protected] WhatsApp at +44 736-644-5035, I’ve started to reclaim not just my assets, but my confidence and peace of mind. If you’re going through something similar, you’re not alone and there is hope.

  • 24.10.25 06:40 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 24.10.25 06:40 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 24.10.25 06:54 MATT PHILLIP

    I never imagined I’d fall for a crypto romance scam but it happened. Over the course of a few months, I sent nearly $150,000 worth of Bitcoin to someone I genuinely believed I was building a future with. When they disappeared without a trace, I was left heartbroken, humiliated, and financially devastated. For a long time, I didn’t tell anyone. I felt ashamed. But eventually, while searching for answers, I came across a Reddit thread that mentioned Agent Jasmine Lopez. I reached out, not expecting much. To my surprise, she treated me with kindness, not judgment. She used advanced tools like blockchain forensics, IP tracing, and smart contract analysis and with persistence and legal support, she was able to recover nearly 85% of what I lost. I know not everyone gets that kind of outcome, but thanks to [email protected] WhatsApp at +44 736-644-5035, I’ve started to reclaim not just my assets, but my confidence and peace of mind. If you’re going through something similar, you’re not alone and there is hope.

  • 24.10.25 18:18 patricialovick86

    How To Recover Your Bitcoin Without Falling Victim To Scams: A  Testimony Experience With Capital Crypto Recover Services, Contact Telegram: @Capitalcryptorecover Dear Everyone, I would like to take a moment to share my positive experience with Capital Crypto Recover Services. Initially, I was unsure if it would be possible to recover my stolen bitcoins. However, with their expertise and professionalism, I was able to fully recover my funds. Unfortunately, many individuals fall victim to scams in the cryptocurrency space, especially those involving fraudulent investment platforms. However, I advise caution, as not all recovery services are legitimate. I personally lost $273,000 worth of Bitcoin from my Binance account due to a deceptive platform. If you have suffered a similar loss, you may be considering crypto recovery, The Capital Crypto Recover is the most knowledgeable and effective Capital Crypto Recovery Services assisted me in recovering my stolen funds within 24 hours, after getting access to my wallet. Their service was not only prompt but also highly professional and effective, and many recovery services may not be trustworthy. Therefore, I highly recommend Capital Crypto Recover to you. i do always research and see reviews about their service, For assistance finding your misplaced cryptocurrency, get in touch with them, They do their jobs quickly and excellently, Stay safe and vigilant in the crypto world. Contact: [email protected]  You can reach them via email at [email protected] OR Call/Text Number +1 (336)390-6684 his contact website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 24.10.25 18:18 patricialovick86

    How To Recover Your Bitcoin Without Falling Victim To Scams: A  Testimony Experience With Capital Crypto Recover Services, Contact Telegram: @Capitalcryptorecover Dear Everyone, I would like to take a moment to share my positive experience with Capital Crypto Recover Services. Initially, I was unsure if it would be possible to recover my stolen bitcoins. However, with their expertise and professionalism, I was able to fully recover my funds. Unfortunately, many individuals fall victim to scams in the cryptocurrency space, especially those involving fraudulent investment platforms. However, I advise caution, as not all recovery services are legitimate. I personally lost $273,000 worth of Bitcoin from my Binance account due to a deceptive platform. If you have suffered a similar loss, you may be considering crypto recovery, The Capital Crypto Recover is the most knowledgeable and effective Capital Crypto Recovery Services assisted me in recovering my stolen funds within 24 hours, after getting access to my wallet. Their service was not only prompt but also highly professional and effective, and many recovery services may not be trustworthy. Therefore, I highly recommend Capital Crypto Recover to you. i do always research and see reviews about their service, For assistance finding your misplaced cryptocurrency, get in touch with them, They do their jobs quickly and excellently, Stay safe and vigilant in the crypto world. Contact: [email protected]  You can reach them via email at [email protected] OR Call/Text Number +1 (336)390-6684 his contact website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 25.10.25 00:49 tyleradams

    *HOW TO GET BACK YOUR STOLEN BITCOIN FROM SCAMMERS* ⭐️⭐️⭐️⭐️⭐️ Hello everyone, I can see a lot of things going wrong these last few days of investing online and getting scammed. I was in your shoes when I invested in a bogus binary option and was duped out of $87,000 in BTC, but thanks to the assistance of NVIDIA TECH HACKERS. They helped me get back my BTC. I didn’t trust the Hackers at first, but they were recommended to me by a friend whom I greatly respect. I received my refund in two days. I must recommend NVIDIA TECH HACKERS they are fantastic. 📧 [email protected]

  • 25.10.25 00:50 stevekalfman

    If you ever need hacking services, look no further. I found myself in a difficult situation after losing almost $510,000 USD in bitcoin. I was distraught and had no hope of survival because i lost my life savings to this scam, I had no chance of recovering my investment. Until i came across an article on google about ([email protected]). A real-life recovery expert, everything changed completely after contacting him and explaining my ordeal to him and he quickly stepped in and assisted me in recovering 95% of my lost funds. They guarantee their clients and i got the highest level of happiness their services are highly recommended. so I’m putting this here for anyone who require their services too" Email: [email protected]

  • 25.10.25 05:05 victoriabenny463

    A few months ago, I fell for what looked like a legitimate online trading platform. The website was sleek, the support team was responsive, and they even showed me fake profit charts that seemed to grow daily. I started small, and after a few test withdrawals worked, I invested more eventually depositing 2 Bitcoin in hopes of long-term returns. But one morning, when I tried to withdraw, everything changed. The platform suddenly locked my account, claiming there were additional fees to release my funds. The support chat stopped responding, and the website started giving error messages. That’s when I realized I’d been scammed. I was devastated. Two Bitcoins wasn’t pocket change, it was my savings. I filed reports online, but everyone told me it was impossible to recover crypto once it’s sent. Then, through a discussion forum, I came across Dexdert Net Recovery, a team specializing in tracing and recovering stolen digital assets. Skeptical but desperate, I reached out. Their response was immediate and professional. They asked for transaction IDs, wallet addresses, screenshots of my correspondence with the fake platform, and any proof of payment I had. Within days, their analysts traced the stolen Bitcoin through multiple wallets using blockchain forensics, They updated me step-by-step, Working with their recovery experts and blockchain partners, Dexdert Net Recovery successfully froze the funds and verified ownership of my wallet. After 2 days of persistence and verification, I finally saw my 2 Bitcoin restored back into my own wallet. I couldn’t believe it. What stood out most wasn’t just that they recovered my funds, but how transparent and supportive the Dexdert team was throughout the process. They educated me on crypto safety, how to spot fake trading sites, and how to secure my digital assets in the future. Dexdert Net Recovery truly lives up to its name. They gave me back not just my Bitcoin, but my peace of mind. Reach Out Information Below Via: Email: ([email protected]) Telegram: (https://t.me/Dexdertprorecovery) WhatsApp: (+1 (859) 609‑4156)

  • 25.10.25 10:13 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 25.10.25 10:13 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 26.10.25 01:03 Christopherbelle

    A terrible financial shock hit me hard. I lost $860,000 in a fake crypto scheme. Things looked good until I tried to cash out my earnings. Suddenly, my account vanished into thin air. I told the police many times, but help never showed up. Despair washed over me; I felt totally beaten. Then, I found Sylvester Bryant Intelligence. Right away, they were skilled and honest about the whole thing. They looked deep into my situation. They tracked where the stolen funds went. They fought hard for me every step of the way. To my great surprise, they got my money back. I thought that was impossible. I owe them so much for their hard work and truthfulness. Sylvester Bryant Intelligence restored my peace. If scams took your crypto, contact them now. Contact Info: Yt7cracker@gmail . com WhatsApp: ‪+1 512 577 7957. or +44 7428 662701.

  • 26.10.25 18:09 victoriabenny463

    A few months ago, I fell for what looked like a legitimate online trading platform. The website was sleek, the support team was responsive, and they even showed me fake profit charts that seemed to grow daily. I started small, and after a few test withdrawals worked, I invested more eventually depositing 2 Bitcoin in hopes of long-term returns. But one morning, when I tried to withdraw, everything changed. The platform suddenly locked my account, claiming there were additional fees to release my funds. The support chat stopped responding, and the website started giving error messages. That’s when I realized I’d been scammed. I was devastated. Two Bitcoins wasn’t pocket change, it was my savings. I filed reports online, but everyone told me it was impossible to recover crypto once it’s sent. Then, through a discussion forum, I came across Dexdert Net Recovery, a team specializing in tracing and recovering stolen digital assets. Skeptical but desperate, I reached out. Their response was immediate and professional. They asked for transaction IDs, wallet addresses, screenshots of my correspondence with the fake platform, and any proof of payment I had. Within days, their analysts traced the stolen Bitcoin through multiple wallets using blockchain forensics, They updated me step-by-step, Working with their recovery experts and blockchain partners, Dexdert Net Recovery successfully froze the funds and verified ownership of my wallet. After 2 days of persistence and verification, I finally saw my 2 Bitcoin restored back into my own wallet. I couldn’t believe it. What stood out most wasn’t just that they recovered my funds, but how transparent and supportive the Dexdert team was throughout the process. They educated me on crypto safety, how to spot fake trading sites, and how to secure my digital assets in the future. Dexdert Net Recovery truly lives up to its name. They gave me back not just my Bitcoin, but my peace of mind. Reach Out Information Below Via: Email: ([email protected]) Telegram: (https://t.me/Dexdertprorecovery) WhatsApp: (+1 (859) 609‑4156)

  • 27.10.25 11:15 harristhomas7376

    "In the crypto world, this is great news I want to share. Last year, I fell victim to a scam disguised as a safe investment option. I have invested in crypto trading platforms for about 10yrs thinking I was ensuring myself a retirement income, only to find that all my assets were either frozen, I believed my assets were secure — until I discovered that my BTC funds had been frozen and withdrawals were impossible. It was a devastating moment when I realized I had been scammed, and I thought my Bitcoin was gone forever, Everything changed when a close friend recommended the Capital Crypto Recover Service. Their professionalism, expertise, and dedication enabled me to recover my lost Bitcoin funds back — more than €560.000 DEM to my BTC wallet. What once felt impossible became a reality thanks to their support. If you have lost Bitcoin through scams, hacking, failed withdrawals, or similar challenges, don’t lose hope. I strongly recommend Capital Crypto Recover Service to anyone seeking a reliable and effective solution for recovering any wallet assets. They have a proven track record of successful reputation in recovering lost password assets for their clients and can help you navigate the process of recovering your funds. Don’t let scammers get away with your hard-earned money – contact Email: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 27.10.25 11:15 harristhomas7376

    "In the crypto world, this is great news I want to share. Last year, I fell victim to a scam disguised as a safe investment option. I have invested in crypto trading platforms for about 10yrs thinking I was ensuring myself a retirement income, only to find that all my assets were either frozen, I believed my assets were secure — until I discovered that my BTC funds had been frozen and withdrawals were impossible. It was a devastating moment when I realized I had been scammed, and I thought my Bitcoin was gone forever, Everything changed when a close friend recommended the Capital Crypto Recover Service. Their professionalism, expertise, and dedication enabled me to recover my lost Bitcoin funds back — more than €560.000 DEM to my BTC wallet. What once felt impossible became a reality thanks to their support. If you have lost Bitcoin through scams, hacking, failed withdrawals, or similar challenges, don’t lose hope. I strongly recommend Capital Crypto Recover Service to anyone seeking a reliable and effective solution for recovering any wallet assets. They have a proven track record of successful reputation in recovering lost password assets for their clients and can help you navigate the process of recovering your funds. Don’t let scammers get away with your hard-earned money – contact Email: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 27.10.25 17:08 raymondgonzales

    Three Cheers for Wizard Hilton Cyber Tech, Bitcoin Savior Extraordinaire In the ever-evolving world of cryptocurrency, where volatility and uncertainty reign supreme, one individual has emerged as a beacon of hope and innovation - Wizard Hilton Cyber Tech, the self-proclaimed "Bitcoin Savior Extraordinaire." This enigmatic figure, with his uncanny ability to navigate the complexities of the digital asset landscape, has captivated the attention of crypto enthusiasts and skeptics alike. Wizard Hilton Cyber Tech journey began as a humble programmer, tinkering with the underlying blockchain technology that powers Bitcoin. But it was his visionary approach and unwavering commitment to the cryptocurrency's potential that propelled him into the limelight. Through a series of strategic investments, groundbreaking algorithmic trading strategies, and a knack for anticipating market shifts, Wizard Hilton Cyber Tech has managed to consistently outperform even the savviest of Wall Street traders. Wizard Hilton Cyber Tech ability to turn even the most tumultuous of Bitcoin price swings into opportunities for substantial gains has earned him the moniker "Wizard," a testament to his unparalleled mastery of the digital currency realm. But Wizard Hilton Cyber Tech impact extends far beyond personal wealth accumulation - Wizard Hilton Cyber Tech has tirelessly advocated for the widespread adoption of Bitcoin, working tirelessly to educate the public, lobby policymakers, and collaborate with industry leaders to overcome the barriers that have long hindered the cryptocurrency's mainstream acceptance. With infectious enthusiasm and boundless energy, Wizard Hilton Cyber Tech has become a true champion of the Bitcoin cause, inspiring a new generation of crypto enthusiasts to embrace the transformative power of this revolutionary technology. As the digital currency landscape continues to evolve, Wizard Hilton Cyber Tech name will undoubtedly be etched in the annals of cryptocurrency history as a visionary, a trailblazer, and, above all, the Bitcoin Savior Extraordinaire. To get your stolen bitcoin back, reach out to Wizard Hilton Cyber Tech via: Email : wizardhiltoncybertech ( @ ) gmail (. ) com WhatsApp number  +18737715701 Good Day.

  • 27.10.25 17:20 fatimanorth

    The Federal Trade Commission said that more than $1 billion had been lost to cryptocurrency scams in 2023. Victims frequently lose everything, including hope, trust, and wealth. When your hard-earned money disappears into digital shadows, you feel trapped. Nowadays, cryptocurrency frauds are very common. You can get help from recovery specialist Marie at [email protected] and via WhatsApp at +1 7127594675.

  • 28.10.25 00:55 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 28.10.25 00:55 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 29.10.25 03:43 Christopherbelle

    A sudden money crisis struck me. I dropped $82,000 to a phony crypto scam. All seemed fine until I went to pull out my gains. Then, i was unable to get back my hard earned money. I reported it to the police several times. No aid came my way. Deep sadness hit me; I felt crushed. That's when I learned about Sylvester Bryant Intelligence. They acted quick and fair from the start. They checked my case closely. They followed the path of my lost cash. They pushed strong for me at each turn. In shock, they brought my funds back. I had figured it could not happen. I thank them for their effort and honesty. Sylvester Bryant Intelligence gave me calm again. If a scam stole your crypto, reach out to them today. Contact Info: Yt7cracker@gmail . com WhatsApp: +1 512 577 7957 or +44 7428 662701.

  • 29.10.25 10:56 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 29.10.25 10:56 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 30.10.25 09:49 Christopherbelle

    I suffered a huge money blow when $80,000 slipped away in a bogus crypto plot. It all looked great at first. Then I went to pull out my gains, and poof—my account was gone. I kept telling the cops about it, but they did zip. I felt shattered and lost. That's when I stumbled on Sylvester Bryant Intelligence. Things turned around fast. Right away, they showed clear steps, sharp know-how, and real drive to fix it. They tracked my missing cash step by step and pushed hard till they got it back. I swear, I figured it was a lost cause. Their straight-up work and trust brought back my calm. If a scam stole your crypto, reach out to them now. yt7cracker@gmail . com | WhatsApp: +1 512 577 7957 or +44 7428 662701

  • 30.10.25 12:03 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

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